:root {
    --gold: #c9952a;
    --gold-light: #f0c060;
    --gold-dim: #8a6318;
    --blood: #8b1a1a;
    --ember: #d4420a;
    --dark: #06060a;
    --dark2: #0d0c12;
    --dark3: #13111c;
    --mist: #1c1828;
    --silver: #b8b4c8;
    --white: #ede8d8;
    --rune: #4a3f6e;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--white);
    font-family: "Crimson Pro", Georgia, serif;
    overflow-x: hidden;
    cursor: default;
}

/* ─── NOISE OVERLAY ─── */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.035;
    pointer-events: none;
    z-index: 999;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    background: linear-gradient(
        180deg,
        rgba(6, 6, 10, 0.98) 0%,
        transparent 100%
    );
    backdrop-filter: blur(4px);
}

.nav-logo {
    font-family: "Cinzel Decorative", serif;
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--gold-light);
    letter-spacing: 0.04em;
    text-shadow: 0 0 20px rgba(201, 149, 42, 0.5);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-family: "Cinzel", serif;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--silver);
    text-decoration: none;
    transition: color 0.25s;
}

.nav-links a:hover {
    color: var(--gold-light);
}

.nav-cta {
    font-family: "Cinzel", serif;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dark);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition:
        opacity 0.2s,
        transform 0.2s;
}

.nav-cta:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 0 24px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 80% 60% at 50% 80%,
            rgba(139, 26, 26, 0.22) 0%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 60% 40% at 30% 20%,
            rgba(74, 63, 110, 0.2) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse 50% 50% at 80% 10%,
            rgba(201, 149, 42, 0.08) 0%,
            transparent 60%
        ),
        linear-gradient(180deg, #0a0812 0%, #060609 50%, #100a0a 100%);
}

/* Floating rune particles */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.p {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0;
    animation: float-up var(--d, 8s) var(--delay, 0s) infinite ease-in-out;
}

@keyframes float-up {
    0% {
        opacity: 0;
        transform: translateY(0) scale(1);
    }

    15% {
        opacity: var(--o, 0.6);
    }

    85% {
        opacity: var(--o, 0.4);
    }

    100% {
        opacity: 0;
        transform: translateY(-120vh) scale(0.3);
    }
}

.hero-eyebrow {
    font-family: "Cinzel", serif;
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 22px;
    animation: fade-in 1.2s ease both;
}

.hero-title {
    font-family: "Cinzel Decorative", serif;
    font-size: clamp(3.2rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.01em;
    background: linear-gradient(
        160deg,
        #f5e6b0 0%,
        var(--gold-light) 35%,
        var(--gold) 65%,
        #7a4f10 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: fade-in 1.4s 0.2s ease both;
    position: relative;
    z-index: 1;
}

.hero-subtitle-word {
    display: block;
    font-family: "Cinzel", serif;
    font-size: clamp(1rem, 2.5vw, 1.6rem);
    font-weight: 400;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--silver);
    margin-top: 18px;
    animation: fade-in 1.4s 0.4s ease both;
}

.hero-divider {
    width: 180px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 32px auto;
    animation: fade-in 1.4s 0.5s ease both;
}

.hero-desc {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: var(--silver);
    max-width: 540px;
    line-height: 1.7;
    font-weight: 300;
    font-style: italic;
    animation: fade-in 1.4s 0.6s ease both;
    margin-bottom: 44px;
}

.hero-badges {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    animation: fade-in 1.4s 0.8s ease both;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, filter 0.2s;
}

.store-badge:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.store-badge img {
    display: block;
    width: auto;
    object-fit: contain;
}

/* Google Play badge has built-in padding so it needs to be taller
   to visually match the App Store badge */
.store-badge--gplay img {
    height: 72px;
}

.store-badge--appstore img {
    height: 48px;
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fade-in 2s 1.2s ease both;
}

.hero-scroll span {
    font-family: "Cinzel", serif;
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    color: var(--gold-dim);
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, var(--gold-dim), transparent);
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
    0%,
    100% {
        transform: scaleY(1);
        opacity: 1;
    }

    50% {
        transform: scaleY(0.6);
        opacity: 0.4;
    }
}

/* online counter badge */
.online-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 310%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Cinzel", serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--silver);
    animation: fade-in 1.4s 1s ease both;
}

.online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3fba6e;
    box-shadow: 0 0 8px #3fba6e;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%,
    100% {
        box-shadow: 0 0 6px #3fba6e;
    }

    50% {
        box-shadow: 0 0 16px #3fba6e;
    }
}

/* ─── SCREENSHOTS MARQUEE ─── */
.marquee-section {
    padding: 0;
    overflow: hidden;
    background: var(--dark2);
    border-top: 1px solid rgba(201, 149, 42, 0.1);
    border-bottom: 1px solid rgba(201, 149, 42, 0.1);
}

