/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: Arial, sans-serif;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100dvh; /* mais moderno que 100vh */
    padding: 20px;
    text-align: center;
}

/* VÍDEO DE FUNDO */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Camada escura sobre o vídeo */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

/* CONTAINER */
.container {
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
    padding: 30px;
    border-radius: 20px;
    width: 100%;
    max-width: 380px;
    border: 1px solid rgba(255, 255, 255, 0);
    animation: aparecer 1.5s ease forwards;
}

/* FOTO */
.minha-foto {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 15px 0;
    border: 3px solid #fefefe;
}

/* NOME */
h1 {
    font-size: 30px;
    margin-bottom: 8px;
    background: linear-gradient(90deg, #e0dddd, #8d0294, #e5e4e4);
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: nomeAnimado 4s linear infinite;
}

/* LINKS */
.redes a {
    display: block;
    margin: 12px 0;
    padding: 12px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: 0.3s;
    font-size: 15px;
}

/* CORES */
.telegram { background: #0b6cad; color: white; }
.instagram { background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af); color: white; }
.twitch { background: #9146FF; color: white; }
.youtube { background: rgb(254, 14, 14); color: white; }
.whatsapp { background: #25D366; color: rgb(254, 254, 254); }
.tiktok { background: linear-gradient(45deg, #21eef5, #ffffff, #eb2466);  color:rgb(9, 9, 9); }

.redes a:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* BOTÃO MÚSICA */
.botao-musica {
    position: fixed;
    bottom: 11px;
    right: 84px; /* AGORA VISÍVEL */
    padding: 10px 18px;
    border-radius: 10px;
    border: 1px solid rgb(102, 2, 109);
    background: rgb(102, 2, 109);
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 999;
}

.botao-musica:hover {
    transform: translateY(-3px);
}

/* VISUALIZAÇÕES */
.views {
    margin-top: 15px;
    font-size: 14px;
}

/* ANIMAÇÕES */
@keyframes aparecer {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes nomeAnimado {
    0% { background-position: 0%; }
    100% { background-position: 300%; }
}

/* RESPONSIVO EXTRA */
@media (max-width: 480px) {

    .container {
        padding: 20px;
    }

    h1 {
        font-size: 22px;
    }

    .minha-foto {
        width: 120px;
        height: 120px;
    }

    .redes a {
        font-size: 14px;
        padding: 10px;
    }
}
@media (max-width: 768px) {

    body {
        align-items: flex-start;
        padding-top: 60px;
    }

    .botao-musica {
        right: 75px;
        bottom: 5px;
    }
}

.botao-musica {
    width: 200px;        /* ajuste como quiser */
    text-align: center;
}
