/* Variáveis de Cores (Azul Claro 'Sky', Branco e Contraste) */
:root {
    --color-primary: #3498db;       /* Azul Principal Claro (Sky/Céu - Mais Brilhante) */
    --color-secondary: #2980b9;     /* Azul Escuro (Header/Footer - Mantém o contraste) */
    --color-background-dark: #263238; /* Cinza Escuro (Antiga CTA) */
    --color-background-light: #f0f7ff; /* Fundo principal muito claro (Quase Branco-Sky) */
    --color-card-bg: #ffffff;       /* Fundo de cards/elementos */
    --color-text-dark: #263238;      /* Texto escuro */
    --color-text-dim: #607d8b;       /* Texto menos destacado (Cinza azulado) */
    --color-discord: #5865f2;       /* Cor Discord */
    --color-white: #ffffff;
}

/* Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--color-background-light);
    color: var(--color-text-dark);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 1.5em;
    color: var(--color-secondary);
}

/* ------------------
    Botões
   ------------------ */
.btn-primary, .btn-secondary, .btn-discord-action, .btn-step-action {
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    margin: 10px;
    border-radius: 50px; 
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.btn-primary, .btn-step-action {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover, .btn-step-action:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background-color: transparent;
    box-shadow: none;
}
.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-discord-action {
    background-color: var(--color-discord);
    color: var(--color-white) !important;
}

.btn-discord-action:hover {
    background-color: #4c5bb8;
    transform: scale(1.05);
}

.btn-wl {
    background-color: var(--color-primary);
    color: var(--color-white) !important;
    padding: 8px 15px;
    border-radius: 4px;
    margin-left: 25px;
    text-decoration: none;
}
.btn-wl:hover {
    background-color: var(--color-secondary);
}


/* ------------------
    Header (A Barra Azul)
   ------------------ */
.header {
    background-color: var(--color-secondary);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px; 
    filter: brightness(0) invert(1);
}

.nav {
    display: flex;
}

.nav a {
    color: var(--color-white);
    margin-left: 25px;
    padding: 5px 0;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    text-transform: uppercase;
    transition: all 0.3s;
    text-decoration: none;
}
.nav a:hover:not(.btn-wl) {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

/* ------------------
    Menu Mobile (Botão - Novo Método)
   ------------------ */
.menu-icon {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5em;
    cursor: pointer;
    padding: 5px;
}


/* ------------------
    Hero Section
   ------------------ */
.hero {
    position: relative;
    height: 85vh; 
    background: linear-gradient(to bottom, var(--color-card-bg), var(--color-background-light)); 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    border-bottom: 5px solid var(--color-primary); 
    padding-top: 50px;
}

.hero-image-overlay {
    display: none; 
}

.hero-content {
    transform: translateY(20px); 
}

.hero-logo-word {
    max-width: 700px; 
    width: 90%;
    height: auto;
    margin-bottom: 25px; 
    
    /* Qualidade melhorada */
    image-rendering: -webkit-optimize-contrast; 
    /* image-rendering: crisp-edges; foi removido/comentado */
    /* filter: none; foi removido/comentado */
}

.subtitle {
    font-size: 1.5em;
    color: var(--color-text-dark);
    text-shadow: none;
    margin-bottom: 30px;
}

.hero-status {
    color: var(--color-secondary);
    font-weight: 600;
    margin-top: 20px;
    text-shadow: none;
    font-size: 1.1em;
}


/* ------------------
    Seção Trailer
   ------------------ */
.trailer {
    background-color: var(--color-card-bg);
    padding-top: 50px;
    padding-bottom: 50px;
}

.video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    aspect-ratio: 16 / 9; 
}

.trailer-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.trailer-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
    transition: 0.3s;
}

.trailer-placeholder:hover .trailer-thumbnail {
    transform: scale(1.03); 
    opacity: 0.8;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5em;
    color: var(--color-white);
    opacity: 0.9;
    transition: 0.3s;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
    z-index: 5;
}
.trailer-placeholder:hover .play-icon {
    color: var(--color-primary);
    transform: translate(-50%, -50%) scale(1.1);
}


/* ------------------
    Seção Sobre/Cards
   ------------------ */
.about {
    background-color: var(--color-background-light);
    padding-top: 50px;
    padding-bottom: 80px;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.card {
    background-color: var(--color-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--color-primary); 
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}
.card h3 {
    margin-top: 15px;
    font-size: 1.3em;
    color: var(--color-secondary);
}
.card p {
    color: var(--color-text-dim);
}
.icon-feature {
    font-size: 3em;
    color: var(--color-primary);
}

/* Novo CTA após os cards */
.about-cta {
    margin-top: 60px;
    padding: 30px;
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-primary);
    border-radius: 10px;
    max-width: 800px;
    margin: 60px auto 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.about-cta p {
    font-size: 1.2em;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--color-text-dark);
}

