/* 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 {
    --color-space-void: #04030f;
    --color-abyss: #060b24;
    --color-cabal-blue: #1d9eff;
    --color-cabal-cyan: #4dfbff;
    --color-cabal-violet: #8b4dff;
    --color-ember: #ff5f6d;
    --color-gold: #ffd166;
    --color-amber: #ffd166;
    --color-purple: #8b4dff;
    --text-primary: #eef6ff;
    --text-secondary: rgba(202, 214, 255, 0.78);
    --glass-border: rgba(111, 141, 255, 0.28);
    --glass-bg: rgba(9, 14, 38, 0.8);
    --glass-bg-strong: rgba(6, 11, 28, 0.94);
    /* Largura máxima do conteúdo em telas muito grandes (ex.: 4K) */
    --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(77, 251, 255, 0.15), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(141, 77, 255, 0.12), transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(7, 19, 52, 0.85), 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(5, 10, 32, 0.5) 0%, rgba(5, 10, 32, 0.35) 40%, rgba(5, 10, 32, 0.55) 100%),
        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(circle at center, rgba(0, 12, 35, 0.85), var(--color-space-void) 72%);
}

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(77, 251, 255, 0.4)) drop-shadow(0 0 80px rgba(139, 77, 255, 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(77, 251, 255, 0.35)) drop-shadow(0 0 60px rgba(139, 77, 255, 0.25));
    }
    100% {
        filter: drop-shadow(0 0 50px rgba(77, 251, 255, 0.5)) drop-shadow(0 0 100px rgba(139, 77, 255, 0.35));
    }
}

.site-main {
    flex: 1;
    padding: 20px clamp(16px, 5vw, 72px) 80px;
}

@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(77, 251, 255, 0.55);
}

.site-header__navwrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 5vw;
    gap: 12px;
}

