/* ========================= */
/* RESET / BASE              */
/* ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0A0F14;
    font-family: "Segoe UI", sans-serif;
    color: #E5E7EB;
    overflow-x: hidden;
}

/* Classe utilitária */
.d-flex {
    display: flex;
}

/* Links padrão */
a {
    color: #d9faff;
    text-decoration: none;
}

/* ========================= */
/* BACKGROUND SUPERIOR       */
/* ========================= */

.bg-top {
    width: 100%;
    height: 900px;
    background: url("../img/bg/bg-top.jpg") no-repeat center;
    background-size: 150%;
    background-position: center 60px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* ========================= */
/* HEADER                    */
/* ========================= */

.header {
    width: 100%;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(6, 12, 18, .88);
    backdrop-filter: blur(6px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* LOGO */
.logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
}

.logo span {
    color: #00F5FF;
}

/* ========================= */
/* MENU DESKTOP              */
/* ========================= */

.nav {
    display: flex;
    gap: 18px;
}

.nav a {
    color: #cdeff2;
    font-size: 14px;
    position: relative;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00F5FF, #00B8C4);
    transition: width 0.2s ease-out;
}

.nav a:hover {
    color: #fff;
}

.nav a:hover::after {
    width: 100%;
}

/* ========================= */
/* RIGHT MENU / LOGIN        */
/* ========================= */

.right-menu {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}

.right-menu .lang,
.right-menu .login {
    padding: 6px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 245, 255, 0.12);
    transition: 0.2s;
}

.right-menu .lang:hover,
.right-menu .login:hover {
    background: rgba(0, 245, 255, 0.08);
}

/* Botão donate */
.donate {
    padding: 7px 16px;
    border-radius: 8px;
    border: 2px solid #00F5FF;
    background: linear-gradient(180deg, rgba(0,245,255,0.18), rgba(0,184,196,0.22));
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.35);
    transition: 0.2s;
    color: #00F5FF;
}

.donate:hover {
    background: linear-gradient(180deg, #00F5FF, #00B8C4);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.8);
}

/* ========================= */
/* HERO                      */
/* ========================= */

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* COLUNA ESQUERDA */
.hero-left {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* LOGO BASE (SEMPRE VISÍVEL) */
.hero-logo {
    display: block;
    width: 100%;
    height: auto;

    opacity: 1;
    transform: scale(0.9);
    animation: logoIntro 1s ease-out forwards 0.3s,
               logoGlow 4s ease-in-out infinite 1.2s;
}

@keyframes heroLogoIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* LOGO HOVER */
.hero-logo-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;

    opacity: 0;
    transform: scale(1.15);
    pointer-events: none;

    transition: opacity .4s ease, transform .4s ease;
}

/* COLUNA DIREITA */
.hero-right {
    flex: 0 0 60%;
    text-align: left;
}

.hero-right h2 {
    text-align: left;
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 992px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-left,
    .hero-right {
        flex: 1 1 100%;
    }

    .hero-right,
    .hero-right h2 {
        text-align: center;
    }

    .hero-logo {
        max-width: 220px;
    }
}

/* ===============================
   HERO LOGO – MOON-LAND STYLE
================================ */

.hero-logo-wrap {
    position: relative;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
    cursor: pointer;
}

.hero-logo-hover {
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.hero-logo,
.hero-logo-hover {
    animation: logoGlow 4s ease-in-out infinite 1.2s;
    transform: scale(1);
    transition: all 0.3s ease;
}

@keyframes pulseZoomEffect {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

.hero-logo-wrap:hover .hero-logo,
.hero-logo-wrap:hover .hero-logo-hover {
    animation:
        logoGlow 4s ease-in-out infinite 1.2s,
        pulseZoomEffect 0.5s ease-in-out 0s 1 normal forwards;
}

@media (max-width: 768px) {
    .hero-logo,
    .hero-logo-hover {
        animation:
            logoGlow 4s ease-in-out infinite 1.2s,
            pulseZoomEffect 3s ease-in-out infinite !important;
    }
}

/* BRILHO CONTÍNUO */
@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 6px rgba(0, 245, 255, 0.35));
    }
    50% {
        filter: drop-shadow(0 0 16px rgba(0, 245, 255, 0.65));
    }
}

/* Entrada (opcional) */
@keyframes logoIntro {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Esconder imagens antigas */
.chars {
    display: none !important;
}

/* Coluna de texto do hero */
.hero-text {
    width: 480px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
    align-items: flex-start;
}

.hero-text h2 {
    font-size: 35px;
    color: #005aff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.hero-text h2 span {
    color: #0c2026;
}

.hero-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #0c2026;
}

/* Bloco centralizado (data + botão + countdown) */
.hero-cta {
    margin-top: 18px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
}

