
        @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Chivo:wght@700;900&display=swap'); 
        
        *, *::before, *::after {
            box-sizing: border-box;
        }

        :root {
            --bg-color: #000000;        /* PRETO - Cor de Fundo */
            --primary-color: #0047AB;   /* AZUL - Base mais escura */
            --secondary-color: #1E90FF; /* AZUL - Cor de apoio */
            --neon-blue: #FFD700;       /* AMARELO - Cor principal de destaque */
            --neon-pink: #1E90FF;       /* AZUL - Cor secundária de destaque */
            --text-color: #ffffff;      /* BRANCO - Cor do texto */
            --neon-red: #FF3131;        /* VERMELHO - Novo toque de cor */
            /* ADICIONE A NOVA VARIÁVEL AQUI */
        }

        body {
            background-color: var(--bg-color);
            background-image: radial-gradient(circle at 50% 50%, rgba(30, 144, 255, 0.05) 0%, rgba(0, 0, 0, 1) 70%);
            background-attachment: fixed;
            color: var(--text-color);
            font-family: 'Roboto Mono', monospace;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            overflow-x: hidden;
            line-height: 1.6;
            scroll-behavior: smooth;
        }

        header {
            background: rgba(0,0,0,0.85);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 100;
            border-bottom: 2px solid var(--neon-blue);
            box-shadow: 0 0 15px var(--neon-blue);
        }


        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 8%; /* Increased padding to move logo away from edge */
            max-width: 1400px;
            margin: auto;
        }

        .logo h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.1rem,1.8vw,1.6rem);
            color: var(--neon-blue);
            margin: 0;
            white-space: nowrap;
            animation: pulseTextGlowYellow 2s infinite alternate;
        }

        @keyframes pulseTextGlowYellow {
            0% { text-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-blue); }
            100% { text-shadow: 0 0 15px var(--neon-blue), 0 0 25px var(--neon-blue), 0 0 35px var(--neon-blue); }
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 20px;
            margin: 0;
            padding: 0;
        }

        nav ul li a {
            text-decoration: none;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.9rem;
            color: white;
            transition: 0.3s;
        }

        nav ul li a:hover {
            color: var(--neon-pink);
            text-shadow: 0 0 8px var(--neon-pink);
        }

        nav ul li::before {
            content: none !important;
        }

        .cta-button {
            background: #1E90FF;
            color: white;
            padding: 8px 16px;
            border-radius: 6px;
            text-decoration: none;
            font-family: 'Orbitron';
            font-size: 0.9rem;
            transition: 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: bold;
        }

        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 0 12px #1E90FF;
        }

        .cta-button.wpp-btn {
            background: #25D366;
            animation: pulseBtnGreen 1.5s infinite alternate;
        }

        @keyframes pulseBtnGreen {
            0% { box-shadow: 0 0 5px #25D366; transform: scale(1); }
            100% { box-shadow: 0 0 20px #25D366, 0 0 30px #25D366; transform: scale(1.05); }
        }

        .cta-button.wpp-btn:hover {
            box-shadow: 0 0 25px #25D366, 0 0 40px #25D366;
            transform: scale(1.1);
            animation-play-state: paused;
        }
        
        .nav-container{
            flex-direction:column;
            gap:10px;
        }

        nav ul{
            flex-wrap:wrap;
            justify-content:center;
        }

        .logo h1{
            font-size:1.1rem;
        }

        .cta-button{
            font-size:0.8rem;
            padding:6px 14px;
        }

    }

        /* 2. Estilo para a Imagem DENTRO do Link (CORRIGINDO O ESTOURO E DISTORÇÃO) */
        .banner-link img {
            /* ESSENCIAL: Garante que a imagem sempre mantenha sua proporção e não estique */
            width: 100%; 
            height: auto; /* Permite que a altura se ajuste à proporção da largura */
            
            /* Esta propriedade é a chave: Garante que a imagem seja totalmente visível, sem corte */
            object-fit: contain; 
            
            /* Limita o tamanho geral para que ela não fique exagerada em monitores gigantes */
            max-height: 400px; 
            
            display: block;
            border-radius: 8px; /* Borda um pouco menor que a do contêiner */
            
            /* Remove qualquer sombra ou borda da imagem, pois o link já tem */
            box-shadow: none;
            border: none;
        }

        /* A animação que você já tem para garantir o brilho */
        @keyframes border-glow {
            0% {
                box-shadow: 0 0 5px var(--neon-blue), 0 0 10px rgba(255, 215, 0, 0.5);
            }
            50% {
                box-shadow: 0 0 20px var(--neon-red), 0 0 30px rgba(255, 49, 49, 0.7);
                border-color: var(--neon-red);
            }
            100% {
                box-shadow: 0 0 5px var(--neon-blue), 0 0 10px rgba(255, 215, 0, 0.5);
            }
        }
        
        /* Estilo para a Área Motivacional */
        .motivacional-area {
            margin: 1rem auto 1rem auto; /* Espaçamento: superior, laterais, inferior */
            padding: 1rem;
            max-width: 80%; 
        }
        
        /* Estilo para a Frase Dinâmica */
        #dynamic-text {
            /* Tamanho e fonte do texto */
            font-size: clamp(1.2rem, 3vw, 2.5rem);
            font-family: 'Orbitron', sans-serif; /* Usando a fonte do código de manutenção */
            min-height: 2.5em; /* Garante que o contêiner não encolha */
            line-height: 1.5;

            /* Cores e Efeito Neon (usando o novo AMARELO) */
            color: var(--neon-blue); 
            text-shadow: 0 0 5px var(--neon-blue), 0 0 10px rgba(255, 215, 0, 0.4);
            
            /* Animação de visibilidade */
            opacity: 0;
            transition: opacity 1s ease-in-out; /* Transição suave para o efeito de troca */
            text-align: center;
        }
        
        .hero-banner {
            max-width: 25%;
            height: auto;
            display: block;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 3rem;
            border-radius: 5px;
            
            /* REMOVEMOS A SOMBRA ESTÁTICA */
            
            /* NOVO: Aplicamos a animação */
            animation: border-glow 3s infinite alternate; 
            border: 2px solid var(--neon-blue); /* Adiciona uma borda física para delimitar */
        }
        
        .hero-content img {
            max-width: 250px;
            height: auto;
            border-radius: 10px;
            animation: pulseHeroLogo 2s infinite alternate;
            margin-bottom: 2rem;
            display: inline-block;
        }

        @keyframes pulseHeroLogo {
            0% { filter: drop-shadow(0 0 10px rgba(30, 144, 255, 0.8)); transform: scale(1); }
            100% { filter: drop-shadow(0 0 20px rgba(30, 144, 255, 0.8)) drop-shadow(0 0 40px rgba(30, 144, 255, 0.5)); transform: scale(1.03); }
        }

        @keyframes border-glow {
            0% {
                box-shadow: 0 0 5px var(--neon-blue), 0 0 10px rgba(255, 215, 0, 0.5);
            }
            50% {
                box-shadow: 0 0 20px var(--neon-red), 0 0 30px rgba(255, 49, 49, 0.7);
                border-color: var(--neon-red);
            }
            100% {
                box-shadow: 0 0 5px var(--neon-blue), 0 0 10px rgba(255, 215, 0, 0.5);
            }
        }

        nav ul li a {
            text-decoration: none;
            color: var(--text-color);
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            transition: color 0.3s, text-shadow 0.3s;
        }

        nav ul li a:hover {
            color: var(--neon-pink);
            text-shadow: 0 0 10px var(--neon-pink);
        }
        
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
            }
            nav ul {
                margin-top: 1rem;
            }
        }
        
        .cta-button {
            padding: 0.75rem 1.5rem;
            background-color: var(--neon-pink);
            color: var(--bg-color);
            text-decoration: none;
            text-transform: uppercase;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            border-radius: 5px;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 0 10px var(--neon-pink);
            display: inline-block;
        }

        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px var(--neon-pink), 0 0 30px var(--neon-pink);
        }

        .form-button {
            padding: 1rem 2rem;
            background-color: var(--neon-pink);
            color: var(--bg-color);
            border: none;
            border-radius: 5px;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .form-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 0, 255, 0.5);
        }

        .hero {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 110vh;
            /* NOVO CÓDIGO AQUI: */
            padding-top: 200px; 
            /* ------------------ */
            text-align: center;
            overflow: hidden;
        }

        .hero-content {
            z-index: 2;
        }

        .hero-title {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(3rem, 8vw, 6rem);
            color: var(--neon-blue);
            text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue);
            animation: neon-flicker 6s infinite alternate;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 3vw, 2.5rem);
            color: var(--neon-pink);
            text-shadow: 0 0 8px var(--neon-pink);
            margin-top: 2rem;
        }

        section {
            padding: 3rem 5%;
            margin-top: 2rem;
            position: relative;
        }
        
        section:not(.hero) {
            background-color: rgba(0, 0, 0, 0.4);
            border: 2px solid var(--secondary-color);
            box-shadow: 0 0 20px var(--neon-blue);
            border-radius: 10px;
            margin-left: 5%;
            margin-right: 5%;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: justify;
        }

        h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            text-transform: uppercase;
            color: var(--neon-blue);
            text-shadow: 0 0 8px var(--neon-blue);
            border-bottom: 2px solid var(--neon-blue);
            display: inline-block;
            padding-bottom: 0.5rem;
            margin-bottom: 3rem;
        }
        
        h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            color: var(--neon-pink);
            text-shadow: 0 0 8px var(--neon-pink);
            margin-top: 2rem;
            margin-bottom: 2rem;
        }

        .text-neon-pink {
            color: var(--neon-pink);
            text-shadow: 0 0 5px var(--neon-pink);
        }

        .text-neon-blue {
            color: var(--neon-blue);
            text-shadow: 0 0 5px var(--neon-blue);
        }

        p, ul {
            font-size: clamp(0.9rem, 2vw, 1.1rem);
            margin-bottom: 1.5rem;
        }

        ul {
            list-style: none;
            padding-left: 0;
        }

        ul li::before {
            content: '>>';
            color: var(--neon-pink);
            font-weight: bold;
            display: inline-block;
            width: 1.5em;
            margin-left: -1.5em;
        }

        .center-text {
            text-align: center;
        }

        .admin-list {
            list-style: none;
            padding: 0;
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .admin-list li {
            text-align: center;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            
            /* NOVOS ESTILOS */
            padding: 1rem;
            border: 1px solid var(--secondary-color); /* Borda fina Azul */
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 71, 171, 0.4); /* Sombra suave azul */
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .admin-list li:hover {
            transform: translateY(-5px); /* Efeito de elevação ao passar o mouse */
            box-shadow: 0 0 15px var(--neon-blue), 0 0 25px rgba(255, 215, 0, 0.5); /* Brilho Amarelo */
        }
        
        .admin-name {
            display: block;
            /* NOVO: Aplica a fonte Chivo */
            font-family: 'Chivo', sans-serif;
            font-size: 1.4rem; 
            font-weight: 900; /* Peso extra para máxima visibilidade */
            color: var(--neon-blue); 
            text-shadow: 0 0 8px var(--neon-blue), 0 0 15px rgba(255, 215, 0, 0.4); 
            margin-bottom: 0.25rem;
        }
        
        /* Estilo do Botão TOPO */
        #scrollToTopBtn {
            display: none; /* Esconde o botão por padrão */
            position: fixed; 
            bottom: 30px; 
            right: 30px;
            z-index: 99; /* Garante que fique acima de tudo */
            
            /* Visual Neon */
            background-color: var(--bg-color); 
            color: var(--neon-blue); /* Cor do ícone em Amarelo */
            border: 2px solid var(--neon-blue);
            border-radius: 50%; /* Torna o botão redondo */
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
            cursor: pointer;
            
            /* Efeito Hover e Sombra */
            box-shadow: 0 0 10px var(--neon-blue);
            transition: all 0.3s ease;
        }

        #scrollToTopBtn:hover {
            background-color: var(--neon-blue);
            color: var(--bg-color); /* Fica Preto no hover */
            box-shadow: 0 0 20px var(--neon-blue);
        }
        
        /* Garante que o ícone do WhatsApp seja verde */
        .cta-button .fa-whatsapp {
            color: #25D366; 
            /* Adiciona um brilho sutil no verde */
            text-shadow: 0 0 5px #25D366, 0 0 10px rgba(37, 211, 102, 0.5); 
            transition: all 0.3s ease;
        }

        /* Efeito Hover: O ícone pulsa para o preto no hover (se o fundo do botão ficar amarelo) */
        .cta-button:hover .fa-whatsapp {
            color: var(--bg-color); /* Volta para a cor do fundo (preto) no hover */
            text-shadow: none;
        }

        .admin-title {
            display: block;
            /* NOVO: Aplica a fonte Chivo */
            font-family: 'Chivo', sans-serif;
            font-size: 1rem; 
            font-weight: 700;
            color: var(--neon-pink); 
            text-shadow: 0 0 3px var(--neon-pink); 
            opacity: 1; 
        }
        
        .admin-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        form {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        /* 2.1 Contêiner de Links */
        .social-links {
            display: flex; /* Coloca os links lado a lado */
            justify-content: center; /* Centraliza o bloco na página */
            gap: 15px; /* Espaço entre os ícones */
            margin: 2rem 0; /* Espaço acima e abaixo */
        }
        
        /* 2.2 Estilo das Caixas Individuais */
        .social-box {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            font-size: 24px;
            
            /* Visual da Caixa */
            background-color: var(--bg-color); /* Fundo Preto */
            border: 2px solid var(--neon-blue); /* Borda em Amarelo Neon */
            border-radius: 8px; /* Cantos arredondados */
            color: var(--neon-blue); /* Cor padrão do ícone: Amarelo Neon */
            text-decoration: none;
            
            /* Animação e Sombra */
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); /* Brilho Amarelo */
            transition: all 0.3s ease;
        }

        /* 2.3 Efeito Hover (Brilho e Contraste) */
        .social-box:hover {
            transform: scale(1.1); /* Ícone cresce um pouco */
            border-color: var(--neon-pink); /* Borda muda para o Azul */
            box-shadow: 0 0 15px var(--neon-pink), 0 0 25px var(--neon-pink); /* Brilho Azul */
        }
        
        /* 3.1 Cores específicas das Marcas */

        /* Twitch (Roxo) */
        .social-box .fa-twitch { color: #9146FF; }
        /* YouTube (Vermelho) */
        .social-box .fa-youtube { color: #FF0000; }
        /* Instagram (Rosa-Roxo) */
        .social-box .fa-instagram { color: #C13584; }
        
        /* NOVO: TikTok (Efeito Neon no Preto) */
        .social-box .fa-tiktok { 
            color: #FFFFFF; 
            text-shadow: 2px 2px 0 #FF0050, -2px -2px 0 #00F2EA; /* Simula a sombra colorida do logo */
        }
        
        /* Kick (Verde Limão) */
        .social-box .fa-kickstarter-k { color: #00FF33; }
        
        /* Ajuste do Brilho no Hover */
        .social-box:hover i {
            color: var(--neon-blue); 
            text-shadow: 0 0 5px var(--neon-blue);
        }

        .application-form {
            background: #111418;
            padding: 2.5rem;
            border-radius: 15px;
            border: 1px solid var(--secondary-color);
            box-shadow: 0 0 15px rgba(30, 144, 255, 0.2);
            margin: 2rem auto;
            max-width: 500px;
            width: 90%;
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .form-group {
            width: 100%;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.95rem;
            color: var(--neon-blue);
        }

        .form-group input, .form-group textarea {
            width: 100%;
            padding: 12px;
            background: #0a0c10;
            border: 1px solid var(--secondary-color);
            color: white;
            font-family: 'Roboto Mono', monospace;
            border-radius: 8px;
            transition: box-shadow 0.3s, border-color 0.3s;
        }

        .form-group input:focus, .form-group textarea:focus {
            outline: none;
            box-shadow: 0 0 10px var(--secondary-color);
            border-color: var(--neon-blue);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-submit-btn {
            width: 100%;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            text-align: center;
            justify-content: center;
            padding: 15px;
            border-radius: 8px;
            margin-top: 0.5rem;
        }

        .contact-info {
            margin-top: 3rem;
        }
        
        #nossa-equipe .container {
            text-align: center;
        }

        .twitch-team-banner {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            background: linear-gradient(90deg, #9146FF, #E1306C);
            color: white;
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            font-weight: bold;
            text-decoration: none;
            padding: 20px 40px;
            border-radius: 50px;
            margin-bottom: 40px;
            box-shadow: 0 0 20px rgba(145, 70, 255, 0.6);
            transition: transform 0.3s, box-shadow 0.3s;
            animation: pulseTwitchTeam 2s infinite alternate;
        }

        .twitch-team-banner:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(145, 70, 255, 0.9), 0 0 30px rgba(225, 48, 108, 0.9);
            animation-play-state: paused;
        }

        @keyframes pulseTwitchTeam {
            0% { box-shadow: 0 0 10px rgba(145, 70, 255, 0.5); }
            100% { box-shadow: 0 0 25px rgba(145, 70, 255, 0.8), 0 0 15px rgba(225, 48, 108, 0.6); transform: scale(1.02); }
        }

        .streamer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            margin-bottom: 50px;
        }
        
        .card {
            background: #161b22;
            border-radius: 20px;
            overflow: hidden;
            width: 300px;
            border: 1px solid #00FFFF;
            box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
            transition: all 0.15s ease;
            position: relative;
            text-align: center;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 25px rgba(0, 255, 255, 0.8), inset 0 0 15px rgba(0, 255, 255, 0.3);
            border-color: #00FFFF;
        }

        .card-header {
            padding: 30px 20px 10px 20px;
            background: transparent;
            position: relative;
        }

        .profile-img-container {
            position: relative;
            display: inline-block;
            cursor: pointer;
            margin-bottom: 15px;
        }

        .profile-gradient-ring {
            background: linear-gradient(45deg, #00F2FE, #FF0844);
            border-radius: 50%;
            padding: 4px; /* Thickness of the gradient border */
            display: inline-block;
        }

        .profile-img {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            border: 4px solid #161b22; /* Gap color matching background */
            object-fit: cover;
            display: block;
            transition: all 0.3s ease;
        }

        .profile-img-container:hover .profile-img {
            transform: scale(1.05);
        }

        .channel-name {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: #00FFFF;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-shadow: none;
        }
        
        .channel-name:hover {
            text-decoration: underline;
        }

        .verified-badge {
            color: #9146FF;
            font-size: 1.2rem;
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .verified-badge::after {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            color: #ffffff;
            font-size: 0.65rem;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -45%); /* Pequeno ajuste no Y para centralizar melhor no certificate */
        }

        .card-body {
            padding: 0 20px 30px 20px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 5px;
            margin-bottom: 20px;
        }
        
        .social-link {
            font-size: 22px; 
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            border: 2px solid #00FFFF;
            box-shadow: 0 0 10px #00FFFF, inset 0 0 5px #00FFFF;
            background: #111;
            transition: transform 0.3s, box-shadow 0.3s;
            text-decoration: none;
        }

        .social-twitch { color: #9146FF; }
        .social-youtube { color: #FF0000; }
        .social-instagram { color: #E1306C; }
        .social-tiktok { color: #00F2FE; }
        .social-kick { color: #00FF33; }

        .social-link:hover {
            transform: scale(1.2);
        }
        
        .bio-text {
            color: #b0b3b8;
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .show-more {
            color: #00FFFF;
            font-size: 0.95rem;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
        }

        .show-more:hover {
            color: #ffffff;
        }
        
        /* Estilo do Contador de Streamers */
        .streamers-counter {
            text-align: center;
            margin: 2rem auto 3rem auto; /* Centraliza e adiciona margem */
            padding: 1.5rem;
            max-width: 700px; /* Limita a largura para parecer uma caixa de mensagem */
            
            /* Visual da Caixa Neon */
            background: rgba(10, 10, 10, 0.9); /* Fundo escuro */
            border: 2px solid var(--neon-blue); /* Borda Neon Amarela */
            border-radius: 10px;
            box-shadow: 0 0 15px var(--neon-blue); /* Sombra Neon Amarela */
            
            /* Estilo do Texto */
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.2rem, 3vw, 2.5rem); 
            color: var(--text-color); /* Texto branco */
            font-weight: 900;
        }

        /* Destaque para o Número (o que faz a contagem brilhar) */
        .streamers-counter span {
            color: var(--neon-pink); 
            font-size: clamp(1.8rem, 4vw, 3rem); 
            display: inline-block;
            margin: 0 10px;
            
            /* Efeito Neon Forte */
            text-shadow: 0 0 10px var(--neon-pink), 0 0 20px rgba(30, 144, 255, 0.6);
            /* NOVO: Aplicamos a animação de Flash/Raio */
            animation: neon-flash 4s infinite; 
        }
        
        /* Animação para o efeito de Raio/Flash */
        @keyframes neon-flash {
            0% {
                /* Começo: Brilho sutil */
                text-shadow: 0 0 10px var(--neon-pink), 0 0 20px rgba(30, 144, 255, 0.6);
                opacity: 1;
            }
            50% {
                /* Antes do Flash: Brilho sutil (Mantém a calma) */
                text-shadow: 0 0 10px var(--neon-pink), 0 0 20px rgba(30, 144, 255, 0.6);
                opacity: 1;
            }
            50.1% {
                /* O CLARÃO (DURAÇÃO MÍNIMA): Brilho máximo + cor branca para simular a luz pura */
                text-shadow: 0 0 40px #FFFFFF, 0 0 60px var(--neon-pink);
                opacity: 0.8;
            }
            55% {
                /* Fim do Clarão: Volta o brilho normal */
                text-shadow: 0 0 10px var(--neon-pink), 0 0 20px rgba(30, 144, 255, 0.6);
                opacity: 1;
            }
            100% {
                /* Fim do Ciclo: Brilho sutil */
                text-shadow: 0 0 10px var(--neon-pink), 0 0 20px rgba(30, 144, 255, 0.6);
                opacity: 1;
            }
        }
        
        /* Animação para o efeito de Pulsação (foco no Pink/Azul) */
        @keyframes pulse-pink {
            from {
                text-shadow: 0 0 10px var(--neon-pink), 0 0 20px rgba(30, 144, 255, 0.6);
            }
            to {
                text-shadow: 0 0 15px var(--neon-pink), 0 0 30px rgba(30, 144, 255, 0.8);
            }
        }
        
        /* CORES DE MARCA PARA OS ÍCONES NOS CARDS DOS STREAMERS */
        /* Seleciona o ícone FAB DENTRO da classe social-link */

        /* Twitch (Roxo) */
        .social-link .fa-twitch { 
            color: #9146FF; 
            text-shadow: 0 0 5px #9146FF; 
        }

        /* YouTube (Vermelho) */
        .social-link .fa-youtube { 
            color: #FF0000; 
            text-shadow: 0 0 5px #FF0000; 
        }

        /* Instagram (Pink/Roxo) */
        .social-link .fa-instagram { 
            color: #C13584; 
            text-shadow: 0 0 5px #C13584; 
        }
        
        /* TikTok (Efeito Neon no Preto) */
        .social-link .fa-tiktok { 
            color: #FFFFFF; 
            text-shadow: 2px 2px 0 #FF0050, -2px -2px 0 #00F2EA; /* Simula a sombra colorida do logo */
        }
        
        /* Kick (Verde Limão) */
        .social-link .fa-kickstarter-k { 
            color: #00FF33; 
            text-shadow: 0 0 5px #00FF33; 
        }
        
        /* Garante que o hover retorne à cor Neon Pink/Azul */
        .social-link:hover i {
            color: var(--neon-pink) !important; 
            text-shadow: 0 0 10px var(--neon-pink) !important;
        }

        @keyframes neon-flicker {
            0%, 18%, 22%, 25%, 53%, 57%, 70% {
                /* AQUI O BRILHO FICA MAIS SUAVE */
                text-shadow: 0 0 5px var(--neon-blue), 0 0 15px var(--neon-pink), 0 0 25px var(--neon-pink);
            }
            20%, 24%, 44% {
                text-shadow: none;
            }
        }

        @keyframes pulse {
            0% { opacity: 1; }
            30% { opacity: 0.7; }
            75% { opacity: 1; }
        }

        /* Scroll Reveal Animations */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .menu-toggle {
            display: none;
            color: var(--neon-blue);
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 1001;
            transition: color 0.3s;
        }
        
        .menu-toggle:hover {
            color: var(--neon-pink);
        }

        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        /* ==========================================
           OTIMIZAÇÕES PARA MOBILE (RESPONSIVIDADE)
           ========================================== */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                padding: 15px 5%;
            }

            .logo h1 {
                font-size: 1.2rem;
                text-align: left;
            }

            .menu-toggle {
                display: block;
            }

            .nav-wrapper {
                position: fixed;
                top: 0;
                right: -100%;
                width: 75%;
                height: 100vh;
                background: rgba(10, 10, 10, 0.98);
                backdrop-filter: blur(15px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.4s ease-in-out;
                z-index: 1000;
                border-left: 2px solid var(--neon-blue);
                box-shadow: -5px 0 20px rgba(30, 144, 255, 0.3);
            }

            .nav-wrapper.active {
                right: 0;
            }

            nav ul {
                flex-direction: column;
                align-items: center;
                gap: 30px;
            }

            nav ul li a {
                font-size: 1.2rem;
            }

            .header-btn {
                margin-top: 30px;
                width: 100%;
            }

            .cta-button {
                display: flex;
                padding: 12px 25px;
                font-size: 1rem;
                width: 100%;
                text-align: center;
                justify-content: center;
                margin: 0 auto;
                box-sizing: border-box;
            }

            .hero {
                padding-top: 130px;
                height: auto;
                min-height: 80vh;
            }

            .hero-title {
                font-size: clamp(2rem, 8vw, 3rem);
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }

            section {
                padding: 3rem 5%;
                margin-left: 0;
                margin-right: 0;
            }

            .application-form {
                padding: 1.5rem;
                width: 100%;
                box-sizing: border-box;
            }

            .admin-list {
                flex-direction: column;
                align-items: center;
            }

            .admin-list li {
                width: 100%;
                max-width: 100%;
            }

            .grid-container {
                grid-template-columns: 1fr;
            }

            .card {
                width: 100%;
                max-width: 100%;
            }

            .streamers-counter {
                padding: 1rem;
                font-size: 1rem;
            }

            .social-links {
                flex-wrap: wrap;
                justify-content: center;
            }
        }
    </style>