/* 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: 200px;
    height: 200px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    padding: 12px;
    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(77, 251, 255, 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(6, 12, 28, 0.96), rgba(10, 16, 36, 0.94));
    border-radius: 16px;
    border: 1px solid rgba(121, 166, 255, 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(77, 251, 255, 0.24), rgba(141, 77, 255, 0.26));
    border-color: rgba(77, 251, 255, 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(77, 251, 255, 0.15), rgba(141, 77, 255, 0.18));
    border: 1px solid rgba(77, 251, 255, 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(77, 251, 255, 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(77, 251, 255, 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(77, 251, 255, 0.28), rgba(141, 77, 255, 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) {
    /* 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 {
        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(4, 10, 28, 0.98), rgba(10, 20, 46, 0.96));
        border-bottom: 1px solid rgba(121, 166, 255, 0.25);
        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(121, 166, 255, 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%;
    }
    /* 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: transparent;
    backdrop-filter: blur(6px);
}

body.home-page .hero {
    background: transparent;
}

.hero__marquee {
    position: relative;
    overflow: hidden;
    padding: 14px 0 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(77, 251, 255, 0.25);
    box-shadow: 0 2px 0 rgba(139, 77, 255, 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(77, 251, 255, 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(77, 251, 255, 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(77, 251, 255, 0.4)) drop-shadow(0 0 24px rgba(139, 77, 255, 0.2));
    }
    100% {
        filter: drop-shadow(0 0 18px rgba(77, 251, 255, 0.6)) drop-shadow(0 0 32px rgba(139, 77, 255, 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(0, 212, 255, 0.25), 
        rgba(123, 47, 255, 0.3),
        rgba(255, 0, 255, 0.25));
    border: 2px solid rgba(0, 212, 255, 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(0, 212, 255, 0.8),
        0 0 30px rgba(123, 47, 255, 0.6);
    font-weight: 800;
    box-shadow: 
        0 0 25px rgba(0, 212, 255, 0.3),
        inset 0 0 20px rgba(0, 212, 255, 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%, #7dfbff 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(77, 251, 255, 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(77, 251, 255, 0.48), 0 0 36px rgba(139, 77, 255, 0.32); }
    100% { text-shadow: 0 0 24px rgba(139, 77, 255, 0.52), 0 0 46px rgba(77, 251, 255, 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(0, 212, 255, 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(0, 212, 255, 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: center;
    margin-bottom: 32px;
}
@media (max-width: 900px) {
    .hero__row {
        grid-template-columns: 1fr;
    }
}
.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(77, 251, 255, 0.5);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow:
        0 0 25px rgba(77, 251, 255, 0.3),
        0 0 50px rgba(139, 77, 255, 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(77, 251, 255, 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(77, 251, 255, 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(77, 251, 255, 0.25);
    background: rgba(6, 12, 28, 0.8);
}
.hero-account-box .form-input:focus {
    border-color: rgba(77, 251, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(77, 251, 255, 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(77, 251, 255, 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(77, 251, 255, 0.2);
    border-color: rgba(77, 251, 255, 0.6);
    box-shadow: 0 0 16px rgba(77, 251, 255, 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(77, 251, 255, 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(77, 251, 255, 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(77, 251, 255, 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(77, 251, 255, 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(77, 251, 255, 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(77, 251, 255, 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(139, 77, 255, 0.45);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow:
        0 0 25px rgba(139, 77, 255, 0.25),
        0 0 50px rgba(77, 251, 255, 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(139, 77, 255, 0.6);
    box-shadow: 0 0 30px rgba(139, 77, 255, 0.35), 0 0 20px rgba(77, 251, 255, 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(139, 77, 255, 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(139, 77, 255, 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(77, 251, 255, 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(77, 251, 255, 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(77, 251, 255, 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(0, 212, 255, 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(0, 212, 255, 0.8));
    }
    50% { 
        transform: scale(1.1);
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 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(0, 212, 255, 0.8),
        0 0 30px rgba(123, 47, 255, 0.6);
    position: relative;
    z-index: 1;
    animation: countGlow 2s ease-in-out infinite;
}

@keyframes countGlow {
    0%, 100% { 
        text-shadow: 
            0 0 15px rgba(0, 212, 255, 0.8),
            0 0 30px rgba(123, 47, 255, 0.6);
    }
    50% { 
        text-shadow: 
            0 0 25px rgba(0, 212, 255, 1),
            0 0 50px rgba(123, 47, 255, 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, #4dfbff 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(77, 251, 255, 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(77, 251, 255, 0.4);
}

.btn--ghost {
    background: linear-gradient(135deg, rgba(9, 16, 32, 0.75), rgba(15, 25, 45, 0.72));
    border-color: rgba(125, 251, 255, 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(125, 251, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn--ghost:hover {
    border-color: rgba(125, 251, 255, 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(125, 251, 255, 0.3),
        inset 0 0 30px rgba(125, 251, 255, 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(0, 212, 255, 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(0, 212, 255, 0.15), transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(123, 47, 255, 0.12), transparent 60%),
        linear-gradient(150deg, rgba(0, 0, 0, 0.92), rgba(15, 15, 30, 0.88));
    border: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow: 
        0 0 40px rgba(0, 212, 255, 0.2),
        0 20px 50px rgba(0, 0, 0, 0.7),
        inset 0 0 40px rgba(0, 212, 255, 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(0, 212, 255, 0.3), 
        rgba(123, 47, 255, 0.3), 
        rgba(255, 0, 255, 0.3),
        rgba(0, 212, 255, 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(0, 212, 255, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

.news-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 0 60px rgba(0, 212, 255, 0.5),
        0 0 40px rgba(123, 47, 255, 0.3),
        0 30px 70px rgba(0, 0, 0, 0.8),
        inset 0 0 50px rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.6);
    background: 
        radial-gradient(ellipse at top left, rgba(0, 212, 255, 0.25), transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(123, 47, 255, 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(0, 212, 255, 0.25), rgba(123, 47, 255, 0.3));
    border: 1px solid rgba(0, 212, 255, 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(0, 212, 255, 0.3),
        inset 0 0 10px rgba(0, 212, 255, 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(0, 212, 255, 0.8));
}

.news-card:hover .news-card__badge {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 
        0 6px 18px rgba(0, 212, 255, 0.5),
        inset 0 0 15px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.6);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.35), rgba(123, 47, 255, 0.4));
}

.news-empty {
    text-align: center;
    padding: 42px;
    border-radius: 22px;
    border: 1px dashed rgba(125, 251, 255, 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(0, 212, 255, 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(0, 212, 255, 0.3);
    box-shadow: 
        0 0 40px rgba(0, 212, 255, 0.15),
        0 30px 60px rgba(0, 0, 0, 0.7),
        inset 0 0 40px rgba(0, 212, 255, 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(0, 212, 255, 0.25),
        0 40px 80px rgba(0, 0, 0, 0.8),
        inset 0 0 50px rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 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(121, 166, 255, 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(121, 166, 255, 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(125, 251, 255, 0.62);
    box-shadow: 0 0 0 4px rgba(125, 251, 255, 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, #7dfbff, #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(0, 212, 255, 0.15), transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(123, 47, 255, 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(0, 212, 255, 0.35);
    box-shadow: 
        0 0 50px rgba(0, 212, 255, 0.25),
        0 0 30px rgba(123, 47, 255, 0.15),
        0 30px 70px rgba(0, 0, 0, 0.8),
        inset 0 0 50px rgba(0, 212, 255, 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(0, 212, 255, 0.5);
    box-shadow: 
        0 0 60px rgba(0, 212, 255, 0.35),
        0 0 40px rgba(123, 47, 255, 0.25),
        0 35px 80px rgba(0, 0, 0, 0.9),
        inset 0 0 60px rgba(0, 212, 255, 0.12);
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 212, 255, 0.6), 
        rgba(123, 47, 255, 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(0, 212, 255, 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(77, 251, 255, 0.5));
}

/* Tabela de ranking: mais cores no tema da logo */
.rankings-page .ranking-table {
    background:
        radial-gradient(ellipse at top left, rgba(77, 251, 255, 0.12), transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(139, 77, 255, 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(77, 251, 255, 0.35);
    box-shadow:
        0 0 50px rgba(77, 251, 255, 0.2),
        0 0 35px rgba(139, 77, 255, 0.15),
        0 0 20px rgba(255, 209, 102, 0.1),
        inset 0 0 40px rgba(77, 251, 255, 0.06);
}

.rankings-page .ranking-table thead th {
    background: linear-gradient(90deg,
        rgba(77, 251, 255, 0.22),
        rgba(139, 77, 255, 0.28),
        rgba(255, 209, 102, 0.2),
        rgba(255, 95, 109, 0.18));
    color: #fff;
    text-shadow: 0 0 12px rgba(77, 251, 255, 0.7);
    border-bottom: 2px solid rgba(77, 251, 255, 0.4);
    border-right: 1px solid rgba(77, 251, 255, 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(77, 251, 255, 0.6);
}

.rankings-page .ranking-table tbody tr:nth-child(odd) {
    background: linear-gradient(90deg, rgba(77, 251, 255, 0.04), transparent 30%, transparent 70%, rgba(139, 77, 255, 0.04));
}
.rankings-page .ranking-table tbody tr:nth-child(even) {
    background: linear-gradient(90deg, rgba(139, 77, 255, 0.04), transparent 30%, transparent 70%, rgba(255, 209, 102, 0.03));
}
.rankings-page .ranking-table tbody tr:hover {
    background: linear-gradient(90deg,
        rgba(77, 251, 255, 0.18),
        rgba(139, 77, 255, 0.2),
        rgba(77, 251, 255, 0.18));
    box-shadow: 0 0 25px rgba(77, 251, 255, 0.25), 0 0 15px rgba(139, 77, 255, 0.2);
}
.rankings-page .ranking-table td {
    border-bottom: 1px solid rgba(77, 251, 255, 0.08);
    border-right: 1px solid rgba(77, 251, 255, 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(77, 251, 255, 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(77, 251, 255, 0.08), rgba(200, 220, 255, 0.08));
    border-left: 3px solid var(--color-cabal-cyan);
    box-shadow: inset 0 0 25px rgba(77, 251, 255, 0.1);
}
.rankings-page .ranking-table tbody tr.rank-2 td:first-child {
    color: var(--color-cabal-cyan);
    text-shadow: 0 0 10px rgba(77, 251, 255, 0.5);
}
.rankings-page .ranking-table tbody tr.rank-3 {
    background: linear-gradient(90deg, rgba(139, 77, 255, 0.12), rgba(255, 209, 102, 0.06), rgba(139, 77, 255, 0.08));
    border-left: 3px solid var(--color-cabal-violet);
    box-shadow: inset 0 0 25px rgba(139, 77, 255, 0.12);
}
.rankings-page .ranking-table tbody tr.rank-3 td:first-child {
    color: var(--color-cabal-violet);
    text-shadow: 0 0 10px rgba(139, 77, 255, 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(77, 251, 255, 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(77, 251, 255, 0.12), transparent 55%),
        radial-gradient(ellipse at bottom right, rgba(139, 77, 255, 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(77, 251, 255, 0.4);
    box-shadow:
        0 0 55px rgba(77, 251, 255, 0.22),
        0 0 35px rgba(139, 77, 255, 0.15),
        inset 0 0 50px rgba(77, 251, 255, 0.06);
}

.styled-table {
    width: 100%;
    border-spacing: 0;
    border-collapse: separate;
    border-radius: 24px;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at top, rgba(0, 212, 255, 0.15), transparent 60%),
        radial-gradient(ellipse at bottom, rgba(123, 47, 255, 0.1), transparent 60%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.92), rgba(15, 15, 30, 0.88));
    border: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow: 
        0 0 50px rgba(0, 212, 255, 0.2),
        0 0 30px rgba(123, 47, 255, 0.12),
        0 30px 60px rgba(0, 0, 0, 0.7),
        inset 0 0 40px rgba(0, 212, 255, 0.08);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

.styled-table:hover {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 
        0 0 60px rgba(0, 212, 255, 0.3),
        0 0 40px rgba(123, 47, 255, 0.2),
        0 35px 70px rgba(0, 0, 0, 0.8),
        inset 0 0 50px rgba(0, 212, 255, 0.12);
}

.styled-table thead th {
    background: linear-gradient(120deg, 
        rgba(0, 212, 255, 0.25), 
        rgba(123, 47, 255, 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(0, 212, 255, 0.6);
    font-weight: 800;
    border-bottom: 2px solid rgba(0, 212, 255, 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(0, 212, 255, 0.2), 
        rgba(123, 47, 255, 0.25),
        rgba(0, 212, 255, 0.2));
    transform: scale(1.02) translateX(4px);
    box-shadow: 
        0 0 25px rgba(0, 212, 255, 0.3),
        0 0 15px rgba(123, 47, 255, 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: #7dfbff; 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(77, 251, 255, 0.35));
    border: 1px solid rgba(77, 251, 255, 0.5);
    box-shadow: 
        0 4px 12px rgba(77, 251, 255, 0.3),
        inset 0 0 10px rgba(77, 251, 255, 0.15);
}

.card-badge--purple {
    background: linear-gradient(135deg, rgba(139, 77, 255, 0.3), rgba(141, 77, 255, 0.35));
    border: 1px solid rgba(141, 77, 255, 0.5);
    box-shadow: 
        0 4px 12px rgba(141, 77, 255, 0.3),
        inset 0 0 10px rgba(141, 77, 255, 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(0, 212, 255, 0.3), rgba(77, 251, 255, 0.35));
    border: 1px solid rgba(0, 212, 255, 0.5);
    box-shadow: 
        0 4px 12px rgba(0, 212, 255, 0.3),
        inset 0 0 10px rgba(0, 212, 255, 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(139, 77, 255, 0.3), rgba(167, 139, 250, 0.35));
    border: 1px solid rgba(139, 77, 255, 0.5);
    box-shadow: 
        0 4px 12px rgba(139, 77, 255, 0.3),
        inset 0 0 10px rgba(139, 77, 255, 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(0, 212, 255, 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(0, 212, 255, 0.1);
    position: relative;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 212, 255, 0.6), 
        rgba(123, 47, 255, 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(125, 251, 255, 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(0, 212, 255, 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(0, 212, 255, 0.3);
    box-shadow: 
        0 0 40px rgba(0, 212, 255, 0.15),
        0 30px 60px rgba(0, 0, 0, 0.7),
        inset 0 0 40px rgba(0, 212, 255, 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(0, 212, 255, 0.6), 
        rgba(123, 47, 255, 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(0, 212, 255, 0.3),
        0 40px 80px rgba(0, 0, 0, 0.8),
        inset 0 0 50px rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 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(77, 251, 255, 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, #4dfbff 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(0, 212, 255, 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, #4dfbff 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(121, 166, 255, 0.2);
    box-shadow: 0 24px 40px rgba(4, 12, 32, 0.5);
}

.admin-table thead th {
    background: linear-gradient(125deg, rgba(77, 251, 255, 0.2), rgba(141, 77, 255, 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(77, 251, 255, 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(77, 251, 255, 0.18);
    color: #aef9ff;
    border: 1px solid rgba(77, 251, 255, 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(77, 251, 255, 0.16);
    border: 1px solid rgba(77, 251, 255, 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(121, 166, 255, 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(77, 251, 255, 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(77, 251, 255, 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(77, 251, 255, 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(77, 251, 255, 0.4);
    box-shadow: 
        0 16px 40px rgba(77, 251, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 0 40px rgba(77, 251, 255, 0.15),
        0 0 20px rgba(77, 251, 255, 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(77, 251, 255, 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(77, 251, 255, 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;
    }
}