/* Botão start */
.btn-start {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 40px;
    background: linear-gradient(180deg, #00F5FF, #00B8C4);
    color: #000;
    border-radius: 12px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    box-shadow: 0 0 22px rgba(0, 245, 255, 0.75);
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}

.btn-start:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 245, 255, 1);
}

/* ========================= */
/* HERO COUNTDOWN            */
/* ========================= */

.hero-countdown {
    margin-top: 20px;
    align-self: flex-start;
}

.hero-cta .hero-countdown {
    margin-top: 16px;
    align-self: center;
}

.hero-countdown-title {
    display: inline-block;
    padding: 10px 40px;
    margin-bottom: 18px;
    border-radius: 999px;
    border: 1px solid rgba(0, 245, 255, 0.35);
    background: radial-gradient(circle at top, rgba(0, 245, 255, 0.14), rgba(8, 14, 20, 0.96));
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.8);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #00F5FF;
}

.hero-countdown-row {
    display: flex;
    gap: 16px;
}

.hero-countdown-box {
    min-width: 90px;
    padding: 14px 18px 12px;
    border-radius: 14px;
    background: #101821;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.18);
}

.hero-countdown-number {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: #00F5FF;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-countdown-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #9fc2c7;
}

.hero-countdown-date {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #7ff9ff;
    text-shadow: 0 0 8px rgba(0, 245, 255, 0.25);
    letter-spacing: 1px;
}

@media (max-width: 600px) {
    .hero-countdown-row {
        gap: 10px;
    }

    .hero-countdown-box {
        min-width: 70px;
        padding: 10px 10px 8px;
    }

    .hero-countdown-number {
        font-size: 20px;
    }
}

@media (max-height: 750px) {
    .hero {
        padding-top: 140px;
        padding-bottom: 40px;
    }
}

/* ========================= */
/* LINHAS DIVISÓRIAS         */
/* ========================= */

.line {
    width: 100%;
    margin: 60px auto 40px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.line__back {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #0b7a84, transparent);
    opacity: .45;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.line__def {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #00B8C4, #00F5FF, #00B8C4);
    border-radius: 3px;
    margin: 0 15px;
    box-shadow: 0 0 12px rgba(0, 245, 255, 0.45);
}

.line__center {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle, #00F5FF, #00B8C4, #0b5f66);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.6);
    margin: 0 15px;
}

/* ========================= */
/* NEWS / SECOND SECTION     */
/* ========================= */

.news-section {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto 80px auto;
    position: relative;
    z-index: 5;
}

.news-header {
    text-align: center;
    margin-bottom: 40px;
}

.news-header h2 {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00F5FF;
    margin-bottom: 8px;
}

.news-header p {
    font-size: 14px;
    color: #a7c4c8;
}

.news-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: space-between;
}

.news-card {
    position: relative;
    flex: 1 1 calc(25% - 21px);
    min-width: 260px;
    min-height: 380px;
    border-radius: 16px;
    overflow: hidden;
    background: #111827;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
    cursor: pointer;
    transition: transform .25s ease-out, box-shadow .25s ease-out;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
}

.news-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    filter: saturate(1.1);
}

.news-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0.55) 45%,
            rgba(0, 0, 0, 0.9) 100%);
}

.news-card__content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 26px 26px 30px 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.news-date {
    font-size: 13px;
    color: #cbe8eb;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.news-date span {
    font-size: 22px;
    color: #00F5FF;
    margin-right: 4px;
}

.news-title {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    color: #f4fdff;
    margin-bottom: 14px;
}

.news-text {
    font-size: 14px;
    line-height: 1.5;
    color: #c6d7da;
    margin-bottom: 22px;
}

.news-btn {
    align-self: flex-start;
    padding: 10px 28px;
    border-radius: 999px;
    background: linear-gradient(180deg, #00F5FF, #00B8C4);
    color: #000;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    box-shadow: 0 0 18px rgba(0, 245, 255, 0.7);
    transition: transform .15s ease-out, box-shadow .15s ease-out, filter .15s;
}

.news-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 26px rgba(0, 245, 255, 1);
    filter: brightness(1.05);
}

@media (max-width: 1200px) {
    .news-card {
        flex: 1 1 calc(50% - 14px);
        min-height: 360px;
    }
}

@media (max-width: 700px) {
    .news-card {
        flex: 1 1 100%;
        min-height: 340px;
    }

    .news-section {
        margin-bottom: 60px;
    }
}

/* ========================= */
/* SERVER RANKINGS           */
/* ========================= */

.ranking-section {
    max-width: 1200px;
    margin: 0 auto 120px auto;
    padding: 0 30px;
}

.ranking-header {
    text-align: center;
    margin-bottom: 40px;
}

.ranking-header h2 {
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00F5FF;
    margin-bottom: 8px;
}

.ranking-header p {
    font-size: 14px;
    color: #aebcc0;
}

