:root {
    --gold: #c9a84c;
    --gold-light: #f0d080;
    --gold-dim: #7a5f28;
    --blood: #8b1a1a;
    --blood-bright: #c0392b;
    --dark: #050507;
    --dark2: #0a0a10;
    --dark3: #0f0f18;
    --dark4: #14141f;
    --silver: #a8b5c8;
    --silver-dim: #5a6478;
    --glow: #c9a84c88;
    --red-glow: #8b1a1a66;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--silver);
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    overflow-x: hidden;
    cursor: default;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark2);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dim);
    border-radius: 3px;
}

/* ── CANVAS BACKGROUND ── */
#bg-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: .45;
}

/* ── PARTICLE OVERLAY ── */
.particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(1px 1px at 10% 20%, var(--gold) 0%, transparent 100%),
        radial-gradient(1px 1px at 30% 70%, var(--gold) 0%, transparent 100%),
        radial-gradient(1px 1px at 55% 40%, white 0%, transparent 100%),
        radial-gradient(1px 1px at 75% 80%, var(--gold) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 15%, white 0%, transparent 100%);
    animation: twinkle 6s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% {
        opacity: .25;
    }

    100% {
        opacity: .7;
    }
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    background: linear-gradient(180deg, rgba(5, 5, 7, .95) 0%, rgba(5, 5, 7, 0) 100%);
    border-bottom: 1px solid rgba(201, 168, 76, .15);
    gap: 16px;
}

.nav-logo {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.05rem;
    color: var(--gold);
    letter-spacing: .12em;
    text-shadow: 0 0 18px var(--glow);
    flex-shrink: 0;
    text-decoration: none;
}

/* Center links */
.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    font-family: 'Cinzel', serif;
    font-size: .68rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--silver);
    text-decoration: none;
    transition: color .3s, text-shadow .3s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--gold-light);
    text-shadow: 0 0 12px var(--glow);
}

/* Right side cluster */
.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Social icon buttons */
.nav-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, .25);
    background: rgba(201, 168, 76, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: all .3s;
    color: var(--silver);
    flex-shrink: 0;
}

.nav-social-btn:hover {
    border-color: var(--gold-dim);
    background: rgba(201, 168, 76, .14);
    color: var(--gold-light);
    box-shadow: 0 0 12px rgba(201, 168, 76, .25);
}

.nav-social-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Lang selector */
.nav-lang {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Cinzel', serif;
    font-size: .65rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--silver);
    cursor: pointer;
    padding: 6px 10px;
    border: 1px solid rgba(201, 168, 76, .18);
    background: rgba(201, 168, 76, .04);
    transition: all .3s;
    user-select: none;
    position: relative;
}

.nav-lang:hover {
    border-color: var(--gold-dim);
    color: var(--gold);
}

.nav-lang-arrow {
    font-size: .55rem;
    opacity: .6;
    transition: transform .3s;
}

.nav-lang.open .nav-lang-arrow {
    transform: rotate(180deg);
}

.nav-lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: var(--dark2);
    border: 1px solid rgba(201, 168, 76, .2);
    display: none;
    flex-direction: column;
    min-width: 60px;
    z-index: 200;
}

.nav-lang.open .nav-lang-dropdown {
    display: flex;
}

.nav-lang-opt {
    padding: 8px 12px;
    font-family: 'Cinzel', serif;
    font-size: .62rem;
    letter-spacing: .15em;
    color: var(--silver-dim);
    cursor: pointer;
    transition: all .2s;
}

.nav-lang-opt:hover {
    background: rgba(201, 168, 76, .08);
    color: var(--gold);
}

/* Panel de usuario link */
.nav-panel-link {
    font-family: 'Cinzel', serif;
    font-size: .62rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--silver-dim);
    text-decoration: none;
    white-space: nowrap;
    transition: color .3s;
    padding: 0 4px;
}

.nav-panel-link:hover {
    color: var(--gold);
}

