:root {
    --cor-principal: #dc143c;
    /* Vermelho paixão */
    --cor-fundo: #121212;
    /* Fundo escuro Spotify */
    --cor-texto: #ffffff;
    --cor-secundaria: #b3b3b3;
}

* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Circular', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--cor-fundo);
    color: var(--cor-texto);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    margin: 0;
    min-height: 100vh;
    line-height: 1.6;
    padding-bottom: 85px;
    overflow-x: hidden;
    position: relative;
    /* Espaço para o player fixo */
}



.container {
    max-width: 800px;
    width: 100%;
    padding: 20px;
    overflow-x: hidden;
    position: relative;
    z-index: 1;
}



h1 {
    font-family: 'Lobster', cursive;
    color: var(--cor-texto);
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 400;
    text-shadow:
        0 0 30px rgba(255, 105, 180, 0.9),
        0 0 60px rgba(255, 105, 180, 0.6),
        0 0 90px rgba(255, 105, 180, 0.3);
    background: linear-gradient(135deg, #ff1744, #ff69b4, #e91e63, #ff1744);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: loveGlow 8s ease-in-out infinite;
    letter-spacing: 3px;
    position: relative;
    transform: rotate(-2deg);
}

h1::before {
    content: '✨';
    position: absolute;
    left: -45px;
    top: 20%;
    transform: rotate(15deg);
    font-size: 0.4em;
    animation: sparkle 3s ease-in-out infinite;
}

h1::after {
    content: '✨';
    position: absolute;
    right: -45px;
    top: 70%;
    transform: rotate(-15deg);
    font-size: 0.4em;
    animation: sparkle 3s ease-in-out infinite 1.5s;
}



@keyframes loveGlow {

    0%,
    100% {
        background-position: 0% 50%;
        transform: rotate(-2deg) scale(1);
    }

    25% {
        background-position: 100% 50%;
        transform: rotate(-1deg) scale(1.02);
    }

    50% {
        background-position: 200% 50%;
        transform: rotate(-2deg) scale(1);
    }

    75% {
        background-position: 300% 50%;
        transform: rotate(-3deg) scale(1.01);
    }
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0.3;
        transform: rotate(15deg) scale(0.8);
    }

    50% {
        opacity: 1;
        transform: rotate(25deg) scale(1.2);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }

    100% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
}

@keyframes neonPulse {
    0% {
        text-shadow:
            0 0 20px rgba(255, 105, 180, 0.8),
            0 0 40px rgba(255, 105, 180, 0.4);
    }

    100% {
        text-shadow:
            0 0 30px rgba(255, 105, 180, 1),
            0 0 60px rgba(255, 105, 180, 0.6),
            0 0 90px rgba(255, 105, 180, 0.3);
    }
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

@keyframes cardShine {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: -100%;
    }
}

@keyframes sparkleRotate {
    0% {
        transform: translateY(-50%) rotate(0deg) scale(1);
    }

    25% {
        transform: translateY(-50%) rotate(90deg) scale(1.2);
    }

    50% {
        transform: translateY(-50%) rotate(180deg) scale(1);
    }

    75% {
        transform: translateY(-50%) rotate(270deg) scale(1.2);
    }

    100% {
        transform: translateY(-50%) rotate(360deg) scale(1);
    }
}

@keyframes gentleGlow {

    0%,
    100% {
        text-shadow:
            0 0 20px rgba(220, 20, 60, 0.8),
            0 0 40px rgba(220, 20, 60, 0.4),
            0 0 60px rgba(220, 20, 60, 0.2);
        transform: scale(1);
    }

    50% {
        text-shadow:
            0 0 30px rgba(220, 20, 60, 1),
            0 0 60px rgba(220, 20, 60, 0.6),
            0 0 90px rgba(220, 20, 60, 0.3);
        transform: scale(1.01);
    }
}

@keyframes gentleSpin {
    0% {
        transform: translateY(-50%) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(-50%) rotate(180deg) scale(1.1);
    }

    100% {
        transform: translateY(-50%) rotate(360deg) scale(1);
    }
}

@keyframes gentleFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        box-shadow: 0 6px 20px rgba(220, 20, 60, 0.3);
    }

    50% {
        transform: translateY(-8px) rotate(0.5deg);
        box-shadow: 0 10px 30px rgba(220, 20, 60, 0.4);
    }
}

