:root {
    --bg-main: #050816;
    --bg-alt: #0b1020;
    --accent: #fbbf24;
    --accent-soft: rgba(251, 191, 36, 0.1);
    --text-main: #f9fafb;
    --text-muted: #9ca3af;
    --danger: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #1f2937 0, #020617 45%, #000000 100%);
    color: var(--text-main);
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

/* NAVBAR */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    background: linear-gradient(to bottom, rgba(15,23,42,0.95), rgba(15,23,42,0.75), transparent);
    border-bottom: 1px solid rgba(148,163,184,0.2);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* Usa a logo circular como marca */
.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background-image: url("logo image.png");
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.8);
}

.logo-text-main {
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 0.9rem;
}

.logo-text-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

nav ul {
    display: flex;
    gap: 1.2rem;
    list-style: none;
    font-size: 0.85rem;
}

nav a {
    position: relative;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #facc15, #f97316, #ec4899);
    transition: width 0.2s ease-out;
}

nav a:hover {
    color: var(--text-main);
}

nav a:hover::after {
    width: 100%;
}

/* Fundo com a imagem do servidor */
/* HERO */
.hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem 3rem;
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
    gap: 2.5rem;
    align-items: center;
    position: relative;
    overflow: visible;  /* ou simplesmente apaga essa linha */
}
.hero {
    margin-bottom: 50px;
}

@media (max-width: 900px) {
    .hero {
        margin-bottom: 80px;
    }
}

@media (max-width: 600px) {
    .hero {
        margin-bottom: 50px;
    }
}



.hero::before {
    content: "";
    position: absolute;

    /* em vez de inset, controlamos manualmente */
    top: -60px;
    bottom: -60px;

    /* truque pra ocupar a tela inteira na horizontal */
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);

    background-image: url("https://media.giphy.com/media/t1WpcTxpUIEmcGuU4V/giphy.gif?v=2");
    background-size: cover;              /* ocupa tudo sem borda */
    background-position: center center;
    opacity: 0.32;
    filter: saturate(1.1);
    z-index: -1;

    animation: heroPan 45s linear infinite alternate;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    background: rgba(15,23,42,0.9);
    border: 1px solid rgba(249, 115, 22, 0.5);
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.9rem;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.8);
}

.hero-title {
    font-size: clamp(1.9rem, 3.1vw, 2.6rem);
    line-height: 1.1;
    margin-bottom: 0.9rem;
}

.hero-title span {
    background: linear-gradient(to right, #facc15, #f97316, #ec4899);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 0.97rem;
    color: var(--text-muted);
    max-width: 30rem;
    margin-bottom: 1.4rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.hero-highlight {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.6rem;
    font-size: 0.8rem;
}

.hero-highlight span {
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.5);
    color: var(--text-muted);
    background: rgba(15,23,42,0.86);
}

.buttons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.btn-primary, .btn-outline {
    border-radius: 999px;
    font-size: 0.9rem;
    padding: 0.6rem 1.4rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.btn-primary {
    background: radial-gradient(circle at 20% 0%, #facc15, #f97316);
    color: #111827;
    box-shadow: 0 10px 30px rgba(248, 250, 252, 0.16);
}

.btn-primary:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.btn-outline {
    border: 1px solid rgba(148,163,184,0.8);
    background: rgba(15,23,42,0.9);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--accent);
}

.hero-ip-box {
    padding: 0.9rem 1rem;
    border-radius: 0.9rem;
    background: rgba(15,23,42,0.9);
    border: 1px dashed rgba(148,163,184,0.6);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero-ip-label {
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.7rem;
    margin-bottom: 0.2rem;
    color: rgba(148,163,184,0.9);
}

.hero-ip-value {
    font-family: "Consolas", "SF Mono", ui-monospace, Menlo, Monaco, monospace;
    font-size: 0.9rem;
    color: var(--text-main);
}

/* HERO CARD RIGHT */
.hero-card {
    position: relative;
    background: radial-gradient(circle at top left, rgba(248,250,252,0.07), rgba(15,23,42,1));
    border-radius: 1.3rem;
    padding: 1.4rem 1.2rem;
    border: 1px solid rgba(148,163,184,0.4);
    box-shadow: 0 18px 40px rgba(15,23,42,0.85);
    overflow: hidden;
}

.hero-card-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(148,163,184,0.9);
    margin-bottom: 0.7rem;
}

.wipe-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.6rem;
}

.wipe-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.wipe-value {
    font-size: 0.95rem;
    font-weight: 600;
}

.wipe-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(22,163,74,0.15);
    color: #bbf7d0;
    padding: 0.12rem 0.45rem;
    border-radius: 999px;
    font-size: 0.7rem;
}

.wipe-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #22c55e;
}

.hero-divider {
    height: 1px;
    background: radial-gradient(circle, rgba(148,163,184,0.7), transparent);
    margin: 0.8rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    margin-bottom: 0.9rem;
}

.stat-card {
    padding: 0.5rem 0.55rem;
    border-radius: 0.7rem;
    background: rgba(15,23,42,0.9);
    border: 1px solid rgba(55,65,81,0.7);
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.stat-value {
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 0.1rem;
}

.vip-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-size: 0.7rem;
    margin-top: 0.4rem;
}

