/* RESET & BASE ----------------------------------------------------------- */
/* O site se ajusta à resolução do visitante: viewport (header), media queries,
   clamp(), vw/vh e max-width garantem layout fluido em mobile, tablet e desktop. */
:root {
    /* Tema global definitivo: escuro + azul/cyber */
    --color-space-void: #030712;
    --color-abyss: #0b1220;
    --color-cabal-blue: #2563eb;
    --color-cabal-cyan: #38bdf8;
    --color-cabal-violet: #6366f1;
    --color-ember: #3b82f6;
    --color-gold: #38bdf8;
    --color-amber: #60a5fa;
    --portal-premium-gold: #1d4ed8;
    --portal-premium-gold-bright: #38bdf8;
    --portal-premium-gold-dim: rgba(37, 99, 235, 0.22);
    --color-purple: #6366f1;
    --text-primary: #eaf2ff;
    --text-secondary: rgba(203, 221, 245, 0.84);
    --glass-border: rgba(96, 165, 250, 0.38);
    --glass-bg: rgba(8, 16, 32, 0.9);
    --glass-bg-strong: rgba(4, 10, 22, 0.94);
    --accent-rgb: 56, 189, 248;
    --accent-rgb-warm: 37, 99, 235;
    --color-neo-cyan: #38bdf8;
    --color-neo-blue: #2563eb;
    --color-neo-purple: #6366f1;
    --color-neo-pink: #60a5fa;
    --content-max-width: 1400px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* Base 16px; em telas muito pequenas/grandes o navegador pode escalar. Media queries ajustam layout. */
html {
    font-size: 16px;
}
@media (min-width: 1920px) {
    html { font-size: 17px; }
}
@media (max-width: 480px) {
    html { font-size: 15px; }
}

body {
    margin: 0;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    color: var(--text-primary);
    background:
        radial-gradient(circle at 20% 30%, rgba(139, 110, 61, 0.14), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(90, 60, 30, 0.12), transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(18, 14, 10, 0.92), var(--color-space-void) 70%);
    min-height: 100vh;
    overflow-x: hidden;
    transition: background 0.5s ease;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
}

/* Imagem de fundo (fundo.jpg) em todas as páginas, igual à home */
body::before {
    background:
        linear-gradient(180deg, rgba(12, 9, 6, 0.55) 0%, rgba(10, 8, 5, 0.4) 40%, rgba(8, 6, 4, 0.6) 100%),
        var(--site-bg-image, url("images/fundo.jpg")) center/cover no-repeat fixed;
    opacity: 0.92;
}

@keyframes backgroundPulse {
    0% { opacity: 0.6; }
    100% { opacity: 0.8; }
}

body::after {
    display: none;
}

body.home-page {
    background:
        radial-gradient(ellipse 90% 55% at 50% -10%, var(--portal-premium-gold-dim), transparent 55%),
        radial-gradient(circle at center, rgba(12, 10, 8, 0.92), var(--color-space-void) 72%);
}

/* Escurece o fundo global na home para painéis “flutuarem” como em portais Cabal grandes */
body.home-page::after {
    display: block;
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 50% at 50% 15%, rgba(139, 110, 61, 0.08), transparent 52%),
        linear-gradient(180deg, rgba(8, 6, 4, 0.4) 0%, rgba(5, 4, 3, 0.58) 55%, rgba(3, 2, 2, 0.75) 100%);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-shell {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

/* Splash ao abrir o site – logo 1,5s depois redireciona para home */
.site-splash {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, rgba(6, 12, 32, 0.98), var(--color-space-void));
    opacity: 1;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.site-splash--hidden {
    opacity: 0;
    pointer-events: none;
}

.site-splash__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: splashLogoIn 1s ease-out;
}

.site-splash__logo {
    width: clamp(180px, 35vw, 280px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(197, 160, 89, 0.4)) drop-shadow(0 0 80px rgba(166, 124, 58, 0.3));
    animation: splashLogoGlow 2s ease-in-out infinite alternate;
}

@keyframes splashLogoIn {
    0% {
        opacity: 0;
        transform: scale(0.85);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes splashLogoGlow {
    0% {
        filter: drop-shadow(0 0 30px rgba(197, 160, 89, 0.35)) drop-shadow(0 0 60px rgba(166, 124, 58, 0.25));
    }
    100% {
        filter: drop-shadow(0 0 50px rgba(197, 160, 89, 0.5)) drop-shadow(0 0 100px rgba(166, 124, 58, 0.35));
    }
}

.site-main {
    flex: 1;
    padding: 20px clamp(16px, 5vw, 72px) 80px;
}

.site-return-bar {
    width: min(420px, 92vw);
    margin: 10px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.site-return-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 8px;
    border: 1px solid rgba(96, 165, 250, 0.34);
    background: rgba(8, 16, 32, 0.72);
    color: #eaf2ff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(1, 8, 24, 0.28);
}

.site-return-btn:hover {
    border-color: rgba(125, 211, 252, 0.72);
    background: rgba(15, 30, 58, 0.82);
}

@media (max-width: 960px) {
    .site-main {
        padding: 32px 16px 48px;
    }
}

/* HEADER ---------------------------------------------------------------- */
.site-header {
    position: relative;
    z-index: 100;
    backdrop-filter: blur(8px);
    background: transparent;
    font-family: 'Orbitron', 'Montserrat', sans-serif;
}

.site-header__marquee {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.74rem;
    color: rgba(211, 240, 255, 0.92);
    text-shadow: 0 0 12px rgba(197, 160, 89, 0.55);
}

.site-header__reward-wrap {
    margin: 8px 5vw 0;
    padding: 12px 18px;
    border: 1px solid rgba(197, 160, 89, 0.28);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(10, 24, 54, 0.92), rgba(8, 14, 32, 0.9));
    box-shadow:
        0 10px 28px rgba(1, 8, 24, 0.55),
        inset 0 0 0 1px rgba(200, 175, 130, 0.08);
}

.site-header__reward-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.site-header__reward-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 209, 102, 0.45);
    background: linear-gradient(135deg, rgba(255, 209, 102, 0.2), rgba(255, 95, 109, 0.15));
    color: #ffe7ab;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.site-header__reward-pill i {
    color: #ffd166;
}

.site-header__reward-rule {
    color: rgba(224, 241, 255, 0.92);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.site-header__reward-rule strong {
    color: #ffffff;
    text-shadow: 0 0 14px rgba(197, 160, 89, 0.55);
}

.site-header__reward-flash {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid rgba(197, 160, 89, 0.4);
    background: linear-gradient(120deg, rgba(40, 32, 22, 0.75), rgba(22, 18, 12, 0.82));
    font-size: 0.86rem;
    font-weight: 800;
    color: #f0ebe3;
    text-shadow: 0 0 10px rgba(139, 110, 61, 0.35);
    margin-bottom: 8px;
    text-align: center;
}

.site-header__reward-hint {
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 0.74rem;
    gap: 8px;
    color: rgba(235, 228, 210, 0.88);
}

.site-header__reward-hint strong {
    color: #fff;
}

.site-header__reward-ticker {
    position: relative;
    overflow: hidden;
    padding: 5px 0 3px;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.site-header__reward-ticker::before,
.site-header__reward-ticker::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 48px;
    z-index: 1;
    pointer-events: none;
}

.site-header__reward-ticker::before {
    left: 0;
    background: linear-gradient(90deg, rgba(8, 14, 32, 0.98), transparent);
}

.site-header__reward-ticker::after {
    right: 0;
    background: linear-gradient(270deg, rgba(8, 14, 32, 0.98), transparent);
}

.site-header__reward-ticker-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: siteHeaderRewardScroll 30s linear infinite;
}

.site-header__reward-ticker-item {
    flex: 0 0 auto;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    white-space: nowrap;
    color: rgba(236, 249, 255, 0.98);
    text-shadow: 0 0 9px rgba(197, 160, 89, 0.5);
}

.site-header__reward-ticker-item i {
    margin-right: 6px;
    color: var(--color-cabal-cyan, #c5a059);
}

@keyframes siteHeaderRewardScroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

.site-header__navwrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 8px 5vw 0;
    padding: 10px 14px;
    border: 1px solid rgba(149, 171, 255, 0.2);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(6, 14, 34, 0.85), rgba(12, 20, 42, 0.8));
    box-shadow: 0 10px 22px rgba(1, 8, 24, 0.45);
    gap: 12px;
}

/* Home: barra de navegação com filete dourado (referência playcabal.to / portais Cabal premium) */
body.home-page .site-header__navwrap {
    border: 1px solid rgba(30, 52, 88, 0.95);
    border-top: 1px solid rgba(96, 165, 250, 0.45);
    background: linear-gradient(180deg, rgba(8, 16, 34, 0.94) 0%, rgba(6, 12, 26, 0.95) 100%);
    box-shadow:
        0 0 0 1px rgba(96, 165, 250, 0.12),
        0 14px 36px rgba(0, 0, 0, 0.55);
}

/* Logo central, menus à esquerda e à direita (estilo Warkane) */
.site-header__nav-group {
    display: contents;
}
.primary-nav--left {
    flex: 0 1 auto;
    justify-content: flex-end;
    order: 1;
}
.header-social--whatsapp {
    order: 2;
    flex: 0 0 auto;
}
.brand--center {
    flex: 0 0 auto;
    order: 3;
}
.header-social--discord {
    order: 4;
    flex: 0 0 auto;
}
.primary-nav--right {
    flex: 0 1 auto;
    justify-content: flex-start;
    order: 5;
}
.mobile-toggle {
    order: 6;
}

/* Ícones sociais ao lado da logo – cores oficiais */
.header-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.header-social:hover {
    transform: scale(1.08);
}
.header-social i {
    font-size: 2rem;
}
.header-social--whatsapp i {
    color: #25D366;
    filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.5));
}
.header-social--whatsapp:hover i {
    filter: drop-shadow(0 0 12px rgba(37, 211, 102, 0.8));
}
.header-social--discord i {
    color: #5865F2;
    filter: drop-shadow(0 0 8px rgba(88, 101, 242, 0.5));
}
.header-social--discord:hover i {
    filter: drop-shadow(0 0 12px rgba(88, 101, 242, 0.8));
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--color-cabal-cyan), var(--color-cabal-violet));
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
}

/* Logo só em mobile (fora do menu); desktop usa .brand--center dentro do nav */
.brand--mobile {
    display: none;
}

.brand__logo-wrap {
    width: 120px;
    height: 120px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    padding: 8px;
    background: transparent;
    border: none;
    box-shadow: none;
}

.brand__logo {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    padding: 6px 10px;
    border-radius: 20px;
}

.primary-nav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 12px;
    border: 1px solid transparent;
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.primary-nav__link:hover,
.primary-nav__link.is-active {
    background: rgba(197, 160, 89, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(4, 10, 28, 0.3);
}

.primary-nav__link--icon {
    padding: 14px 18px;
}
.primary-nav__link--icon i {
    font-size: 1.6rem;
}

.primary-nav__group {
    position: relative;
}

.primary-nav__link.has-dropdown .caret {
    font-size: 0.7rem;
    margin-left: 6px;
}

.primary-nav__dropdown {
    position: absolute;
    top: 100%;
    margin-top: 10px;
    right: 0;
    min-width: 200px;
    background: linear-gradient(150deg, rgba(14, 12, 10, 0.96), rgba(10, 9, 7, 0.94));
    border-radius: 16px;
    border: 1px solid rgba(139, 110, 61, 0.2);
    box-shadow: 0 24px 42px rgba(3, 8, 25, 0.55);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.2s ease;
}

.primary-nav__group:hover .primary-nav__dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.primary-nav__group.is-open .primary-nav__dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.primary-nav__dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    color: rgba(226, 236, 255, 0.92);
    background: rgba(19, 25, 43, 0.7);
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.primary-nav__dropdown a:hover {
    background: linear-gradient(120deg, rgba(197, 160, 89, 0.24), rgba(166, 124, 58, 0.26));
    border-color: rgba(197, 160, 89, 0.38);
    color: #f9fbff;
    transform: translateX(4px);
}

.dropdown-label {
    font-size: 0.73rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(220, 233, 255, 0.62);
    padding-left: 6px;
}

/* USER SECTION ------------------------------------------------------------ */
.user-section {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-section__info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.15), rgba(166, 124, 58, 0.18));
    border: 1px solid rgba(197, 160, 89, 0.25);
    box-shadow: 0 8px 20px rgba(4, 10, 28, 0.4);
}

.user-section__info i {
    font-size: 1.5rem;
    color: var(--color-cabal-cyan);
    filter: drop-shadow(0 0 8px rgba(197, 160, 89, 0.5));
}

.user-section__welcome {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.user-section__welcome strong {
    color: var(--color-cabal-cyan);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.4);
}

.user-section__menu {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(5, 10, 24, 0.78), rgba(10, 18, 38, 0.78));
    border: 1px solid rgba(109, 140, 255, 0.18);
    box-shadow: inset 0 0 25px rgba(5, 13, 40, 0.45);
}

.user-section__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(9, 16, 32, 0.6), rgba(21, 32, 60, 0.62));
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    box-shadow: 0 6px 14px rgba(4, 10, 28, 0.4);
}

.user-section__link:hover,
.user-section__link.is-active {
    background: linear-gradient(120deg, rgba(197, 160, 89, 0.28), rgba(166, 124, 58, 0.32));
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: 0 12px 24px rgba(6, 14, 40, 0.5);
    transform: translateY(-2px);
}

.user-section__link i {
    font-size: 0.9rem;
}

/* ADMIN SECTION ----------------------------------------------------------- */
.admin-section {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.admin-section__info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 95, 109, 0.15), rgba(255, 209, 102, 0.18));
    border: 1px solid rgba(255, 95, 109, 0.25);
    box-shadow: 0 8px 20px rgba(4, 10, 28, 0.4);
}

.admin-section__info i {
    font-size: 1.5rem;
    color: var(--color-ember);
    filter: drop-shadow(0 0 8px rgba(255, 95, 109, 0.5));
}

.admin-section__welcome {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.admin-section__welcome strong {
    color: var(--color-ember);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 95, 109, 0.4);
}

.admin-section__menu {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(5, 10, 24, 0.78), rgba(10, 18, 38, 0.78));
    border: 1px solid rgba(255, 95, 109, 0.18);
    box-shadow: inset 0 0 25px rgba(5, 13, 40, 0.45);
}

.admin-section__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(9, 16, 32, 0.6), rgba(21, 32, 60, 0.62));
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    box-shadow: 0 6px 14px rgba(4, 10, 28, 0.4);
}

.admin-section__link:hover,
.admin-section__link.is-active {
    background: linear-gradient(120deg, rgba(255, 95, 109, 0.28), rgba(255, 209, 102, 0.32));
    border-color: rgba(255, 95, 109, 0.24);
    box-shadow: 0 12px 24px rgba(6, 14, 40, 0.5);
    transform: translateY(-2px);
}

.admin-section__link i {
    font-size: 0.9rem;
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(19, 26, 40, 0.85);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.mobile-toggle span {
    width: 50%;
    height: 2px;
    background: #f3f8ff;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-toggle.is-active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 960px) {
    .site-header__reward-wrap {
        margin: 8px 14px 0;
        padding: 10px 12px;
        border-radius: 14px;
    }
    .site-header__reward-topline {
        gap: 8px;
        margin-bottom: 6px;
    }
    .site-header__reward-pill {
        font-size: 0.7rem;
        padding: 6px 10px;
    }
    .site-header__reward-rule {
        font-size: 0.68rem;
    }
    .site-header__reward-ticker-item {
        font-size: 0.68rem;
    }
    /* Logo fora do menu em mobile: visível na barra do header */
    .brand--mobile {
        display: inline-flex;
        order: 1;
        flex: 0 0 auto;
        margin-right: auto;
    }
    .brand--mobile .brand__logo-wrap {
        width: 72px;
        height: 72px;
        padding: 6px;
    }
    .brand--mobile .brand__logo {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    .site-header__navwrap {
        margin: 8px 14px 0;
        padding: 10px 4vw;
        min-height: 72px;
    }
    .mobile-toggle {
        order: 2;
        flex-shrink: 0;
    }

    .site-header__nav-group {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(160deg, rgba(18, 14, 11, 0.98), rgba(10, 9, 7, 0.98));
        border-bottom: 1px solid rgba(139, 110, 61, 0.35);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.25s ease;
        z-index: 100;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .site-header__nav-group.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .site-header__nav-group .primary-nav {
        flex-direction: column;
        align-items: stretch;
        padding: 16px 5vw 18px;
        gap: 10px;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
    }
    .site-header__nav-group .primary-nav__link {
        padding: 14px 18px;
        font-size: 0.95rem;
        border-radius: 12px;
        min-height: 48px;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .site-header__nav-group .primary-nav__link i {
        font-size: 1.15rem;
    }

    .site-header__nav-group .primary-nav--right {
        padding-top: 0;
        border-top: 1px solid rgba(139, 110, 61, 0.2);
    }

    .site-header__nav-group .brand--center {
        display: none;
    }
    .site-header__nav-group .header-social {
        padding: 16px 5vw;
        justify-content: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        min-height: 56px;
    }
    .site-header__nav-group .header-social i {
        font-size: 2rem;
    }

    .primary-nav__group {
    width: 100%;
    }

    .primary-nav__link.has-dropdown {
        width: 100%;
        justify-content: space-between;
    }

    .primary-nav__group .primary-nav__dropdown {
        position: static;
        transform: none;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        margin-top: 8px;
        padding: 0;
        border: none;
        background: transparent;
        box-shadow: none;
        gap: 8px;
    }

    .primary-nav__group.is-open .primary-nav__dropdown {
        opacity: 1;
        max-height: 300px;
        padding: 10px 0 4px;
    }

    .user-section {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
    }

    .user-section__info {
        justify-content: center;
        padding: 12px 18px;
    }

    .user-section__welcome {
        font-size: 0.85rem;
    }

    .user-section__menu {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .user-section__link {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
    }

    .admin-section {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
    }

    .admin-section__info {
        justify-content: center;
        padding: 12px 18px;
    }

    .admin-section__welcome {
        font-size: 0.85rem;
    }

    .admin-section__menu {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .admin-section__link {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
    }

    .mobile-toggle {
        display: inline-flex;
    }
}

/* Mobile: hero e imagens (só em telas pequenas) */
@media (max-width: 960px) {
    .hero {
        padding: 16px 12px 24px;
        margin-bottom: 32px;
        border-radius: 24px;
    }
    .hero__figure {
        gap: 16px;
    }
    .hero__logo {
        width: min(90vw, 360px);
        min-height: 220px;
        max-height: 55vh;
    }
    .hero__logo img {
        max-height: 50vh;
        object-fit: contain;
    }
    .hero__caption {
        font-size: 0.95rem;
        line-height: 1.7;
        padding: 0 8px;
    }
    .hero__row {
        gap: 24px;
    }
    .hero-account-box {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    .hero__side {
        width: 100%;
        max-width: 100%;
    }
    .hero__figure--spotlight .hero__logo {
        min-height: unset;
        width: min(92vw, 360px);
        max-height: 280px;
    }
    .hero__figure--spotlight .hero__logo img {
        max-height: 260px;
    }
    /* Imagens gerais em mobile: não estourar a tela */
    .site-main img,
    .hero img,
    .auth-page__hero-img {
        max-width: 100%;
        height: auto;
    }
}

/* HERO / HOME ----------------------------------------------------------- */
.hero {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 24px clamp(16px, 6vw, 84px);
    border-radius: 36px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(18, 14, 10, 0.92), rgba(10, 9, 7, 0.88));
    border: 1px solid rgba(139, 110, 61, 0.35);
    box-shadow:
        0 18px 44px rgba(2, 8, 22, 0.5),
        inset 0 0 0 1px rgba(197, 160, 89, 0.05);
    backdrop-filter: blur(6px);
}

body.home-page .hero {
    background: linear-gradient(165deg, rgba(14, 12, 10, 0.55), rgba(8, 7, 5, 0.4));
    max-width: 1320px;
    border: 1px solid rgba(139, 110, 61, 0.35);
    border-radius: 28px;
    box-shadow:
        0 0 0 1px rgba(197, 160, 89, 0.12),
        0 24px 56px rgba(0, 0, 0, 0.45);
}

body.home-page .hero::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    border-radius: 28px 28px 0 0;
    background: linear-gradient(90deg, transparent, var(--portal-premium-gold) 20%, var(--portal-premium-gold-bright) 50%, var(--portal-premium-gold) 80%, transparent);
    opacity: 0.85;
    pointer-events: none;
}

body.home-page .hero__marquee {
    border-bottom-color: rgba(201, 162, 39, 0.22);
    box-shadow: 0 2px 0 rgba(197, 160, 89, 0.08);
}

body.home-page .hero__marquee-item {
    background: linear-gradient(
        115deg,
        var(--portal-premium-gold-bright) 0%,
        var(--color-cabal-cyan) 38%,
        var(--portal-premium-gold) 52%,
        var(--color-cabal-violet) 78%,
        var(--portal-premium-gold-bright) 100%
    );
    background-size: 220% 100%;
}

body.home-page .hero__character-row {
    border-top-color: rgba(201, 162, 39, 0.2);
}

body.home-page .hero__row--home .hero-account-box {
    box-shadow:
        0 0 0 1px rgba(201, 162, 39, 0.2),
        0 0 28px rgba(197, 160, 89, 0.22),
        0 0 50px rgba(166, 124, 58, 0.14),
        inset 0 0 40px rgba(0, 0, 0, 0.4);
}

.hero__marquee {
    position: relative;
    overflow: hidden;
    padding: 14px 0 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.25);
    box-shadow: 0 2px 0 rgba(166, 124, 58, 0.15);
}

.hero__marquee::after,
.hero__marquee::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    pointer-events: none;
    z-index: 1;
}

.hero__marquee::before {
    left: 0;
    background: linear-gradient(90deg, rgba(6, 12, 30, 0.95), transparent);
}

.hero__marquee::after {
    right: 0;
    background: linear-gradient(270deg, rgba(6, 12, 30, 0.95), transparent);
}

.hero__marquee-track {
    display: flex;
    gap: 48px;
    animation: heroMarqueeScroll 24s linear infinite;
    width: max-content;
}

.hero__marquee-item {
    flex: 0 0 auto;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
    background: linear-gradient(115deg, var(--color-cabal-cyan), var(--color-cabal-violet), var(--color-cabal-cyan));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 0 12px rgba(197, 160, 89, 0.4));
    animation: heroMarqueeGlow 4s ease-in-out infinite alternate;
}

.hero__marquee-item i {
    color: var(--color-cabal-cyan);
    filter: drop-shadow(0 0 8px rgba(197, 160, 89, 0.8));
    margin-right: 8px;
}

@keyframes heroMarqueeScroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes heroMarqueeGlow {
    0% {
        filter: drop-shadow(0 0 12px rgba(197, 160, 89, 0.4)) drop-shadow(0 0 24px rgba(166, 124, 58, 0.2));
    }
    100% {
        filter: drop-shadow(0 0 18px rgba(197, 160, 89, 0.6)) drop-shadow(0 0 32px rgba(166, 124, 58, 0.4));
    }
}

.hero__headline {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.hero__figure {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    width: 100%;
    position: relative;
}

.hero__logo {
    flex: 0 0 auto;
    width: clamp(320px, 50vw, 520px);
    height: auto;
    min-height: clamp(280px, 45vw, 460px);
    max-height: 65vh;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: transparent;
    border: none;
    box-shadow: none;
    position: relative;
    overflow: visible;
}

.hero__logo img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 65vh;
    object-fit: contain;
    object-position: top center;
}

.hero__caption {
    flex: 0 0 auto;
    max-width: 640px;
    font-size: 1.14rem;
    line-height: 1.85;
    color: rgba(220, 234, 255, 0.84);
    text-align: center;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    margin: 0;
    margin-top: 8px;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.hero::before,
.hero::after {
    display: none;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 999px;
    background: linear-gradient(120deg, 
        rgba(197, 160, 89, 0.25), 
        rgba(140, 100, 50, 0.3),
        rgba(255, 0, 255, 0.25));
    border: 2px solid rgba(197, 160, 89, 0.5);
    color: rgba(255, 255, 255, 1);
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 28px;
    text-shadow: 
        0 0 15px rgba(197, 160, 89, 0.8),
        0 0 30px rgba(140, 100, 50, 0.6);
    font-weight: 800;
    box-shadow: 
        0 0 25px rgba(197, 160, 89, 0.3),
        inset 0 0 20px rgba(197, 160, 89, 0.1);
    position: relative;
    overflow: hidden;
}

.hero__eyebrow::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    animation: eyebrowShimmer 3s infinite;
}

@keyframes eyebrowShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero__title {
    position: relative;
    font-size: clamp(3rem, 6.6vw, 4.6rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 20px;
    color: transparent;
    background: linear-gradient(115deg, #faffff 18%, #d4b06a 42%, #9a6dff 68%, #faffff 90%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 18px 40px rgba(3, 10, 32, 0.55);
}

.hero__title::after {
    content: "";
    position: absolute;
    inset: -14px -18px;
    border-radius: 36px;
    background: radial-gradient(circle at top left, rgba(197, 160, 89, 0.22), transparent 55%);
    pointer-events: none;
    opacity: 0.65;
    filter: blur(18px);
}

.hero__title span {
    display: block;
    animation: heroTitleGlow 6s ease-in-out infinite alternate;
}

@keyframes heroTitleGlow {
    0% { text-shadow: 0 0 18px rgba(197, 160, 89, 0.48), 0 0 36px rgba(166, 124, 58, 0.32); }
    100% { text-shadow: 0 0 24px rgba(166, 124, 58, 0.52), 0 0 46px rgba(197, 160, 89, 0.38); }
}

.hero__subtitle {
    max-width: 640px;
    font-size: 1.14rem;
    line-height: 1.85;
    color: rgba(220, 234, 255, 0.84);
    margin-bottom: 26px;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.hero__online {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 999px;
    padding: 14px 26px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.hero__online::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(197, 160, 89, 0.2), 
        transparent);
    animation: onlineShimmer 3s infinite;
}

@keyframes onlineShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero__actions .hero__online {
    margin-left: auto;
    white-space: nowrap;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

/* Hero: módulo Conectar-se / Cadastro (estilo Warkane) */
.hero__row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
    margin-bottom: 32px;
    padding: 20px;
    border: 1px solid rgba(111, 158, 255, 0.18);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(5, 12, 28, 0.6), rgba(12, 18, 36, 0.42));
}
@media (max-width: 900px) {
    .hero__row {
        grid-template-columns: 1fr;
    }
}

/* Home: menus (esq) | logado premiado (centro) | login + stats (dir) — estilo portal MMORPG */
.hero__row.hero__row--home {
    grid-template-columns: minmax(220px, 280px) minmax(300px, 1fr) minmax(220px, 300px);
    gap: 28px 36px;
    align-items: start;
    padding: 20px 18px 22px;
    margin-bottom: 0;
    background: linear-gradient(165deg, rgba(6, 12, 28, 0.72), rgba(4, 9, 22, 0.5));
    border: 1px solid rgba(197, 160, 89, 0.14);
    border-radius: 24px;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body.home-page .hero__row.hero__row--home {
    background: linear-gradient(180deg, rgba(10, 11, 16, 0.75) 0%, rgba(6, 8, 16, 0.65) 100%);
    border: 1px solid rgba(42, 44, 58, 0.95);
    box-shadow:
        0 0 0 1px rgba(201, 162, 39, 0.1),
        0 16px 48px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero__menu-col,
.hero__center-col {
    min-width: 0;
    position: relative;
    z-index: 2;
}

.hero__center-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.hero__row--home .hero__logado-premiado-col {
    width: 100%;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.hero__row--home .hero__side {
    width: 100%;
    max-width: none;
    min-width: 0;
    align-self: stretch;
}

.hero__row--home .hero-account-box {
    width: 100%;
    max-width: none;
    min-width: 0;
    height: auto;
    min-height: 0;
}

/* Card de atalhos (espelha o header; só layout) */
.hero-menu-box {
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(160deg, rgba(10, 18, 36, 0.96), rgba(6, 12, 26, 0.98));
    border: 2px solid rgba(197, 160, 89, 0.38);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow:
        0 0 22px rgba(197, 160, 89, 0.18),
        inset 0 0 32px rgba(0, 0, 0, 0.35);
}

.hero-menu-box__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: linear-gradient(90deg, rgba(12, 40, 56, 0.95), rgba(14, 22, 44, 0.92));
    border-bottom: 1px solid rgba(197, 160, 89, 0.28);
    color: #fff;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-menu-box__header i {
    color: var(--color-cabal-cyan);
    filter: drop-shadow(0 0 8px rgba(197, 160, 89, 0.55));
}

body.home-page .hero-menu-box {
    border-color: rgba(55, 58, 72, 0.95);
    box-shadow:
        0 0 0 1px rgba(201, 162, 39, 0.15),
        0 12px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body.home-page .hero-menu-box__header {
    background: linear-gradient(90deg, rgba(32, 28, 12, 0.95) 0%, rgba(14, 22, 44, 0.92) 55%, rgba(10, 18, 36, 0.95) 100%);
    border-bottom-color: rgba(201, 162, 39, 0.28);
}

body.home-page .hero-menu-box__header i {
    color: var(--portal-premium-gold-bright);
    filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.45));
}

.hero-menu-box__nav {
    display: flex;
    flex-direction: column;
    padding: 12px 10px 14px;
    gap: 6px;
}

.hero-menu-box__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: rgba(230, 240, 255, 0.95);
    text-decoration: none;
    border: 1px solid transparent;
    background: rgba(0, 0, 0, 0.2);
    transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}

.hero-menu-box__link i {
    width: 1.15em;
    text-align: center;
    opacity: 0.9;
    color: var(--color-cabal-cyan);
}

.hero-menu-box__link:hover {
    background: rgba(197, 160, 89, 0.1);
    border-color: rgba(197, 160, 89, 0.35);
    color: #fff;
    box-shadow: 0 0 16px rgba(197, 160, 89, 0.12);
}

.hero-menu-box__link.is-active {
    border-color: rgba(197, 160, 89, 0.5);
    background: rgba(197, 160, 89, 0.12);
    color: #fff;
}

.hero-menu-box__link--whatsapp i {
    color: #25d366;
}

.hero-menu-box__link--discord i {
    color: #5865f2;
}

/* Faixa inferior: arte + texto (sem sobrepor as colunas) */
.hero__character-row {
    margin-top: 28px;
    padding: 28px 20px 8px;
    border-top: 1px solid rgba(197, 160, 89, 0.12);
}

.hero__figure--spotlight {
    margin: 0 auto;
    max-width: 720px;
}

.hero__figure--spotlight .hero__logo {
    width: min(100%, 400px);
    min-height: unset;
    max-height: 360px;
}

.hero__figure--spotlight .hero__logo img {
    max-height: 340px;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.45));
}

.hero__figure--spotlight .hero__caption {
    font-size: 1.05rem;
    margin-top: 16px;
}

.hero__logado-premiado-col {
    min-width: 0;
    position: relative;
    z-index: 2;
}

.hero-logado-premiado {
    margin: 0 !important;
    max-height: min(78vh, 820px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-logado-premiado .site-header__reward-led-board {
    flex-shrink: 0;
}

.hero-logado-premiado .site-header__reward-flash {
    flex-shrink: 0;
}

.hero-logado-premiado__list-head {
    margin-top: 10px;
    margin-bottom: 8px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 209, 102, 0.95);
    text-shadow: 0 0 10px rgba(255, 209, 102, 0.45);
}

.hero-logado-premiado__list-head i {
    margin-right: 8px;
    color: #ffd166;
}

.hero-logado-premiado__list {
    list-style: none;
    margin: 0;
    padding: 8px 10px;
    flex: 1;
    min-height: 120px;
    max-height: 280px;
    overflow-y: auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 209, 102, 0.28);
    background: rgba(4, 10, 24, 0.65);
    box-shadow: inset 0 0 20px rgba(255, 100, 60, 0.12);
}

.hero-logado-premiado__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 6px 12px;
    padding: 8px 6px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.12);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(240, 248, 255, 0.95);
}