.marquee-track {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    animation: marquee-scroll 30s linear infinite;
    width: max-content;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.marquee-item {
    width: 200px;
    height: 130px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(201, 149, 42, 0.15);
    flex-shrink: 0;
    background: var(--dark3);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ─── FEATURES ─── */
.features {
    padding: 110px 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-family: "Cinzel", serif;
    font-size: 0.68rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-dim);
    text-align: center;
    margin-bottom: 14px;
}

.section-title {
    font-family: "Cinzel Decorative", serif;
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-desc {
    text-align: center;
    color: var(--silver);
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 70px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
}

.feature-card {
    background: var(--dark3);
    padding: 40px 32px;
    border: 1px solid rgba(201, 149, 42, 0.08);
    position: relative;
    overflow: hidden;
    transition:
        border-color 0.3s,
        background 0.3s;
}

.feature-card:hover {
    border-color: rgba(201, 149, 42, 0.3);
    background: rgba(201, 149, 42, 0.03);
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gold-dim),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    display: block;
}

.feature-name {
    font-family: "Cinzel", serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.feature-text {
    font-size: 0.98rem;
    color: var(--silver);
    line-height: 1.7;
    font-weight: 300;
}

.feature-corner {
    position: absolute;
    bottom: 14px;
    right: 18px;
    font-size: 1.8rem;
    opacity: 0.05;
    font-family: serif;
    color: var(--gold);
}

/* ─── CLASSES ─── */
.classes-section {
    background: var(--dark2);
    border-top: 1px solid rgba(201, 149, 42, 0.08);
    border-bottom: 1px solid rgba(201, 149, 42, 0.08);
    padding: 110px 48px;
}

.classes-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.class-card {
    position: relative;
    padding: 36px 24px 30px;
    text-align: center;
    border: 1px solid rgba(201, 149, 42, 0.12);
    background: linear-gradient(
        180deg,
        rgba(201, 149, 42, 0.04) 0%,
        transparent 100%
    );
    cursor: pointer;
    overflow: hidden;
    transition:
        transform 0.3s,
        border-color 0.3s;
}

.class-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 149, 42, 0.4);
}

.class-card.active {
    border-color: var(--gold);
    background: rgba(201, 149, 42, 0.07);
}

.class-card.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gold-light),
        transparent
    );
}

.class-emoji {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.class-name {
    font-family: "Cinzel", serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.class-role {
    font-size: 0.82rem;
    color: var(--silver);
    font-style: italic;
}

.class-bar {
    margin-top: 16px;
    height: 3px;
    background: rgba(201, 149, 42, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.class-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dim), var(--gold-light));
    border-radius: 2px;
    transition: width 1s ease;
}

/* ─── WORLD / MAP SECTION ─── */
.world-section {
    padding: 120px 48px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.world-map {
    position: relative;
    aspect-ratio: 1;
    border: 1px solid rgba(201, 149, 42, 0.2);
    background: var(--dark3);
    overflow: hidden;
}

.world-map svg {
    width: 100%;
    height: 100%;
}

.world-text h2 {
    font-family: "Cinzel Decorative", serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.world-text p {
    color: var(--silver);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 18px;
    font-weight: 300;
}

.stat-row {
    display: flex;
    gap: 40px;
    margin-top: 36px;
}

.stat-item {
    text-align: left;
}

.stat-num {
    font-family: "Cinzel Decorative", serif;
    font-size: 2.2rem;
    color: var(--gold-light);
    line-height: 1;
}

.stat-lbl {
    font-family: "Cinzel", serif;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    color: var(--gold-dim);
    text-transform: uppercase;
    margin-top: 4px;
}

/* ─── LEADERBOARD ─── */
.lb-section {
    background: var(--dark2);
    border-top: 1px solid rgba(201, 149, 42, 0.08);
    padding: 100px 48px;
}

.lb-inner {
    max-width: 800px;
    margin: 0 auto;
}

.lb-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 50px;
    font-family: "Cinzel", serif;
}

.lb-table thead tr {
    border-bottom: 1px solid rgba(201, 149, 42, 0.25);
}

.lb-table th {
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-dim);
    padding: 12px 16px;
    text-align: left;
}

.lb-table td {
    padding: 14px 16px;
    font-size: 0.85rem;
    color: var(--silver);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.lb-table tr:hover td {
    background: rgba(201, 149, 42, 0.04);
}

.lb-rank {
    font-family: "Cinzel Decorative", serif;
    font-size: 0.9rem;
    color: var(--gold-dim);
}

.lb-rank.top1 {
    color: #f5e045;
}

.lb-rank.top2 {
    color: #c0c0d0;
}

.lb-rank.top3 {
    color: #cd7f32;
}

.lb-name {
    color: var(--white);
    font-weight: 600;
}

.lb-class {
    font-size: 0.75rem;
    opacity: 0.7;
    font-style: italic;
}

.lb-level {
    color: var(--gold-light);
    font-size: 0.9rem;
}

/* ─── DOWNLOAD CTA ─── */
.cta-section {
    padding: 130px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(
        ellipse,
        rgba(139, 26, 26, 0.18) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.cta-section h2 {
    font-family: "Cinzel Decorative", serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 18px;
    position: relative;
}

.cta-section p {
    color: var(--silver);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 50px;
    position: relative;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    position: relative;
}

/* ─── FOOTER ─── */
footer {
    background: var(--dark);
    border-top: 1px solid rgba(201, 149, 42, 0.1);
    padding: 50px 48px 30px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-brand {
    min-width: 180px;
}

.footer-logo {
    font-family: "Cinzel Decorative", serif;
    font-size: 1.1rem;
    color: var(--gold-dim);
    letter-spacing: 0.05em;
}

.footer-tagline {
    margin-top: 6px;
    font-family: "Crimson Pro", serif;
    font-size: 0.85rem;
    font-style: italic;
    color: rgba(184, 180, 200, 0.4);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-family: "Cinzel", serif;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(184, 180, 200, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--silver);
}

/* ─── FOOTER CONTACT ─── */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-label {
    font-family: "Cinzel", serif;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dim);
}

.footer-contact-mail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Crimson Pro", serif;
    font-size: 0.9rem;
    color: rgba(184, 180, 200, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-mail svg {
    width: 16px;
    height: 16px;
    color: var(--gold-dim);
    transition: color 0.2s;
    flex-shrink: 0;
}

.footer-contact-mail:hover {
    color: var(--gold-light);
}

.footer-contact-mail:hover svg {
    color: var(--gold-light);
}

/* ─── FOOTER SOCIAL ─── */
.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-family: "Cinzel", serif;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: #5865F2;
    border-radius: 6px;
    transition: filter 0.2s, transform 0.2s;
}

.footer-social-btn svg {
    width: 18px;
    height: 18px;
}

.footer-social-btn:hover {
    filter: brightness(1.15);
    transform: translateY(-1px);
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(201, 149, 42, 0.25);
    color: rgba(184, 180, 200, 0.6);
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s, transform 0.2s;
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
}

.footer-social-link:hover {
    color: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-1px);
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(184, 180, 200, 0.3);
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    margin-top: 24px;
}

/* ─── ANIMATIONS ─── */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── MOBILE ─── */

/* Hamburger button */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold-light);
    border-radius: 2px;
    transition:
        transform 0.3s,
        opacity 0.3s;
}

/* Mobile drawer */
.mobile-drawer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 6, 10, 0.97);
    z-index: 200;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
}