.ranking-wrapper {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.ranking-box {
    flex: 1 1 480px;
    max-width: 520px;
    background: radial-gradient(circle at top, rgba(0, 245, 255, 0.08), #0d131a);
    border-radius: 18px;
    border: 1px solid rgba(0, 245, 255, 0.12);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

.ranking-box h3 {
    padding: 16px 26px;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #00F5FF;
    border-bottom: 1px solid rgba(0, 245, 255, 0.18);
    background: linear-gradient(90deg, rgba(0, 245, 255, 0.08), rgba(0, 0, 0, 0.3));
}

.ranking-table {
    width: 100%;
}

.ranking-row,
.ranking-row--head {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) 100px 90px 150px;
    align-items: center;
    gap: 5px;
}

.ranking-row--head {
    padding: 10px 15px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #bdeef2;
    background: rgba(0, 245, 255, 0.04);
    border-bottom: 1px solid rgba(0, 245, 255, 0.12);
}

.ranking-row > *:nth-child(1),
.ranking-row--head > *:nth-child(1) {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    text-align: left;
}

.ranking-row > *:nth-child(2),
.ranking-row--head > *:nth-child(2) {
    justify-content: flex-start;
    text-align: left;
}

.ranking-row > *:nth-child(3),
.ranking-row--head > *:nth-child(3),
.ranking-row > *:nth-child(4),
.ranking-row--head > *:nth-child(4) {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.ranking-row > *:nth-child(5),
.ranking-row--head > *:nth-child(5) {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.ranking-row {
    padding: 10px 15px;
    font-size: 14px;
    color: #e2f1f4;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(8, 13, 18, 0.78);
    transition: background 0.15s ease-out;
}

.ranking-row:last-child {
    border-bottom: none;
}

.ranking-row:nth-child(odd) {
    background: rgba(11, 17, 24, 0.95);
}

.ranking-row:hover {
    background: rgba(14, 28, 34, 0.95);
}

.rk-pos {
    font-weight: 700;
    color: #00F5FF;
}

.rk-name {
    text-align: left;
    padding: 0 10px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rk-num {
    font-variant-numeric: tabular-nums;
}

.rk-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    border: 1px solid;
    white-space: nowrap;
}

.rk-status.offline {
    border-color: #ff6b6b;
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.rk-status.online {
    border-color: #2ed8a3;
    color: #2ed8a3;
    background: rgba(46, 216, 163, 0.12);
}

@media (max-width: 900px) {
    .ranking-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .ranking-row,
    .ranking-row--head {
        grid-template-columns: 35px minmax(0, 1fr) 50px 50px 80px;
        padding: 8px 10px;
        gap: 2px;
    }

    .ranking-box h3 {
        padding: 12px 16px;
    }

    .rk-status {
        min-width: 50px;
        font-size: 10px;
        padding: 2px 5px;
    }
}

/* ========================= */
/* DOWNLOAD + DISCORD        */
/* ========================= */

.download-discord-section {
    width: 100%;
    padding: 80px 0 40px;
}

.download-discord-inner {
    max-width: 1300px;
    width: 90%;
    margin: 0 auto;
}

.download-discord-header {
    text-align: center;
    margin-bottom: 35px;
}

.download-discord-header h2 {
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00F5FF;
    margin-bottom: 8px;
}

.download-discord-header p {
    font-size: 14px;
    color: #c4d4d8;
}

.download-discord-layout {
    display: flex;
    gap: 32px;
    align-items: stretch;
}

.download-col,
.discord-col {
    flex: 1;
    background: radial-gradient(circle at top, rgba(0, 245, 255, 0.08), rgba(7, 11, 16, 0.96));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.9);
    padding: 28px 30px 32px;
    position: relative;
}

.download-col h3,
.discord-col h3 {
    text-align: center;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #00F5FF;
    margin-bottom: 24px;
}

.download-wrapper {
    display: flex;
    margin-top: 90px;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.download-card {
    width: 150px;
    height: 150px;
    border-radius: 16px;
    border: 1px solid rgba(0, 245, 255, 0.14);
    background: radial-gradient(circle at top, rgba(0, 245, 255, 0.10), rgba(14, 20, 28, 0.92));
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    cursor: pointer;
    transition: transform .18s ease-out, box-shadow .18s ease-out, border-color .18s ease-out, background .18s ease-out;
}

.download-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 26px rgba(0, 245, 255, 0.45);
    border-color: #00F5FF;
    background: radial-gradient(circle at top, rgba(0, 245, 255, 0.18), rgba(14, 20, 28, 0.96));
}

.download-card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 4px;
}

.download-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.download-card-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

.download-card-sub {
    font-size: 11px;
    color: #afc7ca;
}

.discord-widget-box {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 8, 12, 0.92);
}

.discord-widget-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 1100px) {
    .download-discord-layout {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .download-card {
        width: 46%;
        max-width: 170px;
    }
}

/* ========================= */
/* PAGINAÇÃO FLUTUANTE       */
/* ========================= */

.page-nav-float {
    position: fixed;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 40;
}

.page-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #00B8C4;
    background: transparent;
    cursor: pointer;
    transition: 0.15s;
}

.page-nav-dot:hover,
.page-nav-dot.active {
    background: #00F5FF;
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.9);
}

