body {
    margin: 0;
    padding: 0;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: "";
    background-image: url(images/katanazero.png);
    background-size: cover;
    background-repeat: no-repeat;

    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    filter: blur(2px);
    z-index: -1;
    transform: scale(1.1);
}

.conteudo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 740px;
    width: 450px;
    gap: 20px;
    margin: auto;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 40px;

}

img {
    border-radius: 100%;
    position: relative;
    top: -30px;
    z-index: 10;
}

.infos {
    position: relative;
    top: -50px;
    z-index:  10;
    font-size: 16px;
    text-align: center;
}

.cidade {
    position: relative;
    top: -10px;
    z-index: 10;
    color: rgb(112, 3, 207);
    font-weight: bolder;
}

.frase {
    font-weight: lighter;
    color: rgba(255, 255, 255, 0.603);
}

button {
    display: flex;
    width: 400px;
    height: 50px;
    justify-content: center;
    border: none;
    border-radius: 16px;
    padding-top: 17px;
    background-color: rgba(110, 0, 184, 0.267);
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    animation: pulsar 2s infinite ease-in-out;
}

.botoes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

button:hover{
    transform: scale(1.03);
    background-color: rgba(27, 6, 148, 0.418);
}

@keyframes impacto {
    0% { transform: scale(1); }
    30% { transform: scale(0.9); }
    60% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

button:active {
    animation: impacto 0.3s linear;
}


.nome {
    background: linear-gradient(90deg,rgba(83, 0, 155, 1) 0%, rgba(31, 35, 71, 1) 49%, rgba(25, 22, 41, 1) 100%);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;

    filter: drop-shadow(0 0 5px rgb(112, 3, 207))
            drop-shadow(0 0 5px rgb(112, 3, 207));
}

/* Configurações para Celular (telas até 768px) */
@media (max-width: 768px) {
    .nome {
        font-size: 30px; /* Reduz o tamanho da fonte para não transbordar */
        text-align: center;
    }

    .conteudo {
        width: 90%; /* Deixa o container ocupar quase toda a largura */
        padding: 10px;
    }

    body::before {
        /* Garante que a imagem de fundo não fique esticada ou deformada */
        background-attachment: scroll; 
    }

    .player {
        top: 10px;
        right: 10px;
        left: 10px;
        width: auto;
        max-width: fit-content;
        padding: 10px 15px;
        border-radius: 30px;
        gap: 10px;
    }

    .player-info {
        display: none;
    }

    .buttao {
        width: 35px !important;
        height: 35px !important;
    }
}


.player {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 20px;
    background: rgba(33, 4, 56, 0.185);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid #9e0ffd;
    border-radius: 50px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    box-shadow: 0 0 15px rgba(111, 0, 255, 0.3);
    z-index: 9999;
}

.buttao {
    background: #9e0ffd;
    color: #000;
    box-shadow: 0 0 15px #9e0ffd;
    
    width: 35px !important; 
    height: 35px !important;
    
    padding: 0 !important; 
    border-radius: 50%;
    border: none;
    
    display: flex;
    justify-content: center;
    align-items: center; 
    cursor: pointer;
}

#track-name{
    color: #9e0ffd;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.email {
    position: relative;
    top: 20px;
    z-index: 10;
    color: rgba(255, 255, 255, 0.452);
    font-size: 14px;
}