.mobile-drawer.open {
    display: flex;
}

.mobile-drawer a {
    font-family: "Cinzel", serif;
    font-size: 1.3rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--silver);
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-drawer a:hover {
    color: var(--gold-light);
}

.drawer-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 1.6rem;
    color: var(--gold-dim);
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

@media (max-width: 900px) {
    .classes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* Nav */
    nav {
        padding: 14px 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    /* Hero */
    .hero {
        padding: 100px 20px 80px;
        min-height: 100svh;
        justify-content: flex-end;
        padding-bottom: 100px;
    }

    .hero-eyebrow {
        font-size: 0.6rem;
        letter-spacing: 0.2em;
    }

    .hero-desc {
        font-size: 1rem;
        padding: 0 4px;
        margin-bottom: 32px;
        max-width: 100%;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .store-badge--gplay img {
        height: 62px;
    }

    .store-badge--appstore img {
        height: 40px;
    }

    .online-badge {
        position: static;
        transform: none;
        margin-top: 28px;
        font-size: 0.65rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-scroll {
        display: none;
    }

    .hero-divider {
        margin: 24px auto;
    }

    /* Marquee */
    .marquee-item {
        width: 150px;
        height: 100px;
    }

    /* Features */
    .features {
        padding: 60px 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .feature-card {
        padding: 28px 24px;
    }

    .section-desc {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }

    /* Classes */
    .classes-section {
        padding: 60px 16px;
    }

    .classes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 40px;
    }

    .class-card {
        padding: 24px 16px 20px;
    }

    .class-emoji {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .class-name {
        font-size: 0.8rem;
    }

    .class-role {
        font-size: 0.72rem;
    }

    /* World */
    .world-section {
        grid-template-columns: 1fr;
        padding: 60px 16px;
        gap: 32px;
    }

    .world-map {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        aspect-ratio: 1;
    }

    .world-text h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .world-text p {
        font-size: 0.95rem;
    }

    .stat-row {
        gap: 0;
        justify-content: space-between;
    }

    .stat-num {
        font-size: 1.8rem;
    }

    /* Leaderboard */
    .lb-section {
        padding: 60px 16px;
    }

    .lb-table th:nth-child(4),
    .lb-table td:nth-child(4) {
        display: none;
    }

    .lb-table th {
        font-size: 0.55rem;
        padding: 10px 8px;
        letter-spacing: 0.1em;
    }

    .lb-table td {
        padding: 12px 8px;
        font-size: 0.78rem;
    }

    /* CTA */
    .cta-section {
        padding: 70px 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Footer */
    footer {
        padding: 36px 20px 24px;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .footer-links {
        align-items: center;
        gap: 8px;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 380px) {
    .classes-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-title {
        font-size: clamp(2.8rem, 18vw, 4rem);
    }
}

/* ─── NAV AUTH BUTTONS ─── */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-signin {
    font-family: "Cinzel", serif;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--silver);
    background: transparent;
    border: 1px solid rgba(184, 180, 200, 0.25);
    padding: 9px 20px;
    cursor: pointer;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    transition:
        color 0.2s,
        border-color 0.2s;
}

.nav-signin:hover {
    color: var(--white);
    border-color: rgba(184, 180, 200, 0.5);
}

.nav-register {
    font-family: "Cinzel", serif;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dark);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    transition:
        opacity 0.2s,
        transform 0.2s;
}

.nav-register:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── AUTH PAGES (Login / Register / Forgot Password) ─── */

.auth-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
    overflow: hidden;
}

.auth-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 80%, rgba(139, 26, 26, 0.2) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 25% 20%, rgba(74, 63, 110, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 80% 10%, rgba(201, 149, 42, 0.07) 0%, transparent 60%),
        linear-gradient(180deg, #0a0812 0%, #060609 50%, #100a0a 100%);
    pointer-events: none;
}

.auth-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 440px;
}

.auth-card-inner {
    background: var(--dark3);
    border: 1px solid rgba(201, 149, 42, 0.18);
    padding: 48px 40px 44px;
    position: relative;
    overflow: hidden;
}

.auth-card-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.7;
}

.auth-card-inner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 149, 42, 0.15), transparent);
}

.auth-logo {
    display: block;
    font-family: "Cinzel Decorative", serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold-light);
    text-decoration: none;
    text-align: center;
    margin-bottom: 6px;
    letter-spacing: 0.04em;
    text-shadow: 0 0 20px rgba(201, 149, 42, 0.4);
}

.auth-eyebrow {
    font-family: "Cinzel", serif;
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-dim);
    text-align: center;
    margin-bottom: 8px;
}

.auth-title {
    font-family: "Cinzel Decorative", serif;
    font-size: clamp(1.4rem, 4vw, 1.9rem);
    font-weight: 700;
    color: var(--white);
    text-align: center;
    line-height: 1.2;
    margin-bottom: 0;
}

.auth-divider {
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 20px auto 28px;
}

.auth-desc {
    font-size: 0.95rem;
    color: var(--silver);
    text-align: center;
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 24px;
}