@keyframes gentleShine {
    0% {
        left: -100%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        left: 100%;
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}





/* Carrossel de fotos estilo stack */
.photo-carousel {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}



.stack-container {
    position: relative;
    width: 400px;
    height: 350px;
    perspective: 1000px;
    overflow: visible;
}

.photo-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.stack-photo {
    position: absolute;
    width: 220px;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
    border: 3px solid rgba(220, 20, 60, 0.2);
    opacity: 0;
    transform: translateX(100px) scale(0.8);
    z-index: 1;
}

.stack-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Foto ativa (centro) */
.stack-photo.active {
    opacity: 1;
    transform: translateX(90px) translateY(0px) rotate(0deg) scale(1);
    z-index: 5;
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.4);
    border-color: var(--cor-principal);
}

/* Próxima foto (visível à direita) */
.stack-photo.next {
    opacity: 0.6;
    transform: translateX(180px) translateY(10px) rotate(3deg) scale(0.8);
    z-index: 3;
    filter: brightness(0.8);
}

/* Foto anterior (visível à esquerda) */
.stack-photo.prev {
    opacity: 0.5;
    transform: translateX(0px) translateY(10px) rotate(-3deg) scale(0.8);
    z-index: 2;
    filter: brightness(0.7);
}

/* Hover removido para evitar conflito com posicionamento do carrossel */

.stack-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.1);
    color: rgba(255, 255, 255, 0.3);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: normal;
    cursor: pointer;
    transition: all 0.5s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.stack-container:hover .stack-btn {
    opacity: 0.6;
}

.stack-btn:hover {
    background: rgba(220, 20, 60, 0.5);
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-50%) scale(1.05);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Dots removidos para visual mais limpo com 50 fotos */

#timer-display {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 25px 0;
    position: relative;
    text-align: center;
}

.timeline-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.main-text {
    font-family: 'Lobster', cursive;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2.2em;
    font-weight: 400;
    text-shadow:
        0 0 10px rgba(220, 20, 60, 0.4),
        0 0 20px rgba(220, 20, 60, 0.2);
    animation: gentleGlow 12s ease-in-out infinite;
    letter-spacing: 2px;
    position: relative;
    margin-bottom: 5px;
    display: inline-block;
}

.main-text::before {
    content: '💫';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.4em;
    animation: gentleSpin 15s linear infinite;
    opacity: 0.7;
}

.main-text::after {
    content: '💫';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.4em;
    animation: gentleSpin 15s linear infinite reverse;
    opacity: 0.7;
}

.time-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

@media (min-width: 768px) {
    .time-line {
        flex-direction: column;
        flex-wrap: nowrap;
    }
}

.time-cards {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    justify-content: center;
}

.time-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border: 2px solid rgba(220, 20, 60, 0.6);
    border-radius: 12px;
    padding: 12px 16px;
    min-width: 75px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 6px 20px rgba(220, 20, 60, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: gentleFloat 15s ease-in-out infinite;
}

.time-card:nth-child(1) {
    animation-delay: 0s;
}

.time-card:nth-child(2) {
    animation-delay: 3s;
}

.time-card:nth-child(3) {
    animation-delay: 6s;
}

.time-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.2), transparent);
    animation: gentleShine 20s ease-in-out infinite;
}

.time-number {
    font-family: 'Pacifico', cursive;
    color: var(--cor-principal);
    font-size: 1.8em;
    font-weight: 400;
    text-shadow:
        0 0 20px rgba(220, 20, 60, 0.8),
        0 0 40px rgba(220, 20, 60, 0.4),
        0 0 60px rgba(220, 20, 60, 0.2);
    animation: gentleGlow 12s ease-in-out infinite;
    letter-spacing: 1px;
    position: relative;
    display: block;
    line-height: 1;
}

.time-label {
    font-family: 'Dancing Script', cursive;
    color: #ffffff;
    font-size: 0.9em;
    font-weight: 600;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
    position: relative;
    text-transform: lowercase;
    margin-top: 3px;
    opacity: 0.9;
}

.date-subtitle {
    font-family: 'Lobster', cursive;
    font-size: 1em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    position: relative;
    padding: 0 20px;
}

.date-subtitle::before,
.date-subtitle::after {
    content: '✨';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8em;
    animation: sparkleRotate 12s linear infinite;
}

.date-subtitle::before {
    left: 0;
}

.date-subtitle::after {
    right: 0;
    animation-delay: 6s;
}

/* Estilização do botão de música no estilo Spotify */
#music-button {
    position: fixed;
    bottom: 20px;
    /* Fixa o botão no rodapé */
    left: 50%;
    transform: translateX(-50%);
    background-color: #1DB954;
    /* Verde do Spotify */
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.1s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#music-button:hover {
    background-color: #1AA34A;
    /* Tom mais escuro ao passar o mouse */
}