/* CTA — Crear cuenta estilo fancy */
.nav-cta {
    position: relative;
    font-family: 'Cinzel', serif;
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 10px 22px 10px 30px;
    color: var(--gold-light);
    background: linear-gradient(135deg, #3a2c00, #1e1700);
    border: none;
    outline: 1px solid rgba(201, 168, 76, .5);
    outline-offset: -1px;
    cursor: pointer;
    text-decoration: none;
    transition: all .35s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    clip-path: polygon(14px 0%, 100% 0%, calc(100% - 14px) 100%, 0% 100%);
    box-shadow: 0 0 20px rgba(201, 168, 76, .2), inset 0 1px 0 rgba(201, 168, 76, .15);
}

.nav-cta::before,
.nav-cta::after {
    content: '◆';
    font-size: .5rem;
    color: var(--gold);
    opacity: .8;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #5a4400, #3a2c00);
    outline-color: var(--gold);
    box-shadow: 0 0 35px rgba(201, 168, 76, .45), inset 0 1px 0 rgba(201, 168, 76, .25);
    color: #fff;
}

/* ── HAMBURGER ── */
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 200;
}

.nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: all .35s;
    transform-origin: center;
}

.nav-burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE DRAWER ── */
.nav-drawer {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(5, 5, 7, .98);
    border-bottom: 1px solid rgba(201, 168, 76, .2);
    backdrop-filter: blur(16px);
    z-index: 99;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4, 0, .2, 1);
}

.nav-drawer.open {
    max-height: 600px;
}

.nav-drawer-inner {
    padding: 24px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-drawer-item {
    font-family: 'Cinzel', serif;
    font-size: .8rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--silver);
    text-decoration: none;
    padding: 13px 0;
    border-bottom: 1px solid rgba(201, 168, 76, .08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color .3s;
}

.nav-drawer-item:hover {
    color: var(--gold-light);
}

.nav-drawer-item:last-of-type {
    border-bottom: none;
}

.nav-drawer-bottom {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(201, 168, 76, .12);
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.nav-drawer-cta {
    font-family: 'Cinzel', serif;
    font-size: .72rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 12px 28px;
    background: linear-gradient(135deg, #3a2c00, #1e1700);
    outline: 1px solid rgba(201, 168, 76, .5);
    outline-offset: -1px;
    color: var(--gold-light);
    text-decoration: none;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-drawer-cta::before,
.nav-drawer-cta::after {
    content: '◆';
    font-size: .45rem;
    color: var(--gold);
}

@media (max-width: 960px) {
    nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-panel-link {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .nav-right .nav-social-btn:nth-child(n+3) {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-lang {
        display: none;
    }
}

/* ── HERO ── */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(139, 26, 26, .35) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(201, 168, 76, .12) 0%, transparent 60%),
        linear-gradient(180deg, rgba(5, 5, 7, 0) 0%, rgba(5, 5, 7, .6) 60%, var(--dark) 100%);
    z-index: 0;
}

.hero-emblem {
    position: absolute;
    width: 700px;
    height: 700px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: .06;
    animation: slow-spin 90s linear infinite;
    z-index: 0;
}

@keyframes slow-spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: .7rem;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp .8s .3s forwards;
}

.hero-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(2.8rem, 8vw, 6.5rem);
    font-weight: 900;
    line-height: 1.0;
    color: #fff;
    text-shadow:
        0 0 40px var(--glow),
        0 0 80px rgba(201, 168, 76, .3),
        0 4px 24px rgba(0, 0, 0, .8);
    opacity: 0;
    animation: fadeUp .9s .5s forwards;
}

.hero-title span {
    color: var(--gold);
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--silver);
    margin: 20px 0 40px;
    opacity: 0;
    animation: fadeUp .9s .7s forwards;
    letter-spacing: .05em;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .9s .9s forwards;
}

.btn-primary {
    font-family: 'Cinzel', serif;
    font-size: .8rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 16px 48px;
    background: linear-gradient(135deg, var(--blood) 0%, #5a0f0f 100%);
    border: 1px solid var(--blood-bright);
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    transition: all .35s;
    box-shadow: 0 0 30px var(--red-glow), inset 0 1px 0 rgba(255, 255, 255, .1);
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--blood-bright) 0%, var(--blood) 100%);
    box-shadow: 0 0 50px var(--red-glow), 0 0 100px rgba(139, 26, 26, .4);
    transform: translateY(-2px);
}