.auth-alert {
    background: rgba(139, 26, 26, 0.15);
    border: 1px solid rgba(139, 26, 26, 0.4);
    padding: 12px 16px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.auth-alert span {
    font-size: 0.85rem;
    color: #e88;
    font-family: "Cinzel", serif;
    letter-spacing: 0.02em;
}

.auth-success {
    background: rgba(63, 186, 110, 0.1);
    border: 1px solid rgba(63, 186, 110, 0.35);
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 0.87rem;
    color: #7de0a8;
    font-family: "Cinzel", serif;
    letter-spacing: 0.02em;
    text-align: center;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.auth-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.auth-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.auth-label {
    font-family: "Cinzel", serif;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dim);
}

.auth-forgot-link {
    font-family: "Cinzel", serif;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: rgba(201, 149, 42, 0.55);
    text-decoration: none;
    transition: color 0.2s;
}

.auth-forgot-link:hover {
    color: var(--gold-light);
}

.auth-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-input-icon {
    position: absolute;
    left: 13px;
    width: 16px;
    height: 16px;
    color: var(--gold-dim);
    pointer-events: none;
    flex-shrink: 0;
}

.auth-input {
    width: 100%;
    background: rgba(6, 6, 10, 0.7);
    border: 1px solid rgba(201, 149, 42, 0.15);
    color: var(--white);
    font-family: "Crimson Pro", Georgia, serif;
    font-size: 1rem;
    padding: 11px 42px 11px 38px;
    outline: none;
    transition: border-color 0.25s, background 0.25s;
    -webkit-appearance: none;
}

.auth-input::placeholder {
    color: rgba(184, 180, 200, 0.3);
    font-style: italic;
}

.auth-input:focus {
    border-color: rgba(201, 149, 42, 0.5);
    background: rgba(6, 6, 10, 0.9);
}

.auth-field--error .auth-input {
    border-color: rgba(212, 66, 10, 0.55);
}

.auth-error-msg {
    font-family: "Cinzel", serif;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    color: #e88;
}

.auth-eye-btn {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--gold-dim);
    line-height: 0;
}

.auth-eye-btn svg {
    width: 16px;
    height: 16px;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.auth-eye-btn:hover svg {
    opacity: 1;
}

.auth-remember {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    margin-top: -4px;
}

.auth-remember input[type="checkbox"] {
    display: none;
}

.auth-remember-box {
    width: 16px;
    height: 16px;
    border: 1px solid rgba(201, 149, 42, 0.3);
    background: rgba(6, 6, 10, 0.7);
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.2s, background 0.2s;
}

.auth-remember input:checked + .auth-remember-box {
    background: rgba(201, 149, 42, 0.2);
    border-color: var(--gold);
}

.auth-remember input:checked + .auth-remember-box::after {
    content: "✓";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: var(--gold-light);
    line-height: 1;
}

.auth-remember-text {
    font-family: "Cinzel", serif;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    color: var(--silver);
}

.auth-submit {
    margin-top: 6px;
    font-family: "Cinzel", serif;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--dark);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    padding: 14px 24px;
    border: none;
    cursor: pointer;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    width: 100%;
    transition: filter 0.2s, transform 0.2s;
}

.auth-submit:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.auth-submit:active {
    transform: translateY(0);
    filter: brightness(0.95);
}

.auth-switch {
    margin-top: 24px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(184, 180, 200, 0.5);
    font-style: italic;
}

.auth-switch-link {
    color: var(--gold-light);
    text-decoration: none;
    font-family: "Cinzel", serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-left: 6px;
    transition: color 0.2s;
}

.auth-switch-link:hover {
    color: var(--white);
}

/* ─── SOCIAL LOGIN ─── */
.auth-separator {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 22px 0 18px;
    color: rgba(184, 180, 200, 0.5);
    font-family: "Cinzel", serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.auth-separator::before,
.auth-separator::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(201, 149, 42, 0.35),
        transparent
    );
}

.auth-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 0 16px;
    height: 44px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-transform: none;
    text-decoration: none;
    border-radius: 6px;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.15s;
}

.auth-social-btn:active {
    transform: scale(0.98);
}

.auth-social-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Google: white bg, dark text — official brand style */
.auth-social-btn--google {
    background: #fff;
    border: 1px solid #dadce0;
    color: #3c4043;
}

.auth-social-btn--google:hover {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

/* Apple: black bg, white text — official brand style */
.auth-social-btn--apple {
    background: #000;
    border: 1px solid #000;
    color: #fff;
}

.auth-social-btn--apple:hover {
    background: #1a1a1a;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

@media (max-width: 480px) {
    .auth-card-inner {
        padding: 36px 24px 32px;
    }

    .auth-title {
        font-size: 1.4rem;
    }
}

/* ─── LEADERBOARD MORE BUTTON ─── */
.lb-more {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.lb-more-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 48px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--dark);
    font-family: "Cinzel", serif;
    text-decoration: none;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(201, 149, 42, 0.25);
    position: relative;
    overflow: hidden;
}

.lb-more-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.2s;
}

.lb-more-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 149, 42, 0.4);
}

.lb-more-btn:hover::before {
    opacity: 1;
}

.lb-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 12px rgba(201, 149, 42, 0.2);
}

.lb-more-btn__text {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
}

.lb-more-btn__sub {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.65;
    line-height: 1;
}

/* ─── LEADERBOARD FULL PAGE ─── */
.lb-page-section {
    background: var(--dark2);
    min-height: 100vh;
    padding: 80px 48px 100px;
}

.lb-page-inner {
    max-width: 900px;
    margin: 0 auto;
}

.lb-page-header {
    text-align: center;
    margin-bottom: 60px;
}

.lb-page-title {
    font-family: "Cinzel Decorative", serif;
    font-size: 2.2rem;
    color: var(--white);
    margin: 8px 0 12px;
    line-height: 1.2;
}