@media (max-width: 900px) {
    .page-nav-float {
        display: none;
    }
}

/* ========================= */
/* FOOTER                    */
/* ========================= */

.footer {
    width: 100%;
    background: #020617;
    margin-top: 120px;
    padding-top: 60px;
    border-top: 1px solid rgba(0, 245, 255, 0.08);
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1300px;
    margin: auto;
    width: 90%;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #00F5FF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column p,
.footer-column a {
    font-size: 14px;
    color: #c8d5d8;
    margin-bottom: 8px;
    display: block;
    transition: 0.2s;
}

.footer-column a:hover {
    color: #00F5FF;
}

.footer-bottom {
    text-align: center;
    padding: 18px 0;
    font-size: 14px;
    background: #01040b;
    color: #7f9196;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* ========================= */
/* PRELOADER                 */
/* ========================= */

#preloader {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top, #0f1f28, #05090d);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 1.4s ease-out, visibility 1.4s ease-out;
}

.preloader-hide {
    opacity: 0;
    visibility: hidden;
    transition: opacity .6s ease, visibility .6s ease;
}

#preloader.preloader-hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
    padding: 30px 40px;
    border-radius: 24px;
    background: radial-gradient(circle at top, rgba(0, 245, 255, 0.10), rgba(7, 11, 16, 0.95));
    border: 1px solid rgba(0, 245, 255, 0.16);
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.9);
}

.preloader-logo {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.preloader-logo span {
    color: #00F5FF;
}

.preloader-ring {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    border-radius: 50%;
    border: 3px solid rgba(0, 245, 255, 0.16);
    border-top-color: #00F5FF;
    border-right-color: #00B8C4;
    animation: preloaderSpin 2.2s linear infinite;
    box-shadow: 0 0 18px rgba(0, 245, 255, 0.55);
}

.preloader-text {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #d4f5f7;
    opacity: .9;
}

@keyframes preloaderSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.preloader-dots {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.preloader-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00F5FF;
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.9);
    animation: preloaderDot 1s infinite ease-in-out;
    opacity: 0.3;
}

.preloader-dot:nth-child(2) {
    animation-delay: 0.15s;
}

.preloader-dot:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes preloaderDot {
    0%,
    80%,
    100% {
        transform: translateY(0);
        opacity: 0.3;
    }

    40% {
        transform: translateY(-6px);
        opacity: 1;
    }
}

@media (max-width: 600px) {
    .preloader-inner {
        width: 80%;
        padding: 24px 20px;
    }

    .preloader-logo {
        font-size: 22px;
        letter-spacing: 2px;
    }
}

/* ========================= */
/* RESPONSIVO GLOBAL         */
/* ========================= */

@media (max-width: 1200px) {
    .header {
        padding: 14px 24px;
    }

    .hero-inner {
        gap: 20px;
    }
}

@media (max-width: 1050px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
        padding-right: 0;
    }

    .hero-text {
        margin-top: 10px;
        max-width: 90%;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 850px) {
    .nav {
        display: none;
    }

    .right-menu {
        gap: 8px;
    }

    .header {
        padding: 12px 16px;
    }
}

@media (max-width: 600px) {
    .logo {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .right-menu .lang,
    .right-menu .login {
        display: none;
    }

    .hero {
        padding-top: 140px;
    }
}

/* ========================= */
/* DISCORD POPUP – TEMA SITE */
/* ========================= */

.discord-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top, rgba(10, 22, 30, 0.95), rgba(4, 8, 12, 0.98));
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.discord-box {
    background: radial-gradient(circle at top,
            rgba(0, 245, 255, 0.10),
            rgba(8, 12, 18, 0.96));
    padding: 26px 28px 30px;
    width: 440px;
    max-width: 92%;
    border-radius: 20px;
    position: relative;
    text-align: center;
    border: 1px solid rgba(0, 245, 255, 0.20);
    box-shadow:
        0 0 45px rgba(0, 0, 0, 0.9),
        0 0 25px rgba(0, 245, 255, 0.25);
}

.discord-box h2 {
    color: #00F5FF;
    margin-bottom: 12px;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.discord-box p {
    font-size: 14px;
    color: #d8eef0;
    margin-bottom: 22px;
    line-height: 1.5;
}

.discord-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    color: #00F5FF;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity .15s ease, transform .15s ease;
}

.discord-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.discord-actions {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.discord-btn {
    padding: 14px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    transition:
        transform .15s ease-out,
        box-shadow .15s ease-out,
        filter .15s ease-out;
}

.discord-join {
    background: linear-gradient(180deg, #00F5FF, #00B8C4);
    color: #000;
    box-shadow: 0 0 22px rgba(0, 245, 255, 0.75);
}

.discord-join:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 245, 255, 1);
    filter: brightness(1.05);
}