.vip-tag-pill {
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251,191,36,0.6);
    color: #fef3c7;
}

/* SEÇÕES GERAIS */
section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.4rem 1.5rem 0;
}

.section-title {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.4rem;
}

/* VIP */
.vip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2rem;
}

.vip-card {
    border-radius: 1rem;
    padding: 1.2rem 1.1rem;
    background: rgba(15,23,42,0.95);
    border: 1px solid rgba(148,163,184,0.55);
    box-shadow: 0 14px 35px rgba(15,23,42,0.9);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.vip-card-featured {
    border-color: rgba(251,191,36,0.9);
    box-shadow: 0 18px 48px rgba(251,191,36,0.22);
}

.vip-name {
    font-weight: 700;
    font-size: 1rem;
}

.vip-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
}

.vip-period {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.vip-benefits {
    list-style: none;
    font-size: 0.86rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.vip-benefits li::before {
    content: "• ";
    color: var(--accent);
}

.vip-footer {
    margin-top: 0.5rem;
}

.vip-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.18rem 0.5rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: #fef9c3;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.vip-note {
    margin-top: 1.4rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.vip-shop-wrapper {
    margin-top: 1.5rem;
}

/* REGRAS */
.rules-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.85fr) minmax(0, 1.25fr);
    gap: 1.8rem;
}

.rules-list {
    list-style: none;
    font-size: 0.88rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.rules-list li b {
    color: var(--text-main);
}

.rules-warning {
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(248,113,113,0.8);
    background: radial-gradient(circle at top, rgba(248,113,113,0.2), rgba(15,23,42,0.95));
    font-size: 0.85rem;
}

/* COMO JOGAR */
.steps-list {
    list-style: none;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.steps-list li {
    display: flex;
    gap: 0.5rem;
}

.step-number {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--accent);
    margin-top: 0.05rem;
}

/* CONTATO */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.3rem;
}

.contact-card {
    padding: 1rem 1rem;
    border-radius: 1rem;
    background: rgba(15,23,42,0.95);
    border: 1px solid rgba(148,163,184,0.5);
    font-size: 0.86rem;
    color: var(--text-muted);
}

.contact-card h3 {
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.contact-action {
    margin-top: 0.7rem;
}

.contact-mail {
    margin-top: 0.7rem;
}

/* FOOTER */
footer {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.2rem 1.5rem 2.4rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: space-between;
    border-top: 1px solid rgba(31,41,55,0.9);
    margin-top: 2.4rem;
}

@keyframes heroPan {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 50% 45%;  /* leve movimento também na vertical */
    }
    100% {
        background-position: 100% 50%;
    }
}


/* RESPONSIVO */
@media (max-width: 880px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
        padding-top: 2rem;
    }

    .hero-card {
        order: -1;
    }

    .rules-wrapper {
        grid-template-columns: minmax(0, 1fr);
    }

    nav ul {
        display: none; /* Menu simples oculto em mobile por enquanto */
    }

    .nav-container {
        justify-content: space-between;
    }
}

/* ❄ Neve nas laterais – overlay sem empurrar o conteúdo */
.snow-container {
    position: fixed;      /* <-- ESSENCIAL pra não empurrar a página */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none; /* não bloqueia clique nos botões */
    overflow: hidden;
    z-index: 5;           /* acima do fundo, abaixo do menu se quiser */
}

.snowflake {
    position: absolute;
    top: -10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-10px);
        opacity: 1;
    }
    100% {
        transform: translateY(110vh);
        opacity: 0.2;
    }
}






/* ❄ Neve suave no centro */
.snow-center {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    overflow: hidden;
    z-index: 4; /* abaixo da neve das laterais */
}

.snowflake-center {
    position: absolute;
    top: -15px;
    color: rgba(255, 255, 255, 0.25); /* BEM suave */
    font-size: 6px; /* pequena */
    animation: fallCenter linear infinite;
}

@keyframes fallCenter {
    0% {
        transform: translateY(-10px);
        opacity: 0.15;
    }
    100% {
        transform: translateY(110vh);
        opacity: 0;
    }
}

/* Player de áudio fixo no canto inferior direito */
.audio-player {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.7);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
}

.audio-btn {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: none;
    background: rgba(30, 64, 175, 0.95);
    color: #e5e7eb;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.audio-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.8);
    background: rgba(37, 99, 235, 1);
}

.audio-btn:active {
    transform: translateY(1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
}

.audio-volume {
    width: 90px;
    cursor: pointer;
    accent-color: #facc15; /* em navegadores que suportam */
}

.stat-offline {
    color: #ff4d4d !important;  /* vermelho bonito */
    font-weight: 700;
}

/* Ajuste de fundo para telas ultrawide (ex: 2560x1080) */
@media screen and (min-width: 2560px) and (max-height: 1200px) {
    .hero::before {
        /* tenta centralizar melhor a cabeça do personagem */
        background-position: 50% 35%;   /* mexa esse 35% pra ajustar pra cima/baixo */
        background-size: 130% auto;     /* um pouco mais de zoom horizontal */
    }
}