.lb-page-subtitle {
    font-family: "Crimson Pro", serif;
    font-size: 1rem;
    color: var(--gold-dim);
    font-style: italic;
    letter-spacing: 0.05em;
}

/* Podium cards */
.lb-podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 60px;
}

.lb-podium__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 24px 20px 20px;
    border: 1px solid rgba(201, 149, 42, 0.12);
    background: rgba(255, 255, 255, 0.02);
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    flex: 1;
    max-width: 240px;
    transition: background 0.2s;
}

.lb-podium__card:hover {
    background: rgba(201, 149, 42, 0.05);
}

.lb-podium__card--1 {
    order: 2;
    border-color: rgba(245, 224, 69, 0.3);
    background: rgba(245, 224, 69, 0.04);
    padding-bottom: 28px;
}

.lb-podium__card--2 {
    order: 1;
    border-color: rgba(192, 192, 208, 0.2);
}

.lb-podium__card--3 {
    order: 3;
    border-color: rgba(205, 127, 50, 0.2);
}

.lb-podium__medal {
    margin-bottom: 4px;
    line-height: 1;
}

.lb-podium__rank {
    font-family: "Cinzel Decorative", serif;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--gold-dim);
}

.lb-podium__card--1 .lb-podium__rank { color: #f5e045; }
.lb-podium__card--2 .lb-podium__rank { color: #c0c0d0; }
.lb-podium__card--3 .lb-podium__rank { color: #cd7f32; }

.lb-podium__name {
    font-family: "Cinzel", serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.06em;
    text-align: center;
}

.lb-podium__class {
    font-family: "Crimson Pro", serif;
    font-size: 0.8rem;
    font-style: italic;
    color: var(--gold-dim);
    opacity: 0.7;
}

.lb-podium__stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-top: 6px;
}

.lb-podium__wp {
    font-family: "Cinzel", serif;
    font-size: 0.78rem;
    color: var(--gold-light);
    letter-spacing: 0.04em;
}

.lb-podium__wp em {
    font-style: normal;
    opacity: 0.6;
    font-size: 0.7rem;
}

.lb-podium__lv {
    font-size: 0.7rem;
    color: var(--silver);
    opacity: 0.6;
    font-family: "Cinzel", serif;
    letter-spacing: 0.06em;
}

.lb-table--full {
    margin-top: 0;
}

.lb-row--top td {
    background: rgba(201, 149, 42, 0.03);
}

@media (max-width: 640px) {
    .lb-page-section {
        padding: 60px 20px 80px;
    }

    .lb-page-title {
        font-size: 1.5rem;
    }

    .lb-podium {
        flex-direction: column;
        align-items: center;
    }

    .lb-podium__card {
        order: unset !important;
        max-width: 100%;
        width: 100%;
    }

    .lb-more-btn {
        padding: 14px 32px;
    }
}

/* ═══════════════════════════════════════════════════════
   ─── NEWS PAGE ───────────────────────────────────────
   ═══════════════════════════════════════════════════════ */

/* ─── NEWS HERO ─── */
.news-hero {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 100px 24px 60px;
}

.news-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 70% 80% at 50% 100%,
            rgba(201, 149, 42, 0.1) 0%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 50% 60% at 20% 20%,
            rgba(139, 26, 26, 0.18) 0%,
            transparent 60%
        ),
        linear-gradient(180deg, #09080f 0%, #0a0812 60%, #060609 100%);
}

.news-hero__content {
    position: relative;
    z-index: 1;
}

.news-hero__title {
    font-family: "Cinzel Decorative", serif;
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 900;
    background: linear-gradient(
        160deg,
        #f5e6b0 0%,
        var(--gold-light) 40%,
        var(--gold) 70%,
        #7a4f10 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 10px 0 14px;
    line-height: 1.15;
}

.news-hero__subtitle {
    font-family: "Crimson Pro", Georgia, serif;
    font-size: 1.05rem;
    color: var(--silver);
    font-style: italic;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ─── NEWS SECTION WRAPPER ─── */
.news-section {
    padding: 80px 48px 120px;
    background: var(--dark2);
    border-top: 1px solid rgba(201, 149, 42, 0.08);
}

.news-inner {
    max-width: 1160px;
    margin: 0 auto;
}

/* ─── FEATURED CARD ─── */
.news-featured {
    position: relative;
    background: var(--dark3);
    border: 1px solid rgba(201, 149, 42, 0.35);
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    padding: 48px 48px 44px;
    margin-bottom: 48px;
    box-shadow:
        0 0 0 1px rgba(201, 149, 42, 0.12),
        0 0 40px rgba(201, 149, 42, 0.08),
        inset 0 1px 0 rgba(201, 149, 42, 0.12);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.news-featured::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 5%,
        var(--gold-dim) 30%,
        var(--gold-light) 50%,
        var(--gold-dim) 70%,
        transparent 95%
    );
}

.news-featured:hover {
    border-color: rgba(201, 149, 42, 0.6);
    box-shadow:
        0 0 0 1px rgba(201, 149, 42, 0.2),
        0 0 60px rgba(201, 149, 42, 0.12),
        inset 0 1px 0 rgba(201, 149, 42, 0.2);
}

.news-featured__header {
    margin-bottom: 36px;
}

.news-featured__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.news-featured__version {
    font-family: "Cinzel", serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--gold-dim);
    text-transform: uppercase;
}

.news-featured__date {
    font-family: "Cinzel", serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--silver);
    opacity: 0.6;
}

.news-featured__title {
    font-family: "Cinzel Decorative", serif;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
}

.news-featured__desc {
    color: var(--silver);
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    font-weight: 300;
    max-width: 680px;
}

.news-featured__changes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    border-top: 1px solid rgba(201, 149, 42, 0.12);
    padding-top: 32px;
}