.discord-later {
    background: rgba(255, 255, 255, 0.04);
    color: #d8eef0;
    border: 1px solid rgba(0, 245, 255, 0.18);
}

.discord-later:hover {
    background: rgba(0, 245, 255, 0.08);
}

/* ========================= */
/* REGISTER MODAL            */
/* ========================= */

.register-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;
    z-index: 99998;
}

.register-box {
    width: 420px;
    max-width: 92%;
    padding: 28px 30px 32px;
    border-radius: 22px;
    background: radial-gradient(circle at top,
            rgba(0, 245, 255, 0.12),
            rgba(8, 12, 18, 0.96));
    border: 1px solid rgba(0, 245, 255, 0.20);
    box-shadow:
        0 0 45px rgba(0, 0, 0, 0.9),
        0 0 28px rgba(0, 245, 255, 0.28);
    text-align: center;
    position: relative;
}

.register-box h2 {
    color: #00F5FF;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.register-box p {
    font-size: 14px;
    color: #d8eef0;
    margin-bottom: 22px;
}

.register-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    color: #00F5FF;
    font-size: 30px;
    cursor: pointer;
    opacity: .85;
}

.register-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.register-form input {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(0, 245, 255, 0.22);
    background: rgba(10, 14, 20, 0.92);
    color: #fff;
    font-size: 14px;
}

.register-form input::placeholder {
    color: #9dc1c6;
}

.register-form input:focus {
    outline: none;
    border-color: #00F5FF;
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.28);
}

.register-btn {
    margin-top: 10px;
    padding: 14px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(180deg, #00F5FF, #00B8C4);
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 0 22px rgba(0, 245, 255, 0.75);
    transition: transform .15s ease, box-shadow .15s ease;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 245, 255, 1);
}

/* ========================= */
/* INPUTS – VISUAL PREMIUM  */
/* ========================= */

.register-box .field {
    margin-bottom: 14px;
}

.register-box .field__name {
    color: #00F5FF;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.register-box .field__desc {
    font-size: 11px;
    color: #88dbe0;
    margin-bottom: 6px;
}

.register-box .field__box {
    position: relative;
}

.register-box .field__input {
    width: 100%;
    height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid rgba(0, 245, 255, 0.22);
    background: linear-gradient(180deg,
            rgba(11, 16, 22, 0.95),
            rgba(6, 10, 14, 0.95));
    color: #fff;
    font-size: 13px;
    box-shadow:
        inset 0 1px 2px rgba(0, 0, 0, 0.8),
        0 0 0 rgba(0, 245, 255, 0);
    transition:
        border-color .15s ease,
        box-shadow .15s ease,
        background .15s ease;
}

.register-box .field__input::placeholder {
    color: #8daeb3;
}

.register-box .field__input:focus {
    outline: none;
    border-color: #00F5FF;
    background: linear-gradient(180deg,
            rgba(14, 22, 28, 0.98),
            rgba(8, 12, 18, 0.98));
    box-shadow:
        inset 0 1px 2px rgba(0, 0, 0, 0.9),
        0 0 12px rgba(0, 245, 255, 0.35);
}

.register-box .field__tool_switcher {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    color: #7cd6db;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity .15s ease, color .15s ease;
}

.register-box .field__tool_switcher:hover {
    opacity: 1;
    color: #00F5FF;
}

.register-box .captcha img {
    border-radius: 10px;
    border: 1px solid rgba(0, 245, 255, 0.22);
    background: #000;
    margin-bottom: 6px;
}

.register-box {
    width: 100%;
    max-width: 420px;
    max-height: calc(100vh - 40px);

    background: linear-gradient(180deg,
            rgba(12, 18, 24, 0.98),
            rgba(6, 9, 14, 0.98));

    border-radius: 18px;
    border: 1px solid rgba(0, 245, 255, 0.22);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.85),
        0 0 40px rgba(0, 245, 255, 0.10);

    padding: 26px 22px;
    overflow-y: auto;
}

.register-box::-webkit-scrollbar {
    width: 6px;
}

.register-box::-webkit-scrollbar-thumb {
    background: rgba(0, 245, 255, 0.35);
    border-radius: 6px;
}

.register-box h2 {
    font-size: clamp(18px, 4vw, 22px);
    margin-bottom: 6px;
    text-align: center;
}

.register-box .subtitle {
    font-size: clamp(12px, 3.5vw, 13px);
    text-align: center;
    color: #88dbe0;
    margin-bottom: 18px;
}

.register-box .close-btn {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 22px;
    color: #00F5FF;
    cursor: pointer;
}

.register-box .field__input {
    height: 44px;
    font-size: 14px;
}

.register-box .submit {
    width: 100%;
    height: 46px;
    border-radius: 999px;
    font-size: 14px;
    margin-top: 14px;
}