#music-button:active {
    transform: scale(0.95);
}

.message {
    margin-top: 50px;
    padding: 20px;
    border-top: 2px solid var(--cor-principal);
    font-style: italic;
    color: var(--cor-secundaria);
}

.wedding-ring-link {
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1.2em;
    animation: ringSparkle 3s ease-in-out infinite;
}

.wedding-ring-link:hover {
    transform: scale(1.3) rotate(15deg);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

@keyframes ringSparkle {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
    }
    50% { 
        transform: scale(1.1) rotate(5deg);
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.9));
    }
}

/* Corações flutuantes */
.floating-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.heart {
    position: absolute;
    font-size: 1.2em;
    animation: floatHeart 15s linear infinite;
    opacity: 0.3;
}

.heart-1 { left: 10%; animation-delay: 0s; }
.heart-2 { left: 20%; animation-delay: 3s; }
.heart-3 { left: 30%; animation-delay: 6s; }
.heart-4 { left: 70%; animation-delay: 2s; }
.heart-5 { left: 80%; animation-delay: 8s; }
.heart-6 { left: 90%; animation-delay: 5s; }

@keyframes floatHeart {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Estilização do player de música */
#music-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #333333;
    /* Cor mais escura */
    color: white;
    padding: 10px 20px;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
}

#track-info {
    display: flex;
    align-items: center;
    flex-grow: 1;
    text-align: left;
}

#track-title {
    font-weight: bold;
    font-size: 1em;
    margin-right: 10px;
}

#track-artist {
    font-size: 0.9em;
    color: #e0e0e0;
}

#favorite-icon {
    font-size: 1.2em;
    color: #FF69B4;
    /* Rosa para o ícone de coração */
    margin-left: 10px;
    cursor: pointer;
}

#play-button {
    background-color: #444444;
    /* Cor mais escura para o botão */
    border: none;
    color: white;
    font-size: 1.5em;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    margin-right: 20px;
    transition: background-color 0.3s;
}

#play-button:hover {
    background-color: #555555;
    /* Tom mais claro ao passar o mouse */
}

#volume-control {
    display: flex;
    align-items: center;
}

#volume-button {
    background: none;
    border: none;
    color: white;
    font-size: 1.2em;
    cursor: pointer;
    margin-right: 10px;
}

/* Barra de volume com fundo preto */
#volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 150px;
    height: 5px;
    background: #333333;
    /* Fundo preto */
    border-radius: 5px;
    outline: none;
    cursor: pointer;
}

#volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: #dc143c;
    /* Roxo moderno */
    border-radius: 50%;
    cursor: pointer;
}

/* Media Query para quebrar linha em telas médias */
@media (max-width: 768px) {
    .time-line {
        flex-direction: column;
        gap: 15px;
    }
    
    .player-controls {
        display: none !important;
    }
}