.hero-logado-premiado__item:last-child {
    border-bottom: none;
}

.hero-logado-premiado__who {
    flex: 1 1 140px;
    min-width: 0;
    line-height: 1.35;
}

.hero-logado-premiado__acct {
    opacity: 0.85;
    font-weight: 600;
    font-size: 0.68rem;
}

.hero-logado-premiado__meta {
    flex: 0 0 auto;
    color: #e8dcc4;
    text-shadow: 0 0 8px rgba(197, 160, 89, 0.35);
    white-space: nowrap;
}

.hero-logado-premiado__empty {
    margin-top: 8px;
}

@media (max-width: 1160px) {
    .hero__row.hero__row--home {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 18px 14px 20px;
    }
    .hero__menu-col,
    .hero__center-col,
    .hero__side {
        width: 100%;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero__row--home .hero__logado-premiado-col {
        max-width: 440px;
    }
}

@media (max-width: 900px) {
    .hero__row.hero__row--home {
        grid-template-columns: 1fr;
    }
    .hero__side {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    .hero-menu-box__link {
        padding: 12px 14px;
    }
    .hero__character-row {
        margin-top: 20px;
        padding: 20px 12px 4px;
    }
}

.hero__content {
    min-width: 0;
}
.hero-account-box {
    position: relative;
    width: 340px;
    height: 400px;
    min-width: 280px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(160deg, rgba(12, 16, 28, 0.95), rgba(8, 12, 24, 0.98));
    border: 2px solid rgba(197, 160, 89, 0.5);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow:
        0 0 25px rgba(197, 160, 89, 0.3),
        0 0 50px rgba(166, 124, 58, 0.2),
        inset 0 0 40px rgba(0, 0, 0, 0.4);
}
.hero-account-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 2px;
    background: linear-gradient(135deg, var(--color-cabal-cyan), var(--color-cabal-violet));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
}
.hero-account-box__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    flex-shrink: 0;
    background: linear-gradient(90deg, rgba(20, 28, 48, 0.95), rgba(15, 22, 40, 0.9));
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.hero-account-box__header i {
    color: var(--color-cabal-cyan);
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.6);
}
.hero-account-box__body {
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow: visible;
    gap: 14px;
}
.hero-account-box__body form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.hero-account-box .form-label {
    margin-bottom: 4px;
    font-size: 0.82rem;
}
.hero-account-box .form-input {
    margin-bottom: 0;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(197, 160, 89, 0.25);
    background: rgba(6, 12, 28, 0.8);
}
.hero-account-box .form-input:focus {
    border-color: rgba(197, 160, 89, 0.5);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}
.hero-account-box__row {
    display: flex;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 0;
}
.hero-account-box__row .form-input {
    flex: 1;
    margin-bottom: 0;
    min-width: 0;
}
.hero-account-box__btn-entrar {
    flex: 0 0 auto;
    padding: 10px 18px;
    border-radius: 10px;
    border: 1px solid rgba(197, 160, 89, 0.5);
    background: linear-gradient(135deg, rgba(20, 28, 48, 0.9), rgba(15, 22, 40, 0.9));
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}
.hero-account-box__btn-entrar:hover {
    background: rgba(197, 160, 89, 0.2);
    border-color: rgba(197, 160, 89, 0.6);
    box-shadow: 0 0 16px rgba(197, 160, 89, 0.25);
}
.hero-account-box__forgot {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0;
    color: rgba(200, 220, 255, 0.9);
    font-size: 0.82rem;
    text-decoration: none;
    transition: color 0.2s;
}
.hero-account-box__forgot:hover {
    color: var(--color-cabal-cyan);
}
.hero-account-box__forgot i {
    color: rgba(197, 160, 89, 0.8);
    font-size: 0.75rem;
}
.hero-account-box__btn-cadastro {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(197, 160, 89, 0.4);
    background: linear-gradient(160deg, rgba(40, 48, 64, 0.9), rgba(28, 34, 48, 0.95));
    color: rgba(220, 230, 255, 0.95);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.hero-account-box__btn-cadastro:hover {
    background: rgba(60, 70, 90, 0.95);
    border-color: rgba(197, 160, 89, 0.55);
    color: #fff;
}

.hero-account-box__online {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 0;
    padding: 12px 14px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 10px;
    color: rgba(220, 230, 255, 0.95);
    font-size: 0.9rem;
}
.hero-account-box__online i {
    color: var(--color-cabal-cyan);
    font-size: 1.1rem;
    filter: drop-shadow(0 0 8px rgba(197, 160, 89, 0.6));
}
.hero-account-box__online-label {
    font-weight: 600;
}
.hero-account-box__online-count {
    color: var(--color-cabal-cyan);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.5);
}

/* Hero: coluna lateral (conectar + estatísticas) */
.hero__side {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    width: 340px;
    min-width: 280px;
    max-width: 380px;
}
@media (max-width: 900px) {
    .hero__side {
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
    }
}

/* Hero: card Estatísticas do servidor */
.hero-stats-box {
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(160deg, rgba(12, 16, 28, 0.95), rgba(8, 12, 24, 0.98));
    border: 2px solid rgba(166, 124, 58, 0.45);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow:
        0 0 25px rgba(166, 124, 58, 0.25),
        0 0 50px rgba(197, 160, 89, 0.15),
        inset 0 0 40px rgba(0, 0, 0, 0.4);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.hero-stats-box:hover {
    border-color: rgba(166, 124, 58, 0.6);
    box-shadow: 0 0 30px rgba(166, 124, 58, 0.35), 0 0 20px rgba(197, 160, 89, 0.2);
}
.hero-stats-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 2px;
    background: linear-gradient(135deg, var(--color-cabal-violet), var(--color-cabal-cyan));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
}
.hero-stats-box__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: linear-gradient(90deg, rgba(30, 20, 50, 0.95), rgba(20, 28, 48, 0.9));
    border-bottom: 1px solid rgba(166, 124, 58, 0.35);
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.hero-stats-box__header i {
    color: var(--color-cabal-violet);
    text-shadow: 0 0 10px rgba(166, 124, 58, 0.6);
}
.hero-stats-box__body {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.hero-stats-box__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 10px;
    color: rgba(220, 230, 255, 0.9);
    font-size: 0.9rem;
}
.hero-stats-box__item i {
    color: var(--color-cabal-cyan);
    font-size: 1.1rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(197, 160, 89, 0.5));
}
.hero-stats-box__label {
    flex: 1;
    font-weight: 500;
}
.hero-stats-box__value {
    color: var(--color-cabal-cyan);
    font-weight: 700;
    text-shadow: 0 0 8px rgba(197, 160, 89, 0.4);
}
.hero-stats-box__value--online {
    color: #10b981;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
}
.hero-stats-box__value--offline {
    color: #f87171;
    text-shadow: 0 0 10px rgba(248, 113, 113, 0.5);
}
.hero-stats-box__item--status .hero-stats-box__value--online i,
.hero-stats-box__item--status i {
    color: inherit;
}

.hero__online i {
    color: var(--color-neo-cyan);
    font-size: 1.3rem;
    filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.8));
    animation: onlineIconPulse 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes onlineIconPulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.8));
    }
    50% { 
        transform: scale(1.1);
        filter: drop-shadow(0 0 20px rgba(197, 160, 89, 1));
    }
}

.hero__online-label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    color: rgba(205, 216, 255, 0.7);
}

.hero__online-count {
    font-size: 1.4rem;
    color: var(--color-neo-cyan);
    font-weight: 900;
    text-shadow: 
        0 0 15px rgba(197, 160, 89, 0.8),
        0 0 30px rgba(140, 100, 50, 0.6);
    position: relative;
    z-index: 1;
    animation: countGlow 2s ease-in-out infinite;
}

@keyframes countGlow {
    0%, 100% { 
        text-shadow: 
            0 0 15px rgba(197, 160, 89, 0.8),
            0 0 30px rgba(140, 100, 50, 0.6);
    }
    50% { 
        text-shadow: 
            0 0 25px rgba(197, 160, 89, 1),
            0 0 50px rgba(140, 100, 50, 0.8);
    }
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid transparent;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.btn--primary {
    position: relative;
    background: linear-gradient(120deg, #c5a059 0%, #8b4dff 50%, #ff5f6d 100%);
    background-size: 200% 200%;
    color: #061024;
    box-shadow: 
        0 22px 44px rgba(78, 164, 255, 0.35),
        0 0 30px rgba(197, 160, 89, 0.3);
    animation: buttonGradient 3s ease infinite;
    overflow: hidden;
}

.btn--primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn--primary:hover::before {
    left: 100%;
}

@keyframes buttonGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn--primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 26px 56px rgba(78, 164, 255, 0.45),
        0 0 40px rgba(197, 160, 89, 0.4);
}

.btn--ghost {
    background: linear-gradient(135deg, rgba(9, 16, 32, 0.75), rgba(15, 25, 45, 0.72));
    border-color: rgba(197, 160, 89, 0.35);
    color: rgba(212, 229, 255, 0.95);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(197, 160, 89, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn--ghost:hover {
    border-color: rgba(197, 160, 89, 0.65);
    background: linear-gradient(135deg, rgba(9, 16, 32, 0.85), rgba(15, 25, 45, 0.82));
    transform: translateY(-3px);
    box-shadow: 
        0 18px 34px rgba(6, 14, 38, 0.5),
        0 0 25px rgba(197, 160, 89, 0.3),
        inset 0 0 30px rgba(197, 160, 89, 0.1);
    color: rgba(255, 255, 255, 1);
}

/* NEWS SECTION ---------------------------------------------------------- */
.news-section {
    max-width: 1200px;
    margin: 0 auto;
}

.section-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
    position: relative;
}

.section-heading__title {
    font-size: clamp(2.3rem, 5.5vw, 3.2rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    background: linear-gradient(110deg, 
        #ffffff 0%, 
        var(--color-neo-cyan) 30%, 
        var(--color-neo-blue) 50%,
        var(--color-neo-purple) 70%,
        var(--color-neo-pink) 100%);
    background-size: 200% 200%;
    animation: sectionTitleGradient 4s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    filter: drop-shadow(0 0 20px rgba(197, 160, 89, 0.5));
}

@keyframes sectionTitleGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.section-heading__subtitle {
    font-size: 0.95rem;
    color: rgba(206, 224, 255, 0.68);
    letter-spacing: 0.08em;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.news-card {
    position: relative;
    padding: 60px 28px 30px;
    border-radius: 28px;
    background: 
        radial-gradient(ellipse at top left, rgba(197, 160, 89, 0.15), transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(140, 100, 50, 0.12), transparent 60%),
        linear-gradient(150deg, rgba(0, 0, 0, 0.92), rgba(15, 15, 30, 0.88));
    border: 2px solid rgba(197, 160, 89, 0.3);
    box-shadow: 
        0 0 40px rgba(197, 160, 89, 0.2),
        0 20px 50px rgba(0, 0, 0, 0.7),
        inset 0 0 40px rgba(197, 160, 89, 0.08);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
}

.news-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, 
        rgba(197, 160, 89, 0.3), 
        rgba(140, 100, 50, 0.3), 
        rgba(255, 0, 255, 0.3),
        rgba(197, 160, 89, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 30px;
    z-index: -1;
}

.news-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(197, 160, 89, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

.news-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 0 60px rgba(197, 160, 89, 0.5),
        0 0 40px rgba(140, 100, 50, 0.3),
        0 30px 70px rgba(0, 0, 0, 0.8),
        inset 0 0 50px rgba(197, 160, 89, 0.15);
    border-color: rgba(197, 160, 89, 0.6);
    background: 
        radial-gradient(ellipse at top left, rgba(197, 160, 89, 0.25), transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(140, 100, 50, 0.2), transparent 60%),
        linear-gradient(150deg, rgba(0, 0, 0, 0.95), rgba(15, 15, 30, 0.92));
}

.news-card:hover::before {
    opacity: 1;
}

.news-card:hover::after {
    left: 100%;
}

.news-card__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 16px;
}

.news-card__title {
    font-size: 1.16rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.news-card__date {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(194, 210, 255, 0.6);
}

.news-card__excerpt {
    font-size: 0.98rem;
    line-height: 1.72;
    color: rgba(220, 232, 255, 0.84);
    min-height: 96px;
}

.news-card__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.25), rgba(140, 100, 50, 0.3));
    border: 1px solid rgba(197, 160, 89, 0.4);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 
        0 4px 12px rgba(197, 160, 89, 0.3),
        inset 0 0 10px rgba(197, 160, 89, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 2;
}

.news-card__badge i {
    font-size: 0.85rem;
    filter: drop-shadow(0 0 6px rgba(197, 160, 89, 0.8));
}

.news-card:hover .news-card__badge {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 
        0 6px 18px rgba(197, 160, 89, 0.5),
        inset 0 0 15px rgba(197, 160, 89, 0.2);
    border-color: rgba(197, 160, 89, 0.6);
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.35), rgba(140, 100, 50, 0.4));
}

.news-empty {
    text-align: center;
    padding: 42px;
    border-radius: 22px;
    border: 1px dashed rgba(197, 160, 89, 0.45);
    background: rgba(6, 14, 28, 0.82);
    color: rgba(186, 226, 255, 0.8);
    font-weight: 600;
    letter-spacing: 0.08em;
}

/* UTILITIES ------------------------------------------------------------- */
.message {
    padding: 14px 18px;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.message.info-message {
    background: rgba(0, 229, 255, 0.15);
    border: 1px solid rgba(0, 229, 255, 0.35);
    color: #b7f9ff;
}

.message.success-message {
    background: rgba(61, 255, 190, 0.1);
    border: 1px solid rgba(61, 255, 190, 0.32);
    color: #d0ffe8;
}

.message.error-message {
    background: rgba(248, 78, 114, 0.1);
    border: 1px solid rgba(248, 78, 114, 0.24);
    color: #ffc7d6;
}

/* AUTH PAGES ------------------------------------------------------------ */
.auth-shell {
    max-width: 1200px;
    margin: 0 auto 32px;
    padding: 0 20px;
    width: 100%;
}

/* Quando tem user-panel-content, remover padding do auth-shell */
.auth-shell.user-panel-active {
    padding: 0;
}

/* Container interno para conteúdo do painel do usuário */
.user-panel-content {
    background: 
        radial-gradient(ellipse at top left, rgba(197, 160, 89, 0.1), transparent 60%),
        linear-gradient(150deg, rgba(0, 0, 0, 0.85), rgba(15, 15, 30, 0.9));
    border-radius: 28px;
    padding: 65px 35px 35px;
    border: 2px solid rgba(197, 160, 89, 0.3);
    box-shadow: 
        0 0 40px rgba(197, 160, 89, 0.15),
        0 30px 60px rgba(0, 0, 0, 0.7),
        inset 0 0 40px rgba(197, 160, 89, 0.05);
    position: relative;
    overflow: visible;
    margin-bottom: 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.user-panel-content:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 0 60px rgba(197, 160, 89, 0.25),
        0 40px 80px rgba(0, 0, 0, 0.8),
        inset 0 0 50px rgba(197, 160, 89, 0.1);
    border-color: rgba(197, 160, 89, 0.5);
}

/* Estilo para formulário de login (quando não está logado, layout antigo sem imagem ao lado) */
.auth-shell:not(.user-panel-active):not(.auth-shell--with-side) {
    max-width: 420px;
    background: linear-gradient(150deg, rgba(6, 12, 28, 0.9), rgba(10, 20, 44, 0.94));
    border-radius: 24px;
    padding: 38px 34px;
    border: 1px solid rgba(139, 110, 61, 0.22);
    box-shadow: 0 26px 46px rgba(5, 12, 28, 0.58);
    backdrop-filter: blur(18px);
}

/* Layout com imagem fora do card (Entrar / Criar conta) — lado a lado */
.auth-shell.auth-shell--with-side {
    max-width: 960px;
    margin-left: auto;
}

.auth-shell.auth-shell--with-side .auth-page__row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
}

