/* Variáveis CSS para cores e fontes */
:root {
    --primary-color: #d4ff00; /* Amarelo/Verde Lima neon */
    --bg-dark: #0a0a0a;
    --card-bg: #121212;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --border-color: #333;
    --gradient-purple: linear-gradient(135deg, #8a2be2, #4b0082); /* Roxo */
    --gradient-blue: linear-gradient(135deg, #007bff, #0056b3); /* Azul */
    --gradient-yellow: linear-gradient(135deg, #ffc107, #e0a800); /* Amarelo */
    --gradient-orange: linear-gradient(135deg, #fd7e14, #cc6100); /* Laranja */
    --gradient-pink: linear-gradient(135deg, #e83e8c, #ad1457); /* Rosa */
    --gradient-lightblue: linear-gradient(135deg, #17a2b8, #0a6b7d); /* Azul Claro */
    --gradient-red: linear-gradient(135deg, #dc3545, #a71d2a); /* Vermelho */
}

/* Base styles */
body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Roboto', sans-serif;
    margin: 0;
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden; /* Evita scroll horizontal indesejado */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--text-white);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

.highlight-text {
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(212, 255, 0, 0.4);
}

.section-padded {
    padding: 100px 5%;
    text-align: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 1.1em;
    color: var(--text-gray);
    margin-top: -15px;
    margin-bottom: 40px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(0, 0, 0, 0.7); /* Transparente com blur no Figma */
    backdrop-filter: blur(10px); /* Efeito de glassmorphism para o navbar */
    position: fixed;
    width: 90%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar .logo {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-white);
}

.navbar .logo span {
    color: var(--primary-color);
}

.navbar nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.navbar nav a {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-white);
    position: relative;
}

.navbar nav a:hover::after {
    width: 100%;
}

.navbar nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn-discord-mini, .btn-jogar-mini {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-discord-mini {
    background-color: #5865F2; /* Cor do Discord */
    color: white;
}

.btn-jogar-mini {
    background-color: var(--primary-color);
    color: var(--bg-dark);
}

.btn-jogar-mini:hover {
    box-shadow: 0 0 15px var(--primary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://i.imgur.com/0URDzVk.png') no-repeat center center/cover; /* SUBSTITUA PELA SUA IMAGEM DE FUNDO! */
    filter: brightness(0.4) grayscale(0.7); /* Efeito escuro e monocromático */
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
}

.status-badge {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/*.status-badge .online {
    color: #a72828; /* Cor verde para online */
    /* font-size: 0.7em;
} */

.hero-section h1 {
    font-size: 4.5em; /* Ajustado para ser maior */
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary, .btn-secondary {
    padding: 18px 40px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(212, 255, 0, 0.5);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px var(--primary-color);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1); /* Um pouco de transparência para o glassmorphism */
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
}


.stats-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1em;
    color: var(--text-gray);
    margin: 0;
}

/* Estilo do Indicador de Mouse */
.scroll-indicator {
    margin-top: 20px; /* Garante que não fique em cima dos números */
    display: flex;
    justify-content: center;
    width: 100%;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
}

.wheel {
    width: 3px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 2px;
    margin-top: 8px;
    animation: scroll-move 1.5s infinite;
}

@keyframes scroll-move {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* Ajuste nos stats para dar espaço */
.stats-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 20px; /* Margem interna para o mouse respirar */
}

/* Why Choose Us Section (Features) */
.why-choose-us h2 {
    font-size: 3em;
    margin-bottom: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 255, 0, 0.1);
}

.feature-card .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    margin-bottom: 20px;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Cores dos ícones */
.icon-wrapper.purple { background: var(--gradient-purple); }
.icon-wrapper.blue { background: var(--gradient-blue); }
.icon-wrapper.yellow { background: var(--gradient-yellow); }
.icon-wrapper.orange { background: var(--gradient-orange); }
.icon-wrapper.pink { background: var(--gradient-pink); }
.icon-wrapper.lightblue { background: var(--gradient-lightblue); }

.feature-card h3 {
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--text-white);
}

.feature-card p {
    font-size: 1em;
    color: var(--text-gray);
}

/* Immersive Experience Section */
.immersive-experience {
    background-color: var(--bg-dark);
    padding: 40px 5%; /* Reduzido de 100px para 40px para subir a seção */
}

.immersive-experience .container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px; /* Mesma largura das outras seções */
    margin: 0 auto;
    gap: 30px;
    width: 100%; /* Garante que ocupe o espaço disponível */
}

.arrow-decoration {
    font-size: 6em;
    color: var(--primary-color);
    opacity: 0.3;
    transform: translateX(-20px);
    animation: pulse-arrow 2s infinite alternate;
}

@keyframes pulse-arrow {
    0% { transform: translateX(-20px) scale(1); opacity: 0.3; }
    100% { transform: translateX(0) scale(1.05); opacity: 0.5; }
}

.experience-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 60px; /* Aumentei o respiro interno para combinar com o novo tamanho */
    text-align: center; /* Centralizado como no seu print mais recente */
    width: 100%; /* Faz ele ocupar o container */
    max-width: 1100px; /* Valor aproximado para alinhar com as seções de cima */
}

.experience-card .experience-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.experience-card .experience-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--text-gray);
}

.experience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center; /* Centraliza os botões no meio do card largo */
    margin-top: 30px;
}