/* ------------------
    Seção Como Jogar (Download)
   ------------------ */
.download {
    background-color: var(--color-card-bg);
    padding-top: 50px;
    padding-bottom: 50px;
}

.download-steps {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-top: 50px;
}

.step {
    flex: 1;
    max-width: 350px;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    background-color: var(--color-background-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.step i {
    font-size: 3.5em;
    color: var(--color-primary);
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 50%;
    background-color: var(--color-white);
}

.ip-info {
    display: none;
}
.step .btn-step-action {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
}


/* ------------------
    Rodapé (Footer Limpo)
   ------------------ */
/* Seção Discord (Removida) */
.discord { 
    display: none;
}

.footer {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 40px 0 20px 0; /* Mais padding no topo para o contato */
    text-align: center;
}

.contact-links {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 20px;
}

.contact-links h3 {
    margin-bottom: 15px;
    font-size: 1.5em;
}

.social-icons a {
    color: var(--color-white);
    font-size: 1.8em;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--color-primary);
}

.copyright {
    margin-top: 20px;
    font-size: 0.9em;
    color: #ccc;
}


/* ------------------
    Animações
   ------------------ */
.bounce {
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-8px);}
    60% {transform: translateY(-4px);}
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ------------------
    ADAPTAÇÃO MOBILE
   ------------------ */
@media (max-width: 900px) {
    
    .logo {
        height: 35px; 
    }
    
    .menu-icon {
        display: block;
        margin-right: 0;
    }

    .nav {
        position: absolute;
        top: 60px; 
        left: 0;
        width: 100%;
        background-color: var(--color-secondary);
        flex-direction: column;
        display: none; 
        box-shadow: 0 4px 5px rgba(0, 0, 0, 0.3);
    }
    
    .nav.open {
        display: flex; 
    }

    .nav a {
        margin: 0;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: left;
        color: var(--color-white);
    }
    
    .btn-wl {
        margin: 15px 20px;
        padding: 10px 15px;
        align-self: flex-start;
    }
    
    .hero {
        height: 75vh;
        padding-top: 30px;
    }
    
    .hero-logo-word {
        max-width: 90%;
        margin-bottom: 15px;
    }
    
    .subtitle {
        font-size: 1.2em;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 90%;
        margin: 5px auto;
        justify-content: center;
    }
    
    .grid-container {
        grid-template-columns: 1fr;
    }

    .download-steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .step {
        width: 100%;
        max-width: none;
    }

    .social-icons a {
        font-size: 1.5em; /* Ícones menores no mobile */
    }
}
/* ------------------
    PÁGINA WHITELIST (WL)
   ------------------ */
.whitelist-page {
    padding-top: 50px;
    padding-bottom: 80px;
    background-color: var(--color-background-light);
}

.wl-form {
    background-color: var(--color-card-bg);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 850px;
    margin: 40px auto;
    border-top: 5px solid var(--color-primary);
}

.wl-form h3 {
    color: var(--color-secondary);
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text-dark);
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5); /* Sombra suave de foco */
    outline: none;
}

.form-group input[readonly] {
    background-color: #f7f7f7;
    cursor: not-allowed;
    color: #666;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.alert-warning {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 30px;
    font-weight: 500;
}
/* ... (Mantenha todo o seu CSS anterior) ... */

/* ------------------
    PÁGINA WHITELIST (WL) - CSS ADICIONAL
   ------------------ */

/* Nova regra para as linhas divisórias */
.form-hr {
    margin-bottom: 20px; 
    border-color: #eee; 
    border-top: 1px solid #eee;
}

/* Estilização do Quiz */
.quiz-question {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    border-left: 5px solid var(--color-primary);
    margin-bottom: 20px;
}

.quiz-question label {
    font-weight: 500; /* Pergunta em si */
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

.quiz-options label {
    display: block;
    font-weight: normal; /* Opções em texto normal */
    color: var(--color-text-dim);
    margin-top: 5px;
}

.quiz-options input[type="radio"] {
    margin-right: 8px;
}
/* ... (Mantenha o restante do seu CSS, incluindo a seção @media para mobile) ... */
/* Ajustes Mobile para o formulário */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .wl-form {
        padding: 20px;
        margin: 20px auto;
    }
}