.auth-page__media {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.auth-page__hero-img {
    display: block;
    max-width: 100%;
    width: 520px;
    height: auto;
    object-fit: contain;
    border: none;
    outline: none;
    vertical-align: middle;
}

/* Tela Entrar: imagem bem maior */
.auth-shell--entrar .auth-page__hero-img {
    width: 720px;
}

.auth-shell.auth-shell--with-side .auth-page__card {
    flex: 0 0 auto;
    min-width: 0;
    width: 420px;
    max-width: 440px;
    background: linear-gradient(150deg, rgba(6, 12, 28, 0.9), rgba(10, 20, 44, 0.94));
    border-radius: 24px;
    padding: 38px 34px;
    border: 1px solid rgba(139, 110, 61, 0.22);
    box-shadow: 0 26px 46px rgba(5, 12, 28, 0.58);
    backdrop-filter: blur(18px);
}

.auth-page__subtitle {
    text-align: center;
    margin-bottom: 24px;
}

.auth-page__footer-link {
    text-align: center;
    margin-top: 18px;
    color: rgba(207, 220, 255, 0.76);
    font-size: 0.9rem;
}

/* Telas menores: mantém lado a lado, reduz tamanhos para caber */
@media (max-width: 900px) {
    .auth-page__hero-img {
        width: 380px;
    }

    .auth-shell--entrar .auth-page__hero-img {
        width: 560px;
    }

    .auth-shell.auth-shell--with-side .auth-page__card {
        width: 380px;
    }
}

@media (max-width: 720px) {
    .auth-page__hero-img {
        width: 280px;
    }

    .auth-shell--entrar .auth-page__hero-img {
        width: 400px;
    }

    .auth-shell.auth-shell--with-side .auth-page__card {
        width: 320px;
        max-width: 100%;
    }
}

.auth-title {
    text-align: center;
    font-size: 1.92rem;
    letter-spacing: 0.06em;
    margin-bottom: 24px;
    text-transform: uppercase;
    background: linear-gradient(115deg, #fdfefe 0%, var(--color-cabal-cyan) 48%, var(--color-cabal-violet) 92%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 16px 26px rgba(4, 8, 22, 0.4);
}

.form-label {
    font-weight: 600;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    background: rgba(12, 20, 34, 0.78);
    border: 1px solid rgba(120, 152, 255, 0.28);
    border-radius: 12px;
    padding: 12px 14px;
    color: #f3f7ff;
    margin-bottom: 18px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: rgba(197, 160, 89, 0.62);
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.18);
}

.form-extras {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
}

.form-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(207, 220, 255, 0.74);
}

.dark-link {
    color: rgba(121, 202, 255, 0.78);
}

.dark-link:hover {
    color: rgba(121, 202, 255, 1);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 12px 18px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(130deg, #d4b06a, #7f69ff);
    color: #041124;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 18px 34px rgba(80, 180, 255, 0.32);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 44px rgba(80, 180, 255, 0.42);
}

/* TABLES / RANKING ------------------------------------------------------ */
.card {
    background: 
        radial-gradient(ellipse at top left, rgba(197, 160, 89, 0.15), transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(140, 100, 50, 0.12), transparent 60%),
        linear-gradient(150deg, rgba(0, 0, 0, 0.88), rgba(15, 15, 30, 0.92));
    padding: 70px 38px 40px;
    border-radius: 32px;
    border: 2px solid rgba(197, 160, 89, 0.35);
    box-shadow: 
        0 0 50px rgba(197, 160, 89, 0.25),
        0 0 30px rgba(140, 100, 50, 0.15),
        0 30px 70px rgba(0, 0, 0, 0.8),
        inset 0 0 50px rgba(197, 160, 89, 0.08);
    backdrop-filter: blur(25px) saturate(180%);
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    border-color: rgba(197, 160, 89, 0.5);
    box-shadow: 
        0 0 60px rgba(197, 160, 89, 0.35),
        0 0 40px rgba(140, 100, 50, 0.25),
        0 35px 80px rgba(0, 0, 0, 0.9),
        inset 0 0 60px rgba(197, 160, 89, 0.12);
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(197, 160, 89, 0.6), 
        rgba(140, 100, 50, 0.6),
        rgba(255, 0, 255, 0.6),
        transparent);
    animation: cardTopGlow 3s ease-in-out infinite;
}

@keyframes cardTopGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.page-title {
    font-size: clamp(2.2rem, 5.5vw, 3.5rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(120deg, 
        #ffffff 0%, 
        var(--color-neo-cyan) 30%, 
        var(--color-neo-blue) 50%,
        var(--color-neo-purple) 70%,
        var(--color-neo-pink) 100%);
    background-size: 200% 200%;
    animation: pageTitleGradient 4s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 25px rgba(197, 160, 89, 0.6));
    font-weight: 900;
    position: relative;
}

@keyframes pageTitleGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Página de Ranking: conteúdo mais próximo do topo / menu */
.rankings-page .site-main {
    padding-top: 8px;
}
.rankings-page .card {
    padding-top: 28px;
}
.rankings-page .page-title {
    margin-bottom: 20px;
}

/* Tema da logo na seção de ranking (cyan, violet, gold, ember) */
.rankings-page .ranking-page-title {
    background: linear-gradient(120deg,
        var(--color-cabal-cyan) 0%,
        var(--color-cabal-violet) 35%,
        var(--color-gold) 65%,
        var(--color-ember) 100%);
    background-size: 200% 200%;
    animation: pageTitleGradient 4s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 20px rgba(197, 160, 89, 0.5));
}

/* Tabela de ranking: mais cores no tema da logo */
.rankings-page .ranking-table {
    background:
        radial-gradient(ellipse at top left, rgba(197, 160, 89, 0.12), transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(166, 124, 58, 0.15), transparent 50%),
        radial-gradient(ellipse at top right, rgba(255, 209, 102, 0.08), transparent 45%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.92), rgba(15, 15, 35, 0.9));
    border-color: rgba(197, 160, 89, 0.35);
    box-shadow:
        0 0 50px rgba(197, 160, 89, 0.2),
        0 0 35px rgba(166, 124, 58, 0.15),
        0 0 20px rgba(255, 209, 102, 0.1),
        inset 0 0 40px rgba(197, 160, 89, 0.06);
}

.rankings-page .ranking-table thead th {
    background: linear-gradient(90deg,
        rgba(197, 160, 89, 0.22),
        rgba(166, 124, 58, 0.28),
        rgba(255, 209, 102, 0.2),
        rgba(255, 95, 109, 0.18));
    color: #fff;
    text-shadow: 0 0 12px rgba(197, 160, 89, 0.7);
    border-bottom: 2px solid rgba(197, 160, 89, 0.4);
    border-right: 1px solid rgba(197, 160, 89, 0.35);
    padding: 16px 12px;
    text-align: center;
    vertical-align: middle;
}
.rankings-page .ranking-table thead th:last-child {
    border-right: none;
}

/* Barra separando cada nome do cabeçalho (tema logo) */
.rankings-page .ranking-table thead th:not(:last-child)::after {
    content: " | ";
    margin-left: 12px;
    color: var(--color-cabal-cyan);
    opacity: 0.85;
    font-weight: 400;
    text-shadow: 0 0 8px rgba(197, 160, 89, 0.6);
}

.rankings-page .ranking-table tbody tr:nth-child(odd) {
    background: linear-gradient(90deg, rgba(197, 160, 89, 0.04), transparent 30%, transparent 70%, rgba(166, 124, 58, 0.04));
}
.rankings-page .ranking-table tbody tr:nth-child(even) {
    background: linear-gradient(90deg, rgba(166, 124, 58, 0.04), transparent 30%, transparent 70%, rgba(255, 209, 102, 0.03));
}
.rankings-page .ranking-table tbody tr:hover {
    background: linear-gradient(90deg,
        rgba(197, 160, 89, 0.18),
        rgba(166, 124, 58, 0.2),
        rgba(197, 160, 89, 0.18));
    box-shadow: 0 0 25px rgba(197, 160, 89, 0.25), 0 0 15px rgba(166, 124, 58, 0.2);
}
.rankings-page .ranking-table td {
    border-bottom: 1px solid rgba(197, 160, 89, 0.08);
    border-right: 1px solid rgba(197, 160, 89, 0.2);
    color: rgba(238, 246, 255, 0.92);
    text-align: center;
    vertical-align: middle;
    padding: 14px 12px;
}
.rankings-page .ranking-table td:last-child {
    border-right: none;
}

/* Destaque dos top 3 (ouro, prata, bronze / cyan) */
.rankings-page .ranking-table tbody tr.rank-1 {
    background: linear-gradient(90deg, rgba(255, 209, 102, 0.15), rgba(197, 160, 89, 0.1), rgba(255, 209, 102, 0.1));
    border-left: 3px solid var(--color-gold);
    box-shadow: inset 0 0 30px rgba(255, 209, 102, 0.15);
}
.rankings-page .ranking-table tbody tr.rank-1 td:first-child {
    color: var(--color-gold);
    text-shadow: 0 0 12px rgba(255, 209, 102, 0.6);
}
.rankings-page .ranking-table tbody tr.rank-2 {
    background: linear-gradient(90deg, rgba(200, 220, 255, 0.12), rgba(197, 160, 89, 0.08), rgba(200, 220, 255, 0.08));
    border-left: 3px solid var(--color-cabal-cyan);
    box-shadow: inset 0 0 25px rgba(197, 160, 89, 0.1);
}
.rankings-page .ranking-table tbody tr.rank-2 td:first-child {
    color: var(--color-cabal-cyan);
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.5);
}
.rankings-page .ranking-table tbody tr.rank-3 {
    background: linear-gradient(90deg, rgba(166, 124, 58, 0.12), rgba(255, 209, 102, 0.06), rgba(166, 124, 58, 0.08));
    border-left: 3px solid var(--color-cabal-violet);
    box-shadow: inset 0 0 25px rgba(166, 124, 58, 0.12);
}
.rankings-page .ranking-table tbody tr.rank-3 td:first-child {
    color: var(--color-cabal-violet);
    text-shadow: 0 0 10px rgba(166, 124, 58, 0.5);
}

/* Todas as tabelas da página ranking: colunas com linhas e conteúdo centralizado */
.rankings-page .styled-table thead th,
.rankings-page .styled-table td {
    text-align: center;
    vertical-align: middle;
}
.rankings-page .styled-table thead th:not(:last-child),
.rankings-page .styled-table td:not(:last-child) {
    border-right: 1px solid rgba(197, 160, 89, 0.22);
}
.rankings-page .styled-table thead th:last-child,
.rankings-page .styled-table td:last-child {
    border-right: none;
}
.rankings-page .styled-table td .character-class {
    margin: 0 auto;
}

/* Card da seção ranking (primeiro card) com aura da logo */
.rankings-page section.card:first-of-type {
    background:
        radial-gradient(ellipse at top left, rgba(197, 160, 89, 0.12), transparent 55%),
        radial-gradient(ellipse at bottom right, rgba(166, 124, 58, 0.1), transparent 55%),
        radial-gradient(ellipse at top right, rgba(255, 209, 102, 0.06), transparent 50%),
        linear-gradient(150deg, rgba(0, 0, 0, 0.88), rgba(15, 15, 32, 0.92));
    border-color: rgba(197, 160, 89, 0.4);
    box-shadow:
        0 0 55px rgba(197, 160, 89, 0.22),
        0 0 35px rgba(166, 124, 58, 0.15),
        inset 0 0 50px rgba(197, 160, 89, 0.06);
}

.styled-table {
    width: 100%;
    border-spacing: 0;
    border-collapse: separate;
    border-radius: 24px;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at top, rgba(197, 160, 89, 0.15), transparent 60%),
        radial-gradient(ellipse at bottom, rgba(140, 100, 50, 0.1), transparent 60%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.92), rgba(15, 15, 30, 0.88));
    border: 2px solid rgba(197, 160, 89, 0.3);
    box-shadow: 
        0 0 50px rgba(197, 160, 89, 0.2),
        0 0 30px rgba(140, 100, 50, 0.12),
        0 30px 60px rgba(0, 0, 0, 0.7),
        inset 0 0 40px rgba(197, 160, 89, 0.08);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

.styled-table:hover {
    border-color: rgba(197, 160, 89, 0.4);
    box-shadow: 
        0 0 60px rgba(197, 160, 89, 0.3),
        0 0 40px rgba(140, 100, 50, 0.2),
        0 35px 70px rgba(0, 0, 0, 0.8),
        inset 0 0 50px rgba(197, 160, 89, 0.12);
}

.styled-table thead th {
    background: linear-gradient(120deg, 
        rgba(197, 160, 89, 0.25), 
        rgba(140, 100, 50, 0.3),
        rgba(255, 0, 255, 0.25));
    padding: 20px 24px;
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.6);
    font-weight: 800;
    border-bottom: 2px solid rgba(197, 160, 89, 0.3);
}

.styled-table tbody tr {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.styled-table tbody tr:hover {
    background: linear-gradient(90deg, 
        rgba(197, 160, 89, 0.2), 
        rgba(140, 100, 50, 0.25),
        rgba(197, 160, 89, 0.2));
    transform: scale(1.02) translateX(4px);
    box-shadow: 
        0 0 25px rgba(197, 160, 89, 0.3),
        0 0 15px rgba(140, 100, 50, 0.2);
}

.styled-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 500;
    color: rgba(224, 236, 255, 0.86);
}

.status-online { 
    color: #10b981 !important; 
    font-weight: 700; 
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}
.status-offline { 
    color: #f87171 !important; 
    font-weight: 700; 
    text-shadow: 0 0 10px rgba(248, 113, 113, 0.5);
}

/* Garantir que as cores de status tenham prioridade na tabela */
.styled-table td.status-online,
.styled-table .status-online {
    color: #10b981 !important;
}

.styled-table td.status-offline,
.styled-table .status-offline {
    color: #f87171 !important;
}
.nation-neutral { color: #a5b4ff; font-weight: 700; }
.nation-capella { color: #8ec5ff; font-weight: 700; }
.nation-procyon { color: #d4b06a; font-weight: 700; }
.class-warrior   { color: #e5934b; }
.class-blader    { color: #54ffb9; }
.class-wizard    { color: #a38bff; }
.class-archer    { color: #ffd46b; }
.class-shielder  { color: #7da7ff; }
.class-fblader   { color: #ff8fab; }
.class-gladiator { color: #ff64d4; }
.class-gunner    { color: #7fffd4; }
.class-dmage     { color: #d6deff; }
.class-unknown   { color: rgba(224,236,255,0.68); }

/* Character Class Icons */
.character-class {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(15, 15, 30, 0.5));
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.character-class::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--class-color, #a5b4ff), transparent 70%);
    opacity: 0.15;
    transition: opacity 0.3s ease;
}

.character-class:hover {
    transform: translateY(-2px) scale(1.05);
    border-color: var(--class-color, #a5b4ff);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.4),
        0 0 20px var(--class-color, #a5b4ff);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(15, 15, 30, 0.6));
}

.character-class:hover::before {
    opacity: 0.3;
}

.class-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px var(--class-color, #a5b4ff));
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.character-class:hover .class-icon {
    filter: drop-shadow(0 0 12px var(--class-color, #a5b4ff)) brightness(1.2);
    transform: scale(1.1) rotate(5deg);
}

.class-code {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--class-color, #a5b4ff);
    text-shadow: 0 0 10px var(--class-color, #a5b4ff);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.character-class:hover .class-code {
    text-shadow: 0 0 15px var(--class-color, #a5b4ff);
    transform: scale(1.05);
}

/* Responsividade para cards de personagens no painel do usuário */
.characters-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .characters-grid {
        grid-template-columns: 1fr;
    }
}

/* Card Badges - Legendas Coloridas */
.card-badge {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.4),
        inset 0 0 15px rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    color: rgba(255, 255, 255, 0.98);
    white-space: nowrap;
    pointer-events: none;
}

.card-badge i {
    font-size: 1.1rem;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9));
}

.card-badge--blue {
    background: linear-gradient(135deg, rgba(29, 158, 255, 0.3), rgba(197, 160, 89, 0.35));
    border: 1px solid rgba(197, 160, 89, 0.5);
    box-shadow: 
        0 4px 12px rgba(197, 160, 89, 0.3),
        inset 0 0 10px rgba(197, 160, 89, 0.15);
}

.card-badge--purple {
    background: linear-gradient(135deg, rgba(166, 124, 58, 0.3), rgba(166, 124, 58, 0.35));
    border: 1px solid rgba(166, 124, 58, 0.5);
    box-shadow: 
        0 4px 12px rgba(166, 124, 58, 0.3),
        inset 0 0 10px rgba(166, 124, 58, 0.15);
}

.card-badge--gold {
    background: linear-gradient(135deg, rgba(255, 209, 102, 0.3), rgba(255, 193, 77, 0.35));
    border: 1px solid rgba(255, 209, 102, 0.5);
    box-shadow: 
        0 4px 12px rgba(255, 209, 102, 0.3),
        inset 0 0 10px rgba(255, 209, 102, 0.15);
}

.card-badge--green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(22, 163, 74, 0.35));
    border: 1px solid rgba(34, 197, 94, 0.5);
    box-shadow: 
        0 4px 12px rgba(34, 197, 94, 0.3),
        inset 0 0 10px rgba(34, 197, 94, 0.15);
}

.card-badge--cyan {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.3), rgba(197, 160, 89, 0.35));
    border: 1px solid rgba(197, 160, 89, 0.5);
    box-shadow: 
        0 4px 12px rgba(197, 160, 89, 0.3),
        inset 0 0 10px rgba(197, 160, 89, 0.15);
}

.card-badge--orange {
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.3), rgba(255, 159, 10, 0.35));
    border: 1px solid rgba(255, 149, 0, 0.5);
    box-shadow: 
        0 4px 12px rgba(255, 149, 0, 0.3),
        inset 0 0 10px rgba(255, 149, 0, 0.15);
}

.card-badge--pink {
    background: linear-gradient(135deg, rgba(255, 95, 109, 0.3), rgba(255, 143, 171, 0.35));
    border: 1px solid rgba(255, 95, 109, 0.5);
    box-shadow: 
        0 4px 12px rgba(255, 95, 109, 0.3),
        inset 0 0 10px rgba(255, 95, 109, 0.15);
}

.card-badge--violet {
    background: linear-gradient(135deg, rgba(166, 124, 58, 0.3), rgba(167, 139, 250, 0.35));
    border: 1px solid rgba(166, 124, 58, 0.5);
    box-shadow: 
        0 4px 12px rgba(166, 124, 58, 0.3),
        inset 0 0 10px rgba(166, 124, 58, 0.15);
}

.card-badge--red {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3), rgba(248, 113, 113, 0.35));
    border: 1px solid rgba(239, 68, 68, 0.5);
    box-shadow: 
        0 4px 12px rgba(239, 68, 68, 0.3),
        inset 0 0 10px rgba(239, 68, 68, 0.15);
}

.card-badge--teal {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.3), rgba(45, 212, 191, 0.35));
    border: 1px solid rgba(20, 184, 166, 0.5);
    box-shadow: 
        0 4px 12px rgba(20, 184, 166, 0.3),
        inset 0 0 10px rgba(20, 184, 166, 0.15);
}

.card:hover .card-badge,
.admin-card:hover .card-badge,
.admin-summary__card:hover .card-badge,
.donate-package:hover .card-badge {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.25);
}

.admin-summary__card .card-badge {
    font-size: 0.75rem;
    padding: 8px 16px;
    gap: 6px;
    top: 12px;
}

.admin-summary__card .card-badge i {
    font-size: 0.85rem;
}

/* FOOTER ---------------------------------------------------------------- */
.site-footer {
    border-top: 2px solid rgba(197, 160, 89, 0.2);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(10, 10, 20, 0.9));
    backdrop-filter: blur(20px) saturate(180%);
    padding: 40px 5vw 50px;
    box-shadow: 
        0 -10px 40px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(197, 160, 89, 0.1);
    position: relative;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(197, 160, 89, 0.6), 
        rgba(140, 100, 50, 0.6),
        rgba(255, 0, 255, 0.6),
        transparent);
    animation: footerTopGlow 3s ease-in-out infinite;
}

@keyframes footerTopGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.site-footer__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 36px;
    align-items: center;
    justify-content: space-between;
    color: rgba(215, 228, 255, 0.76);
    font-size: 0.9rem;
}

.site-footer__brand {
    display: inline-flex;
    align-items: center;
}

.site-footer__logo-link {
    display: block;
    line-height: 0;
}

.site-footer__logo {
    display: block;
    height: 56px;
    width: auto;
    object-fit: contain;
}

.site-footer__links {
    display: inline-flex;
    gap: 20px;
}

.site-footer__links a {
    color: rgba(207, 220, 255, 0.78);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 14px;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
}

.site-footer__links a:hover {
    color: rgba(121, 202, 255, 1);
    background: rgba(255, 255, 255, 0.06);
}

.site-footer__credit {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(200, 215, 235, 0.7);
}

.site-footer__credit a {
    color: var(--color-cabal-cyan);
    font-weight: 600;
    text-decoration: none;
}

.site-footer__credit a:hover {
    color: var(--color-cabal-violet);
    text-decoration: underline;
}

.site-footer__credit a[href*="limpar_cache"] {
    color: rgba(207, 220, 255, 0.85);
    font-weight: 500;
}

.site-footer__credit a[href*="limpar_cache"]:hover {
    color: var(--color-cabal-cyan);
}

/* ADMIN PANEL ----------------------------------------------------------- */
body.admin-page .site-main {
    max-width: 1240px;
    margin: 0 auto;
}

.admin-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.admin-summary__card {
    padding: 75px 20px 22px;
    border-radius: 18px;
    border: 1px solid rgba(197, 160, 89, 0.18);
    background: linear-gradient(150deg, rgba(6, 12, 28, 0.9), rgba(12, 22, 44, 0.92));
    box-shadow: 0 20px 36px rgba(5, 12, 32, 0.5);
    position: relative;
    overflow: visible;
}

.admin-summary__label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(201, 224, 255, 0.68);
    margin-top: 8px;
    margin-bottom: 10px;
}

.admin-summary__value {
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #f6fbff;
    text-shadow: 0 14px 28px rgba(4, 10, 26, 0.45);
}

.admin-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 28px;
}

@media (max-width: 1024px) {
    .admin-cards-grid {
        grid-template-columns: 1fr;
    }
}

.admin-card {
    background: 
        radial-gradient(ellipse at top left, rgba(197, 160, 89, 0.1), transparent 60%),
        linear-gradient(150deg, rgba(0, 0, 0, 0.85), rgba(15, 15, 30, 0.9));
    border-radius: 28px;
    padding: 65px 35px 35px;
    border: 2px solid rgba(197, 160, 89, 0.3);
    box-shadow: 
        0 0 40px rgba(197, 160, 89, 0.15),
        0 30px 60px rgba(0, 0, 0, 0.7),
        inset 0 0 40px rgba(197, 160, 89, 0.05);
    margin-bottom: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(25px) saturate(180%);
    position: relative;
    overflow: visible;
}

.admin-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(197, 160, 89, 0.6), 
        rgba(140, 100, 50, 0.6),
        rgba(255, 0, 255, 0.6),
        transparent);
    animation: adminCardTopGlow 3s ease-in-out infinite;
}

@keyframes adminCardTopGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.admin-cards-grid .admin-card {
    margin-bottom: 0;
}

.admin-cards-grid .admin-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 0 60px rgba(197, 160, 89, 0.3),
        0 40px 80px rgba(0, 0, 0, 0.8),
        inset 0 0 50px rgba(197, 160, 89, 0.1);
    border-color: rgba(197, 160, 89, 0.6);
}

.admin-card--full-width {
    grid-column: 1 / -1;
}

.donate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
    margin-bottom: 26px;
}

.donate-package {
    display: flex;
    flex-direction: column;
    gap: 18px;
    border-radius: 20px;
    padding: 60px 22px 26px;
    border: 1px solid rgba(120, 160, 255, 0.22);
    background: linear-gradient(150deg, rgba(10, 20, 44, 0.92), rgba(12, 28, 60, 0.95));
    box-shadow: 0 22px 40px rgba(5, 12, 32, 0.5);
    text-align: center;
    position: relative;
    overflow: visible;
}

