:root {
    --primary-red: #b30000;
    --primary-gold: #ffd700;
    --bg-color: #050505;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.1);
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
}

body {
    background-color: var(--bg-color);
    /* Fundo com um toque sutil de gradiente para modernidade */
    background-image: radial-gradient(circle at 50% 0%, #1a0505 0%, #050505 60%);
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    /* Barra superior vermelha conforme referência */
    border-top: 5px solid var(--primary-red);
}

.top-header {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0 10px 0;
    animation: fadeIn 0.8s ease-out;
}

.header-logo {
    max-width: 280px; /* Um pouco maior para destaque */
    height: auto;
    filter: drop-shadow(0 0 15px rgba(179, 0, 0, 0.5)); /* Glow vermelho mais intenso */
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4)); /* Glow dourado no hover */
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 10px 20px 60px 20px; /* Padding reduzido no topo */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    animation: fadeIn 0.8s ease-out;
}

/* Profile Section */
.profile {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* .profile-img removido pois usamos o header agora */

.username {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.bio {
    font-size: 15px;
    color: var(--text-muted);
    margin-top: 12px;
    max-width: 480px;
    line-height: 1.6;
    font-weight: 400;
}

/* Links Section */
.links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 18px 24px;
    
    /* Modern Glassmorphism style */
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    
    color: var(--text-color);
    text-decoration: none;
    border-radius: 16px; /* Mais moderno que o pill shape total */
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* Efeito de hover moderno */
.link-btn:hover {
    background: rgba(179, 0, 0, 0.15); /* Tint vermelho suave */
    border-color: var(--primary-red);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(179, 0, 0, 0.3); /* Sombra vermelha */
}

.link-btn:active {
    transform: translateY(-1px);
}

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

/* Social Icons */
.socials {
    display: flex;
    gap: 24px;
    margin-top: 10px;
}

.social-icon {
    color: var(--text-muted);
    font-size: 26px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid transparent;
}

.social-icon:hover {
    transform: translateY(-3px) rotate(8deg);
    color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
    margin-top: auto;
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    width: 24px;
    opacity: 0.5;
    filter: invert(1);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .container {
        padding: 40px 16px;
    }
    
    .header-logo {
        max-width: 220px;
    }
    
    .username {
        font-size: 20px;
    }
}