.btn-secondary {
    font-family: 'Cinzel', serif;
    font-size: .8rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 16px 48px;
    background: transparent;
    border: 1px solid var(--gold-dim);
    color: var(--gold);
    cursor: pointer;
    text-decoration: none;
    transition: all .35s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-secondary:hover {
    border-color: var(--gold);
    box-shadow: 0 0 30px var(--glow);
    background: rgba(201, 168, 76, .08);
    transform: translateY(-2px);
}

/* STATUS STRIP */
.status-strip {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 70px;
    padding: 28px 60px;
    background: rgba(10, 10, 16, .75);
    border-top: 1px solid rgba(201, 168, 76, .2);
    border-bottom: 1px solid rgba(201, 168, 76, .2);
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: fadeUp .9s 1.1s forwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-light);
    text-shadow: 0 0 14px var(--glow);
    display: block;
}

.stat-label {
    font-family: 'Cinzel', serif;
    font-size: .6rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--silver-dim);
    margin-top: 4px;
    display: block;
}

.stat-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #27ae60;
    box-shadow: 0 0 10px #27ae60;
    margin-right: 8px;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {

    0%,
    100% {
        box-shadow: 0 0 10px #27ae60;
    }

    50% {
        box-shadow: 0 0 22px #27ae60, 0 0 40px #27ae6088;
    }
}

/* ── DIVIDER ── */
.divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
    max-width: 700px;
    padding: 0 40px;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.divider-icon {
    color: var(--gold);
    font-size: 1.2rem;
}

/* ── SECTION BASE ── */
section {
    position: relative;
    z-index: 1;
    padding: 100px 60px;
}

.section-label {
    font-family: 'Cinzel', serif;
    font-size: .65rem;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--gold-dim);
    text-align: center;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    color: #fff;
    text-align: center;
    margin-bottom: 16px;
    text-shadow: 0 0 30px var(--glow);
}

.section-desc {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--silver-dim);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
    line-height: 1.7;
}

/* ── FEATURES (RATES / INFO) ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--dark3);
    border: 1px solid rgba(201, 168, 76, .1);
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    transition: border-color .4s, transform .4s;
    cursor: default;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity .4s;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201, 168, 76, .06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity .4s;
}

.feature-card:hover {
    border-color: rgba(201, 168, 76, .4);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    font-size: 2.4rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 8px var(--glow));
}

.feature-name {
    font-family: 'Cinzel', serif;
    font-size: .8rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.feature-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--silver-dim);
    line-height: 1.7;
}

.feature-value {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gold-light);
    text-shadow: 0 0 12px var(--glow);
    margin-top: 12px;
}

/* ── CLASSES SECTION ── */
.classes-section {
    background: var(--dark2);
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.class-card {
    position: relative;
    overflow: hidden;
    background: var(--dark3);
    border: 1px solid rgba(201, 168, 76, .12);
    padding: 32px 24px;
    text-align: center;
    transition: all .4s;
    cursor: default;
}

.class-card:hover {
    border-color: var(--gold-dim);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5), 0 0 30px rgba(201, 168, 76, .1);
}

.class-emoji {
    font-size: 2.5rem;
    margin-bottom: 14px;
    display: block;
}

.class-name {
    font-family: 'Cinzel', serif;
    font-size: .8rem;
    letter-spacing: .15em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.class-role {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: .9rem;
    color: var(--silver-dim);
}

.class-tag {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 12px;
    font-family: 'Cinzel', serif;
    font-size: .6rem;
    letter-spacing: .15em;
    border: 1px solid;
    border-radius: 2px;
}

.tag-tank {
    border-color: #3d7abf;
    color: #7ab3ef;
}

.tag-healer {
    border-color: #27ae60;
    color: #5dd88a;
}

.tag-dps {
    border-color: var(--blood);
    color: #e05555;
}

.tag-mage {
    border-color: #8e44ad;
    color: #bf7fe0;
}

.tag-support {
    border-color: #d4ac0d;
    color: var(--gold-light);
}

/* ── CHRONICLES / FEATURES LIST ── */
.features-list-section {
    background: var(--dark);
}

.features-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.features-col-title {
    font-family: 'Cinzel', serif;
    font-size: .7rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201, 168, 76, .15);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.feature-bullet {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--glow);
    flex-shrink: 0;
    margin-top: 9px;
}

.feature-text {
    font-size: 1rem;
    color: var(--silver);
    line-height: 1.6;
}

.feature-text strong {
    color: var(--gold-light);
    font-weight: 600;
}