.donate-package::after {
    content: "";
    position: absolute;
    inset: -40% -40% auto;
    height: 120%;
    background: radial-gradient(circle at 50% 0%, rgba(197, 160, 89, 0.25), transparent 58%);
    pointer-events: none;
    opacity: 0.7;
}

.donate-package__label {
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: rgba(205, 216, 255, 0.72);
}

.donate-package__value {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #f8fdff;
    text-shadow: 0 16px 28px rgba(4, 10, 30, 0.45);
}

.donate-package__value small {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(205, 220, 255, 0.6);
    margin-top: 6px;
}

.donate-package__info {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(210, 226, 255, 0.8);
    min-height: 48px;
}

.donate-package__price {
    font-size: 1rem;
    font-weight: 700;
    color: #89f0ff;
    letter-spacing: 0.04em;
}

.donate-package button {
    padding: 12px 0;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    background: linear-gradient(120deg, #c5a059 0%, #8b4dff 50%, #ff5f6d 100%);
    color: #041124;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 24px 44px rgba(78, 164, 255, 0.38);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.donate-package button:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 58px rgba(78, 164, 255, 0.48);
}

.donate-package button i {
    margin-right: 8px;
}

.donate-note {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(205, 216, 255, 0.72);
    margin-top: 14px;
}

.admin-card__title {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 22px;
    background: linear-gradient(110deg, 
        #ffffff 0%, 
        var(--color-neo-cyan) 35%, 
        var(--color-neo-blue) 50%,
        var(--color-neo-purple) 70%,
        var(--color-neo-pink) 100%);
    background-size: 200% 200%;
    animation: adminTitleGradient 4s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 15px rgba(197, 160, 89, 0.5));
    letter-spacing: 0.05em;
}

@keyframes adminTitleGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.admin-search {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.admin-search input[type="text"] {
    flex: 1 1 260px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(120, 152, 255, 0.28);
    background: rgba(10, 16, 30, 0.76);
    color: #f3f7ff;
}

.admin-search button {
    padding: 12px 20px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(120deg, #c5a059 0%, #8b4dff 50%, #ff5f6d 100%);
    color: #041124;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    box-shadow: 0 20px 36px rgba(80, 180, 255, 0.4);
}

.admin-table {
    width: 100%;
    border-spacing: 0;
    border-collapse: separate;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(6, 12, 28, 0.92), rgba(12, 22, 44, 0.88));
    border: 1px solid rgba(139, 110, 61, 0.2);
    box-shadow: 0 24px 40px rgba(4, 12, 32, 0.5);
}

.admin-table thead th {
    background: linear-gradient(125deg, rgba(197, 160, 89, 0.2), rgba(166, 124, 58, 0.24));
    padding: 14px 16px;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(218, 230, 255, 0.86);
}

.admin-table tbody tr {
    transition: background 0.25s ease, transform 0.25s ease;
}

.admin-table tbody tr:hover {
    background: rgba(197, 160, 89, 0.08);
    transform: translateX(6px);
}

.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
}

.status-badge--pending {
    background: rgba(255, 193, 77, 0.18);
    color: #ffe3a4;
    border: 1px solid rgba(255, 193, 77, 0.32);
}

.status-badge--approved {
    background: rgba(61, 255, 190, 0.16);
    color: #c1ffe7;
    border: 1px solid rgba(61, 255, 190, 0.35);
}

.status-badge--credited {
    background: rgba(197, 160, 89, 0.18);
    color: #aef9ff;
    border: 1px solid rgba(197, 160, 89, 0.32);
}

.status-badge--cancelled {
    background: rgba(248, 78, 114, 0.16);
    color: #ffccd8;
    border: 1px solid rgba(248, 78, 114, 0.32);
}

.admin-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(197, 160, 89, 0.16);
    border: 1px solid rgba(197, 160, 89, 0.38);
    color: rgba(201, 240, 255, 0.92);
}

.admin-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .admin-details-grid {
        grid-template-columns: 1fr;
    }
}

