:root {
    --primary: #00ff88; /* Verde Neon da sua marca */
    --bg-dark: #050505;
    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-sec: #aaaaaa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

/* --- FUNDO CINEMÁTICO --- */
.bg-video {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    
    /* Garante que ambos os vídeos cubram a tela sem bordas */
    object-fit: cover; 
    
    z-index: -2;
    filter: brightness(0.8) contrast(1.1);
}

/* Ajuste fino no Noise para ficar bom sobre vídeo */
.noise-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.05; /* Reduzi um pouco para não sujar demais o vídeo */
    z-index: -1;
    pointer-events: none;
}

/* Efeito de grão de filme (Noise) */
.noise-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.07;
    z-index: -1;
    pointer-events: none;
}

/* --- CONTAINER PRINCIPAL --- */
.container {
    width: 100%;
    max-width: 500px;
    padding: 40px 20px;
    text-align: center;
    z-index: 1;
}

/* --- AUTORIDADE E PERFIL --- */
.avatar-container {
    position: relative; /* Necessário para o selo verificado */
    display: inline-block;
}

.avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
}

.avatar:hover {
    transform: scale(1.05) rotate(5deg);
    border-color: var(--primary);
}

h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.bio {
   font-size: 16px; /* Aumentei um pouco (era 14px) */
    color: #ffffff;  /* Mudei para Branco Puro (era cinza) */
    margin-bottom: 40px;
    font-weight: 600; /* Deixei mais gordinho (era 300) */
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9); /* O segredo: Sombra preta forte atrás */
    letter-spacing: 1px; /* Espaçamento para ficar elegante */
}

/* --- LINKS (CARDS) --- */
.links-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card-link {
    text-decoration: none;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: 16px;
    backdrop-filter: blur(10px); /* Efeito de vidro fosco */
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    color: white;
}

/* Conteúdo do Card */
.card-content {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.text-group {
    flex: 1;
    text-align: left;
}

.text-group h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.text-group p {
    font-size: 12px;
    color: var(--text-sec);
    line-height: 1.3;
}

.icon {
    font-size: 24px;
    color: #fff;
    transition: 0.3s;
}

.arrow {
    opacity: 0.5;
    transition: 0.3s;
}

/* Efeitos de Hover (Onde a mágica acontece) */
.card-link:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px -10px rgba(0, 255, 136, 0.2);
}

.card-link:hover .icon {
    color: var(--primary);
    transform: scale(1.1);
}

.card-link:hover .arrow {
    opacity: 1;
    color: var(--primary);
    transform: translateX(5px);
}

/* Brilho ao passar o mouse */
.card-link::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: 0.5s;
    z-index: 1;
}

.card-link:hover::before {
    left: 100%;
}

/* --- RODAPÉ --- */
.socials {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.socials a {
    color: var(--text-sec);
    font-size: 24px;
    transition: 0.3s;
}

.socials a:hover {
    color: var(--primary);
    transform: scale(1.2);
}

/* O Selo Azul de Verificado */
.verified-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #1DA1F2; /* Azul verificado padrão (ou use seu verde --primary) */
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border: 3px solid var(--bg-dark); /* Cria uma borda preta ao redor */
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 12px; /* Aumentei um pouco o espaço entre eles */
    
    /* MUDANÇA 1: Cor Branca em vez de cinza */
    color: #ffffff; 
    
    font-size: 15px; /* Aumentei 1px para ler melhor */
    margin-top: -5px;
    margin-bottom: 15px;
    font-weight: 600; /* Mais gordinho */
    
    /* MUDANÇA 2: A Sombra Mágica (Fundo preto atrás das letras) */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
    
    /* Opcional: Um fundo preto bem suave atrás só dos números */
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    width: fit-content; /* Ajusta a largura ao conteúdo */
    margin-left: auto;  /* Centraliza o bloco */
    margin-right: auto; /* Centraliza o bloco */
}

.stats-row i {
    color: var(--text-main);
    margin-right: 4px;
}

/* --- TAGS NOS BOTÕES (Best Seller / Viral) --- */
.tag-hot, .tag-new {
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
    margin-left: 8px;
    vertical-align: middle;
    letter-spacing: 0.5px;
}

.tag-hot {
    background: #FFD700; /* Dourado */
    color: #000;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.tag-new {
    background: var(--primary); /* Verde Neon */
    color: #000;
}

/* --- DESTAQUE PARA O PRODUTO PRINCIPAL (Mega Pack) --- */
.highlight-border {
    border: 1px solid var(--primary); /* Borda Verde */
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.15); /* Brilho sutil */
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 10px rgba(0, 255, 136, 0.1); }
    to { box-shadow: 0 0 20px rgba(0, 255, 136, 0.3); }
}

/* --- LINK BLOQUEADO (Discord) --- */
.locked-link {
    opacity: 0.7;
    cursor: not-allowed;
    filter: grayscale(1); /* Deixa cinza */
}

/* Ícones laterais nos botões */
.icon-box {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
}