:root {
    --cor-fundo: #050505;
    --cor-fundo-card: #111111;
    --cor-prata: #C0C0C0;
    --cor-prata-brilho: #E8E8E8;
    --cor-vermelho: #8B0000;
    --cor-vermelho-vivo: #dc143c;
    --gradiente-prata: linear-gradient(135deg, #8e8e8e 0%, #ffffff 50%, #8e8e8e 100%);
    --gradiente-vermelho: linear-gradient(to right, #600000, #8B0000);
}

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

body {
    background-color: var(--cor-fundo);
    color: var(--cor-prata);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Tipografia */
h1, h2, h3 {
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Estrutura Principal */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Efeito de Fundo (Spotlights) */
.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle at 50% 10%, rgba(139, 0, 0, 0.15), transparent 60%);
}

/* Header / Logo */
header {
    text-align: center;
    padding: 40px 0;
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
    margin-bottom: 30px;
}

.logo-img {
    max-width: 85%; /* Garante que não estoure em telas pequenas */
    width: 350px; /* Largura ideal para logo horizontal */
    height: auto;
    display: inline-block;
    transition: transform 0.3s ease;
    /* Filtro opcional para garantir destaque no fundo preto se a logo for escura, ajuste conforme necessário */
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5)); 
}

.logo-img:hover {
    transform: scale(1.02);
}

/* Área do Vídeo */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8), 0 0 20px rgba(139, 0, 0, 0.3);
    border: 1px solid #333;
    margin-bottom: 40px;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Seção de Texto (Bio) */
.bio-section {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 10px;
}

.bio-title {
    color: var(--cor-prata-brilho);
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.bio-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--cor-vermelho);
    margin: 10px auto 0;
}

.bio-text {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.bio-quote {
    font-style: italic;
    color: var(--cor-vermelho-vivo);
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    margin-top: 20px;
}

/* Links e Botões */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    text-decoration: none;
    color: white;
    border-radius: 50px; /* Pill shape */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Estilos específicos dos botões */
.btn-spotify {
    background: linear-gradient(145deg, #1DB954, #15883e);
    box-shadow: 0 4px 15px rgba(29, 185, 84, 0.2);
}

.btn-deezer {
    background: linear-gradient(145deg, #FEAA2D, #d68f26); /* Tom ajustado */
    color: #000;
    box-shadow: 0 4px 15px rgba(254, 170, 45, 0.2);
}

.btn-apple {
    background: linear-gradient(145deg, #333, #000);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Redes Sociais Footer */
footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(192, 192, 192, 0.1);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
}

.social-link {
    color: var(--cor-prata);
    font-size: 1.8rem;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--cor-vermelho-vivo);
    text-shadow: 0 0 10px var(--cor-vermelho);
}

.footer-copy {
    font-size: 0.8rem;
    color: #555;
}

/* Divisor Decorativo */
.divider {
    height: 1px;
    background: radial-gradient(circle, var(--cor-vermelho) 0%, transparent 100%);
    margin: 40px 0;
    opacity: 0.5;
}

/* Media Queries para Responsividade */
@media (min-width: 768px) {
    .logo-text { font-size: 2.5rem; }
    .bio-section { padding: 0 40px; }
    .links-section {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .btn { width: 45%; }
}