.experience-tags span {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
    backdrop-filter: blur(3px); /* Glassmorphism leve */
}

/* How to Play Section */
.how-to-play h2 {
    font-size: 3em;
    margin-bottom: 10px;
}

/* Continuação: How to Play Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background-color: #111;
    border: 1px solid #222;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    text-align: left;
    transition: 0.3s ease;
}

/* Número transparente gigante ao fundo */
.step-number {
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03); /* Quase invisível */
    z-index: 0;
    line-height: 1;
}

/* Ícone circular com borda dupla */
.step-card .icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid currentColor; /* Cor definida no HTML */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    background: transparent;
    box-shadow: inset 0 0 0 6px #111, 0 0 0 2px currentColor; /* O segredo da borda dupla */
    position: relative;
    z-index: 1;
}

/* Estilo do Título e Textos */

@font-face {
  font-family: 'LickosGraffiti-Regular';
  src: url('./fonts/LickosGraffiti-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

.step-card h3 {
    font-size: 0.8rem;
    color: currentColor; /* Mesma cor do ícone */
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.step-title {
    font-family: 'LickosGraffiti-Regular', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    font-style: normal; /* Inclinado igual ao print */
    color: white;
    margin-bottom: 15px;
    display: block;
}

.step-card p {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.4;
    z-index: 1;
    position: relative;
}

/* Requisitos do Sistema */
.requirements-box {
    background: #111;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    margin-top: 60px;
    padding: 40px;
    text-align: left;
}

.requirements-box h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.8em;
    margin-bottom: 40px;
}

.req-columns {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.req-column h3 {
    color: var(--primary-color);
    font-size: 1.2em;
}

.req-column ul {
    list-style: none;
    padding: 0;
}

.req-column li {
    margin-bottom: 12px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Regras - Accordion */

@font-face {
  font-family: 'JumpisGraffiti-Regular';
  src: url('./fonts/JumpisGraffiti-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

.accordion-container {
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
}

.accordion-item {
    background: linear-gradient(180deg, #0f0f0f, #0a0a0a);
    border: 1px solid #1f1f1f;
    border-radius: 14px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}


.accordion-header {
    width: 100%;
    padding: 26px 28px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    color: white;
}
.accordion-header h3 {
    font-family: 'JumpisGraffiti-Regular', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 1px;
}



.header-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    color: white;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
}
.header-icon.purple { background: #a855f7; }
.header-icon.blue   { background: #3b82f6; }
.header-icon.orange { background: #f97316; }
.header-icon.red    { background: #ef4444; }


.accordion-header h3 {
    margin: 0;
    flex-grow: 1;
    font-size: 2.0em;
    text-align: left;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    background: #0d0d0d;
    padding: 0 28px;
    transition: all 0.35s ease;
}


.accordion-item.active .accordion-content {
    max-height: 300px;
    padding: 24px 28px;
}


.important-notice {
    border: 1px solid var(--primary-color);
    background: rgba(212, 255, 0, 0.06);
    padding: 30px;
    border-radius: 18px;
    max-width: 1000px;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.important-notice i {
    color: var(--primary-color);
    font-size: 1.4rem;
}




/* --- SEÇÃO WHITELIST EXCLUSIVA --- */
.whitelist-section {
    padding: 20px 5% 100px;
    background-color: #050505;
    text-align: center;
}

.whitelist-section .subtitle { font-size: 2.9rem; color: #ffffff; font-weight: 900; margin-top: 0; margin-bottom: -10px; line-height: 2; }
.whitelist-section .title-main { font-size: 3.5rem; color: #d4ff00; font-weight: 900; margin-top: 0; line-height: -1; }
.whitelist-section .description span { color: #d4ff00; }

.whitelist-container {
    background: #111;
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 1000px;
    margin: 40px auto;
}

.whitelist-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.w-step h4 { 
    font-family: 'LickosGraffiti-Regular', sans-serif; /* Adicione esta linha */
    font-size: 1.9rem; 
    font-weight: 900; 
    font-style: italic; 
    margin: 15px 0 5px; 
    text-transform: capitalize; /* Opcional: deixa tudo em maiúsculo como no print */
}
.w-step p { font-size: 0.8rem; color: #888; }

/* Círculos com ícones */
.w-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
    color: white;
}
.w-icon-circle.purple { background: #a855f7; box-shadow: 0 0 15px rgba(168, 85, 247, 0.4); }
.w-icon-circle.pink { background: #ec4899; box-shadow: 0 0 15px rgba(236, 72, 153, 0.4); }
.w-icon-circle.yellow { background: #d4ff00; color: black; box-shadow: 0 0 15px rgba(212, 255, 0, 0.4); }

/* Box de Informações */
.info-box {
    background: #0a0a0a;
    border-radius: 15px;
    padding: 40px;
}

.info-box h3 { color: #d4ff00; margin-bottom: 30px; font-size: 1.2rem; }

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
    margin-bottom: 40px;
}

.info-column ul { list-style: none; }
.info-column li { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.info-column li i { color: white; font-size: 1rem; }

/* Botão Neon */
.btn-whitelist-neon {
    background: #d4ff00;
    color: black;
    padding: 18px 40px;
    border-radius: 10px;
    font-weight: 900;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 25px rgba(212, 255, 0, 0.5);
    transition: 0.3s;
}
.btn-whitelist-neon:hover { transform: scale(1.05); box-shadow: 0 0 35px rgba(212, 255, 0, 0.7); }

.approval-time { font-size: 0.8rem; color: #666; margin-top: 15px; }
.approval-time span { color: #d4ff00; }

.dica-box {
    border: 1px solid #222;
    padding: 20px;
    border-radius: 10px;
    max-width: 1000px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: #888;
}
.dica-box strong { color: #d4ff00; }


/* Footer */
.main-footer {
    background: #050505;
    padding: 60px 5% 20px;
    border-top: 1px solid #222;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: black;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
    font-size: 0.8em;
    color: #555;
    display: flex;
    justify-content: space-between;
}

/* Estilização da Box de Informações Necessárias */
.info-required-box {
    background: #111111;
    border: 1px solid #222;
    border-radius: 15px;
    padding: 40px;
    max-width: 900px;
    margin: 40px auto;
}

.info-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.info-grid {
    display: flex;
    justify-content: center;
    gap: 80px; /* Espaço entre as duas colunas */
    margin-bottom: 40px;
}

.info-column ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.info-column li {
    color: white;
    font-size: 1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Ícone de rádio branco conforme o print */
.info-column li i {
    color: white;
    font-size: 1.1rem;
}

/* Botão Whitelist com efeito Neon Glow */
.whitelist-action {
    text-align: center;
}

.btn-whitelist-neon {
    background-color: var(--primary-color);
    color: black;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 900;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(212, 255, 0, 0.4); /* Brilho suave */
    transition: 0.3s;
}

.btn-whitelist-neon:hover {
    box-shadow: 0 0 35px rgba(212, 255, 0, 0.7); /* Brilho forte no hover */
    transform: scale(1.02);
}

.approval-time {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.approval-time span {
    color: var(--primary-color);
}

/* Box da Dica inferior */
.whitelist-tip {
    border: 1px solid #333;
    padding: 20px;
    border-radius: 10px;
    max-width: 900px;
    margin: 20px auto;
    background: rgba(255, 255, 255, 0.02);
}

.whitelist-tip strong {
    color: var(--primary-color);
}


/* Container da logo no rodapé */
.footer-logo-container {
    margin-bottom: 15px; /* Espaço entre a logo e o texto abaixo */
    text-align: left;    /* Garante alinhamento à esquerda */
}

/* Ajuste de tamanho da imagem */
.footer-logo-img {
    max-width: 180px;    /* Ajuste este valor conforme o tamanho da sua logo */
    height: auto;        /* Mantém a proporção da imagem */
    display: block;
}

/* Garante que a coluna da esquerda tenha espaço suficiente */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr; /* Mantém a logo em destaque à esquerda */
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

