#listenButton {
    display: block;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;

    /* Отступы */
    margin-top: 2rem;      /* Отступ сверху (от фото) */
    margin-bottom: 2rem;   /* Отступ снизу (до контента) */
    margin-left: auto;
    margin-right: auto;

    /* Опционально - центрирование */
    font-weight: 500;
}

#listenButton:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.15);
}

#listenButton:active {
    transform: translateY(0);
}

#listenButton.playing {
    background: rgba(255, 100, 100, 0.1);
    border-color: rgba(255, 100, 100, 0.3);
    color: #ff6464;
}