.admin-details-grid__item {
    position: relative;
    padding: 22px 24px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(6, 12, 28, 0.95), rgba(12, 22, 44, 0.92));
    border: 1px solid rgba(139, 110, 61, 0.25);
    box-shadow: 
        0 8px 24px rgba(4, 12, 32, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 0 30px rgba(197, 160, 89, 0.08);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.admin-details-grid__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(197, 160, 89, 0.5) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.admin-details-grid__item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.admin-details-grid__item:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(197, 160, 89, 0.4);
    box-shadow: 
        0 16px 40px rgba(197, 160, 89, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 0 40px rgba(197, 160, 89, 0.15),
        0 0 20px rgba(197, 160, 89, 0.1);
    background: linear-gradient(145deg, rgba(8, 16, 32, 0.98), rgba(14, 26, 48, 0.95));
}

.admin-details-grid__item:hover::before {
    opacity: 1;
}

.admin-details-grid__item:hover::after {
    opacity: 1;
}

.admin-details-grid__label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(198, 222, 255, 0.7);
    margin-bottom: 10px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.admin-details-grid__item:hover .admin-details-grid__label {
    color: rgba(218, 240, 255, 0.9);
    text-shadow: 0 0 8px rgba(197, 160, 89, 0.3);
}

.admin-details-grid__value {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(233, 244, 255, 0.95);
    word-break: break-word;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.admin-details-grid__item:hover .admin-details-grid__value {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 0 12px rgba(197, 160, 89, 0.4);
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.admin-form .form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-form .form-row-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.admin-form .form-row-inline > * {
    flex: 1 1 180px;
}

.admin-form button {
    align-self: flex-start;
}

@media (max-width: 768px) {
    .hero {
        padding: 48px 26px;
        border-radius: 24px;
    }

    .section-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .site-footer__content {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================================================
   NOVO DESIGN ESTRUTURAL (GLOBAL) — alinhado ao tema ouro/escuro da home
   ========================================================================== */
:root {
    --struct-bg-1: var(--color-space-void, #0a0907);
    --struct-bg-2: var(--color-abyss, #12100c);
    --struct-border: rgba(139, 110, 61, 0.32);
    --struct-border-strong: rgba(197, 160, 89, 0.44);
    --struct-shadow: 0 16px 34px rgba(0, 0, 0, 0.45);
}

/* Não redefinir `body` aqui: um bloco anterior com fundo azul/ciano sobrescrevia
   o fundo com fundo.jpg e deixava login/ranking/admin fora do padrão da home. */

.site-header {
    background: linear-gradient(180deg, #100e0b 0%, #0a0907 100%);
    border-bottom: 1px solid rgba(139, 110, 61, 0.22);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.site-shell {
    max-width: 1680px;
    margin: 0 auto;
}

.site-main {
    padding-top: 24px;
}

/* Logado premiado SUPER destacado */
.site-header__reward-wrap {
    position: relative;
    overflow: hidden;
    border-width: 2px;
    border-color: rgba(255, 209, 102, 0.46);
    background:
        radial-gradient(circle at 88% 18%, rgba(255, 209, 102, 0.2), transparent 36%),
        linear-gradient(135deg, rgba(28, 24, 42, 0.96), rgba(10, 20, 45, 0.94));
    box-shadow: var(--struct-shadow);
}

.site-header__reward-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent, rgba(255, 209, 102, 0.1), transparent);
    pointer-events: none;
}

.site-header__reward-pill {
    border-color: rgba(255, 209, 102, 0.78);
    background: linear-gradient(135deg, rgba(255, 209, 102, 0.35), rgba(255, 95, 109, 0.22));
    color: #fff3c6;
    box-shadow: 0 0 0 1px rgba(255, 209, 102, 0.24), 0 0 18px rgba(255, 209, 102, 0.28);
}

.site-header__reward-rule {
    font-size: 0.84rem;
}

.site-header__reward-rule strong {
    color: #ffefba;
    text-shadow: 0 0 16px rgba(255, 209, 102, 0.7);
}

.site-header__reward-flash {
    border-color: rgba(255, 209, 102, 0.66);
    background: linear-gradient(120deg, rgba(255, 209, 102, 0.24), rgba(197, 160, 89, 0.2));
    color: #fff8dd;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.site-header__reward-topline--led {
    padding: 10px 12px;
    border: 1px solid rgba(255, 209, 102, 0.5);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(34, 28, 22, 0.75), rgba(18, 14, 11, 0.82));
    box-shadow:
        inset 0 0 14px rgba(255, 209, 102, 0.18),
        0 0 18px rgba(255, 209, 102, 0.24);
}

.site-header__reward-rule--led {
    font-size: 1.04rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff2c8;
    text-shadow:
        0 0 6px rgba(255, 209, 102, 0.85),
        0 0 14px rgba(255, 209, 102, 0.7),
        0 0 24px rgba(255, 120, 61, 0.45);
    animation: ledGlowReward 1.8s ease-in-out infinite alternate;
}

.site-header__reward-rule--led strong {
    color: #ffffff;
    text-shadow:
        0 0 8px rgba(197, 160, 89, 0.9),
        0 0 20px rgba(197, 160, 89, 0.6);
}

.site-header__reward-hint--led {
    padding: 10px 12px;
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 12px;
    background: linear-gradient(140deg, rgba(4, 16, 34, 0.72), rgba(12, 24, 52, 0.65));
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-shadow:
        0 0 8px rgba(197, 160, 89, 0.7),
        0 0 18px rgba(197, 160, 89, 0.45);
    animation: ledHintPulse 2.2s ease-in-out infinite;
}

@keyframes ledGlowReward {
    0% {
        text-shadow:
            0 0 6px rgba(255, 209, 102, 0.65),
            0 0 12px rgba(255, 209, 102, 0.45),
            0 0 20px rgba(255, 120, 61, 0.25);
    }
    100% {
        text-shadow:
            0 0 8px rgba(255, 209, 102, 0.95),
            0 0 18px rgba(255, 209, 102, 0.85),
            0 0 34px rgba(255, 120, 61, 0.58);
    }
}

@keyframes ledHintPulse {
    0%, 100% {
        box-shadow:
            inset 0 0 12px rgba(197, 160, 89, 0.16),
            0 0 12px rgba(197, 160, 89, 0.22);
    }
    50% {
        box-shadow:
            inset 0 0 16px rgba(197, 160, 89, 0.28),
            0 0 22px rgba(197, 160, 89, 0.45);
    }
}

.site-header__reward-ticker {
    border-top-color: rgba(255, 209, 102, 0.34);
}

.site-header__reward-ticker-item {
    color: #fff8e8;
    text-shadow: 0 0 10px rgba(255, 209, 102, 0.45);
}

.site-header__reward-ticker-item i {
    color: #ffd166;
}

/* Navegação e superfícies */
.site-header__navwrap,
.hero,
.hero__row,
.card,
.auth-page__card,
.hero-account-box,
.hero-stats-box,
.site-footer__content {
    border-color: var(--struct-border);
    box-shadow: var(--struct-shadow);
}

.site-header__navwrap {
    border-width: 1px;
    border-color: rgba(30, 32, 44, 0.95);
    border-top: 1px solid rgba(201, 162, 39, 0.45);
    background: linear-gradient(180deg, rgba(14, 12, 8, 0.92) 0%, rgba(6, 10, 22, 0.94) 100%);
    box-shadow:
        0 0 0 1px rgba(201, 162, 39, 0.12),
        0 14px 36px rgba(0, 0, 0, 0.55);
}

.primary-nav__link {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 12px 18px;
    border-radius: 6px;
    border: 1px solid rgba(96, 165, 250, 0.55);
    background: #0f1c34;
    color: #eaf2ff;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03);
}

.primary-nav__link:hover,
.primary-nav__link.is-active {
    color: #f3f8ff;
    background: #15284a;
    border-color: rgba(125, 211, 252, 0.75);
    box-shadow: 0 0 14px rgba(56, 189, 248, 0.25);
}

.hero {
    border-radius: 24px;
    background:
        radial-gradient(circle at 12% 8%, rgba(56, 189, 248, 0.1), transparent 38%),
        linear-gradient(160deg, rgba(8, 16, 33, 0.94), rgba(4, 10, 22, 0.92));
}

.hero__row {
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(11, 22, 44, 0.72), rgba(6, 12, 24, 0.55));
}

.hero__caption {
    color: rgba(235, 228, 210, 0.88);
}

.hero-account-box,
.hero-stats-box {
    border: 1px solid var(--struct-border-strong);
    border-radius: 16px;
    background: linear-gradient(165deg, rgba(18, 14, 11, 0.96), rgba(10, 9, 7, 0.94));
}

.hero-account-box__header,
.hero-stats-box__header {
    border-bottom: 1px solid rgba(197, 160, 89, 0.24);
    background: linear-gradient(130deg, rgba(197, 160, 89, 0.16), rgba(166, 124, 58, 0.14));
}

.hero-account-box .form-input {
    border: 1px solid rgba(139, 110, 61, 0.45);
    background: rgba(12, 10, 8, 0.92);
}

.hero-account-box .form-input:focus {
    border-color: rgba(197, 160, 89, 0.66);
    box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.2);
}

.hero-account-box__btn-entrar,
.btn-submit,
.btn--primary {
    border: 1px solid rgba(197, 160, 89, 0.55);
    box-shadow: 0 10px 24px rgba(2, 12, 30, 0.5);
}

.card,
.auth-page__card {
    border: 1px solid rgba(139, 110, 61, 0.38);
    border-radius: 18px;
    background: linear-gradient(160deg, rgba(22, 18, 14, 0.94), rgba(12, 10, 8, 0.92));
}

.card:hover {
    border-color: rgba(197, 160, 89, 0.4);
}

.site-footer {
    border-top: 1px solid rgba(139, 110, 61, 0.28);
    background: linear-gradient(180deg, #141210 0%, #0a0907 100%);
}

.site-footer__content {
    border: 1px solid rgba(139, 110, 61, 0.35);
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(22, 18, 14, 0.95) 0%, rgba(12, 10, 8, 0.94) 100%);
    padding: 18px 20px;
    color: rgba(235, 228, 210, 0.78);
}

.site-footer__copyright {
    color: rgba(235, 228, 210, 0.68);
}

.site-footer__links a {
    color: rgba(245, 239, 230, 0.92);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 18px;
    border-radius: 6px;
    border: 1px solid rgba(139, 110, 61, 0.5);
    background: #1a1510;
}

.site-footer__links a:hover {
    color: #f5efe6;
    background: #221c16;
    border-color: rgba(197, 160, 89, 0.65);
    box-shadow: 0 0 12px rgba(139, 110, 61, 0.2);
}

@media (max-width: 960px) {
    .site-main {
        padding-top: 16px;
    }
    .site-header__reward-rule {
        font-size: 0.74rem;
    }
    .site-header__reward-flash {
        font-size: 0.8rem;
    }
    .site-header__reward-rule--led {
        font-size: 0.82rem;
        letter-spacing: 0.03em;
    }
    .site-header__reward-hint--led {
        font-size: 0.78rem;
        padding: 8px 10px;
    }
    .hero {
        border-radius: 18px;
    }
    .hero__row {
        padding: 12px;
        border-radius: 14px;
    }
}

/* Forca destaque maximo no topo (LED) */
.site-header__reward-led-board {
    display: block !important;
    margin: 0 0 10px 0 !important;
    padding: 14px 16px !important;
    border: 2px solid rgba(255, 209, 102, 0.85) !important;
    border-radius: 14px !important;
    background:
        radial-gradient(circle at 8% 50%, rgba(255, 209, 102, 0.18), transparent 34%),
        radial-gradient(circle at 92% 50%, rgba(255, 209, 102, 0.18), transparent 34%),
        linear-gradient(145deg, rgba(22, 18, 14, 0.96), rgba(10, 9, 7, 0.97)) !important;
    box-shadow:
        inset 0 0 18px rgba(255, 209, 102, 0.18),
        0 0 20px rgba(255, 209, 102, 0.3),
        0 0 40px rgba(255, 209, 102, 0.2) !important;
}

.site-header__reward-led-title {
    font-size: 1.1rem !important;
    font-weight: 900 !important;
    letter-spacing: 0.2em !important;
    color: #ffd166 !important;
    text-transform: uppercase !important;
    text-shadow: 0 0 8px rgba(255, 209, 102, 0.9), 0 0 18px rgba(255, 209, 102, 0.7) !important;
    margin-bottom: 6px !important;
}

.site-header__reward-led-main {
    font-size: clamp(1rem, 1.4vw, 1.25rem) !important;
    font-weight: 900 !important;
    line-height: 1.35 !important;
    letter-spacing: 0.08em !important;
    color: #fff4cc !important;
    text-transform: uppercase !important;
    text-shadow:
        0 0 8px rgba(255, 209, 102, 0.8),
        0 0 18px rgba(255, 209, 102, 0.65),
        0 0 28px rgba(255, 138, 76, 0.4) !important;
    animation: rewardLedMainPulse 1.6s ease-in-out infinite alternate !important;
}

.site-header__reward-led-main strong {
    color: #f5edd8 !important;
    text-shadow: 0 0 8px rgba(197, 160, 89, 0.9), 0 0 20px rgba(197, 160, 89, 0.7) !important;
}

.site-header__reward-led-sub {
    margin-top: 8px !important;
    font-size: 0.86rem !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    color: #ddd0b8 !important;
    text-shadow: 0 0 7px rgba(197, 160, 89, 0.65) !important;
}

.site-header__reward-led-char {
    margin-top: 10px !important;
    padding: 8px 10px !important;
    border-radius: 10px !important;
    border: 1px solid rgba(197, 160, 89, 0.45) !important;
    background: rgba(12, 10, 8, 0.85) !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    color: #f2ead8 !important;
    text-shadow: 0 0 8px rgba(197, 160, 89, 0.5) !important;
}

.site-header__reward-led-char i {
    margin-right: 8px !important;
    color: #c5a059 !important;
}

.site-header__reward-led-char--offline {
    border-color: rgba(255, 180, 100, 0.4) !important;
    color: #ffe8c8 !important;
    font-size: 0.78rem !important;
}

.site-header__reward-flash--you {
    border-color: rgba(197, 160, 89, 0.65) !important;
    background: linear-gradient(125deg, rgba(197, 160, 89, 0.22), rgba(166, 124, 58, 0.18)) !important;
    color: #f5efe6 !important;
    font-size: 0.95rem !important;
    font-weight: 800 !important;
}

@keyframes rewardLedMainPulse {
    0% { filter: brightness(0.92); }
    100% { filter: brightness(1.2); }
}

@media (max-width: 960px) {
    .site-header__reward-led-board {
        padding: 10px 12px !important;
    }
    .site-header__reward-led-title {
        font-size: 0.78rem !important;
        letter-spacing: 0.12em !important;
    }
    .site-header__reward-led-main {
        font-size: 0.82rem !important;
        letter-spacing: 0.04em !important;
    }
    .site-header__reward-led-sub {
        font-size: 0.7rem !important;
    }
    .site-header__reward-led-char {
        font-size: 0.72rem !important;
    }
    .site-header__reward-flash--you {
        font-size: 0.82rem !important;
    }
}

/* ========== HOME MICROSITE (inline: garante aplicacao + prioridade sobre body.home-page) ========== */

/**
 * Home microsite — alinhado ao tema global azul/cyber
 */
body.home-page.home-microsite {
    --mp-deep: #030712;
    --mp-ink: #0b1220;
    --mp-panel: rgba(7, 14, 28, 0.94);
    --mp-panel-2: rgba(8, 16, 32, 0.96);
    --mp-line: rgba(96, 165, 250, 0.45);
    --mp-line-soft: rgba(96, 165, 250, 0.2);
    --mp-gold: #1d4ed8;
    --mp-gold-bright: #38bdf8;
    --mp-text: #eaf2ff;
    --mp-muted: rgba(203, 221, 245, 0.68);
    --btn-site-bg: #0f1c34;
    --btn-site-bg-hover: #15284a;
    --btn-site-border: rgba(96, 165, 250, 0.55);
    --btn-site-border-hover: rgba(125, 211, 252, 0.75);
    --btn-site-text: #eaf2ff;
    --mp-font-display: "Cinzel", "Times New Roman", serif;
    --mp-font-ui: "Source Sans 3", "Montserrat", "Segoe UI", sans-serif;
    --mp-radius: 6px;
    --mp-radius-lg: 10px;
    --mp-max: min(1680px, 96vw);
    font-family: var(--mp-font-ui);
    color: var(--mp-text);
}

body.home-page.home-microsite {
    background: radial-gradient(ellipse 100% 80% at 50% -20%, rgba(37, 99, 235, 0.08), transparent 45%),
        radial-gradient(circle at center, rgba(6, 12, 24, 0.92), var(--color-space-void, #030712) 75%);
}

body.home-page.home-microsite::after {
    background: linear-gradient(180deg, rgba(5, 10, 20, 0.55) 0%, rgba(4, 8, 16, 0.72) 45%, rgba(3, 7, 14, 0.82) 100%);
}

body.home-page.home-microsite .site-main {
    max-width: var(--mp-max);
    margin-left: auto;
    margin-right: auto;
    padding-top: 28px;
    padding-bottom: 100px;
}

body.home-page.home-microsite .site-header {
    background: linear-gradient(180deg, #0a1326 0%, #040a16 100%);
    border-bottom: 1px solid var(--mp-line-soft);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

body.home-page.home-microsite .site-header__navwrap {
    max-width: var(--mp-max);
    margin-left: auto;
    margin-right: auto;
    margin-top: 12px;
    margin-bottom: 12px;
    padding: 12px 20px;
    border: 1px solid var(--mp-line-soft);
    border-radius: var(--mp-radius);
    background: linear-gradient(180deg, #161410 0%, #0c0a08 100%);
    box-shadow: inset 0 1px 0 rgba(197, 160, 89, 0.08);
}

body.home-page.home-microsite .primary-nav__link {
    font-family: var(--mp-font-ui);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 12px 18px;
    border-radius: 6px;
    border: 1px solid var(--btn-site-border);
    background: var(--btn-site-bg);
    color: var(--btn-site-text);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03);
}

body.home-page.home-microsite .primary-nav__link:hover,
body.home-page.home-microsite .primary-nav__link.is-active {
    color: var(--btn-site-text);
    background: var(--btn-site-bg-hover);
    border-color: var(--btn-site-border-hover);
    box-shadow: 0 0 14px rgba(139, 110, 61, 0.25);
}

body.home-page.home-microsite .brand {
    font-family: var(--mp-font-display);
    font-size: 1.05rem;
    letter-spacing: 0.2em;
    background: linear-gradient(180deg, #e8d4a8, #c5a059);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

body.home-page.home-microsite .brand__logo-wrap {
    width: 120px;
    height: 120px;
    padding: 8px;
}

body.home-page.home-microsite .header-social {
    width: 48px;
    height: 48px;
    border-radius: var(--mp-radius);
    border: 1px solid var(--btn-site-border);
    background: var(--btn-site-bg);
}

body.home-page.home-microsite .header-social:hover {
    border-color: var(--btn-site-border-hover);
    background: var(--btn-site-bg-hover);
}

body.home-page.home-microsite .hero.hero--portal {
    max-width: var(--mp-max);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 56px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    border-radius: 0;
    overflow: visible;
}

body.home-page.home-microsite .hero.hero--portal::before {
    display: none !important;
}

body.home-page.home-microsite .home-dashboard__strip {
    border-bottom: 1px solid var(--mp-line-soft);
    margin-bottom: 28px;
    background: linear-gradient(90deg, rgba(139, 110, 61, 0.08), transparent 30%, transparent 70%, rgba(139, 110, 61, 0.08));
}

body.home-page.home-microsite .hero__marquee {
    margin-bottom: 0;
    padding: 12px 0 14px;
    border-bottom: none;
    box-shadow: none;
}

body.home-page.home-microsite .hero__marquee-item {
    font-family: var(--mp-font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    color: var(--mp-muted) !important;
    filter: none !important;
    text-shadow: none !important;
}

body.home-page.home-microsite .hero__marquee-item i {
    color: var(--mp-gold-bright);
    margin-right: 6px;
}

body.home-page.home-microsite .hero__row.hero__row--home,
body.home-page.home-microsite .home-dashboard__grid {
    display: grid;
    grid-template-columns: minmax(200px, 260px) minmax(280px, 1fr) minmax(200px, 280px);
    gap: 32px 40px;
    align-items: start;
    padding: 36px 40px 40px;
    margin-bottom: 0;
    background: var(--mp-panel);
    border: 1px solid var(--mp-line);
    border-radius: var(--mp-radius-lg);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(197, 160, 89, 0.04);
}

body.home-page.home-microsite .hero__center-col {
    align-items: stretch;
}

body.home-page.home-microsite .hero__row--home .hero__logado-premiado-col {
    max-width: none;
}

body.home-page.home-microsite .hero-menu-box,
body.home-page.home-microsite .hero-account-box,
body.home-page.home-microsite .hero-stats-box {
    border-radius: var(--mp-radius);
    border: 1px solid var(--mp-line-soft);
    background: var(--mp-panel-2);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

body.home-page.home-microsite .hero-menu-box {
    border-color: var(--mp-line-soft);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

body.home-page.home-microsite .hero-menu-box::before,
body.home-page.home-microsite .hero-account-box::before,
body.home-page.home-microsite .hero-stats-box::before {
    opacity: 0 !important;
}

body.home-page.home-microsite .hero-menu-box__header,
body.home-page.home-microsite .hero-account-box__header,
body.home-page.home-microsite .hero-stats-box__header {
    font-family: var(--mp-font-display);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    background: linear-gradient(180deg, #1c1814 0%, #100e0b 100%);
    border-bottom: 1px solid var(--mp-line-soft);
    color: var(--mp-gold-bright);
}

body.home-page.home-microsite .hero-menu-box__header i,
body.home-page.home-microsite .hero-account-box__header i {
    color: var(--mp-gold-bright);
    filter: none;
}

body.home-page.home-microsite .hero-menu-box__link {
    font-size: 0.82rem;
    border-radius: 6px;
    border: 1px solid var(--btn-site-border);
    background: var(--btn-site-bg);
    color: var(--btn-site-text);
}

body.home-page.home-microsite .hero-menu-box__link:hover {
    background: var(--btn-site-bg-hover);
    border-color: var(--btn-site-border-hover);
    color: var(--btn-site-text);
    box-shadow: 0 0 10px rgba(139, 110, 61, 0.2);
}

body.home-page.home-microsite .hero-menu-box__link.is-active {
    background: var(--btn-site-bg-hover);
    border-color: var(--btn-site-border-hover);
    color: var(--btn-site-text);
}

body.home-page.home-microsite .hero-menu-box__link i {
    color: var(--mp-gold-bright);
}

body.home-page.home-microsite .hero-account-box {
    height: auto;
    min-height: 0;
}

body.home-page.home-microsite .hero-account-box__body {
    font-family: var(--mp-font-ui);
}

body.home-page.home-microsite .hero-account-box .form-input {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--mp-line-soft);
    color: var(--mp-text);
}

body.home-page.home-microsite .hero-account-box__btn-entrar {
    font-family: var(--mp-font-ui);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    background: var(--btn-site-bg);
    border: 1px solid var(--btn-site-border);
    color: var(--btn-site-text);
    text-shadow: none;
}

body.home-page.home-microsite .hero-account-box__btn-entrar:hover {
    background: var(--btn-site-bg-hover);
    border-color: var(--btn-site-border-hover);
}

body.home-page.home-microsite .hero-account-box__btn-cadastro {
    font-family: var(--mp-font-ui);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    background: var(--btn-site-bg);
    border: 1px solid var(--btn-site-border);
    color: var(--btn-site-text);
}

body.home-page.home-microsite .hero-account-box__btn-cadastro:hover {
    background: var(--btn-site-bg-hover);
    border-color: var(--btn-site-border-hover);
}

body.home-page.home-microsite .hero-stats-box__item {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

body.home-page.home-microsite .hero-stats-box__value {
    color: var(--mp-gold-bright);
    text-shadow: 0 0 10px rgba(139, 110, 61, 0.35);
}

body.home-page.home-microsite .hero-logado-premiado .site-header__reward-led-board {
    border: 1px solid var(--mp-line) !important;
    border-radius: var(--mp-radius) !important;
    background: linear-gradient(165deg, rgba(20, 16, 12, 0.98) 0%, rgba(10, 9, 7, 0.99) 100%) !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(197, 160, 89, 0.06) !important;
}

body.home-page.home-microsite .site-header__reward-led-title {
    font-family: var(--mp-font-display) !important;
    letter-spacing: 0.28em !important;
    color: var(--mp-gold-bright) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8) !important;
}

body.home-page.home-microsite .site-header__reward-led-main {
    font-family: var(--mp-font-ui) !important;
    letter-spacing: 0.06em !important;
    color: var(--mp-text) !important;
    text-shadow: none !important;
    animation: none !important;
}

body.home-page.home-microsite .site-header__reward-led-main strong {
    color: var(--mp-gold-bright) !important;
    text-shadow: none !important;
}

body.home-page.home-microsite .site-header__reward-led-sub {
    color: var(--mp-muted) !important;
    text-shadow: none !important;
    font-weight: 600 !important;
}

body.home-page.home-microsite .site-header__reward-led-char {
    border-color: rgba(139, 110, 61, 0.45) !important;
    color: var(--mp-muted) !important;
}

body.home-page.home-microsite .site-header__reward-led-char i {
    color: var(--mp-gold-bright) !important;
}

body.home-page.home-microsite .hero-logado-premiado__list-head {
    font-family: var(--mp-font-display);
    color: var(--mp-gold-bright);
    letter-spacing: 0.16em;
    text-shadow: none;
}

body.home-page.home-microsite .hero-logado-premiado__list {
    border-color: var(--mp-line-soft);
    background: rgba(0, 0, 0, 0.35);
}

body.home-page.home-microsite .hero-logado-premiado__meta {
    color: var(--mp-gold-bright) !important;
    text-shadow: none !important;
}

body.home-page.home-microsite .home-dashboard__intro {
    margin-top: 36px;
    padding: 32px 20px 12px;
    text-align: center;
    border-top: 1px solid var(--mp-line-soft);
}

body.home-page.home-microsite .home-dashboard__intro .home-dashboard__tagline {
    margin: 0 0 16px;
    font-family: var(--mp-font-ui);
    font-size: clamp(0.72rem, 1.4vw, 0.85rem);
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--mp-muted);
}

body.home-page.home-microsite .home-dashboard__lede {
    margin: 0 auto;
    max-width: 52ch;
    font-family: var(--mp-font-ui);
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--mp-muted);
}

body.home-page.home-microsite .site-footer {
    background: linear-gradient(180deg, #141210 0%, #0a0907 100%);
    border-top: 1px solid var(--mp-line-soft);
}

body.home-page.home-microsite .site-footer__content {
    max-width: var(--mp-max);
    font-family: var(--mp-font-ui);
    font-size: 0.88rem;
}

body.home-page.home-microsite .site-footer__copyright {
    color: var(--mp-muted);
}

body.home-page.home-microsite .site-footer__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 14px;
}

body.home-page.home-microsite .site-footer__links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 6px;
    border: 1px solid var(--btn-site-border);
    background: var(--btn-site-bg);
    color: var(--btn-site-text);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

body.home-page.home-microsite .site-footer__links a:hover {
    color: var(--btn-site-text);
    background: var(--btn-site-bg-hover);
    border-color: var(--btn-site-border-hover);
    box-shadow: 0 0 12px rgba(139, 110, 61, 0.2);
}

body.home-page.home-microsite .site-footer__credit a {
    color: var(--mp-gold-bright) !important;
}

@media (max-width: 1160px) {
    body.home-page.home-microsite .hero__row.hero__row--home,
    body.home-page.home-microsite .home-dashboard__grid {
        grid-template-columns: 1fr;
        padding: 28px 22px;
        gap: 24px;
    }

    body.home-page.home-microsite .hero__menu-col,
    body.home-page.home-microsite .hero__center-col,
    body.home-page.home-microsite .hero__side {
        max-width: 520px;
    }
}

@media (max-width: 960px) {
    body.home-page.home-microsite .site-header__navwrap {
        padding: 10px 12px;
    }

    body.home-page.home-microsite .brand__logo-wrap {
        width: 88px;
        height: 88px;
    }

    body.home-page.home-microsite .primary-nav__link {
        font-size: 0.72rem;
        padding: 8px 10px;
    }
}

/* -----------------------------------------------------------------------
   CabalWebsiteForFree visual adaptation layer (design-only)
   Keeps all existing PHP/JS flow and page behavior intact.
------------------------------------------------------------------------ */
:root {
    --void-bg: #020617;
    --void-bg-soft: #0f172a;
    --void-card: rgba(15, 23, 42, 0.72);
    --void-border: rgba(148, 163, 184, 0.22);
    --void-cyan: #22d3ee;
    --void-indigo: #6366f1;
    --void-violet: #7c3aed;
    --void-text: #e2e8f0;
    --void-muted: #94a3b8;
}

body {
    color: var(--void-text);
    background:
        radial-gradient(circle at 12% 22%, rgba(99, 102, 241, 0.22), transparent 42%),
        radial-gradient(circle at 85% 12%, rgba(34, 211, 238, 0.18), transparent 40%),
        linear-gradient(180deg, #050b19 0%, #020617 55%, #01030b 100%);
}

body::before {
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.45), rgba(2, 6, 23, 0.9)),
        var(--site-bg-image, url("images/fundo.jpg")) center/cover no-repeat fixed;
    opacity: 0.58;
}

.site-header__navwrap,
.hero,
.hero-account-box,
.hero-stats-box,
.auth-page__card,
.section-card,
.ranking-card,
.site-footer {
    background: var(--void-card);
    border-color: var(--void-border);
    box-shadow:
        0 12px 34px rgba(2, 6, 23, 0.5),
        inset 0 1px 0 rgba(148, 163, 184, 0.08);
    backdrop-filter: blur(12px);
}

.hero,
body.home-page .hero {
    border-top: 1px solid rgba(34, 211, 238, 0.5);
}

.site-header__navwrap,
body.home-page .site-header__navwrap {
    border-top: 1px solid rgba(34, 211, 238, 0.55);
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 0.9));
}

.primary-nav__link,
.hero-menu-box__link,
.btn,
.btn-submit {
    border-color: rgba(148, 163, 184, 0.24);
    color: #e6f6ff;
    background: linear-gradient(140deg, rgba(15, 23, 42, 0.75), rgba(30, 41, 59, 0.62));
}

.primary-nav__link:hover,
.primary-nav__link.is-active,
.hero-menu-box__link:hover,
.hero-menu-box__link.is-active,
.btn:hover,
.btn-submit:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.35), rgba(34, 211, 238, 0.22));
    border-color: rgba(34, 211, 238, 0.6);
    box-shadow: 0 8px 26px rgba(34, 211, 238, 0.22);
}

.hero__marquee-item,
.auth-title,
.section-heading,
.hero-stats-box__value,
.hero-account-box__online-count {
    background: linear-gradient(110deg, #dbeafe 8%, var(--void-cyan) 44%, #a5b4fc 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
}

.hero__subtitle,
.hero-account-box__online-label,
.site-footer__copyright,
.site-footer__credit,
.form-label {
    color: var(--void-muted);
}

.message.success-message {
    border-color: rgba(34, 211, 238, 0.45);
    background: rgba(34, 211, 238, 0.12);
    color: #baf7ff;
}

.message.error-message {
    border-color: rgba(248, 113, 113, 0.45);
    background: rgba(248, 113, 113, 0.12);
    color: #fecaca;
}

.form-input {
    background: rgba(2, 6, 23, 0.65);
    border: 1px solid rgba(148, 163, 184, 0.25);
    color: #e2e8f0;
}

.form-input:focus {
    border-color: rgba(34, 211, 238, 0.62);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15);
}

.site-footer__links a {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(148, 163, 184, 0.28);
}

.site-footer__links a:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.38), rgba(34, 211, 238, 0.22));
    border-color: rgba(34, 211, 238, 0.58);
}

body.home-page.home-microsite .home-hero-showcase {
    max-width: 920px;
    margin: 24px auto 22px;
    text-align: center;
    padding: 8px 18px;
}

body.home-page.home-microsite .home-hero-showcase__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(34, 211, 238, 0.35);
    background: rgba(34, 211, 238, 0.08);
    color: #67e8f9;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 700;
}

body.home-page.home-microsite .site-header__navwrap,
body.home-page.home-microsite .site-header__reward-wrap {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

body.home-page.home-microsite .site-header__navwrap {
    min-height: 64px;
    border-radius: 10px;
}

body.home-page.home-microsite .brand__logo-wrap {
    width: 84px;
    height: 84px;
}

body.home-page.home-microsite .primary-nav__link {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    padding: 10px 14px;
}

body.home-page.home-microsite .home-hero-showcase__title {
    margin: 18px 0 8px;
    font-family: 'Orbitron', 'Montserrat', sans-serif;
    font-size: clamp(2.4rem, 7vw, 5.1rem);
    line-height: 0.98;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #ebf7ff;
    text-shadow: 0 0 18px rgba(34, 211, 238, 0.32);
}

body.home-page.home-microsite .home-hero-showcase__title span {
    display: block;
    margin-top: 4px;
    background: linear-gradient(100deg, #22d3ee 5%, #60a5fa 45%, #6366f1 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

body.home-page.home-microsite .home-hero-showcase__subtitle {
    margin: 0 auto;
    max-width: 700px;
    color: #9caec8;
    font-size: 0.95rem;
    line-height: 1.6;
}

body.home-page.home-microsite .home-hero-showcase__actions {
    margin-top: 18px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

body.home-page.home-microsite .home-hero-showcase__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 230px;
    padding: 13px 22px;
    border-radius: 12px;
    border: 1px solid rgba(129, 140, 248, 0.5);
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: #fff;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(79, 70, 229, 0.38);
}

body.home-page.home-microsite .home-hero-showcase__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(79, 70, 229, 0.45);
}

body.home-page.home-microsite .home-hero-showcase__online {
    min-width: 126px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: rgba(15, 23, 42, 0.76);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

body.home-page.home-microsite .home-hero-showcase__online strong {
    color: #e2f5ff;
    font-size: 1.32rem;
    line-height: 1.05;
}

body.home-page.home-microsite .home-hero-showcase__online span {
    margin-top: 2px;
    color: #8ba0bd;
    font-size: 0.56rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
}

body.home-page.home-microsite .home-channel-status {
    margin: 16px auto 24px;
    max-width: 1050px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

body.home-page.home-microsite .home-channel-status__card {
    padding: 10px 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(15, 23, 42, 0.78);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body.home-page.home-microsite .home-channel-status__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

body.home-page.home-microsite .home-channel-status__name {
    color: #e2e8f0;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
}

body.home-page.home-microsite .home-channel-status__count {
    color: #93a8c7;
    font-size: 0.55rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
}

body.home-page.home-microsite .home-channel-status__bar {
    height: 5px;
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.88);
    overflow: hidden;
}

body.home-page.home-microsite .home-channel-status__fill {
    display: block;
    height: 100%;
    background: var(--bar-color, #22d3ee);
    box-shadow: 0 0 10px color-mix(in srgb, var(--bar-color, #22d3ee) 55%, transparent);
}

body.home-page.home-microsite .nation-conflict {
    max-width: 1120px;
    margin: 18px auto 42px;
    padding: 6px 8px;
}

body.home-page.home-microsite .nation-conflict__heading {
    text-align: center;
    margin-bottom: 14px;
}

body.home-page.home-microsite .nation-conflict__title {
    margin: 0;
    font-family: 'Orbitron', 'Montserrat', sans-serif;
    font-size: clamp(1.35rem, 3.6vw, 2rem);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #eef7ff;
}

body.home-page.home-microsite .nation-conflict__subtitle {
    margin: 4px 0 0;
    color: #7f9abc;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.58rem;
    font-weight: 700;
}

body.home-page.home-microsite .nation-conflict__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

body.home-page.home-microsite .nation-panel {
    border-radius: 14px;
    overflow: hidden;
    background: rgba(10, 17, 32, 0.82);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

body.home-page.home-microsite .nation-panel--capella {
    border-color: rgba(59, 130, 246, 0.45);
}

body.home-page.home-microsite .nation-panel--procyon {
    border-color: rgba(244, 63, 94, 0.45);
}

body.home-page.home-microsite .nation-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 800;
}

body.home-page.home-microsite .nation-panel--capella .nation-panel__head {
    color: #93c5fd;
    background: linear-gradient(90deg, rgba(30, 64, 175, 0.26), rgba(15, 23, 42, 0.15));
}

body.home-page.home-microsite .nation-panel--procyon .nation-panel__head {
    color: #fda4af;
    background: linear-gradient(90deg, rgba(159, 18, 57, 0.2), rgba(15, 23, 42, 0.15));
}

body.home-page.home-microsite .nation-panel__rows {
    padding: 4px 0;
}

body.home-page.home-microsite .nation-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

body.home-page.home-microsite .nation-row:first-child {
    border-top: 0;
}

body.home-page.home-microsite .nation-row__identity strong {
    display: block;
    color: #eaf4ff;
    font-size: 0.82rem;
    line-height: 1.2;
}

body.home-page.home-microsite .nation-row__identity small {
    color: #89a0be;
    font-size: 0.61rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

body.home-page.home-microsite .nation-row__badge {
    padding: 5px 8px;
    border-radius: 7px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: rgba(15, 23, 42, 0.72);
    color: #c7d7ed;
    font-size: 0.52rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 800;
    white-space: nowrap;
}

@media (max-width: 980px) {
    body.home-page.home-microsite .home-channel-status {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.home-page.home-microsite .nation-conflict__grid {
        grid-template-columns: 1fr;
    }
}

body.home-page.home-microsite .home-hall {
    max-width: 1120px;
    margin: 18px auto 44px;
    padding: 6px 8px;
}

body.home-page.home-microsite .home-hall__head {
    margin-bottom: 10px;
}

body.home-page.home-microsite .home-hall__title {
    margin: 0;
    color: #f8fbff;
    font-family: 'Orbitron', 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 3.2vw, 2.3rem);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

body.home-page.home-microsite .home-hall__subtitle {
    margin: 2px 0 8px;
    color: #7f9abc;
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
}

body.home-page.home-microsite .home-hall__tabs {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(15, 23, 42, 0.72);
}

body.home-page.home-microsite .home-hall__tab {
    border: 1px solid transparent;
    background: transparent;
    color: #97abca;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.61rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

body.home-page.home-microsite .home-hall__tab:hover {
    color: #e2f0ff;
    background: rgba(30, 41, 59, 0.54);
}

body.home-page.home-microsite .home-hall__tab.is-active {
    color: #ecfeff;
    border-color: rgba(34, 211, 238, 0.54);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(34, 211, 238, 0.2));
    box-shadow: 0 0 12px rgba(34, 211, 238, 0.18);
}

body.home-page.home-microsite .home-hall__panel {
    margin-top: 12px;
    opacity: 0;
    transform: translateY(10px);
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease, max-height 0.28s ease;
}

body.home-page.home-microsite .home-hall__panel.is-active {
    opacity: 1;
    transform: translateY(0);
    max-height: 2200px;
    pointer-events: auto;
}

body.home-page.home-microsite .home-hall__table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(10, 17, 32, 0.86);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

body.home-page.home-microsite .home-hall__table thead th {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.26), rgba(30, 41, 59, 0.72));
    color: #dce9ff;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.62rem;
    font-weight: 800;
    padding: 12px 10px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.24);
}

body.home-page.home-microsite .home-hall__table tbody td {
    padding: 11px 10px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    color: #e8f2ff;
    font-size: 0.84rem;
}

body.home-page.home-microsite .home-hall__table tbody tr:hover {
    background: rgba(59, 130, 246, 0.12);
}

body.home-page.home-microsite .home-hall__table tbody td:first-child {
    width: 74px;
    color: #8fb2ff;
    font-weight: 800;
    text-align: center;
}

/* ==========================================================================
   Global blue/cyber override (remove old brown/gold tone)
   ========================================================================== */
:root {
    --color-space-void: #020617;
    --color-abyss: #0f172a;
    --color-cabal-blue: #60a5fa;
    --color-cabal-cyan: #22d3ee;
    --color-cabal-violet: #818cf8;
    --color-ember: #38bdf8;
    --color-gold: #22d3ee;
    --color-amber: #7dd3fc;
    --portal-premium-gold: #3b82f6;
    --portal-premium-gold-bright: #22d3ee;
    --portal-premium-gold-dim: rgba(59, 130, 246, 0.22);
    --color-purple: #6366f1;
    --text-primary: #e2e8f0;
    --text-secondary: rgba(203, 213, 225, 0.84);
    --glass-border: rgba(148, 163, 184, 0.28);
    --glass-bg: rgba(15, 23, 42, 0.85);
    --glass-bg-strong: rgba(2, 6, 23, 0.92);
    --accent-rgb: 34, 211, 238;
    --accent-rgb-warm: 59, 130, 246;
    --color-neo-cyan: #22d3ee;
    --color-neo-blue: #60a5fa;
    --color-neo-purple: #818cf8;
    --color-neo-pink: #38bdf8;
}

body {
    background:
        radial-gradient(circle at 14% 20%, rgba(59, 130, 246, 0.25), transparent 38%),
        radial-gradient(circle at 84% 16%, rgba(34, 211, 238, 0.18), transparent 34%),
        linear-gradient(180deg, #030712 0%, #020617 60%, #01030a 100%);
}

body::before {
    opacity: 0.62;
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.45), rgba(2, 6, 23, 0.86)),
        var(--site-bg-image, url("images/fundo.jpg")) center/cover no-repeat fixed;
}

.hero-news-board {
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: rgba(15, 23, 42, 0.78);
    padding: 14px 14px 12px;
    box-shadow: 0 14px 28px rgba(2, 6, 23, 0.45);
}

.hero-news-board__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #e2f3ff;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.66rem;
    font-weight: 800;
}

.hero-news-board__header i {
    color: #22d3ee;
}

.hero-news-board__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-news-board__list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 9px;
    background: rgba(2, 6, 23, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.14);
}

.hero-news-board__list li span {
    color: #dbeafe;
    font-size: 0.76rem;
    font-weight: 600;
}

.hero-news-board__list li strong {
    color: #67e8f9;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-news-board__cta {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(34, 211, 238, 0.45);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.35), rgba(34, 211, 238, 0.22));
    color: #ecfeff;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 800;
}

.reward-page .site-main {
    padding-top: 24px;
}

.reward-page-shell {
    max-width: 1120px;
    margin: 0 auto 30px;
}

.reward-page-shell__head {
    text-align: center;
    margin-bottom: 14px;
}

.reward-page-shell__head h1 {
    margin: 0;
    font-family: 'Orbitron', 'Montserrat', sans-serif;
    text-transform: uppercase;
    color: #eff6ff;
    letter-spacing: 0.05em;
}

.reward-page-shell__head p {
    margin: 6px 0 0;
    color: #8ba0bd;
}

/* Logado premiado: mesmo padrão visual da home/login */
body.reward-page .site-footer {
    display: none !important;
}

body.reward-page .site-main {
    max-width: 1140px;
    margin: 0 auto;
    padding-top: 14px;
    padding-bottom: 28px;
}

body.reward-page .site-header__navwrap {
    max-width: 1140px;
    min-height: 52px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.86), rgba(2, 6, 23, 0.92));
}

body.reward-page .primary-nav__link {
    font-size: 0.62rem !important;
    letter-spacing: 0.12em !important;
    padding: 8px 11px !important;
    min-height: 34px !important;
}

body.reward-page .reward-page-shell {
    max-width: 920px;
    margin-top: 4px;
}

body.reward-page .reward-page-shell__head h1 {
    color: #eef7ff;
    font-size: 1.9rem;
    letter-spacing: 0.04em;
    text-shadow: 0 0 12px rgba(34, 211, 238, 0.2);
}

body.reward-page .reward-page-shell__head p {
    color: #9fb4cf;
}

body.reward-page .hero-logado-premiado {
    border-radius: 10px !important;
    border: 1px solid rgba(148, 163, 184, 0.24) !important;
    background: rgba(8, 14, 28, 0.82) !important;
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.45) !important;
}

body.reward-page .site-header__reward-led-board {
    border: 1px solid rgba(34, 211, 238, 0.38) !important;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.75), rgba(2, 6, 23, 0.78)) !important;
}