/* Media Query para telas menores (celulares) */
@media (max-width: 600px) {
    body {
        padding: 10px;
        padding-bottom: 110px;
        min-height: 100vh;
        overflow-x: hidden;
    }

    .container {
        padding: 10px;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }

    h1 {
        font-size: 2.5em;
        margin-bottom: 35px;
        letter-spacing: 2px;
    }

    h1::before,
    h1::after {
        font-size: 0.3em;
    }

    h1::before {
        left: -25px;
    }

    h1::after {
        right: -25px;
    }

    #timer-display {
        margin: 8px 0;
    }

    .timeline-container {
        gap: 12px;
    }

    .time-line {
        flex-direction: column;
        gap: 12px;
    }

    .main-text {
        font-size: 1.6em;
        letter-spacing: 1px;
        margin-bottom: 0;
    }

    .main-text::before,
    .main-text::after {
        font-size: 0.3em;
    }

    .main-text::before {
        left: -30px;
    }

    .main-text::after {
        right: -30px;
    }

    .time-cards {
        gap: 8px;
        flex-wrap: nowrap;
        justify-content: center;
        width: 100%;
    }

    .time-card {
        padding: 8px 10px;
        min-width: 60px;
        flex: 1;
        max-width: 80px;
    }

    .time-number {
        font-size: 1.5em;
    }

    .time-label {
        font-size: 0.7em;
        margin-top: 2px;
    }

    .date-subtitle {
        font-size: 0.9em;
        margin-top: 8px;
        padding: 0 15px;
    }

    .date-subtitle::before,
    .date-subtitle::after {
        font-size: 0.7em;
    }

    .photo-carousel {
        margin: 2px 0 20px 0;
    }

    .stack-container {
        width: 320px;
        height: 280px;
        margin: 0 auto;
        overflow: visible;
    }

    .stack-photo {
        width: 180px;
        height: 240px;
    }

    /* Ajustes para mobile no carrossel empilhado */
    .stack-photo.active {
        transform: translateX(70px) translateY(0px) rotate(0deg) scale(1);
    }

    .stack-photo.next {
        transform: translateX(160px) translateY(8px) rotate(3deg) scale(0.75);
        opacity: 0.6;
    }

    .stack-photo.prev {
        transform: translateX(-20px) translateY(8px) rotate(-3deg) scale(0.75);
        opacity: 0.5;
    }

    .stack-btn {
        width: 26px;
        height: 26px;
        font-size: 14px;
        opacity: 0.6;
        background: rgba(0, 0, 0, 0.3);
        color: rgba(255, 255, 255, 0.8);
        /* Mais visível no mobile */
    }

    .stack-container:hover .stack-btn {
        opacity: 0.8;
    }

    .stack-btn:active {
        opacity: 1;
        background: rgba(220, 20, 60, 0.4);
        transform: translateY(-50%) scale(0.95);
    }

    .prev-btn {
        left: 8px;
    }

    .next-btn {
        right: 8px;
    }

    #timer-display {
        font-size: 1em;
        padding: 15px;
        margin-bottom: 15px;
    }

    .message {
        margin-top: 20px;
        padding: 15px;
        font-size: 0.9em;
    }

    .spotify-player {
        padding: 16px 20px;
        height: 90px;
    }

    .song-cover {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    .song-info {
        flex: 1;
        min-width: 0;
        margin-right: 12px;
    }

    .song-details {
        display: block;
        width: 100%;
        overflow: hidden;
    }

    .song-title {
        font-size: 14px;
        font-weight: 600;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 180px;
        line-height: 1.3;
        margin-bottom: 4px;
    }

    .song-artist {
        font-size: 12px;
        color: var(--cor-secundaria);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 180px;
        line-height: 1.2;
    }

    .player-controls {
        display: none;
    }

    .song-cover {
        cursor: pointer;
        transition: transform 0.2s ease;
    }

    .song-cover:hover {
        transform: scale(1.05);
    }

    .volume-section {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .volume-control {
        gap: 0;
    }

    /* Esconde o slider de volume no mobile, mantém apenas o botão */
    .volume-slider {
        display: none;
    }

    .volume-btn {
        font-size: 16px;
        padding: 8px;
        width: 32px;
        height: 32px;
    }

    .music-progress-bar {
        bottom: 90px;
    }
}

/* Media Query para telas muito pequenas */
@media (max-width: 400px) {
    body {
        padding: 5px;
    }

    .container {
        padding: 5px;
        overflow-x: hidden;
    }

    .stack-container {
        width: 280px;
        height: 250px;
    }

    .stack-photo {
        width: 160px;
        height: 200px;
    }

    .stack-photo.active {
        transform: translateX(60px) translateY(0px) rotate(0deg) scale(1);
    }

    .stack-photo.next {
        transform: translateX(140px) translateY(6px) rotate(2deg) scale(0.7);
        opacity: 0.5;
    }

    .stack-photo.prev {
        transform: translateX(-20px) translateY(6px) rotate(-2deg) scale(0.7);
        opacity: 0.4;
    }

    h1 {
        font-size: 2em;
        margin-bottom: 30px;
        letter-spacing: 1px;
    }

    h1::before,
    h1::after {
        font-size: 0.25em;
    }

    h1::before {
        left: -20px;
    }

    h1::after {
        right: -20px;
    }

    #timer-display {
        margin: 6px 0;
    }

    .timeline-container {
        gap: 10px;
    }

    .time-line {
        flex-direction: column;
        gap: 10px;
    }

    .main-text {
        font-size: 1.4em;
        letter-spacing: 1px;
        margin-bottom: 0;
    }

    .main-text::before,
    .main-text::after {
        font-size: 0.25em;
    }

    .main-text::before {
        left: -25px;
    }

    .main-text::after {
        right: -25px;
    }

    .time-cards {
        gap: 6px;
        flex-wrap: nowrap;
        justify-content: center;
        width: 100%;
    }

    .time-card {
        padding: 6px 8px;
        min-width: 50px;
        flex: 1;
        max-width: 70px;
    }

    .time-number {
        font-size: 1.3em;
    }

    .time-label {
        font-size: 0.65em;
        margin-top: 1px;
    }

    .date-subtitle {
        font-size: 0.8em;
        margin-top: 6px;
        padding: 0 10px;
    }

    .date-subtitle::before,
    .date-subtitle::after {
        font-size: 0.6em;
    }

    .carousel-container {
        width: 220px;
        height: 220px;
        border-radius: 12px;
    }

    .carousel-btn {
        width: 20px;
        height: 20px;
        font-size: 10px;
        opacity: 0.5;
    }

    .prev-btn {
        left: 6px;
    }

    .next-btn {
        right: 6px;
    }

    /* Dots removidos */

    .photo-carousel {
        margin: 1px 0 15px 0;
    }

    #timer-display {
        font-size: 0.9em;
        padding: 10px;
        margin-bottom: 10px;
    }

    .message {
        margin-top: 15px;
        padding: 10px;
        font-size: 0.8em;
    }

    .spotify-player {
        height: 85px;
        padding: 12px 16px;
    }

    .song-cover {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .song-info {
        flex: 1;
        min-width: 0;
        margin-right: 8px;
    }

    .song-title {
        font-size: 13px;
        max-width: 140px;
        line-height: 1.3;
        margin-bottom: 3px;
    }

    .song-artist {
        font-size: 11px;
        max-width: 140px;
        line-height: 1.2;
    }

    .player-controls {
        display: none;
    }

    .volume-btn {
        font-size: 14px;
        padding: 6px;
        width: 28px;
        height: 28px;
    }

    .music-progress-bar {
        bottom: 85px;
    }
    
    /* Corações mais sutis no mobile */
    .floating-hearts {
        z-index: -2;
    }
    
    .heart {
        font-size: 1em;
        opacity: 0.2;
    }
    
    @keyframes floatHeart {
        0% {
            transform: translateY(100vh) rotate(0deg);
            opacity: 0;
        }
        10% {
            opacity: 0.2;
        }
        90% {
            opacity: 0.2;
        }
        100% {
            transform: translateY(-100px) rotate(360deg);
            opacity: 0;
        }
    }
}