.register-box .checkbox__content {
    font-size: 11px;
    line-height: 1.4;
    text-align: center;
}

/* =============================== */
/* BREAKPOINTS                     */
/* =============================== */

@media (max-width: 768px) {
    .register-box {
        max-width: 380px;
        padding: 22px 18px;
    }
}

@media (max-width: 480px) {
    .register-box {
        max-width: 100%;
        border-radius: 16px;
        padding: 20px 16px;
    }

    .register-box h2 {
        font-size: 18px;
    }

    .register-box .field__name {
        font-size: 12px;
    }

    .register-box .field__input {
        height: 46px;
        font-size: 15px;
    }

    .register-box .captcha img {
        width: 100%;
        height: auto;
    }
}

@media (max-height: 620px) {
    .register-box {
        max-height: 90vh;
    }
}

/* FORM LOGIN */
.top-login form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-login input {
    width: 120px;
    height: 34px;
    padding: 0 10px;
    border-radius: 10px;
    border: 1px solid rgba(0, 245, 255, 0.22);
    background: rgba(10, 14, 20, 0.9);
    color: #fff;
    font-size: 12px;
}

.top-login input::placeholder {
    color: #89aeb3;
}

.top-login input:focus {
    outline: none;
    border-color: #00F5FF;
    box-shadow: 0 0 8px rgba(0, 245, 255, 0.35);
}

/* BOTÃO LOGIN */
.top-login button {
    height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid #00F5FF;
    background: linear-gradient(180deg, #00F5FF, #00B8C4);
    color: #000;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
}

.top-login button:hover {
    filter: brightness(1.08);
}

/* LOGADO */
.top-logged {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-logged .user {
    color: #00F5FF;
    font-weight: 700;
    font-size: 13px;
}

.cp-btn {
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid #00F5FF;
    color: #00F5FF;
    font-size: 12px;
}

.logout-btn {
    color: #7fd8dd;
    font-size: 12px;
}

/* ============================= */
/* MOBILE                        */
/* ============================= */
@media (max-width: 900px) {
    .top-login input {
        width: 90px;
    }
}

@media (max-width: 600px) {
    .top-login {
        display: none;
    }
}

/* ============================= */
/* ACCOUNT DROPDOWN              */
/* ============================= */

.dropdown-account {
    position: relative;
}

.dropdown-account .user {
    color: #00F5FF;
    font-weight: 700;
    cursor: pointer;
}

.account-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    min-width: 200px;

    background: linear-gradient(180deg, #0d141b, #05090d);
    border: 1px solid rgba(0, 245, 255, 0.22);
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85);

    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 9999;
}

.account-menu a {
    padding: 12px 14px;
    font-size: 13px;
    color: #cdeff2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.account-menu a:hover {
    background: rgba(0, 245, 255, 0.08);
}

.account-menu a.logout {
    color: #ff9b9b;
    border-bottom: none;
}

.dropdown-account.open .account-menu {
    display: flex;
}

.header {
    pointer-events: auto;
    z-index: 100;
}

.right-menu,
.top-login,
.top-login form,
.top-login input,
.top-login button {
    pointer-events: auto;
    position: relative;
    z-index: 101;
}

#login-captcha-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.login-captcha-box {
    background: #0c1218;
    padding: 20px;
    border-radius: 12px;
    width: 320px;
    max-width: 90%;
    text-align: center;
    position: relative;
    border: 1px solid rgba(0, 245, 255, 0.18);
}

.login-captcha-box h3 {
    margin-bottom: 10px;
}

.login-captcha-box img {
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
}

.login-captcha-box input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

.captcha-actions {
    display: flex;
    gap: 10px;
}

.captcha-actions button {
    flex: 1;
    padding: 10px;
    cursor: pointer;
}

.captcha-close {
    position: absolute;
    top: 6px;
    right: 10px;
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

/* ========================= */
/* BOTÃO MOBILE              */
/* ========================= */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #00F5FF;
    cursor: pointer;
}

/* ========================= */
/* MENU MOBILE               */
/* ========================= */

.mobile-nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 16px;
    width: 240px;
    flex-direction: column;
    background: linear-gradient(180deg, #0d141b, #05090d);
    border: 1px solid rgba(0, 245, 255, .22);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .85);
    z-index: 9999;
}

.mobile-nav a {
    padding: 14px;
    color: #00F5FF;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    background: rgba(0, 245, 255, 0.08);
}

.header.mobile-open .mobile-nav {
    display: flex;
}

@media (max-width: 850px) {
    .nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .right-menu {
        gap: 8px;
    }
}

@media (max-width: 600px) {
    .top-login {
        display: none;
    }
}

/* =========================
   HEADER BASE
========================= */

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    position: relative;
    z-index: 1000;
}

/* ===== LOGO TEXTO ===== */
.logo-text {
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #00F5FF;
    text-transform: uppercase;
    line-height: 1;
    display: flex;
    align-items: center;
}