/* ── EVENTS SECTION ── */
.events-section {
    background: var(--dark3);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.event-card {
    background: var(--dark2);
    border: 1px solid rgba(201, 168, 76, .12);
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: all .4s;
}

.event-card:hover {
    border-color: rgba(201, 168, 76, .35);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
}

.event-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Cinzel', serif;
    font-size: .55rem;
    letter-spacing: .15em;
    padding: 5px 10px;
    text-transform: uppercase;
}

.badge-active {
    background: rgba(39, 174, 96, .15);
    color: #5dd88a;
    border: 1px solid rgba(39, 174, 96, .4);
}

.badge-soon {
    background: rgba(201, 168, 76, .12);
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, .3);
}

.badge-weekly {
    background: rgba(52, 152, 219, .12);
    color: #7ab3ef;
    border: 1px solid rgba(52, 152, 219, .3);
}

.event-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    display: block;
}

.event-title {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--gold-light);
    margin-bottom: 10px;
    letter-spacing: .05em;
}

.event-desc {
    font-size: .95rem;
    color: var(--silver-dim);
    line-height: 1.65;
}

/* ── CASTLE SIEGE ── */
.siege-section {
    background:
        radial-gradient(ellipse 80% 60% at 50% 50%, rgba(139, 26, 26, .2) 0%, transparent 70%),
        var(--dark2);
    text-align: center;
}

.siege-schedule {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.siege-item {
    background: var(--dark);
    border: 1px solid rgba(139, 26, 26, .4);
    padding: 28px 40px;
    min-width: 200px;
}

.siege-castle {
    font-family: 'Cinzel', serif;
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--blood-bright);
    margin-bottom: 6px;
}

.siege-time {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1rem;
    color: #fff;
}

.siege-day {
    font-size: .85rem;
    color: var(--silver-dim);
    margin-top: 4px;
}

/* ── DOWNLOAD SECTION ── */
.download-section {
    background: var(--dark);
    text-align: center;
}

.download-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--dark3);
    border: 1px solid rgba(201, 168, 76, .2);
    padding: 64px;
    position: relative;
}

.download-box::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(201, 168, 76, .3), transparent, rgba(139, 26, 26, .3));
    z-index: -1;
}

.download-version {
    font-family: 'Cinzel', serif;
    font-size: .65rem;
    letter-spacing: .3em;
    color: var(--gold-dim);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.download-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 16px;
}

.download-info {
    font-size: 1rem;
    color: var(--silver-dim);
    line-height: 1.7;
    margin-bottom: 40px;
    font-style: italic;
}

.download-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── COMMUNITY ── */
.community-section {
    background: var(--dark3);
}

.social-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--dark2);
    border: 1px solid rgba(201, 168, 76, .12);
    padding: 24px 36px;
    min-width: 220px;
    text-decoration: none;
    transition: all .4s;
    cursor: pointer;
}

.social-card:hover {
    border-color: var(--gold-dim);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .4), 0 0 20px rgba(201, 168, 76, .08);
}

.social-icon {
    font-size: 2rem;
}

.social-info {}

.social-name {
    font-family: 'Cinzel', serif;
    font-size: .8rem;
    letter-spacing: .1em;
    color: var(--gold);
    text-transform: uppercase;
}

.social-count {
    font-size: .9rem;
    color: var(--silver-dim);
    margin-top: 3px;
}

/* ── TOP PLAYERS ── */
.rankings-section {
    background: var(--dark2);
}

.rankings-table {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(201, 168, 76, .15);
    overflow: hidden;
}

.rankings-header {
    display: grid;
    grid-template-columns: 60px 1fr 160px 120px 120px;
    background: rgba(201, 168, 76, .08);
    padding: 16px 28px;
    border-bottom: 1px solid rgba(201, 168, 76, .15);
}

.rankings-header span {
    font-family: 'Cinzel', serif;
    font-size: .6rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-dim);
}

.rankings-row {
    display: grid;
    grid-template-columns: 60px 1fr 160px 120px 120px;
    padding: 18px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .03);
    align-items: center;
    transition: background .3s;
}

.rankings-row:hover {
    background: rgba(201, 168, 76, .04);
}

.rank-num {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 700;
}

.rank-1 {
    color: #ffd700;
    text-shadow: 0 0 12px #ffd70099;
}

.rank-2 {
    color: #c0c0c0;
}