body.reward-page .site-header__reward-led-title {
    color: #67e8f9 !important;
    text-shadow: none !important;
}

body.reward-page .site-header__reward-led-main {
    color: #dbeafe !important;
}

body.reward-page .site-header__reward-led-main strong {
    color: #22d3ee !important;
}

body.reward-page .site-header__reward-led-sub {
    color: #9fb4cf !important;
}

body.reward-page .hero-logado-premiado__list-head {
    color: #eaf4ff !important;
    border-top: 1px solid rgba(148, 163, 184, 0.2) !important;
}

body.reward-page .hero-logado-premiado__list {
    border: 1px solid rgba(148, 163, 184, 0.2) !important;
    background: rgba(2, 6, 23, 0.56) !important;
}

body.reward-page .hero-logado-premiado__item {
    border-top: 1px solid rgba(148, 163, 184, 0.12) !important;
}

body.reward-page .hero-logado-premiado__who {
    color: #e2e8f0 !important;
}

body.reward-page .hero-logado-premiado__meta {
    color: #9fb4cf !important;
}

/* Social icons tiny in one corner (Discord/WhatsApp) */
.site-header .header-social {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    padding: 0;
    background: rgba(2, 6, 23, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.32);
    box-shadow: 0 4px 12px rgba(2, 6, 23, 0.45);
    position: fixed;
    right: 10px;
    z-index: 210;
}

.site-header .header-social i {
    font-size: 0.85rem;
    line-height: 1;
}

.site-header .header-social--whatsapp {
    top: 74px;
}

.site-header .header-social--discord {
    top: 104px;
}

.site-header .header-social:hover {
    transform: translateY(-1px) scale(1.02);
}

@media (max-width: 960px) {
    .site-header .header-social--whatsapp {
        top: 66px;
    }

    .site-header .header-social--discord {
        top: 94px;
    }
}

/* ==========================================================================
   Pixel-perfect final tuning (home reference match)
   ========================================================================== */
body.home-page.home-microsite .site-main {
    max-width: 1140px !important;
    margin: 0 auto !important;
    padding-top: 12px !important;
    padding-bottom: 72px !important;
}

body.home-page.home-microsite .site-header {
    background: linear-gradient(180deg, rgba(3, 7, 18, 0.95), rgba(2, 6, 23, 0.9)) !important;
    border-bottom: 1px solid rgba(148, 163, 184, 0.22) !important;
    box-shadow: 0 8px 26px rgba(2, 6, 23, 0.55) !important;
}

body.home-page.home-microsite .site-header__navwrap {
    max-width: 1140px !important;
    min-height: 52px !important;
    margin-top: 6px !important;
    margin-bottom: 6px !important;
    padding: 6px 12px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(148, 163, 184, 0.24) !important;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.86), rgba(2, 6, 23, 0.92)) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

body.home-page.home-microsite .brand__logo-wrap {
    width: 62px !important;
    height: 62px !important;
    padding: 4px !important;
}

body.home-page.home-microsite .primary-nav {
    gap: 5px !important;
    padding: 1px 5px !important;
}

body.home-page.home-microsite .primary-nav__link {
    font-size: 0.62rem !important;
    letter-spacing: 0.12em !important;
    padding: 8px 11px !important;
    border-radius: 6px !important;
    min-height: 34px !important;
}

body.home-page.home-microsite .home-hero-showcase {
    margin: 10px auto 14px !important;
    padding: 4px 10px !important;
    max-width: 940px !important;
}

body.home-page.home-microsite .home-dashboard__strip,
body.home-page.home-microsite .hero__marquee {
    display: none !important;
}

body.home-page.home-microsite .home-hero-showcase__badge {
    font-size: 0.5rem !important;
    letter-spacing: 0.2em !important;
    padding: 4px 10px !important;
}

body.home-page.home-microsite .home-hero-showcase__title {
    margin: 10px 0 6px !important;
    font-size: clamp(2rem, 6.1vw, 4.5rem) !important;
    letter-spacing: 0.015em !important;
}

body.home-page.home-microsite .home-hero-showcase__subtitle {
    max-width: 660px !important;
    font-size: 0.78rem !important;
    line-height: 1.45 !important;
}

body.home-page.home-microsite .home-hero-showcase__actions {
    margin-top: 10px !important;
    gap: 8px !important;
}

body.home-page.home-microsite .home-hero-showcase__btn {
    min-width: 178px !important;
    padding: 10px 14px !important;
    border-radius: 9px !important;
    font-size: 0.58rem !important;
    letter-spacing: 0.11em !important;
}

body.home-page.home-microsite .home-hero-showcase__online {
    min-width: 94px !important;
    padding: 8px 10px !important;
    border-radius: 9px !important;
}

body.home-page.home-microsite .home-hero-showcase__online strong {
    font-size: 1.05rem !important;
}

body.home-page.home-microsite .home-hero-showcase__online span {
    font-size: 0.5rem !important;
    letter-spacing: 0.1em !important;
}

body.home-page.home-microsite .home-channel-status {
    max-width: 980px !important;
    margin: 10px auto 16px !important;
    gap: 8px !important;
}

body.home-page.home-microsite .home-channel-status__card {
    border-radius: 8px !important;
    padding: 8px 8px 9px !important;
}

body.home-page.home-microsite .home-channel-status__name {
    font-size: 0.5rem !important;
}

body.home-page.home-microsite .home-channel-status__count {
    font-size: 0.48rem !important;
}

body.home-page.home-microsite .hero__row.hero__row--home,
body.home-page.home-microsite .home-dashboard__grid {
    grid-template-columns: minmax(170px, 220px) minmax(290px, 1fr) minmax(180px, 240px) !important;
    gap: 14px !important;
    padding: 12px !important;
    border-radius: 10px !important;
    border: 1px solid rgba(148, 163, 184, 0.2) !important;
    background: rgba(7, 13, 28, 0.72) !important;
}

body.home-page.home-microsite .hero-menu-box,
body.home-page.home-microsite .hero-account-box,
body.home-page.home-microsite .hero-news-board {
    border-radius: 8px !important;
    border: 1px solid rgba(148, 163, 184, 0.2) !important;
}

body.home-page.home-microsite .hero-menu-box__header,
body.home-page.home-microsite .hero-account-box__header,
body.home-page.home-microsite .hero-news-board__header {
    font-size: 0.55rem !important;
    letter-spacing: 0.16em !important;
    padding: 8px 10px !important;
}

body.home-page.home-microsite .hero-menu-box__link {
    font-size: 0.66rem !important;
    padding: 8px 10px !important;
}

body.home-page.home-microsite .nation-conflict {
    margin: 12px auto 18px !important;
    max-width: 1120px !important;
}

body.home-page.home-microsite .nation-conflict__heading {
    margin-bottom: 8px !important;
}

body.home-page.home-microsite .nation-conflict__title {
    font-size: clamp(1.1rem, 2.8vw, 1.7rem) !important;
}

body.home-page.home-microsite .nation-conflict__subtitle {
    font-size: 0.5rem !important;
}

body.home-page.home-microsite .nation-panel {
    border-radius: 10px !important;
}

body.home-page.home-microsite .nation-panel__head {
    padding: 9px 10px !important;
    font-size: 0.56rem !important;
}

body.home-page.home-microsite .nation-row {
    padding: 8px 9px !important;
}

body.home-page.home-microsite .nation-row__identity strong {
    font-size: 0.73rem !important;
}

body.home-page.home-microsite .nation-row__identity small {
    font-size: 0.53rem !important;
}

body.home-page.home-microsite .nation-row__badge {
    font-size: 0.47rem !important;
    padding: 4px 7px !important;
}

body.home-page.home-microsite .home-hall {
    margin: 10px auto 26px !important;
    max-width: 1120px !important;
}

body.home-page.home-microsite .home-hall__head {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 6px 10px !important;
    margin-bottom: 6px !important;
}

body.home-page.home-microsite .home-hall__title {
    font-size: clamp(1.2rem, 2.8vw, 1.8rem) !important;
}

body.home-page.home-microsite .home-hall__subtitle {
    width: 100% !important;
    margin: 0 !important;
    font-size: 0.54rem !important;
    letter-spacing: 0.15em !important;
}

body.home-page.home-microsite .home-hall__tabs {
    padding: 4px !important;
    border-radius: 9px !important;
    gap: 4px !important;
}

body.home-page.home-microsite .home-hall__tab {
    padding: 7px 10px !important;
    font-size: 0.54rem !important;
}

body.home-page.home-microsite .home-hall__table {
    border-radius: 10px !important;
}

body.home-page.home-microsite .home-hall__table thead th {
    font-size: 0.54rem !important;
    padding: 10px 8px !important;
}

body.home-page.home-microsite .home-hall__table tbody td {
    font-size: 0.76rem !important;
    padding: 9px 8px !important;
}

body.home-page.home-microsite .home-hall__table tbody td[colspan] {
    text-align: center;
    color: #9fb4cf;
}

/* tiny socials exactly at top-right corner */
.site-header .header-social {
    width: 20px !important;
    height: 20px !important;
    border-radius: 4px !important;
    right: 10px !important;
}

.site-header .header-social i {
    font-size: 0.7rem !important;
}

.site-header .header-social--whatsapp {
    top: 10px !important;
}

.site-header .header-social--discord {
    top: 34px !important;
}

/* Home sem rodapé, igual referência */
body.home-page.home-microsite .site-footer {
    display: none !important;
}

/* Login/Register: aplicar o mesmo padrão limpo da home */
body.auth-page .site-footer {
    display: none !important;
}

body.auth-page .site-main {
    max-width: 1140px;
    margin: 0 auto;
    padding-top: 14px;
    padding-bottom: 28px;
}

body.auth-page .site-header__navwrap {
    max-width: 1140px;
    min-height: 52px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.86), rgba(2, 6, 23, 0.92));
}

body.auth-page .primary-nav {
    gap: 5px;
    padding: 1px 5px;
}

body.auth-page .primary-nav__link {
    font-size: 0.62rem !important;
    letter-spacing: 0.12em !important;
    padding: 8px 11px !important;
    min-height: 34px !important;
}

body.auth-page .brand__logo-wrap {
    width: 62px;
    height: 62px;
}

body.auth-page .auth-shell.auth-shell--with-side .auth-page__row {
    max-width: 920px;
    margin: 0 auto;
    gap: 18px;
}

body.auth-page .auth-page__card {
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(8, 14, 28, 0.8);
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.45);
}

/* Área logada da conta (login.php) */
body.auth-page .user-panel-content {
    max-width: 980px;
    margin: 0 auto;
    padding: 22px 18px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(8, 14, 28, 0.82);
    box-shadow: 0 16px 36px rgba(2, 6, 23, 0.45);
}

body.auth-page .user-cash-balance {
    margin: 0 auto 14px;
    max-width: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(34, 211, 238, 0.36);
    background: rgba(15, 23, 42, 0.72);
    color: #cfe9ff;
    font-size: 0.86rem;
}

body.auth-page .user-cash-balance i {
    color: #22d3ee;
}

body.auth-page .user-cash-balance strong {
    color: #67e8f9;
}

body.auth-page .nation-change-form {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

body.auth-page .nation-change-form__label {
    display: block;
    margin-bottom: 7px;
    color: #9fb4cf;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.66rem;
    font-weight: 700;
}

body.auth-page .nation-change-form__row {
    display: flex;
    gap: 8px;
}

body.auth-page .nation-change-form__select {
    flex: 1;
    height: 34px;
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(2, 6, 23, 0.74);
    color: #e2e8f0;
    padding: 0 10px;
}

body.auth-page .nation-change-form__button {
    min-width: 90px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid rgba(99, 102, 241, 0.6);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.84), rgba(34, 211, 238, 0.48));
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.62rem;
    font-weight: 800;
    cursor: pointer;
}

body.auth-page .nation-change-form__hint {
    display: block;
    margin-top: 6px;
    color: #94a3b8;
    font-size: 0.72rem;
}

body.auth-page .dashboard-shell {
    width: min(1320px, 96vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 16px;
    align-items: start;
}

body.auth-page .dashboard-sidebar {
    position: sticky;
    top: 14px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: rgba(6, 12, 26, 0.86);
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.42);
    overflow: hidden;
}

body.auth-page .dashboard-sidebar__brand {
    padding: 14px 12px 12px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    text-align: left;
}

body.auth-page .dashboard-sidebar__brand img {
    width: 64px;
    margin-bottom: 8px;
}

body.auth-page .dashboard-sidebar__brand h2 {
    margin: 0;
    color: #e2f3ff;
    font-size: 1rem;
}

body.auth-page .dashboard-sidebar__brand span {
    display: inline-block;
    margin-top: 4px;
    color: #67e8f9;
    font-size: 0.63rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

body.auth-page .dashboard-sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}

body.auth-page .dashboard-sidebar__nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(15, 23, 42, 0.65);
    color: #dbeafe;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.61rem;
    font-weight: 700;
}

body.auth-page .dashboard-sidebar__nav a i {
    color: #67e8f9;
}

body.auth-page .dashboard-sidebar__nav a:hover {
    border-color: rgba(34, 211, 238, 0.44);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(34, 211, 238, 0.18));
}

body.auth-page .dashboard-sidebar__nav .dashboard-sidebar__logout {
    margin-top: 8px;
    border-color: rgba(248, 113, 113, 0.36);
    background: rgba(127, 29, 29, 0.34);
}

body.auth-page .dashboard-main {
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(8, 14, 28, 0.86);
    padding: 18px;
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.42);
}

body.auth-page .dashboard-main__head {
    margin-bottom: 14px;
}

body.auth-page .dashboard-main__head h1 {
    margin: 0;
    font-size: 1.75rem;
    color: #eaf4ff;
}

body.auth-page .dashboard-main__head p {
    margin: 6px 0 0;
    color: #9fb4cf;
}

body.auth-page .dashboard-cards-grid > div[style*="margin-top:40px"] {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: 0 !important;
}

body.auth-page .dashboard-cards-grid h2[style*="Meus Personagens"] {
    text-align: left !important;
    margin-bottom: 12px !important;
    font-size: 1.1rem !important;
}

body.auth-page .dashboard-characters-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

body.auth-page .dashboard-character-card {
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 12px;
    padding: 12px;
    background: linear-gradient(160deg, rgba(2, 6, 23, 0.72), rgba(15, 23, 42, 0.68));
    overflow: hidden;
}

body.auth-page .dashboard-character-card__cover {
    position: relative;
    height: 112px;
    margin: -12px -12px 10px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
    background: linear-gradient(180deg, rgba(8, 14, 28, 0.96), rgba(5, 10, 20, 0.96));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

body.auth-page .dashboard-character-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    opacity: 1;
    image-rendering: auto;
    filter: none;
}

body.auth-page .dashboard-character-card__cover.is-empty::after {
    content: "Imagem da classe não encontrada";
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(191, 219, 254, 0.6);
}

body.auth-page .dashboard-character-card__name {
    margin: 0 0 8px;
    display: flex;
    gap: 8px;
    align-items: center;
    color: #e2e8f0;
    font-size: 1rem;
}

body.auth-page .dashboard-character-card__name img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

body.auth-page .dashboard-character-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

body.auth-page .dashboard-character-card__nation,
body.auth-page .dashboard-character-card__class,
body.auth-page .dashboard-character-card__online {
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 0.64rem;
    font-weight: 700;
}

body.auth-page .dashboard-character-card__class {
    background: rgba(30, 41, 59, 0.7);
    color: #bfdbfe;
}

body.auth-page .dashboard-character-card__online {
    background: rgba(16, 185, 129, 0.14);
    color: #6ee7b7;
}

body.auth-page .dashboard-character-card__online i {
    font-size: 0.52rem;
}

body.auth-page .dashboard-character-card__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

body.auth-page .dashboard-character-card__stats > div {
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(2, 6, 23, 0.58);
    padding: 8px;
}

body.auth-page .dashboard-character-card__label {
    color: #9fb4cf;
    font-size: 0.62rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

body.auth-page .dashboard-character-card__value,
body.auth-page .dashboard-character-card__attr-value {
    color: #e2f5ff;
    font-size: 0.86rem;
    font-weight: 700;
}

body.auth-page .dashboard-character-card__attrs {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
}

body.auth-page .dashboard-character-card__attrs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

body.auth-page .dashboard-empty {
    padding: 20px;
    border-radius: 10px;
    border: 1px dashed rgba(148, 163, 184, 0.25);
    text-align: center;
    color: #9fb4cf;
}

body.auth-page .dashboard-empty i {
    display: block;
    font-size: 1.7rem;
    margin-bottom: 8px;
}

@media (max-width: 1200px) {
    body.auth-page .dashboard-shell {
        grid-template-columns: 1fr;
    }

    body.auth-page .dashboard-sidebar {
        position: static;
    }

    body.auth-page .dashboard-characters-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    body.auth-page .dashboard-characters-grid {
        grid-template-columns: 1fr;
    }
}

/* Admin pages: mesmo padrão dashboard lateral */
body.admin-page .site-main {
    width: min(1360px, 96vw);
    margin: 0 auto;
    padding-top: 14px;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 16px;
    align-items: start;
}

body.admin-page .admin-section {
    grid-column: 1;
    position: sticky;
    top: 12px;
    margin: 0 !important;
    padding: 0 !important;
    max-width: 260px !important;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: rgba(6, 12, 26, 0.86);
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.42);
    overflow: hidden;
}

body.admin-page .site-main > :not(.admin-section) {
    grid-column: 2;
}

body.admin-page .admin-section__info {
    margin: 0 !important;
    padding: 12px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 0;
    background: rgba(15, 23, 42, 0.72);
}

body.admin-page .admin-section__welcome {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.admin-page .admin-section__menu {
    margin: 0 !important;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

body.admin-page .admin-section__link {
    width: 100%;
    justify-content: flex-start;
    min-height: 36px;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(15, 23, 42, 0.65);
    color: #dbeafe;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.61rem;
    font-weight: 700;
}

body.admin-page .admin-section__link i {
    color: #67e8f9;
}

body.admin-page .admin-section__link:hover,
body.admin-page .admin-section__link.is-active {
    border-color: rgba(34, 211, 238, 0.44);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(34, 211, 238, 0.18));
}

body.admin-page .admin-card,
body.admin-page .admin-cards-grid > .admin-card,
body.admin-page section.card,
body.admin-page .card {
    border-radius: 12px;
    border-color: rgba(148, 163, 184, 0.22) !important;
    background: rgba(8, 14, 28, 0.86) !important;
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.42) !important;
}

body.admin-page .admin-card__title,
body.admin-page .page-title {
    color: #eaf4ff;
}

body.admin-page .admin-card {
    padding: 18px 18px 16px;
}

body.admin-page .admin-card__title {
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

body.admin-page .admin-card__title i {
    color: #67e8f9;
    font-size: 0.95em;
}

body.admin-page .card-badge {
    position: static;
    transform: none;
    margin: 0 0 12px;
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
}

body.admin-page .admin-summary {
    margin-bottom: 14px;
}

body.admin-page .admin-summary__card {
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(15, 23, 42, 0.65);
    padding: 12px;
}

body.admin-page .admin-summary__label {
    color: #9fb4cf;
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

body.admin-page .admin-summary__value {
    color: #eaf4ff;
    font-size: 1.2rem;
    font-weight: 800;
}

body.admin-page .admin-details-grid__label {
    color: #9fb4cf;
}

body.admin-page .admin-details-grid__value {
    color: #dbeafe;
}

body.admin-page .admin-details-grid {
    gap: 10px;
}

body.admin-page .admin-details-grid__item {
    border-radius: 9px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(2, 6, 23, 0.55);
    padding: 10px;
}

body.admin-page .admin-details-grid__label {
    display: block;
    margin-bottom: 4px;
    font-size: 0.63rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

body.admin-page .admin-details-grid__value {
    font-size: 0.88rem;
    line-height: 1.35;
}

body.admin-page .admin-form .form-input,
body.admin-page .admin-form input,
body.admin-page .admin-form select,
body.admin-page .admin-form textarea {
    background: rgba(2, 6, 23, 0.68) !important;
    border: 1px solid rgba(148, 163, 184, 0.24) !important;
    color: #e2e8f0 !important;
}

body.admin-page .admin-form {
    display: grid;
    gap: 10px;
}

body.admin-page .admin-form .form-label,
body.admin-page .admin-form label {
    color: #9fb4cf;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

body.admin-page .admin-form .btn,
body.admin-page .admin-form button,
body.admin-page .btn-submit {
    min-height: 36px;
    border-radius: 9px;
    font-size: 0.66rem;
    letter-spacing: 0.1em;
}

body.admin-page .admin-table {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(2, 6, 23, 0.5);
}

body.admin-page .admin-table thead th {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.26), rgba(30, 41, 59, 0.72));
    color: #dce9ff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.62rem;
    padding: 10px 8px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

body.admin-page .admin-table td {
    padding: 9px 8px;
    color: #dbeafe;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    font-size: 0.82rem;
}

body.admin-page .admin-table tbody tr:hover {
    background: rgba(59, 130, 246, 0.12);
}

@media (max-width: 1200px) {
    body.admin-page .site-main {
        grid-template-columns: 1fr;
    }

    body.admin-page .admin-section {
        grid-column: 1;
        position: static;
        max-width: 100% !important;
    }

    body.admin-page .site-main > :not(.admin-section) {
        grid-column: 1;
    }
}

.rankings-page .ranking-hub {
    position: relative;
    padding-top: 34px;
}

.rankings-page .ranking-hub__subtitle {
    margin: -6px 0 16px;
    text-align: center;
    color: #8ba0bd;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.62rem;
    font-weight: 700;
}

.rankings-page .ranking-hub__badge {
    top: 10px;
}

.rankings-page .ranking-hub__tabs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    margin: 0 auto 18px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(15, 23, 42, 0.75);
}

.rankings-page .ranking-hub__tab {
    border: 1px solid transparent;
    background: transparent;
    color: #9fb4cf;
    border-radius: 9px;
    padding: 9px 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.64rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.rankings-page .ranking-hub__tab:hover {
    color: #dbeafe;
    background: rgba(30, 41, 59, 0.6);
}

.rankings-page .ranking-hub__tab.is-active {
    color: #ecfeff;
    border-color: rgba(34, 211, 238, 0.58);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.35), rgba(34, 211, 238, 0.2));
    box-shadow: 0 0 18px rgba(34, 211, 238, 0.2);
}

.rankings-page .ranking-hub__panel.is-active {
    opacity: 1;
    transform: translateY(0);
    max-height: 2200px;
    pointer-events: auto;
}

.rankings-page .ranking-hub__panel {
    opacity: 0;
    transform: translateY(10px);
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 0.26s ease, transform 0.26s ease, max-height 0.3s ease;
}

.rankings-page .ranking-hub .ranking-table,
.rankings-page .ranking-hub .styled-table {
    border-radius: 16px;
}

.rankings-page .ranking-hub .ranking-table thead th,
.rankings-page .ranking-hub .styled-table thead th {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
}

.rankings-page .ranking-hub .ranking-table td,
.rankings-page .ranking-hub .styled-table td {
    font-size: 0.88rem;
}

.rankings-page .ranking-table .rank-main {
    font-weight: 800;
    color: #e8f3ff;
}

.rankings-page .ranking-table .rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    padding: 3px 7px;
    border-radius: 999px;
    font-size: 0.53rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 800;
    border: 1px solid transparent;
}

.rankings-page .ranking-table .rank-badge--1 {
    color: #fff5cf;
    border-color: rgba(255, 209, 102, 0.7);
    background: rgba(255, 209, 102, 0.2);
}

.rankings-page .ranking-table .rank-badge--2 {
    color: #e0f2fe;
    border-color: rgba(125, 211, 252, 0.65);
    background: rgba(125, 211, 252, 0.18);
}

.rankings-page .ranking-table .rank-badge--3 {
    color: #fde68a;
    border-color: rgba(251, 146, 60, 0.62);
    background: rgba(251, 146, 60, 0.16);
}

/* SYSTEM PAGES - unified dark/cyber dashboard look */
body.system-page .site-main {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 22px;
}