.logo-text span {
    color: #00B8C4;
}

/* ===== LOGO IMAGEM ===== */
.logo-img {
    height: 48px;
    width: auto;
    display: block;
}

/* ===== PRELOADER AJUSTE ===== */
.preloader-logo .logo-text {
    font-size: 42px;
}

.preloader-logo .logo-img {
    height: 150px;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #00F5FF;
}

.logo span {
    color: #00B8C4;
}

/* ================= RESPONSIVO ================= */
@media (max-width: 1024px) {
    .logo-text {
        font-size: 26px;
    }

    .logo-img {
        height: 42px;
    }
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 22px;
        letter-spacing: 1.5px;
    }

    .logo-img {
        height: 36px;
    }

    .preloader-logo .logo-text {
        font-size: 32px;
    }

    .preloader-logo .logo-img {
        height: 56px;
    }
}

/* ========================= */
/* MENU MOBILE               */
/* ========================= */

.mobile-nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 16px;
    width: 240px;

    flex-direction: column;
    background: linear-gradient(180deg, #0d141b, #05090d);
    border: 1px solid rgba(0, 245, 255, .22);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .85);
    z-index: 9999;
}

.mobile-nav a {
    padding: 14px;
    color: #00F5FF;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    background: rgba(0, 245, 255, 0.08);
}

/* =========================
   LOGIN / CONTA
========================= */

.right-menu {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-login form {
    display: flex;
    gap: 6px;
}

.top-login input {
    width: 110px;
    padding: 6px 8px;
}

.login-btn {
    padding: 6px 12px;
}

/* =========================
   BOTÃO MOBILE
========================= */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #00F5FF;
    cursor: pointer;
}

/* =========================
   MOBILE MODE
========================= */

@media (max-width: 850px) {
    .nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-nav,
    .right-menu {
        display: none;
    }

    .header.mobile-open .mobile-nav,
    .header.mobile-open .right-menu {
        display: flex;
    }

    .header.mobile-open {
        align-items: flex-start;
    }

    .mobile-nav {
        position: absolute;
        top: 70px;
        right: 16px;
        width: 240px;

        flex-direction: column;
        background: linear-gradient(180deg, #0d141b, #05090d);
        border-radius: 16px;
        padding: 12px;
        gap: 6px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85);
    }

    .mobile-nav a {
        padding: 12px;
        border-radius: 10px;
        text-align: center;
    }

    .mobile-nav a:hover {
        background: rgba(0, 245, 255, 0.08);
    }

    .right-menu {
        position: absolute;
        top: calc(70px + 260px);
        right: 16px;

        width: 240px;
        flex-direction: column;
        background: linear-gradient(180deg, #0d141b, #05090d);
        border-radius: 16px;
        padding: 12px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85);
    }

    .top-login form {
        flex-direction: column;
    }

    .top-login input,
    .login-btn {
        width: 100%;
    }
}

/* ================= LOGO GRAND OPENING ================= */
.opening-logo {
    text-align: center;
    font-weight: 900;
    margin-top: -40px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 64px;
    color: #00F5FF;

    text-shadow:
        0 0 8px rgba(0, 245, 255, 0.55),
        0 0 20px rgba(0, 184, 196, 0.35),
        0 0 40px rgba(0, 184, 196, 0.18);
}

.opening-logo span {
    color: #00B8C4;
}

.opening-logo img {
    max-width: 480px;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 0 12px rgba(0, 245, 255, .5)) drop-shadow(0 0 28px rgba(0, 184, 196, .28));
}

.opening-logo+center h2,
.opening-logo+h2 {
    margin-top: 5px;
}

@media (max-width: 1024px) {
    .opening-logo {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .opening-logo {
        font-size: 36px;
        margin-top: -20px;
        letter-spacing: 2px;
    }

    .opening-logo img {
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .opening-logo {
        font-size: 30px;
    }
}

/* ===== HERO SPLIT LOGO + OPENING ===== */
.hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 30px;
}

.opening-logo {
    flex: 0 0 45%;
    text-align: right;
}

.opening-logo img {
    max-width: 520px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(0, 245, 255, 0.28));
    animation: logoGlow 3s ease-in-out infinite;
}

.hero-text {
    flex: 0 0 55%;
    text-align: left;
}

.opening-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 10px;
}

.opening-title span {
    color: #00B8C4;
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 15px rgba(0, 245, 255, 0.25));
    }

    50% {
        filter: drop-shadow(0 0 35px rgba(0, 245, 255, 0.55));
    }

    100% {
        filter: drop-shadow(0 0 15px rgba(0, 245, 255, 0.25));
    }
}