.rank-3 {
    color: #cd7f32;
}

.rank-n {
    color: var(--silver-dim);
}

.rank-player {
    font-family: 'Cinzel', serif;
    font-size: .9rem;
    color: #fff;
}

.rank-class {
    font-size: .85rem;
    color: var(--gold-dim);
    font-style: italic;
}

.rank-clan {
    font-size: .85rem;
    color: var(--silver-dim);
}

.rank-pk {
    font-size: .85rem;
    color: var(--blood-bright);
    text-align: right;
}

/* ── FOOTER ── */
footer {
    position: relative;
    z-index: 1;
    background: var(--dark);
    border-top: 1px solid rgba(201, 168, 76, .12);
    padding: 60px;
    text-align: center;
}

.footer-logo {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.4rem;
    color: var(--gold);
    text-shadow: 0 0 20px var(--glow);
    margin-bottom: 12px;
}

.footer-tagline {
    font-style: italic;
    color: var(--silver-dim);
    font-size: .95rem;
    margin-bottom: 40px;
}

.footer-links {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-links a {
    font-family: 'Cinzel', serif;
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--silver-dim);
    text-decoration: none;
    transition: color .3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-copy {
    font-size: .8rem;
    /*color: rgba(255, 255, 255, 0.25);*/
    color: #fff;
    letter-spacing: .1em;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── ORNAMENT ── */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 auto 24px;
}

.ornament-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dim));
}

.ornament-line.right {
    background: linear-gradient(90deg, var(--gold-dim), transparent);
}

.ornament-diamond {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    box-shadow: 0 0 10px var(--glow);
}

/* ── SERVERS SECTION ── */
.servers-section {
    background: var(--dark);
    padding: 100px 60px;
    position: relative;
    z-index: 1;
}

.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    max-width: 1160px;
    margin: 0 auto;
}

/* Card base */
.srv-card {
    position: relative;
    overflow: hidden;
    border: 1px solid;
    padding: 0;
    transition: transform .4s, box-shadow .4s;
    cursor: default;
}

.srv-card:hover {
    transform: translateY(-8px);
}