body.system-page .site-main > .container,
body.system-page .site-main > section,
body.system-page .site-main > .auth-shell {
    border: 1px solid rgba(100, 190, 255, 0.22);
    background: linear-gradient(180deg, rgba(8, 16, 33, 0.92), rgba(4, 10, 24, 0.94));
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42), inset 0 0 0 1px rgba(90, 160, 255, 0.1);
}

body.system-page .site-main > .container {
    padding-top: 14px !important;
    padding-bottom: 20px !important;
}

body.system-page h1,
body.system-page .auth-title,
body.system-page .section-heading__title {
    color: #f1f7ff !important;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: 800 !important;
}

body.system-page .section-heading__subtitle,
body.system-page p {
    color: rgba(206, 223, 248, 0.9);
}

body.system-page .btn,
body.system-page button.btn {
    min-height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(84, 168, 255, 0.34);
    background: linear-gradient(135deg, rgba(8, 20, 40, 0.95), rgba(12, 26, 52, 0.92));
    color: #eef6ff;
    letter-spacing: 0.08em;
    font-weight: 800;
}

body.system-page .btn:hover,
body.system-page button.btn:hover {
    border-color: rgba(96, 207, 255, 0.7);
    box-shadow: 0 0 18px rgba(34, 211, 238, 0.22);
    transform: translateY(-1px);
}

body.system-page .btn--primary {
    background: linear-gradient(135deg, rgba(12, 52, 102, 0.95), rgba(14, 96, 165, 0.85));
    border-color: rgba(77, 199, 255, 0.66);
}

body.system-page input,
body.system-page select,
body.system-page textarea,
body.system-page .form-input {
    background: rgba(6, 14, 30, 0.92) !important;
    border: 1px solid rgba(118, 167, 224, 0.34) !important;
    color: #eaf4ff !important;
    border-radius: 10px !important;
}

body.system-page table {
    border-radius: 12px;
    overflow: hidden;
}

body.system-page table th {
    background: linear-gradient(90deg, rgba(23, 74, 141, 0.65), rgba(17, 33, 61, 0.8));
    color: #e7f1ff;
    border-bottom: 1px solid rgba(118, 167, 224, 0.3);
}

body.system-page table td {
    border-top: 1px solid rgba(118, 167, 224, 0.16);
    color: #d4e6ff;
    background: rgba(4, 11, 25, 0.7);
}

body.system-page .site-footer {
    display: none !important;
}

/* Final layout cleanup: home simplificada + header compacto azul */
body.home-page.home-microsite .hero__row.hero__row--home,
body.home-page.home-microsite .home-dashboard__grid {
    grid-template-columns: minmax(340px, 1fr) !important;
}

body.home-page.home-microsite .hero__side,
body.home-page.home-microsite .hero-account-box,
body.home-page.home-microsite .hero__menu-col,
body.home-page.home-microsite .hero-menu-box {
    display: none !important;
}

.site-header__nav-group {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    min-width: 0 !important;
    gap: 7px !important;
}

.brand--center {
    display: none !important;
}

.brand--mobile {
    display: inline-flex !important;
    order: 1 !important;
    margin: 0 8px 0 2px !important;
}

.brand--mobile .brand__logo-wrap {
    width: 50px !important;
    height: 50px !important;
    padding: 2px !important;
}

body.home-page .site-header,
body.auth-page .site-header,
body.reward-page .site-header {
    border-bottom: 1px solid rgba(56, 68, 102, 0.35) !important;
    background: linear-gradient(180deg, rgba(6, 10, 20, 0.96), rgba(3, 7, 16, 0.96)) !important;
}

body.home-page .site-header__navwrap,
body.auth-page .site-header__navwrap,
body.reward-page .site-header__navwrap {
    min-height: 52px !important;
    margin: 6px 12px 0 !important;
    padding: 4px 10px !important;
    border-radius: 10px !important;
    border: 1px solid rgba(86, 120, 180, 0.32) !important;
    box-shadow: inset 0 0 0 1px rgba(132, 168, 235, 0.08) !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
}

body.home-page .primary-nav--left,
body.auth-page .primary-nav--left,
body.reward-page .primary-nav--left {
    margin-right: auto !important;
    gap: 5px !important;
}

body.home-page .primary-nav--right,
body.auth-page .primary-nav--right,
body.reward-page .primary-nav--right {
    gap: 5px !important;
    padding-right: 42px !important;
}

body.home-page .primary-nav__link,
body.auth-page .primary-nav__link,
body.reward-page .primary-nav__link {
    min-height: 28px !important;
    padding: 5px 9px !important;
    font-size: 0.57rem !important;
    letter-spacing: 0.12em !important;
    border-radius: 6px !important;
    line-height: 1 !important;
}

body.home-page .primary-nav__link--account,
body.auth-page .primary-nav__link--account,
body.reward-page .primary-nav__link--account {
    min-width: 98px !important;
    text-align: center !important;
    justify-content: center !important;
}

body.home-page .header-social,
body.auth-page .header-social,
body.reward-page .header-social {
    position: absolute !important;
    right: 12px !important;
    width: 14px !important;
    height: 14px !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.home-page .header-social--whatsapp,
body.auth-page .header-social--whatsapp,
body.reward-page .header-social--whatsapp {
    top: 9px !important;
}

body.home-page .header-social--discord,
body.auth-page .header-social--discord,
body.reward-page .header-social--discord {
    top: 28px !important;
}

body.home-page .header-social i,
body.auth-page .header-social i,
body.reward-page .header-social i {
    font-size: 0.78rem !important;
}

/* FINAL BLUE OVERRIDE (remove brown/gold globally) */
:root {
    --color-space-void: #030712 !important;
    --color-abyss: #0b1220 !important;
    --color-cabal-blue: #2563eb !important;
    --color-cabal-cyan: #38bdf8 !important;
    --color-cabal-violet: #6366f1 !important;
    --color-ember: #3b82f6 !important;
    --color-gold: #38bdf8 !important;
    --color-amber: #60a5fa !important;
    --portal-premium-gold: #1d4ed8 !important;
    --portal-premium-gold-bright: #38bdf8 !important;
    --portal-premium-gold-dim: rgba(37, 99, 235, 0.22) !important;
    --color-purple: #6366f1 !important;
    --text-primary: #eaf2ff !important;
    --text-secondary: rgba(203, 221, 245, 0.84) !important;
    --glass-border: rgba(96, 165, 250, 0.38) !important;
    --glass-bg: rgba(8, 16, 32, 0.9) !important;
    --glass-bg-strong: rgba(4, 10, 22, 0.94) !important;
    --accent-rgb: 56, 189, 248 !important;
    --accent-rgb-warm: 37, 99, 235 !important;
    --color-neo-cyan: #38bdf8 !important;
    --color-neo-blue: #2563eb !important;
    --color-neo-purple: #6366f1 !important;
    --color-neo-pink: #60a5fa !important;
}

body,
body::before {
    background-color: #030712 !important;
}

body.home-page.home-microsite {
    --mp-deep: #030712 !important;
    --mp-ink: #0b1220 !important;
    --mp-gold: #1d4ed8 !important;
    --mp-gold-bright: #38bdf8 !important;
    --mp-line: rgba(96, 165, 250, 0.45) !important;
    --mp-line-soft: rgba(96, 165, 250, 0.24) !important;
    --btn-site-bg: linear-gradient(180deg, rgba(16, 31, 57, 0.95), rgba(10, 20, 40, 0.95)) !important;
    --btn-site-bg-hover: linear-gradient(180deg, rgba(26, 49, 90, 0.98), rgba(14, 32, 66, 0.98)) !important;
    --btn-site-border: rgba(96, 165, 250, 0.48) !important;
    --btn-site-border-hover: rgba(125, 211, 252, 0.82) !important;
}

.site-header,
.site-header__navwrap {
    background: linear-gradient(180deg, rgba(5, 12, 26, 0.97), rgba(4, 10, 22, 0.97)) !important;
    border-color: rgba(96, 165, 250, 0.32) !important;
}

.primary-nav__link,
.hero-menu-box__link,
.btn,
.btn-submit,
.ranking-hub__tab {
    background: linear-gradient(180deg, rgba(17, 33, 58, 0.92), rgba(9, 19, 38, 0.92)) !important;
    border-color: rgba(96, 165, 250, 0.45) !important;
    color: #eaf2ff !important;
}

.primary-nav__link:hover,
.primary-nav__link.is-active,
.hero-menu-box__link:hover,
.hero-menu-box__link.is-active,
.btn:hover,
.btn-submit:hover,
.rankings-page .ranking-hub__tab:hover,
.rankings-page .ranking-hub__tab.is-active {
    background: linear-gradient(180deg, rgba(31, 58, 103, 0.96), rgba(14, 31, 61, 0.96)) !important;
    border-color: rgba(125, 211, 252, 0.8) !important;
    box-shadow: 0 0 14px rgba(56, 189, 248, 0.2) !important;
    color: #f3f8ff !important;
}

.rankings-page .ranking-table thead th,
.rankings-page .styled-table thead th {
    background: linear-gradient(90deg, rgba(30, 64, 120, 0.86), rgba(13, 26, 50, 0.92)) !important;
    border-bottom-color: rgba(96, 165, 250, 0.42) !important;
    color: #e8f2ff !important;
}

.rankings-page .ranking-table tbody tr.rank-1,
.rankings-page .ranking-table tbody tr.rank-2,
.rankings-page .ranking-table tbody tr.rank-3 {
    background: rgba(14, 24, 43, 0.86) !important;
    border-left-color: rgba(56, 189, 248, 0.72) !important;
    box-shadow: none !important;
}

.rankings-page .ranking-table .rank-badge--1,
.rankings-page .ranking-table .rank-badge--2,
.rankings-page .ranking-table .rank-badge--3 {
    border-color: rgba(96, 165, 250, 0.7) !important;
    background: rgba(30, 64, 120, 0.34) !important;
    color: #e6f4ff !important;
}

/* Reference header - exact style direction */
.site-header {
    background: transparent !important;
    border-bottom: none !important;
}

.site-header__navwrap {
    max-width: 1360px !important;
    min-height: 48px !important;
    margin: 8px auto 0 !important;
    padding: 0 14px !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
}

.ref-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    min-width: 170px;
}

.ref-brand__logo {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.ref-brand__text {
    font-family: "Orbitron", "Montserrat", sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #eef4ff;
    white-space: nowrap;
}

.site-header__nav-group {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
}

.ref-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 auto !important;
}

.ref-nav__link {
    font-family: "Orbitron", "Montserrat", sans-serif;
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: #c6d4ec;
    opacity: 0.92;
    transition: color 0.16s ease, opacity 0.16s ease;
}

.ref-nav__link:hover,
.ref-nav__link.is-active {
    color: #f2f7ff;
    opacity: 1;
}

.ref-nav__link--social {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.ref-nav__link--social i {
    font-size: 0.72rem;
}

.ref-nav__link--whatsapp:hover,
.ref-nav__link--whatsapp i {
    color: #25d366;
}

.ref-nav__link--discord:hover,
.ref-nav__link--discord i {
    color: #5865f2;
}

.ref-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    margin-left: 8px;
}

.ref-account-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    height: 28px;
    padding: 0 12px;
    border-radius: 2px;
    border: 1px solid rgba(170, 200, 255, 0.2);
    background: rgba(10, 20, 40, 0.22);
    color: #f2f6ff;
    font-family: "Orbitron", "Montserrat", sans-serif;
    font-size: 0.47rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ref-account-btn:hover {
    background: rgba(12, 24, 48, 0.45);
    border-color: rgba(255, 255, 255, 0.26);
}

/* Home: personagem lateral esquerda */
body.home-page.home-microsite .hero.hero--portal {
    position: relative;
    overflow: hidden;
}

body.home-page.home-microsite .home-hero-character {
    display: none !important;
}

body.home-page.home-microsite .home-hero-showcase,
body.home-page.home-microsite .home-channel-status,
body.home-page.home-microsite .hero__row.hero__row--home {
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    body.home-page.home-microsite .home-hero-character {
        width: clamp(180px, 21vw, 280px);
        height: clamp(260px, 44vw, 440px);
        opacity: 0.82;
    }
}

@media (max-width: 760px) {
    body.home-page.home-microsite .home-hero-character {
        display: none;
    }
}

/* hide old header artifacts */
.brand--mobile,
.brand--center,
.primary-nav,
.header-social {
    display: none !important;
}

@media (max-width: 920px) {
    .ref-nav {
        display: none;
    }

    .ref-brand__text {
        display: none;
    }

    .ref-account-btn {
        min-width: 98px;
    }
}

/* Fast mode: reduce expensive visual effects */
body.fast-mode *,
body.fast-mode *::before,
body.fast-mode *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.08s !important;
}