/* =========================
   HERO – CORREÇÃO MOBILE
========================= */

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero-inner {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
    }

    .hero-left {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-logo {
        max-width: 180px;
        width: 100%;
        margin: 0 auto;
    }

    .hero-right {
        width: 100%;
        text-align: center;
    }

    .hero-right h2 {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .hero-right p {
        font-size: 14px;
        line-height: 1.6;
        max-width: 100%;
        margin: 0 auto 16px;
    }

    .hero-cta {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .btn-start {
        width: 100%;
        max-width: 240px;
    }
}

/* ===============================
   NEWS MODAL
================================ */

.news-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: none;
    align-items: center;
    justify-content: center;
}

.news-modal.active {
    display: flex;
}

.news-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(4px);
}

.news-modal__box {
    position: relative;
    max-width: 620px;
    width: 90%;
    background: #0b1218;
    border-radius: 18px;
    overflow: hidden;

    animation: modalIn .4s ease;
    z-index: 1;
    border: 1px solid rgba(0, 245, 255, 0.14);
}

.news-modal__image {
    height: 260px;
    background-size: cover;
    background-position: center;
}

.news-modal__content {
    padding: 24px;
    text-align: center;
}

.news-modal__date {
    display: block;
    color: #00F5FF;
    font-size: 13px;
    margin-bottom: 8px;
}

.news-modal__title {
    font-size: 22px;
    margin-bottom: 12px;
    color: #fff;
}

.news-modal__text {
    font-size: 14px;
    color: #ccd8dc;
    line-height: 1.6;
}

.news-modal__close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 600px) {
    .news-modal__image {
        height: 180px;
    }
}

/* ===============================
   RANKING SWIPER
================================ */

.ranking-swiper {
    width: 100%;
    padding-bottom: 40px;
    overflow: hidden;
}

.swiper-slide {
    width: 100%;
    display: flex;
    justify-content: center;
}

.swiper-slide .ranking-box {
    width: 100%;
    max-width: 520px;
}

@media (max-width: 768px) {
    .swiper-slide .ranking-box {
        max-width: 100%;
    }
}

.ranking-swiper .swiper-pagination {
    position: relative;
    margin-top: 25px;
    text-align: center;
}

.ranking-swiper .swiper-pagination-bullet {
    background: #4d6b70;
    opacity: 1;
    width: 10px;
    height: 10px;
}

.ranking-swiper .swiper-pagination-bullet-active {
    background: #00F5FF;
}

.ranking-swiper .swiper-button-prev,
.ranking-swiper .swiper-button-next {
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
}

.ranking-swiper .swiper-button-prev {
    left: -50px;
}

.ranking-swiper .swiper-button-next {
    right: -50px;
}

@media (max-width: 768px) {
    .ranking-swiper .swiper-button-prev,
    .ranking-swiper .swiper-button-next {
        display: none;
    }
}

.page-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
}

.page-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.7);
}

.page-modal-box {
    position: relative;
    width: 90%;
    max-width: 1000px;
    height: 85%;
    margin: auto;
    background: #0b0f14;
    border-radius: 12px;
    overflow: hidden;
    z-index: 2;
    border: 1px solid rgba(0, 245, 255, 0.14);
}

.page-modal-box iframe {
    width: 100%;
    height: 100%;
}

.page-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    z-index: 3;
}

#top-l2jbrasil-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

#top-l2jbrasil-float img {
    display: block;
    max-width: 120px;
    height: auto;
    transition: transform 0.2s ease;
}

#top-l2jbrasil-float:hover img {
    transform: scale(1.05);
}

/* ============================= */
/* SERVER STATUS FLUTUANTE       */
/* ============================= */

#server-status-float {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}

.server-status-box {
    width: 190px;
    background: rgba(10, 16, 22, 0.95);
    border: 1px solid rgba(0,245,255,0.12);
    border-radius: 10px;
    padding: 12px;
    font-family: "Segoe UI", sans-serif;
    box-shadow: 0 0 25px rgba(0,0,0,0.6);
}

.server-status-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.server-status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-bottom: 6px;
    color: #ddd;
}

.server-status-row .status {
    font-weight: 700;
}

.server-status-row .status.on {
    color: #2ed8a3;
}

.server-status-row .status.off {
    color: #ff6b6b;
}

.server-status-players {
    margin-top: 8px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #00F5FF;
    padding-top: 6px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ============================= */
/* SERVER STATUS – MOBILE        */
/* ============================= */

@media (max-width: 768px) {
    #server-status-float {
        right: 10px;
        bottom: 80px;
        top: auto;
        transform: none;
    }

    .server-status-box {
        width: 150px;
        padding: 10px;
        border-radius: 8px;
    }

    .server-status-title {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .server-status-row {
        font-size: 12px;
    }

    .server-status-players {
        font-size: 12px;
    }
}

/* ============================= */
/* STATUS + VOTE – PRELOAD FLOW */
/* ============================= */

#server-status-float,
#top-l2jbrasil-float {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .4s ease, transform .4s ease;
}

.after-preload #server-status-float,
.after-preload #top-l2jbrasil-float {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}