/* Barra de progresso da música */
.music-progress-bar {
    position: fixed;
    bottom: 70px;
    left: 0;
    right: 0;
    height: 4px;
    background: transparent;
    z-index: 1001;
    cursor: pointer;
    padding: 4px 0;
    /* Área maior para interação */
}

.music-progress-fill {
    height: 4px;
    background: var(--cor-principal);
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 12px rgba(220, 20, 60, 0.8);
    border-radius: 0;
    position: relative;
    pointer-events: none;
}

.music-progress-handle {
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: grab;
    opacity: 0;
    transition: opacity 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.music-progress-bar:hover .music-progress-handle {
    opacity: 1;
}

.music-progress-handle:active {
    cursor: grabbing;
    transform: translateY(-50%) scale(1.2);
}

.music-progress-bar:hover {
    height: 8px;
    padding: 2px 0;
}

.music-progress-bar:hover .music-progress-fill {
    box-shadow: 0 0 16px rgba(220, 20, 60, 1);
}

/* Player 
de música estilo Spotify */
.spotify-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #181818 0%, #282828 100%);
    border-top: 1px solid #333;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.6);
    z-index: 1000;
    height: 72px;
    backdrop-filter: blur(20px);
}

.song-info {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.song-cover {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--cor-principal), #ff1744);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(220, 20, 60, 0.4);
}

.song-details {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.song-title {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.song-artist {
    font-size: 12px;
    color: var(--cor-secundaria);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.control-btn {
    background: none;
    border: none;
    color: var(--cor-secundaria);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    color: #fff;
    transform: scale(1.06);
}

.play-btn {
    background: #fff;
    color: #000;
    width: 32px;
    height: 32px;
    font-size: 14px;
    margin: 0 16px;
}

.play-btn:hover {
    background: #fff;
    transform: scale(1.06);
}

.volume-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 12px;
}

.volume-btn {
    font-size: 16px;
}

.volume-slider {
    width: 93px;
    height: 4px;
    background: #4f4f4f;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    padding: 8px 0;
}

.volume-fill {
    height: 4px;
    background: #fff;
    border-radius: 2px;
    width: 70%;
    position: relative;
    pointer-events: none;
}

.volume-handle {
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: grab;
    opacity: 0;
    transition: opacity 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.volume-slider:hover .volume-handle {
    opacity: 1;
}

.volume-handle:active {
    cursor: grabbing;
    transform: translateY(-50%) scale(1.2);
}