.news-change-col__heading {
    font-family: "Cinzel", serif;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.news-change-col__heading--new    { color: var(--gold-light); }
.news-change-col__heading--balance { color: #7ec8e3; }
.news-change-col__heading--fix    { color: #a87cdc; }

.news-change-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news-change-list li {
    font-size: 0.93rem;
    color: var(--silver);
    line-height: 1.6;
    padding-left: 14px;
    position: relative;
    font-weight: 300;
}

.news-change-list li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: var(--gold-dim);
    opacity: 0.7;
}

/* ─── NEWS BADGES ─── */
.news-badge {
    display: inline-block;
    font-family: "Cinzel", serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 4px 12px;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    font-weight: 700;
}

.news-badge--major   { background: rgba(201, 149, 42, 0.2); color: var(--gold-light); border: 1px solid rgba(201, 149, 42, 0.4); }
.news-badge--minor   { background: rgba(74, 63, 110, 0.3);  color: #b8aaee;           border: 1px solid rgba(74, 63, 110, 0.5);  }
.news-badge--hotfix  { background: rgba(139, 26, 26, 0.3);  color: #e88080;           border: 1px solid rgba(139, 26, 26, 0.5);  }
.news-badge--launch  { background: rgba(63, 186, 110, 0.15); color: #72e0a0;          border: 1px solid rgba(63, 186, 110, 0.3); }

/* ─── OLDER PATCH CARDS GRID ─── */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.news-card {
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    background: var(--dark3);
    border: 1px solid rgba(201, 149, 42, 0.12);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.news-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gold-dim),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s;
}

.news-card:hover {
    border-color: rgba(201, 149, 42, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
}

.news-card:hover::before {
    opacity: 1;
}

.news-card__inner {
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card__top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.news-card__version {
    font-family: "Cinzel", serif;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    color: var(--gold-dim);
    text-transform: uppercase;
}

.news-card__date {
    font-family: "Cinzel", serif;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--silver);
    opacity: 0.5;
    margin-bottom: 12px;
    display: block;
}

.news-card__title {
    font-family: "Cinzel", serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

.news-card__list {
    list-style: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.news-card__list li {
    font-size: 0.88rem;
    color: var(--silver);
    line-height: 1.5;
    padding-left: 14px;
    position: relative;
    font-weight: 300;
}

.news-card__list li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: var(--gold-dim);
    opacity: 0.6;
}

.news-card__btn {
    display: inline-block;
    align-self: flex-start;
    font-family: "Cinzel", serif;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
    border: 1px solid rgba(201, 149, 42, 0.4);
    background: transparent;
    padding: 8px 20px;
    text-decoration: none;
    clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
    transition: background 0.25s, border-color 0.25s, color 0.25s;
    margin-top: auto;
}

.news-card__btn:hover {
    background: rgba(201, 149, 42, 0.15);
    border-color: var(--gold-light);
    color: var(--gold-light);
}

/* ─── NEWS RESPONSIVE ─── */
@media (max-width: 900px) {
    .news-featured__changes {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .news-section {
        padding: 60px 28px 80px;
    }

    .news-featured {
        padding: 32px 28px 32px;
    }
}

@media (max-width: 768px) {
    .news-hero {
        min-height: 240px;
        padding: 90px 20px 50px;
    }

    .news-section {
        padding: 48px 20px 70px;
    }

    .news-featured {
        padding: 28px 20px 28px;
    }

    .news-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .news-hero__title {
        font-size: 1.8rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-featured {
        padding: 22px 16px 22px;
    }

    .news-featured__changes {
        gap: 20px;
    }
}

/* ═══════════════════════════════════════════════════════
   ─── GAME GUIDE PAGE ─────────────────────────────────
   ═══════════════════════════════════════════════════════ */

/* ─── GUIDE HERO ─── */
.guide-hero {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 100px 24px 60px;
}

.guide-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 70% 80% at 50% 100%,
            rgba(74, 63, 110, 0.2) 0%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 50% 60% at 80% 20%,
            rgba(201, 149, 42, 0.08) 0%,
            transparent 60%
        ),
        linear-gradient(180deg, #09080f 0%, #0a0812 60%, #060609 100%);
}

.guide-hero__content {
    position: relative;
    z-index: 1;
}

.guide-hero__title {
    font-family: "Cinzel Decorative", serif;
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 900;
    background: linear-gradient(
        160deg,
        #f5e6b0 0%,
        var(--gold-light) 40%,
        var(--gold) 70%,
        #7a4f10 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 10px 0 14px;
    line-height: 1.15;
}

.guide-hero__subtitle {
    font-family: "Crimson Pro", Georgia, serif;
    font-size: 1.05rem;
    color: var(--silver);
    font-style: italic;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ─── ANCHOR NAV BAR ─── */
.guide-anchornav {
    position: sticky;
    top: 60px;
    z-index: 90;
    background: rgba(13, 12, 18, 0.96);
    border-bottom: 1px solid rgba(201, 149, 42, 0.18);
    border-top: 1px solid rgba(201, 149, 42, 0.08);
    backdrop-filter: blur(8px);
}

.guide-anchornav__inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 48px;
    overflow-x: auto;
    scrollbar-width: none;
}

.guide-anchornav__inner::-webkit-scrollbar {
    display: none;
}

.guide-anchornav__link {
    font-family: "Cinzel", serif;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--silver);
    text-decoration: none;
    padding: 14px 20px;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: color 0.25s, border-color 0.25s;
    flex-shrink: 0;
}

.guide-anchornav__link:hover {
    color: var(--gold-light);
    border-bottom-color: var(--gold-dim);
}

/* ─── GUIDE SECTION BASE ─── */
.guide-section {
    padding: 100px 48px;
}

.guide-section--alt {
    background: var(--dark2);
    border-top: 1px solid rgba(201, 149, 42, 0.08);
    border-bottom: 1px solid rgba(201, 149, 42, 0.08);
}

.guide-inner {
    max-width: 1160px;
    margin: 0 auto;
}

/* ─── OVERVIEW ─── */
.guide-overview__text {
    max-width: 760px;
    margin: 0 auto 56px;
}

.guide-overview__text p {
    color: var(--silver);
    font-size: 1.05rem;
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 16px;
    text-align: center;
}

.guide-stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.guide-stat-box {
    background: var(--dark3);
    border: 1px solid rgba(201, 149, 42, 0.1);
    padding: 32px 24px;
    text-align: center;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    transition: border-color 0.3s, background 0.3s;
}

.guide-stat-box:hover {
    border-color: rgba(201, 149, 42, 0.3);
    background: rgba(201, 149, 42, 0.04);
}

.guide-stat-box__num {
    display: block;
    font-family: "Cinzel Decorative", serif;
    font-size: 2.4rem;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 10px;
}

.guide-stat-box__lbl {
    display: block;
    font-family: "Cinzel", serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dim);
}

/* ─── CLASSES ─── */
.guide-classes-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 56px;
}

.guide-class-card {
    background: var(--dark3);
    border: 1px solid rgba(201, 149, 42, 0.12);
    padding: 32px 20px 28px;
    text-align: center;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.guide-class-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gold-dim),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s;
}

.guide-class-card:hover {
    border-color: rgba(201, 149, 42, 0.4);
    transform: translateY(-5px);
}

.guide-class-card:hover::after {
    opacity: 1;
}

.guide-class-card--featured {
    border-color: rgba(201, 149, 42, 0.28);
    background: linear-gradient(
        180deg,
        rgba(201, 149, 42, 0.05) 0%,
        var(--dark3) 100%
    );
}

.guide-class-card__emoji {
    font-size: 2.6rem;
    display: block;
    margin-bottom: 14px;
}

.guide-class-card__name {
    font-family: "Cinzel", serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.guide-class-card__role {
    font-size: 0.82rem;
    color: var(--silver);
    font-style: italic;
    margin-bottom: 18px;
    opacity: 0.8;
}

.guide-class-card__bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

/* ─── STAT BARS ─── */
.guide-bar {
    display: grid;
    grid-template-columns: 52px 1fr 36px;
    align-items: center;
    gap: 8px;
}

.guide-bar__label {
    font-family: "Cinzel", serif;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dim);
    white-space: nowrap;
}

.guide-bar__track {
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    overflow: hidden;
}

.guide-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dim), var(--gold-light));
    border-radius: 2px;
}

.guide-bar__fill--mid {
    background: linear-gradient(90deg, #4a3f6e, #8a7abb);
}

.guide-bar__fill--low {
    background: linear-gradient(90deg, #4a1c1c, #8b3030);
}

.guide-bar__tag {
    font-family: "Cinzel", serif;
    font-size: 0.54rem;
    letter-spacing: 0.08em;
    color: var(--silver);
    opacity: 0.6;
    text-align: right;
}

/* ─── ENHANCEMENT TABLE ─── */
.guide-table-wrap {
    margin-top: 50px;
    overflow-x: auto;
}

.guide-enhance-table {
    min-width: 600px;
}

.guide-enhance-lvl {
    font-family: "Cinzel Decorative", serif;
    font-size: 0.92rem;
    color: var(--gold-light);
}

.guide-enhance-lvl--legendary {
    background: linear-gradient(
        135deg,
        #f5e6b0,
        var(--gold-light),
        var(--gold)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1rem;
}

.guide-enhance-rate {
    font-family: "Cinzel", serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.guide-enhance-rate--safe   { color: #72e0a0; }
.guide-enhance-rate--mid    { color: var(--gold-light); }
.guide-enhance-rate--danger { color: #e88080; }

.guide-enhance-effect {
    color: var(--silver);
    font-size: 0.88rem;
    font-style: italic;
    font-weight: 300;
}

.guide-enhance-legendary td {
    background: rgba(201, 149, 42, 0.06) !important;
    border-bottom: 1px solid rgba(201, 149, 42, 0.2) !important;
}

.guide-enhance-desc {
    margin-top: 32px;
}

.guide-enhance-desc p {
    color: var(--silver);
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
    max-width: 760px;
    margin: 0 auto 32px;
    text-align: center;
    font-style: italic;
}

/* ─── MONSTER TABLE ─── */
.guide-monster-table {
    min-width: 700px;
}

.guide-monster-type {
    display: inline-block;
    font-family: "Cinzel", serif;
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 3px 10px;
    clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

.guide-monster-type--normal { background: rgba(184, 180, 200, 0.1); color: var(--silver); border: 1px solid rgba(184, 180, 200, 0.2); }
.guide-monster-type--elite  { background: rgba(74, 63, 110, 0.25);  color: #b8aaee;       border: 1px solid rgba(74, 63, 110, 0.4);  }
.guide-monster-type--boss   { background: rgba(139, 26, 26, 0.25);  color: #e88080;       border: 1px solid rgba(139, 26, 26, 0.4);  }
.guide-monster-type--final  { background: rgba(201, 149, 42, 0.2);  color: var(--gold-light); border: 1px solid rgba(201, 149, 42, 0.4); }

/* ─── NPC CARDS ─── */
.guide-npc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.guide-npc-card {
    background: var(--dark3);
    border: 1px solid rgba(201, 149, 42, 0.12);
    padding: 32px 28px;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.guide-npc-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gold-dim),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s;
}

.guide-npc-card:hover {
    border-color: rgba(201, 149, 42, 0.35);
    transform: translateY(-4px);
}

.guide-npc-card:hover::before {
    opacity: 1;
}

.guide-npc-card__icon {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 14px;
}

.guide-npc-card__name {
    font-family: "Cinzel", serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}

.guide-npc-card__location {
    display: inline-block;
    font-family: "Cinzel", serif;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 14px;
}

.guide-npc-card__desc {
    font-size: 0.92rem;
    color: var(--silver);
    line-height: 1.65;
    font-weight: 300;
}

/* ─── DUNGEON CARDS ─── */
.guide-dungeon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 56px;
}

.guide-dungeon-card {
    background: var(--dark3);
    border: 1px solid rgba(201, 149, 42, 0.12);
    padding: 26px 22px 22px;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.guide-dungeon-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gold-dim),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s;
}

.guide-dungeon-card:hover {
    border-color: rgba(201, 149, 42, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.guide-dungeon-card:hover::before {
    opacity: 1;
}

.guide-dungeon-card--final {
    border-color: rgba(201, 149, 42, 0.25);
    background: linear-gradient(
        180deg,
        rgba(139, 26, 26, 0.08) 0%,
        var(--dark3) 100%
    );
}

.guide-dungeon-card--final:hover {
    border-color: rgba(139, 26, 26, 0.6);
    box-shadow: 0 12px 32px rgba(139, 26, 26, 0.15);
}

.guide-dungeon-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.guide-dungeon-card__name {
    font-family: "Cinzel", serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.04em;
    line-height: 1.3;
}

.guide-dungeon-card__meta {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.guide-dungeon-card__info {
    font-family: "Cinzel", serif;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dim);
}

.guide-dungeon-card__desc {
    font-size: 0.88rem;
    color: var(--silver);
    line-height: 1.6;
    font-weight: 300;
    font-style: italic;
}

/* ─── DIFFICULTY BADGES ─── */
.guide-dungeon-diff {
    display: inline-block;
    font-family: "Cinzel", serif;
    font-size: 0.55rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 3px 9px;
    clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
    white-space: nowrap;
    flex-shrink: 0;
}

.guide-dungeon-diff--easy      { background: rgba(63, 186, 110, 0.15); color: #72e0a0;      border: 1px solid rgba(63, 186, 110, 0.3); }
.guide-dungeon-diff--normal    { background: rgba(126, 200, 227, 0.12); color: #7ec8e3;      border: 1px solid rgba(126, 200, 227, 0.25); }
.guide-dungeon-diff--hard      { background: rgba(212, 66, 10, 0.15);  color: #e8884a;       border: 1px solid rgba(212, 66, 10, 0.3);  }
.guide-dungeon-diff--nightmare { background: rgba(139, 26, 26, 0.25);  color: #e88080;       border: 1px solid rgba(139, 26, 26, 0.45); }

/* ─── GUIDE RESPONSIVE ─── */
@media (max-width: 1100px) {
    .guide-classes-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .guide-dungeon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .guide-npc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .guide-stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .guide-hero {
        min-height: 240px;
        padding: 90px 20px 50px;
    }

    .guide-section {
        padding: 70px 28px;
    }

    .guide-anchornav__inner {
        padding: 0 20px;
    }

    .guide-anchornav__link {
        padding: 12px 14px;
        font-size: 0.6rem;
    }

    .guide-classes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .guide-dungeon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .guide-npc-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .guide-hero__title {
        font-size: 1.8rem;
    }

    .guide-section {
        padding: 56px 16px;
    }

    .guide-stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .guide-classes-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .guide-class-card {
        padding: 22px 14px 20px;
    }

    .guide-class-card__emoji {
        font-size: 2rem;
    }

    .guide-dungeon-grid {
        grid-template-columns: 1fr;
    }

    .guide-npc-grid {
        grid-template-columns: 1fr;
    }

    .guide-anchornav__link {
        padding: 10px 10px;
        font-size: 0.55rem;
        letter-spacing: 0.12em;
    }
}

/* ─── LEGAL PAGES (Terms & Privacy) ─── */
.legal-section {
    padding: 60px 48px 80px;
    background: var(--dark);
}

.legal-inner {
    max-width: 800px;
    margin: 0 auto;
}

.legal-inner h2 {
    font-family: "Cinzel", serif;
    font-size: 1.1rem;
    color: var(--gold-dim);
    letter-spacing: 0.06em;
    margin-top: 36px;
    margin-bottom: 12px;
}

.legal-inner h3 {
    font-family: "Cinzel", serif;
    font-size: 0.9rem;
    color: var(--silver);
    margin-top: 20px;
    margin-bottom: 8px;
}

.legal-inner p {
    font-family: "Crimson Pro", serif;
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(184, 180, 200, 0.7);
    margin-bottom: 12px;
}

.legal-inner ul {
    margin: 0 0 16px 24px;
    padding: 0;
}

.legal-inner li {
    font-family: "Crimson Pro", serif;
    font-size: 1.02rem;
    line-height: 1.7;
    color: rgba(184, 180, 200, 0.65);
    margin-bottom: 6px;
}

.legal-inner a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.2s;
}

.legal-inner a:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .legal-section {
        padding: 40px 20px 60px;
    }
}

.flash-toast {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: rgba(63, 186, 110, 0.12);
    border: 1px solid rgba(63, 186, 110, 0.45);
    color: #7de0a8;
    padding: 12px 22px;
    font-family: "Cinzel", serif;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    border-radius: 6px;
    backdrop-filter: blur(6px);
    animation: flashToastIn 0.35s ease, flashToastOut 0.5s ease 5s forwards;
    max-width: 90vw;
    text-align: center;
}
@keyframes flashToastIn {
    from { opacity: 0; transform: translate(-50%, -10px); }
    to   { opacity: 1; transform: translate(-50%, 0); }
}
@keyframes flashToastOut {
    to { opacity: 0; transform: translate(-50%, -10px); visibility: hidden; }
}