/* ── LOW — azul acero ── */
.srv-low {
    border-color: rgba(74, 144, 210, .35);
    background: linear-gradient(160deg, #060d1a 0%, #0a1220 100%);
}

.srv-low:hover {
    box-shadow: 0 24px 60px rgba(74, 144, 210, .25), 0 0 40px rgba(74, 144, 210, .1);
}

.srv-low .srv-accent {
    background: linear-gradient(90deg, #1a4a7a, #0d2a50);
}

.srv-low .srv-rate-val {
    color: #7ab3ef;
    text-shadow: 0 0 14px #4a90d299;
}

.srv-low .srv-badge {
    background: rgba(74, 144, 210, .15);
    color: #7ab3ef;
    border-color: rgba(74, 144, 210, .5);
}

.srv-low .srv-cd-block {
    border-color: rgba(74, 144, 210, .2);
    background: rgba(74, 144, 210, .05);
}

.srv-low .srv-cd-num {
    color: #7ab3ef;
    text-shadow: 0 0 12px #4a90d277;
}

.srv-low .srv-btn {
    background: linear-gradient(135deg, #1a4a7a, #0d2a50);
    border-color: #4a90d2;
    color: #c0dcf8;
}

.srv-low .srv-btn:hover {
    background: linear-gradient(135deg, #2a6aaa, #1a4a7a);
    box-shadow: 0 0 28px rgba(74, 144, 210, .5);
}

.srv-low .srv-icon-bg {
    color: rgba(74, 144, 210, .08);
}

.srv-low .srv-running {
    color: #5dd88a;
}

.srv-low .srv-soon {
    color: var(--gold);
}

.srv-low .srv-label-col {
    color: #4a90d2;
}

.srv-low .srv-tag {
    background: rgba(74, 144, 210, .12);
    color: #7ab3ef;
    border: 1px solid rgba(74, 144, 210, .3);
}

/* ── MID — dorado fuego ── */
.srv-mid {
    border-color: rgba(201, 168, 76, .45);
    background: linear-gradient(160deg, #0f0d04 0%, #181200 100%);
}

.srv-mid:hover {
    box-shadow: 0 24px 60px rgba(201, 168, 76, .22), 0 0 40px rgba(201, 168, 76, .12);
}

.srv-mid .srv-accent {
    background: linear-gradient(90deg, #4a3800, #2a2000);
}

.srv-mid .srv-rate-val {
    color: var(--gold-light);
    text-shadow: 0 0 14px var(--glow);
}

.srv-mid .srv-badge {
    background: rgba(201, 168, 76, .12);
    color: var(--gold);
    border-color: rgba(201, 168, 76, .45);
}

.srv-mid .srv-cd-block {
    border-color: rgba(201, 168, 76, .2);
    background: rgba(201, 168, 76, .05);
}

.srv-mid .srv-cd-num {
    color: var(--gold-light);
    text-shadow: 0 0 12px var(--glow);
}

.srv-mid .srv-btn {
    background: linear-gradient(135deg, #4a3800, #2a2000);
    border-color: var(--gold);
    color: var(--gold-light);
}

.srv-mid .srv-btn:hover {
    background: linear-gradient(135deg, #6a5200, #4a3800);
    box-shadow: 0 0 28px rgba(201, 168, 76, .5);
}

.srv-mid .srv-icon-bg {
    color: rgba(201, 168, 76, .07);
}

.srv-mid .srv-running {
    color: #5dd88a;
}

.srv-mid .srv-soon {
    color: var(--gold);
}

.srv-mid .srv-label-col {
    color: var(--gold);
}

.srv-mid .srv-tag {
    background: rgba(201, 168, 76, .1);
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, .3);
}

/* ── HIGH — rojo sangre ── */
.srv-high {
    border-color: rgba(192, 57, 43, .45);
    background: linear-gradient(160deg, #120504 0%, #1c0606 100%);
}

.srv-high:hover {
    box-shadow: 0 24px 60px rgba(192, 57, 43, .28), 0 0 40px rgba(192, 57, 43, .12);
}

.srv-high .srv-accent {
    background: linear-gradient(90deg, #5a0f0f, #350808);
}

.srv-high .srv-rate-val {
    color: #e07070;
    text-shadow: 0 0 14px #c0392b88;
}

.srv-high .srv-badge {
    background: rgba(192, 57, 43, .15);
    color: #e07070;
    border-color: rgba(192, 57, 43, .5);
}

.srv-high .srv-cd-block {
    border-color: rgba(192, 57, 43, .2);
    background: rgba(192, 57, 43, .05);
}

.srv-high .srv-cd-num {
    color: #e07070;
    text-shadow: 0 0 12px #c0392b77;
}

.srv-high .srv-btn {
    background: linear-gradient(135deg, #5a0f0f, #350808);
    border-color: #c0392b;
    color: #f0a0a0;
}

.srv-high .srv-btn:hover {
    background: linear-gradient(135deg, #8b1a1a, #5a0f0f);
    box-shadow: 0 0 28px rgba(192, 57, 43, .5);
}

.srv-high .srv-icon-bg {
    color: rgba(192, 57, 43, .08);
}

.srv-high .srv-running {
    color: #5dd88a;
}

.srv-high .srv-soon {
    color: #f0c060;
}

.srv-high .srv-label-col {
    color: #e07070;
}

.srv-high .srv-tag {
    background: rgba(192, 57, 43, .1);
    color: #e07070;
    border: 1px solid rgba(192, 57, 43, .3);
}

/* Card parts */
.srv-accent {
    height: 4px;
    width: 100%;
}

.srv-body {
    padding: 32px 32px 28px;
    position: relative;
}

.srv-icon-bg {
    position: absolute;
    right: 20px;
    top: 16px;
    font-size: 7rem;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.srv-header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 20px;
}

.srv-emblem {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid currentColor;
    opacity: .7;
    font-size: 1.6rem;
}

.srv-meta {
    flex: 1;
}

.srv-tier {
    font-family: 'Cinzel', serif;
    font-size: .6rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--silver-dim);
    margin-bottom: 4px;
}

.srv-name {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.15rem;
    color: #fff;
    line-height: 1.2;
}

.srv-badge {
    font-family: 'Cinzel', serif;
    font-size: .55rem;
    letter-spacing: .15em;
    padding: 5px 12px;
    text-transform: uppercase;
    margin-left: auto;
    flex-shrink: 0;
    align-self: flex-start;
}

/* Rate pills */
.srv-rates {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.srv-rate-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 16px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    min-width: 72px;
}

.srv-rate-label {
    font-family: 'Cinzel', serif;
    font-size: .52rem;
    letter-spacing: .15em;
    color: var(--silver-dim);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.srv-rate-val {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Tags */
.srv-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.srv-tag {
    font-family: 'Cinzel', serif;
    font-size: .55rem;
    letter-spacing: .12em;
    padding: 4px 10px;
    text-transform: uppercase;
}

/* Status label */
.srv-status-label {
    font-family: 'Cinzel', serif;
    font-size: .6rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.srv-label-col {}

/* Countdown */
.srv-countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 24px;
}

.srv-cd-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 6px;
    border: 1px solid;
}

.srv-cd-num {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
}

.srv-cd-lbl {
    font-family: 'Cinzel', serif;
    font-size: .48rem;
    letter-spacing: .15em;
    color: var(--silver-dim);
    text-transform: uppercase;
    margin-top: 4px;
}

/* Running strip (for active servers) */
.srv-running-strip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(39, 174, 96, .07);
    border: 1px solid rgba(39, 174, 96, .2);
    margin-bottom: 24px;
}

.srv-dot-green {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #27ae60;
    flex-shrink: 0;
    animation: pulse-green 2s infinite;
    box-shadow: 0 0 8px #27ae60;
}

.srv-running-text {
    font-family: 'Cinzel', serif;
    font-size: .62rem;
    letter-spacing: .18em;
    color: #5dd88a;
    text-transform: uppercase;
}

.srv-running-days {
    margin-left: auto;
    font-family: 'Cinzel', serif;
    font-size: .7rem;
    color: #5dd88a;
    font-weight: 700;
}

.srv-btn {
    width: 100%;
    font-family: 'Cinzel', serif;
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 14px 28px;
    border: 1px solid;
    cursor: pointer;
    transition: all .35s;
    text-decoration: none;
    display: block;
    text-align: center;
    background: none;
}

.srv-divider {
    height: 1px;
    background: rgba(255, 255, 255, .05);
    margin: 0 32px 20px;
}

.srv-online-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 32px 28px;
}

.srv-online-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #27ae60;
    box-shadow: 0 0 8px #27ae60;
    animation: pulse-green 2s infinite;
}

.srv-online-text {
    font-family: 'Cinzel', serif;
    font-size: .6rem;
    letter-spacing: .15em;
    color: var(--silver-dim);
    text-transform: uppercase;
}

.srv-online-count {
    font-family: 'Cinzel', serif;
    font-size: .75rem;
    color: #5dd88a;
    font-weight: 700;
    margin-left: auto;
}

/* ── RANKING TABS ── */
.rank-tab-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}

.rank-tab-row-sm {
    margin-bottom: 36px;
}

/* Big tabs (server selector) */
.rank-tab {
    position: relative;
    font-family: 'Cinzel', serif;
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 13px 32px 13px 40px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    clip-path: polygon(16px 0%, calc(100% - 16px) 0%, 100% 50%, calc(100% - 16px) 100%, 16px 100%, 0% 50%);
    transition: all .3s;
    white-space: nowrap;
    min-width: 180px;
    justify-content: center;
}

.rank-tab-sm {
    font-size: .64rem;
    padding: 10px 24px 10px 30px;
    min-width: 130px;
    clip-path: polygon(12px 0%, calc(100% - 12px) 0%, 100% 50%, calc(100% - 12px) 100%, 12px 100%, 0% 50%);
}

/* Gold (active) */
.rank-tab-gold {
    background: linear-gradient(135deg, #3a2c00, #1e1700);
    color: var(--gold-light);
    box-shadow: 0 0 20px rgba(201, 168, 76, .3), inset 0 1px 0 rgba(201, 168, 76, .2);
    border: none;
    outline: 1px solid rgba(201, 168, 76, .5);
    outline-offset: -1px;
}

.rank-tab-gold:hover,
.rank-tab-gold.active {
    background: linear-gradient(135deg, #5a4400, #3a2c00);
    box-shadow: 0 0 35px rgba(201, 168, 76, .45), inset 0 1px 0 rgba(201, 168, 76, .3);
    outline-color: var(--gold);
    color: #fff;
}

/* Dim (inactive) */
.rank-tab-dim {
    background: linear-gradient(135deg, #141420, #0a0a14);
    color: var(--silver-dim);
    outline: 1px solid rgba(201, 168, 76, .15);
    outline-offset: -1px;
}

.rank-tab-dim:hover {
    background: linear-gradient(135deg, #1e1e2e, #141420);
    color: var(--silver);
    outline-color: rgba(201, 168, 76, .35);
}

.rank-tab-dim.active {
    background: linear-gradient(135deg, #3a2c00, #1e1700);
    color: var(--gold-light);
    outline-color: rgba(201, 168, 76, .5);
}

/* Diamond & arrow decorators */
.rtab-diamond {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
    opacity: .8;
    box-shadow: 0 0 6px var(--glow);
}

.rtab-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid rgba(201, 168, 76, .5);
    flex-shrink: 0;
}

.rtab-diamond-sm {
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
    opacity: .7;
}

.rtab-arrow-sm {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-left: 4px solid rgba(201, 168, 76, .4);
    flex-shrink: 0;
}

/* Table */
.rank-table-wrap {
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(201, 168, 76, .15);
    background: rgba(10, 10, 16, .7);
    overflow: hidden;
}

.rank-th {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(201, 168, 76, .12), rgba(201, 168, 76, .06), rgba(201, 168, 76, .12));
    border-bottom: 1px solid rgba(201, 168, 76, .2);
    padding: 14px 24px;
}

.rank-th-cell {
    font-family: 'Cinzel', serif;
    font-size: .58rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-dim);
}

.rk-class {
    width: 180px;
}

.rk-clan {
    width: 160px;
}

.rk-stat {
    width: 110px;
    text-align: right;
}

.rank-row {
    display: flex;
    align-items: center;
    padding: 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .03);
    min-height: 62px;
    transition: background .25s;
    animation: rankFadeIn .4s ease forwards;
    opacity: 0;
}

@keyframes rankFadeIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.rank-row:hover {
    background: rgba(201, 168, 76, .04);
}

/* Gold row for top 3 */
.rank-row-1 {
    background: rgba(201, 168, 76, .06);
    border-left: 2px solid #ffd700;
}

.rank-row-2 {
    background: rgba(180, 180, 180, .04);
    border-left: 2px solid #c0c0c0;
}

.rank-row-3 {
    background: rgba(180, 100, 40, .04);
    border-left: 2px solid #cd7f32;
}

.rn-pos {
    width: 64px;
    text-align: center;
    flex-shrink: 0;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 700;
}

.rn-pos-1 {
    color: #ffd700;
    text-shadow: 0 0 14px #ffd70099;
}

.rn-pos-2 {
    color: #c0c0c0;
}

.rn-pos-3 {
    color: #cd7f32;
}

.rn-pos-n {
    color: var(--silver-dim);
}

.rn-player-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rn-player {
    font-family: 'Cinzel', serif;
    font-size: .9rem;
    color: #fff;
    letter-spacing: .04em;
}

.rn-sub {
    font-size: .75rem;
    color: var(--silver-dim);
    font-style: italic;
}

.rn-class {
    width: 180px;
    font-size: .82rem;
    color: var(--gold-dim);
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
}

.rn-clan {
    width: 160px;
    font-size: .8rem;
    color: var(--silver-dim);
    font-family: 'Cinzel', serif;
    font-size: .7rem;
    letter-spacing: .06em;
}

.rn-stat {
    width: 110px;
    text-align: right;
    font-family: 'Cinzel', serif;
    font-size: .9rem;
    font-weight: 700;
    color: var(--gold-light);
    text-shadow: 0 0 10px rgba(201, 168, 76, .4);
}

/* Special clan cell */
.rank-row-1 .rn-stat {
    color: #ffd700;
    text-shadow: 0 0 14px #ffd70066;
}

/* For clan/castle tabs — different cols */
.rn-info-wide {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    nav {
        padding: 0 24px;
    }

    .nav-links {
        display: none;
    }

    section {
        padding: 70px 24px;
    }

    .features-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rankings-header,
    .rankings-row {
        grid-template-columns: 50px 1fr 100px;
    }

    .rank-clan,
    .rank-pk {
        display: none;
    }

    .download-box {
        padding: 40px 24px;
    }

    footer {
        padding: 40px 24px;
    }

    .status-strip {
        padding: 24px;
        gap: 32px;
    }
}