body.fast-mode .site-header,
body.fast-mode .site-header__navwrap,
body.fast-mode .hero,
body.fast-mode .card,
body.fast-mode .auth-page__card,
body.fast-mode .hero-news-board,
body.fast-mode .ranking-hub,
body.fast-mode .rankings-page .ranking-table,
body.fast-mode .btn,
body.fast-mode .primary-nav__link {
    backdrop-filter: none !important;
    filter: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

body.fast-mode::before {
    background:
        linear-gradient(180deg, rgba(6, 10, 18, 0.65) 0%, rgba(5, 8, 14, 0.72) 100%),
        var(--site-bg-image, url("images/fundo.jpg")) center/cover no-repeat fixed !important;
    opacity: 0.86 !important;
}

/* Home final pixel-fit */
body.home-page.home-microsite .site-main {
    max-width: 1260px !important;
    margin: 0 auto !important;
    padding-top: 14px !important;
    padding-bottom: 72px !important;
}

body.home-page.home-microsite .site-header__navwrap {
    max-width: 1260px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

body.home-page.home-microsite .site-header {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.home-page.home-microsite .ref-brand,
body.home-page.home-microsite .ref-nav,
body.home-page.home-microsite .ref-actions {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

body.home-page.home-microsite .hero.hero--portal {
    max-width: 960px !important;
    margin: 0 auto 30px !important;
}

body.home-page.home-microsite .home-hero-showcase {
    max-width: 760px !important;
    margin: 8px auto 12px !important;
    padding: 2px 8px !important;
}

body.home-page.home-microsite .home-hero-showcase__title {
    margin: 8px 0 6px !important;
}

body.home-page.home-microsite .home-hero-showcase__subtitle {
    max-width: 640px !important;
    margin: 0 auto 8px !important;
}

body.home-page.home-microsite .home-hero-showcase__actions {
    margin-top: 8px !important;
}

body.home-page.home-microsite .home-channel-status {
    max-width: 940px !important;
    margin: 8px auto 12px !important;
}

body.home-page.home-microsite .hero-news-board {
    display: none !important;
}

body.home-page.home-microsite .nation-conflict,
body.home-page.home-microsite .home-hall {
    max-width: 960px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Admin layout hotfix (remove quebrado/overlay) */
body.admin-page .site-main {
    display: block !important;
    width: min(1240px, 96vw) !important;
    max-width: 1240px !important;
    margin: 0 auto !important;
    padding-top: 12px !important;
}

body.admin-page .site-main > * {
    grid-column: auto !important;
}

body.admin-page .admin-section {
    position: static !important;
    top: auto !important;
    max-width: 1200px !important;
    margin: 0 auto 16px !important;
    padding: 0 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.admin-page .admin-section__info,
body.admin-page .admin-section__menu {
    position: static !important;
}

body.admin-page .admin-summary,
body.admin-page .admin-card,
body.admin-page .admin-cards-grid,
body.admin-page .table-wrapper {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

@media (max-width: 1100px) {
    body.admin-page .admin-section {
        flex-direction: column !important;
        align-items: stretch !important;
    }
}

/* Admin final layout: sidebar esquerda + conteúdo direita */
body.admin-page .site-header {
    background: rgba(4, 10, 22, 0.72) !important;
}

body.admin-page .site-header__navwrap {
    background: rgba(7, 14, 30, 0.55) !important;
}

body.admin-page .site-main {
    display: grid !important;
    grid-template-columns: 270px minmax(0, 1fr) !important;
    gap: 16px !important;
    width: min(1320px, 96vw) !important;
    max-width: 1320px !important;
    margin: 0 auto !important;
    padding-top: 12px !important;
}

body.admin-page .admin-section {
    grid-column: 1 !important;
    position: sticky !important;
    top: 10px !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    border: 1px solid rgba(96, 165, 250, 0.24) !important;
    border-radius: 12px !important;
    background: linear-gradient(180deg, rgba(8, 16, 34, 0.92), rgba(5, 10, 24, 0.94)) !important;
    overflow: hidden !important;
}

body.admin-page .admin-section__info {
    margin: 0 !important;
    padding: 12px !important;
    border-bottom: 1px solid rgba(96, 165, 250, 0.18) !important;
    background: rgba(12, 22, 44, 0.65) !important;
}

body.admin-page .admin-section__menu {
    margin: 0 !important;
    padding: 10px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    background: transparent !important;
    border: none !important;
}

body.admin-page .admin-section__link {
    width: 100% !important;
    min-height: 36px !important;
    padding: 9px 11px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(96, 165, 250, 0.24) !important;
    background: rgba(9, 19, 38, 0.72) !important;
    justify-content: flex-start !important;
    font-size: 0.68rem !important;
    letter-spacing: 0.08em !important;
}

body.admin-page .admin-section__link.is-active,
body.admin-page .admin-section__link:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.36), rgba(56, 189, 248, 0.2)) !important;
    border-color: rgba(125, 211, 252, 0.55) !important;
}

body.admin-page .site-main > :not(.admin-section) {
    grid-column: 2 !important;
    max-width: 100% !important;
    margin: 0 0 14px !important;
}

body.admin-page .admin-summary {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 10px !important;
}

body.admin-page .admin-summary__card {
    padding: 12px !important;
}

body.admin-page .admin-card {
    border-radius: 12px !important;
    border: 1px solid rgba(96, 165, 250, 0.2) !important;
    background: linear-gradient(180deg, rgba(7, 14, 30, 0.9), rgba(5, 10, 22, 0.94)) !important;
}

@media (max-width: 1180px) {
    body.admin-page .site-main {
        grid-template-columns: 1fr !important;
    }

    body.admin-page .admin-section {
        position: static !important;
        grid-column: 1 !important;
    }

    body.admin-page .site-main > :not(.admin-section) {
        grid-column: 1 !important;
    }

    body.admin-page .admin-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* Admin visual polish (index/account) */
body.admin-page .admin-card__title {
    font-size: 1.12rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.01em !important;
    margin-bottom: 10px !important;
}

body.admin-page .admin-search {
    gap: 8px !important;
}

body.admin-page .admin-search input[type="text"] {
    min-height: 36px !important;
    border-radius: 8px !important;
    font-size: 0.74rem !important;
    padding: 8px 10px !important;
    border: 1px solid rgba(96, 165, 250, 0.3) !important;
    background: rgba(8, 16, 32, 0.88) !important;
    color: #eaf3ff !important;
}

body.admin-page .admin-search button,
body.admin-page .btn.btn--ghost {
    min-height: 34px !important;
    border-radius: 8px !important;
    padding: 7px 12px !important;
    font-size: 0.66rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    border: 1px solid rgba(125, 211, 252, 0.4) !important;
    background: linear-gradient(135deg, rgba(30, 64, 120, 0.42), rgba(14, 30, 56, 0.62)) !important;
    color: #eef6ff !important;
}

body.admin-page .admin-search button:hover,
body.admin-page .btn.btn--ghost:hover {
    border-color: rgba(125, 211, 252, 0.72) !important;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.52), rgba(14, 30, 56, 0.72)) !important;
}

body.admin-page .admin-table {
    border-radius: 10px !important;
    overflow: hidden !important;
}

body.admin-page .admin-table thead th {
    font-size: 0.58rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    padding: 9px 8px !important;
    border-bottom: 1px solid rgba(96, 165, 250, 0.28) !important;
    background: linear-gradient(90deg, rgba(23, 74, 141, 0.58), rgba(17, 33, 61, 0.8)) !important;
    color: #dbeafe !important;
}

body.admin-page .admin-table td {
    font-size: 0.74rem !important;
    padding: 8px 8px !important;
    line-height: 1.3 !important;
    border-top: 1px solid rgba(96, 165, 250, 0.12) !important;
    color: #e3edff !important;
}

body.admin-page .admin-table tbody tr:hover {
    background: rgba(37, 99, 235, 0.16) !important;
    transform: none !important;
}

body.admin-page .admin-badge {
    min-width: 20px !important;
    height: 20px !important;
    border-radius: 999px !important;
    font-size: 0.6rem !important;
    padding: 0 7px !important;
}

/* Footer replaced with return buttons */
.site-footer.site-footer--compact-nav {
    margin-top: 18px;
    padding: 0 0 14px;
    background: transparent !important;
    border: none !important;
}

/* Admin Send Global Mail: remove inline styles */
.admin-mail-layout {
    max-width: 1200px;
    margin: 0 auto 32px;
    padding: 0 20px;
}
.admin-mail-card {
    max-width: 800px;
    margin: 0 auto;
}
.admin-mail-card--spaced {
    margin-bottom: 20px;
}
.admin-mail-badge {
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(166, 124, 58, 0.2);
    color: #8d4dff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}
.admin-mail-group {
    margin-bottom: 20px;
}
.admin-mail-group--lg {
    margin-bottom: 30px;
}
.admin-mail-label {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}
.admin-mail-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 12px;
    color: var(--text-primary);
}
.admin-mail-input--textarea {
    resize: vertical;
}
.admin-mail-help {
    display: block;
    margin-top: 4px;
    color: var(--text-secondary);
    font-size: 0.75rem;
}
.admin-mail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.admin-mail-submit {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1rem;
    background: linear-gradient(135deg, #8d4dff, #ff4db8);
    border: none;
    box-shadow: 0 4px 15px rgba(166, 124, 58, 0.3);
}
.admin-mail-submit__icon {
    margin-right: 8px;
}

.auth-centered-actions {
    text-align: center;
    margin-top: 24px;
}

.auth-centered-subtitle {
    text-align: center;
    margin-bottom: 24px;
}

.admin-wide-layout {
    max-width: 1200px;
    margin: 0 auto 32px;
    padding: 0 20px;
}

.admin-wide-card,
.ranking-hub--container {
    max-width: 1200px;
    margin: 0 auto;
}

.site-footer__return-actions {
    width: min(420px, 92vw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.site-footer__return-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 8px;
    border: 1px solid rgba(96, 165, 250, 0.34);
    background: rgba(8, 16, 32, 0.72);
    color: #eaf2ff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.site-footer__return-btn:hover {
    border-color: rgba(125, 211, 252, 0.72);
    background: rgba(15, 30, 58, 0.82);
}

.character-search__form {
    width: min(720px, 100%);
    margin: 22px auto 24px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.character-search__input {
    flex: 1 1 auto;
}

.character-search__button {
    flex: 0 0 auto;
    min-height: 44px;
}

.character-search__message {
    width: min(720px, 100%);
    margin: 0 auto 18px;
}

.character-search__results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.character-search-card {
    border: 1px solid rgba(96, 165, 250, 0.28);
    border-radius: 18px;
    background: linear-gradient(160deg, rgba(5, 12, 28, 0.9), rgba(8, 16, 34, 0.86));
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
    padding: 20px;
}

.character-search-card__head {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px;
}

.character-search-card__class-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 14px;
    background: rgba(2, 6, 23, 0.55);
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.character-search-card h2 {
    margin: 0 0 8px;
    font-size: 1.25rem;
    color: #f2f7ff;
}

.character-search-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: rgba(203, 221, 245, 0.78);
    font-size: 0.82rem;
    font-weight: 700;
}

.character-search-card__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.character-search-card__grid > div,
.character-search-card__attrs > div {
    border: 1px solid rgba(96, 165, 250, 0.18);
    border-radius: 12px;
    background: rgba(3, 8, 20, 0.48);
    padding: 10px 12px;
}

.character-search-card span {
    display: block;
    color: rgba(203, 221, 245, 0.72);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.character-search-card strong {
    display: block;
    margin-top: 4px;
    color: #eaf2ff;
    font-size: 1rem;
}

.character-search-card__attrs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

@media (max-width: 720px) {
    .character-search__form {
        flex-direction: column;
        align-items: stretch;
    }

    .character-search-card__grid,
    .character-search-card__attrs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
/* data-inline-style migration */
.u-inline-001 { max-width:1200px; margin:0 auto 32px; padding:0 20px; }
.u-inline-002 { display:block;margin-top:8px;color:rgba(194,210,255,0.65);font-size:0.8rem; }
.u-inline-003 { margin-top:12px; }
.u-inline-004 { margin-top:8px;color:rgba(194,210,255,0.6);font-size:0.85rem; }
.u-inline-005 { color:rgba(194,210,255,0.7); }
.u-inline-006 { color:rgba(194,210,255,0.6);font-size:0.9rem; }
.u-inline-007 { overflow-x:auto; }
.u-inline-008 { background:rgba(214,68,68,0.85); }
.u-inline-009 { background:rgba(34,170,109,0.85); }
.u-inline-010 { padding:8px 14px; text-transform:none; }
.u-inline-011 { width:32px;height:32px;object-fit:contain; }
.u-inline-012 { margin-top:12px;color:rgba(194,210,255,0.6);font-size:0.85rem; }
.u-inline-013 { max-width:1200px; margin:0 auto; }
.u-inline-014 { display:grid; gap:16px; max-width:720px; }
.u-inline-015 { display:inline-flex; gap:8px; }
.u-inline-016 { padding:8px 12px; }
.u-inline-017 { margin-bottom:24px; }
.u-inline-018 { color:var(--color-amber); }
.u-inline-019 { color:var(--color-ember); }
.u-inline-020 { display:block;color:var(--text-secondary);font-size:0.75rem; }
.u-inline-021 { color:var(--text-secondary); }
.u-inline-022 { font-size:0.85rem; word-break:break-all; }
.u-inline-023 { margin-top:20px; }
.u-inline-024 { margin-top:24px; }
.u-inline-025 { color:var(--text-primary);margin-bottom:20px;font-size:1.2rem; }
.u-inline-026 { margin-top:8px;padding:4px 12px;font-size:0.85rem; }
.u-inline-027 { margin-right:8px; }
.u-inline-028 { color:var(--color-amber);font-size:1.3rem; }
.u-inline-029 { overflow-x:auto; margin-top:20px; }
.u-inline-030 { background:rgba(255,95,109,0.85);margin-left:8px; }
.u-inline-031 { font-family:monospace;font-size:0.85rem; }
.u-inline-032 { background: #4ade80; }
.u-inline-033 { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:24px; margin-top:16px; }
.u-inline-034 { border:1px solid rgba(255,255,255,0.08); border-radius:12px; padding:20px; }
.u-inline-035 { font-size:0.95rem; color:rgba(219,232,255,0.8); }
.u-inline-036 { text-align:center; margin:8px 0; color:rgba(194,210,255,0.7); font-size:0.85rem; }
.u-inline-037 { margin-top:16px; background:var(--color-ember); border-color:var(--color-ember); }
.u-inline-038 { margin-top:12px; padding:12px; border-radius:8px; background:rgba(255,165,0,0.08); border:1px solid rgba(255,165,0,0.3); font-size:0.85rem; color:rgba(255,219,170,0.95); }
.u-inline-039 { width:32px;height:32px;object-fit:contain;vertical-align:middle; }
.u-inline-040 { color:#22c55e;margin-left:12px; }
.u-inline-041 { font-size:0.6rem; }
.u-inline-042 { margin-top:24px;display:flex;flex-wrap:wrap;gap:12px;align-items:center; }
.u-inline-043 { text-transform:none; }
.u-inline-044 { display:flex;justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap; }
.u-inline-045 { display:flex;gap:8px;flex-wrap:wrap;align-items:center; }
.u-inline-046 { margin-top:18px; }
.u-inline-047 { color:rgba(194,210,255,0.9);font-size:1rem;margin-bottom:12px;font-weight:600; }
.u-inline-048 { margin-bottom:18px; }
.u-inline-049 { color:rgba(194,210,255,0.7);margin-bottom:18px; }
.u-inline-050 { border-top:1px solid rgba(255,255,255,0.1);padding-top:24px; }
.u-inline-051 { color:rgba(194,210,255,0.7);margin-bottom:12px; }
.u-inline-052 { background:rgba(0,0,0,0.3);padding:2px 6px;border-radius:4px; }
.u-inline-053 { color:rgba(194,210,255,0.5); }
.u-inline-054 { color:rgba(194,210,255,0.65);margin:0; }
.u-inline-055 { color:rgba(194,210,255,0.6);font-size:0.8rem;display:block;margin-top:4px; }
.u-inline-056 { display:grid;grid-template-columns:repeat(auto-fill, minmax(350px, 1fr));gap:20px;margin-top:20px; }
.u-inline-057 { display:flex;justify-content:space-between;align-items:start;margin-bottom:16px; }
.u-inline-058 { color:var(--text-primary);margin:0 0 8px 0;font-size:1.2rem;display:flex;align-items:center;gap:8px; }
.u-inline-059 { display:flex;gap:12px;flex-wrap:wrap;align-items:center; }
.u-inline-060 { color:rgba(194,210,255,0.8);font-size:0.85rem; }
.u-inline-061 { display:flex;align-items:center;gap:4px;color:var(--color-ember);font-size:0.85rem; }
.u-inline-062 { display:grid;grid-template-columns:repeat(2, 1fr);gap:12px;margin-top:16px; }
.u-inline-063 { background:rgba(4,10,24,0.6);padding:10px;border-radius:8px;border:1px solid rgba(77,251,255,0.2); }
.u-inline-064 { color:rgba(194,210,255,0.7);font-size:0.75rem;margin-bottom:4px; }
.u-inline-065 { color:var(--color-cabal-cyan);font-size:1.1rem;font-weight:700; }
.u-inline-066 { background:rgba(4,10,24,0.6);padding:10px;border-radius:8px;border:1px solid rgba(255,95,109,0.2); }
.u-inline-067 { color:var(--color-ember);font-size:1.1rem;font-weight:700; }
.u-inline-068 { background:rgba(4,10,24,0.6);padding:10px;border-radius:8px;border:1px solid rgba(255,209,102,0.2); }
.u-inline-069 { color:var(--color-amber);font-size:1.1rem;font-weight:700; }
.u-inline-070 { background:rgba(4,10,24,0.6);padding:10px;border-radius:8px;border:1px solid rgba(141,77,255,0.2); }
.u-inline-071 { color:var(--color-purple);font-size:1.1rem;font-weight:700; }
.u-inline-072 { margin-top:16px;padding-top:16px;border-top:1px solid rgba(77,251,255,0.2); }
.u-inline-073 { display:grid;grid-template-columns:repeat(3, 1fr);gap:8px;font-size:0.8rem; }
.u-inline-074 { color:rgba(194,210,255,0.6); }
.u-inline-075 { color:var(--text-primary);font-weight:600; }
.u-inline-076 { margin-top:12px; text-align:right; }
.u-inline-077 { display:inline-block; }
.u-inline-078 { text-transform:none; color:var(--color-ember); border-color:rgba(255,95,109,0.6); }
.u-inline-079 { text-align:center; margin-bottom:40px; }
.u-inline-080 { margin-bottom: 24px; text-align: center; border-bottom: 1px solid var(--glass-border); padding-bottom: 16px; }
.u-inline-081 { color: var(--text-secondary); }
.u-inline-082 { color: var(--color-cabal-cyan); }
.u-inline-083 { border-top: 1px solid var(--glass-border); margin: 32px 0; padding-top: 24px; }
.u-inline-084 { color: var(--text-primary); margin-bottom: 20px; font-size: 1.1rem; }
.u-inline-085 { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }
.u-inline-086 { margin-top: 32px; text-align: center; }
.u-inline-087 { max-width: 900px; margin: 40px auto; padding: 0 20px; }
.u-inline-088 { background: rgba(10, 20, 40, 0.8); border: 1px solid var(--glass-border); border-radius: 16px; padding: 32px; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5); }
.u-inline-089 { text-align:center; margin-bottom: 22px; }
.u-inline-090 { font-size: 1.9rem; color: var(--color-cabal-cyan); }
.u-inline-091 { color: rgba(194, 210, 255, 0.85); margin-top: 8px; }
.u-inline-092 { color: var(--color-amber); }
.u-inline-093 { color: rgba(194, 210, 255, 0.75); font-size: 0.95rem; margin-top: 6px; }
.u-inline-094 { margin-bottom: 18px; }
.u-inline-095 { display:grid; grid-template-columns: 1fr; gap: 18px; }
.u-inline-096 { display:flex; justify-content:center; }
.u-inline-097 { max-width: 320px; width: 100%; border-radius: 16px; border: 1px solid var(--glass-border); background: rgba(255,255,255,0.06); padding: 16px; }
.u-inline-098 { background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); border-radius: 14px; padding: 16px; }
.u-inline-099 { color: rgba(194,210,255,0.8); font-size: 0.9rem; margin-bottom: 8px; }
.u-inline-100 { width:100%; min-height: 120px; resize: vertical; border-radius: 12px; padding: 12px; background: rgba(4,10,24,0.8); color: rgba(230,250,255,0.95); border: 1px solid rgba(77,251,255,0.2); }
.u-inline-101 { display:flex; justify-content:flex-end; margin-top: 10px; }
.u-inline-102 { text-align:center; }
.u-inline-103 { justify-content:center; }
.u-inline-104 { text-align:center; margin-top: 22px; }
.u-inline-105 { margin-top:28px; padding: 32px; background: rgba(197, 160, 89, 0.05); border: 1px solid rgba(197, 160, 89, 0.2); border-radius: 16px; }
.u-inline-106 { text-align: center; margin-bottom: 24px; }
.u-inline-107 { font-size: 64px; color: var(--color-cabal-cyan); margin-bottom: 16px; }
.u-inline-108 { margin-bottom:12px; text-transform:uppercase; letter-spacing:.2em; color:rgba(194,210,255,0.9); }
.u-inline-109 { background: linear-gradient(135deg, rgba(197, 160, 89, 0.15) 0%, rgba(166, 124, 58, 0.15) 100%); padding: 24px; border-radius: 12px; margin-bottom: 24px; border: 2px solid var(--color-cabal-cyan); text-align: center; }
.u-inline-110 { line-height:1.7; color:rgba(219,232,255,0.95); margin: 0 0 16px 0; font-size: 1rem; }
.u-inline-111 { color: var(--color-cabal-cyan); margin-right: 8px; }
.u-inline-112 { background: rgba(0, 0, 0, 0.3); padding: 20px; border-radius: 8px; margin: 16px 0; }
.u-inline-113 { margin: 0; font-size: 2.5rem; font-weight: bold; color: var(--color-cabal-cyan); letter-spacing: 8px; font-family: 'Courier New', monospace; }
.u-inline-114 { line-height:1.7; color:rgba(194,210,255,0.7); margin: 12px 0 0 0; font-size: 0.9rem; }
.u-inline-115 { background: rgba(197, 160, 89, 0.1); padding: 20px; border-radius: 12px; margin-bottom: 24px; border-left: 4px solid var(--color-cabal-cyan); text-align: center; }
.u-inline-116 { line-height:1.7; color:rgba(219,232,255,0.95); margin: 0 0 12px 0; font-size: 1.1rem; }
.u-inline-117 { line-height:1.7; margin: 0; font-size: 1.2rem; }
.u-inline-118 { background: rgba(34, 170, 109, 0.1); padding: 24px; border-radius: 12px; margin-bottom: 24px; border-left: 4px solid rgba(34, 170, 109, 0.8); }
.u-inline-119 { color:rgba(219,232,255,0.95); margin: 0 0 16px 0; font-size: 1.1rem; }
.u-inline-120 { color: rgba(34, 170, 109, 0.9); margin-right: 8px; }
.u-inline-121 { display: flex; gap: 12px; align-items: flex-end; flex-wrap: wrap; }
.u-inline-122 { flex: 1; min-width: 200px; }
.u-inline-123 { margin-bottom: 8px; display: block; color:rgba(219,232,255,0.9); }
.u-inline-124 { text-align: center; font-size: 1.5rem; letter-spacing: 4px; font-family: 'Courier New', monospace; font-weight: bold; }
.u-inline-125 { min-width: 150px; }
.u-inline-126 { background: rgba(34, 170, 109, 0.1); padding: 20px; border-radius: 12px; margin-bottom: 24px; border-left: 4px solid rgba(34, 170, 109, 0.8); }
.u-inline-127 { line-height:1.7; color:rgba(219,232,255,0.95); margin: 0 0 12px 0; }
.u-inline-128 { color:rgba(219,232,255,0.9); margin: 12px 0 0 0; padding-left: 20px; line-height: 2; }
.u-inline-129 { text-align: center; margin-bottom: 24px; padding: 16px; background: rgba(255, 209, 102, 0.1); border-radius: 8px; border: 1px solid rgba(255, 209, 102, 0.3); }
.u-inline-130 { margin: 0 0 8px 0; color: rgba(255, 209, 102, 0.9); }
.u-inline-131 { margin: 0; font-size: 1.5rem; font-weight: bold; color: rgba(255, 209, 102, 1); }
.u-inline-132 { background: rgba(255, 255, 255, 0.03); padding: 16px; border-radius: 12px; margin-bottom: 20px; text-align: center; }
.u-inline-133 { color:rgba(194,210,255,0.7); font-size: 0.9rem; margin: 0; }
.u-inline-134 { display:flex; gap:12px; margin-top:20px; flex-wrap: wrap; }
.u-inline-135 { flex:1; min-width: 150px; }
.u-inline-136 { width:100%; text-transform:none; }
.u-inline-137 { max-width: 1100px; margin: 40px auto; padding: 0 20px; }
.u-inline-138 { text-align: center; margin-bottom: 28px; }
.u-inline-139 { font-size: 2rem; color: var(--color-cabal-cyan); }
.u-inline-140 { color: #ffd166; font-weight: 900; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 8px; }
.u-inline-141 { color: #ffd166; font-weight: 900; font-size: 0.98rem; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 10px; }
.u-inline-142 { display:flex; justify-content:space-between; gap: 16px; flex-wrap:wrap; align-items:center; background: rgba(255, 255, 255, 0.05); border-radius: 12px; padding: 16px; margin-bottom: 24px; }
.u-inline-143 { color: rgba(194, 210, 255, 0.9); }
.u-inline-144 { font-size:0.85rem; opacity:0.8; }
.u-inline-145 { font-size:1.15rem; font-weight:800; color: var(--color-amber); }
.u-inline-146 { color: rgba(194, 210, 255, 0.9); text-align:right; }
.u-inline-147 { font-size:1.15rem; font-weight:800; color: var(--color-cabal-cyan); }
.u-inline-148 { margin-bottom: 22px; }
.u-inline-149 { display:flex; gap: 12px; flex-wrap:wrap; align-items:end; }
.u-inline-150 { flex: 1; min-width: 240px; }
.u-inline-151 { height: 46px; padding: 0 18px; }
.u-inline-152 { margin-top: 24px; }
.u-inline-153 { color:var(--text-primary); font-size:1.2rem; margin-bottom:12px; }
.u-inline-154 { display:flex; flex-wrap:wrap; gap:10px; }
.u-inline-155 { background: rgba(34, 170, 109, 0.14); border: 1px solid rgba(34, 170, 109, 0.35); color: rgba(220,255,235,0.95); border-radius: 12px; padding: 10px 12px; min-width: 90px; text-align:center; }
.u-inline-156 { font-weight:900; font-size:1.05rem; }
.u-inline-157 { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--glass-border); }
.u-inline-158 { display:grid; grid-template-columns: repeat(auto-fill, minmax(60px, 1fr)); gap: 8px; }
.u-inline-159 { margin-top: 14px; display:flex; gap: 10px; flex-wrap:wrap; align-items:center; color: rgba(194,210,255,0.85); font-size:0.9rem; }
.u-inline-160 { display:inline-flex; align-items:center; gap:8px; }
.u-inline-161 { width:14px; height:14px; border-radius:4px; background: rgba(197, 160, 89, 0.18); border:1px solid rgba(197, 160, 89, 0.35); display:inline-block; }
.u-inline-162 { width:14px; height:14px; border-radius:4px; background: rgba(255, 209, 102, 0.18); border:1px solid rgba(255, 209, 102, 0.35); display:inline-block; }
.u-inline-163 { width:14px; height:14px; border-radius:4px; background: rgba(34, 170, 109, 0.18); border:1px solid rgba(34, 170, 109, 0.35); display:inline-block; }
.u-inline-164 { width:14px; height:14px; border-radius:4px; background: rgba(214, 68, 68, 0.18); border:1px solid rgba(214, 68, 68, 0.35); display:inline-block; }
.u-inline-165 { text-align:center; margin-top: 26px; }
.u-inline-166 { justify-content:center; padding: 12px 18px; }
.u-inline-167 { margin-top:40px; padding-top:32px; border-top:1px solid var(--glass-border); }
.u-inline-168 { color:var(--text-primary); font-size:1.5rem; margin-bottom:24px; text-align:center; }
.u-inline-169 { margin-top: 16px; }
.u-inline-170 { max-width: 1000px; margin: auto; }
.u-inline-171 { background: rgba(197, 160, 89, 0.1); border: 1px solid var(--color-cabal-cyan); padding: 20px; border-radius: 12px; margin-bottom: 32px; display: flex; justify-content: space-between; align-items: center; }
.u-inline-172 { color: var(--text-primary); }
.u-inline-173 { background: rgba(255, 95, 109, 0.1); border: 1px solid var(--color-ember); padding: 15px; border-radius: 12px; margin-bottom: 32px; color: var(--color-ember); text-align: center; }
.u-inline-174 { margin-top: 40px; text-align: center; }
.u-inline-175 { max-width:960px; margin:0 auto 40px; }
.u-inline-176 { margin-bottom:28px; }
.u-inline-177 { display:flex; flex-wrap:wrap; gap:18px; }
.u-inline-178 { flex:1 1 240px; justify-content:center; }
.u-inline-179 { opacity:0.8; }
.u-inline-180 { max-width: 800px; margin: 0 auto 32px; }
.u-inline-181 { max-width: 800px; margin: 40px auto 0; padding: 24px; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 16px; }
.u-inline-182 { color: var(--text-primary); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.u-inline-183 { color: var(--text-secondary); line-height: 1.8; margin: 0; padding-left: 20px; }
.u-inline-184 { text-align: center; margin: 40px 0; }
.u-inline-185 { color: var(--text-primary); margin-bottom: 20px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.u-inline-186 { display: inline-block; padding: 20px; background: white; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); margin-bottom: 24px; }
.u-inline-187 { max-width: 300px; width: 100%; height: auto; display: block; }
.u-inline-188 { margin-top: 20px; }
.u-inline-189 { margin-bottom: 12px; }
.u-inline-190 { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.u-inline-191 { font-size: 1rem; padding: 12px 24px; }
.u-inline-192 { font-size: 1.2rem; padding: 16px 32px; }
.u-inline-193 { margin-top: 24px; padding: 20px; background: rgba(0, 133, 255, 0.1); border-radius: 12px; border: 1px solid rgba(0, 133, 255, 0.3); }
.u-inline-194 { list-style: none; padding: 0; margin: 12px 0; text-align: left; }
.u-inline-195 { margin: 8px 0; }
.u-inline-196 { color: #4caf50; margin-right: 8px; }
.u-inline-197 { margin-top: 16px; margin-bottom: 0; }
.u-inline-198 { margin-top: 24px; text-align: center; }
.u-inline-199 { max-width:700px; margin:auto; padding:32px; }
.u-inline-200 { display:flex; gap:24px; margin-top:16px; }
.u-inline-201 { margin:24px 0; }
.u-inline-202 { display:flex; gap:12px; flex-wrap:wrap; }
.u-inline-203 { margin:32px 0; }
.u-inline-204 { display:flex; gap:24px; flex-wrap:wrap; margin-bottom:12px; }
.u-inline-205 { width:100%; margin-top:12px; border-collapse:collapse; }
.u-inline-206 { text-align:left; }
.u-inline-207 { color:red; }
.u-inline-208 { color:green; }
.u-inline-209 { max-width: 800px; margin: 40px auto; padding: 0 20px; }
.u-inline-210 { text-align: center; margin-bottom: 32px; }
.u-inline-211 { color: #ffd166; font-weight: 900; font-size: 1.15rem; text-transform: uppercase; letter-spacing: 0.5px; }
.u-inline-212 { margin-top: 12px; font-size: 1.15rem; font-weight: 900; color: #ff3b3b; text-transform: uppercase; letter-spacing: 0.5px; }
.u-inline-213 { margin-bottom: 24px; }
.u-inline-214 { background: rgba(255, 255, 255, 0.05); border-radius: 12px; padding: 20px; margin-bottom: 32px; display: flex; justify-content: space-between; align-items: center; }
.u-inline-215 { display: block; font-size: 0.85rem; color: rgba(194, 210, 255, 0.6); }
.u-inline-216 { font-size: 1.25rem; font-weight: 700; color: var(--color-amber); }
.u-inline-217 { text-align: right; }
.u-inline-218 { font-size: 1.25rem; font-weight: 700; color: var(--color-ember); }
.u-inline-219 { display: block; margin-bottom: 12px; color: var(--text-primary); }
.u-inline-220 { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.u-inline-221 { cursor: pointer; }
.u-inline-222 { display: none; }
.u-inline-223 { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--glass-border); border-radius: 12px; padding: 16px; text-align: center; transition: all 0.3s ease; }
.u-inline-224 { width: 48px; height: 48px; margin-bottom: 8px; filter: drop-shadow(0 0 8px rgba(197, 160, 89, 0.3)); }
.u-inline-225 { font-size: 0.85rem; color: var(--text-primary); }
.u-inline-226 { color: rgba(194, 210, 255, 0.5); display: block; margin-top: 4px; }
.u-inline-227 { width: 100%; justify-content: center; padding: 16px; font-size: 1.1rem; }
/* inline-style leftovers migration */
.buy-character-radio-hidden { display: none; }
.buy-character-class-icon { width: 48px; height: 48px; margin-bottom: 8px; filter: drop-shadow(0 0 8px rgba(197, 160, 89, 0.3)); }
.checkout-qr-image { max-width: 300px; width: 100%; height: auto; display: block; }
.checkout-pay-btn { font-size: 1rem; padding: 12px 24px; }
.checkout-pay-btn-lg { font-size: 1.2rem; padding: 16px 32px; }
.donate-message-box { max-width: 800px; margin: 0 auto 32px; }
.rifa-checkout-qr { max-width: 320px; width: 100%; border-radius: 16px; border: 1px solid var(--glass-border); background: rgba(255,255,255,0.06); padding: 16px; }
.rifa-checkout-link { justify-content: center; }
.admin-class-icon { width: 32px; height: 32px; object-fit: contain; }
.admin-class-icon--middle { vertical-align: middle; }
.admin-text-normal { text-transform: none; }
.admin-mr-8 { margin-right: 8px; }
.debug-highlight-green { background: #4ade80; }
.home-channel-status__fill--dynamic { width: var(--bar-width); background: var(--bar-color); }
.dashboard-character-card--dynamic { border-color: var(--nation-color); }
.dashboard-character-card__nation--dynamic { background: var(--nation-bg); color: var(--nation-color); }
.admin-nation-color { color: var(--nation-color); }
.admin-badge--dynamic-bg { background: var(--badge-bg); }
.admin-nation-card { background: linear-gradient(135deg, rgba(6,14,28,0.9), rgba(10,18,38,0.9)); border: 2px solid var(--nation-color); border-radius: 16px; padding: 20px; box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.admin-nation-chip { background: var(--nation-bg); color: var(--nation-color); padding: 4px 12px; border-radius: 8px; font-size: 0.85rem; font-weight: 600; }
.rifa-number-btn--dynamic { cursor: pointer; user-select: none; border-radius: 12px; padding: 10px 6px; background: var(--rifa-bg); border: 1px solid var(--rifa-border); color: var(--rifa-color); font-weight: 900; }
