:root {
    --bg-0: #07050a;
    --bg-1: #130a0d;
    --bg-2: #1a0a0a;
    --gold-1: #f4d47b;
    --gold-2: #c9a960;
    --gold-3: #8a6a2c;
    --red-1: #c13030;
    --red-2: #7a1a1a;
    --ink-1: #f5ecd7;
    --ink-2: #c9b88b;
    --ink-3: #7a6f58;
    --panel-bg: rgba(18, 10, 10, 0.55);
    --panel-border: rgba(201, 169, 96, 0.35);
    --panel-border-strong: rgba(244, 212, 123, 0.7);

    --h-header: 64px;
    --h-fortress: 58px;
    --h-footer: 42px;
}

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

html, body {
    width: 100%;
    height: 100vh;
    color: var(--ink-1);
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: url('images/cursors/cursor2.cur'), auto;
}
html { background: #14091c; }
body {
    position: relative;
    background: transparent;
    display: grid;
    grid-template-rows: var(--h-header) 1fr var(--h-fortress) var(--h-footer);
    grid-template-areas:
        "header"
        "hero"
        "fortress"
        "footer";
}

a { color: inherit; text-decoration: none; cursor: url('images/cursors/cursor5.cur'), pointer; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ===================== BACKDROP LAYERS ===================== */

.bg-banner {
    position: fixed; inset: 0;
    background: url('images/celder.jpg') no-repeat center center / cover;
    filter: blur(2px) brightness(0.85) saturate(1.2) contrast(1.08);
    transform: scale(1.06);
    z-index: 0;
    animation: bannerDrift 22s ease-in-out infinite alternate;
}
@keyframes bannerDrift {
    from { transform: scale(1.06) translate(-1%, 0); }
    to   { transform: scale(1.1) translate(1%, -1.5%); }
}

.bg-gradient {
    position: fixed; inset: 0;
    background:
        radial-gradient(ellipse at 15% 10%, rgba(120, 60, 180, 0.22), transparent 55%),
        radial-gradient(ellipse at 85% 90%, rgba(201, 169, 96, 0.18), transparent 55%),
        linear-gradient(160deg, rgba(22,14,32,0.25) 0%, rgba(32,18,28,0.15) 40%, rgba(30,16,20,0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

.bg-pattern {
    position: fixed; inset: 0;
    background: url('images/pattern.png') repeat;
    background-size: 300px auto;
    opacity: 0.04;
    mix-blend-mode: overlay;
    z-index: 2;
    pointer-events: none;
}

.light-rays {
    position: fixed; inset: 0;
    background:
        linear-gradient(115deg, transparent 40%, rgba(244, 212, 123, 0.07) 50%, transparent 60%),
        linear-gradient(75deg, transparent 45%, rgba(244, 212, 123, 0.05) 55%, transparent 65%);
    pointer-events: none;
    z-index: 3;
    animation: raysShift 14s ease-in-out infinite alternate;
}
@keyframes raysShift {
    from { transform: translateX(-2%); }
    to   { transform: translateX(2%); }
}

.vignette {
    position: fixed; inset: 0;
    background: radial-gradient(ellipse at center, transparent 45%, rgba(10,5,18,0.75) 100%);
    pointer-events: none;
    z-index: 5;
}

#particles-canvas {
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 4;
}

/* ===================== HEADER ===================== */

.site-header {
    grid-area: header;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    position: relative;
    z-index: 20;
    backdrop-filter: blur(10px);
    background: linear-gradient(180deg, rgba(10,6,8,0.92) 0%, rgba(10,6,8,0.35) 100%);
    border-bottom: 1px solid rgba(201, 169, 96, 0.18);
    animation: fadeDown 0.9s ease-out both;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.brand-logo {
    width: 38px; height: 38px;
    filter: drop-shadow(0 0 10px rgba(90, 160, 255, 0.4));
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 3px;
    background: linear-gradient(180deg, var(--gold-1), var(--gold-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.brand-sub {
    font-size: 9px;
    letter-spacing: 6px;
    color: var(--ink-3);
    margin-top: 3px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ===================== SERVER STATUS BADGE ===================== */
.server-status {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 5px 12px 5px 10px;
    border: 1px solid rgba(201,169,96,0.28);
    border-radius: 6px;
    background: rgba(10,6,8,0.45);
    transition: 0.25s;
    min-height: 34px;
}
.server-status:hover {
    border-color: var(--gold-2);
    background: rgba(244,212,123,0.05);
}
.srv-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: #888;
    box-shadow: 0 0 8px rgba(136,136,136,0.6);
    flex-shrink: 0;
    transition: 0.3s;
}
.srv-dot.online {
    background: #4ade80;
    box-shadow: 0 0 10px rgba(74,222,128,0.8);
    animation: srvPulse 2s ease-in-out infinite;
}
.srv-dot.offline {
    background: var(--red-1);
    box-shadow: 0 0 10px rgba(193,48,48,0.8);
}
@keyframes srvPulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50%     { opacity: 0.55; transform: scale(0.85); }
}
.srv-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.srv-label {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--ink-2);
}
.server-status .srv-dot.online ~ .srv-text .srv-label { color: var(--gold-1); }
.server-status .srv-dot.offline ~ .srv-text .srv-label { color: var(--red-1); }
.srv-count {
    font-size: 9px;
    letter-spacing: 1.5px;
    color: var(--ink-3);
    margin-top: 3px;
}
.lang-selector {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 5px 10px;
    border: 1px solid rgba(201,169,96,0.25);
    border-radius: 6px;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--ink-2);
    cursor: url('images/cursors/cursor5.cur'), pointer;
    transition: 0.25s;
}
.lang-selector:hover { border-color: var(--gold-2); color: var(--gold-1); }
.lang-selector img { width: 16px; height: 11px; object-fit: cover; }

.header-icon-btn {
    width: 34px; height: 34px;
    display: grid; place-items: center;
    border: 1px solid rgba(201,169,96,0.25);
    border-radius: 50%;
    color: var(--ink-2);
    transition: 0.25s;
    font-size: 13px;
}
.header-icon-btn:hover {
    border-color: var(--gold-1);
    color: var(--gold-1);
    box-shadow: 0 0 18px rgba(244,212,123,0.35);
    transform: translateY(-1px);
}

/* ===================== HERO ===================== */

.hero {
    grid-area: hero;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 32px;
    padding: 20px 56px;
    position: relative;
    z-index: 10;
    min-height: 0;
}

.hero-left {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
    animation: fadeSlideRight 1.2s cubic-bezier(.2,.7,.2,1) 0.2s both;
    min-height: 0;
}

/* --- Hero Card (Banner visual) --- */

.hero-card {
    position: relative;
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: 620px;
    display: grid;
    place-items: center;
    will-change: transform;
}

.glow-ring {
    position: absolute;
    width: 85%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
        rgba(244,212,123,0),
        rgba(244,212,123,0.55),
        rgba(193,48,48,0.45),
        rgba(244,212,123,0),
        rgba(244,212,123,0.55),
        rgba(244,212,123,0));
    filter: blur(52px);
    opacity: 0.38;
    animation: glowRotate 16s linear infinite;
    z-index: 0;
}
.glow-ring-2 {
    width: 55%;
    filter: blur(32px);
    opacity: 0.28;
    animation-duration: 9s;
    animation-direction: reverse;
    background: conic-gradient(from 90deg, rgba(244,212,123,0), rgba(244,212,123,0.75), rgba(244,212,123,0));
}
@keyframes glowRotate {
    to { transform: rotate(360deg); }
}

/* === Character Row (yan yana statik) === */
.char-row {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 0 1% 4%;
    gap: 0;
    pointer-events: none;
    overflow: visible;
}
.char-figure {
    flex: 1 1 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    min-width: 0;
    margin: 0 -4%;
}
.char-figure:nth-child(1) { z-index: 2; }
.char-figure:nth-child(2) { z-index: 4; }
.char-figure:nth-child(3) { z-index: 3; }
.char-figure:nth-child(4) { z-index: 1; }

.char-figure img {
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 22px 26px rgba(0,0,0,0.72)) drop-shadow(0 0 18px rgba(244,212,123,0.14));
    animation: charFloat 5s ease-in-out infinite;
    user-select: none;
    -webkit-user-drag: none;
}
.char-figure:nth-child(1) img { animation-delay: 0s;    }
.char-figure:nth-child(2) img { animation-delay: 0.6s;  }
.char-figure:nth-child(3) img { animation-delay: 1.2s;  }
.char-figure:nth-child(4) img { animation-delay: 0.3s;  }

@keyframes charFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-7px); }
}

.ground-shadow {
    position: absolute;
    left: 50%;
    bottom: 6%;
    transform: translateX(-50%);
    width: 88%;
    height: 24px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.35) 50%, transparent 80%);
    filter: blur(10px);
    z-index: 1;
    pointer-events: none;
    animation: shadowPulse 5s ease-in-out infinite;
}
@keyframes shadowPulse {
    0%, 100% { transform: translateX(-50%) scale(1);    opacity: 0.8;  }
    50%      { transform: translateX(-50%) scale(0.94); opacity: 0.62; }
}

/* caption / char-info / char-dots removed — side-by-side static row */

/* card overlay / corners / shine / caption removed — clean video reveal */

/* ===================== INFO PANEL ===================== */

.hero-right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    animation: fadeSlideLeft 1.2s cubic-bezier(.2,.7,.2,1) 0.45s both;
    min-height: 0;
}

.info-panel {
    position: relative;
    width: 100%;
    max-width: 540px;
    padding: 26px 32px 24px;
    background: var(--panel-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--panel-border);
    border-radius: 2px;
    box-shadow:
        0 30px 60px rgba(0,0,0,0.55),
        inset 0 0 40px rgba(193, 48, 48, 0.06);
}

.panel-accent-top, .panel-accent-bottom {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-1), transparent);
}
.panel-accent-top    { top: -1px; }
.panel-accent-bottom { bottom: -1px; }

.info-panel::before, .info-panel::after {
    content: '';
    position: absolute;
    width: 14px; height: 14px;
    border: 1px solid var(--gold-1);
}
.info-panel::before { top: -7px;    left: -7px;    border-right: none; border-bottom: none; }
.info-panel::after  { bottom: -7px; right: -7px;   border-left: none;  border-top: none;    }

.panel-title {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 30px;
    line-height: 1.05;
    letter-spacing: 4px;
    background: linear-gradient(180deg, var(--gold-1) 0%, var(--gold-2) 60%, var(--gold-3) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.panel-title span {
    font-size: 22px;
    letter-spacing: 12px;
    display: inline-block;
    margin-top: 2px;
    opacity: 0.9;
}

/* Typewriter subtitle */
.panel-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 16px;
    color: var(--ink-2);
    margin: 8px 0 18px;
    letter-spacing: 1px;
    min-height: 24px;
    display: flex;
    align-items: center;
}
.typewriter {
    display: inline-block;
    background: linear-gradient(180deg, var(--gold-1), var(--gold-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(244,212,123,0.2);
}
.caret {
    display: inline-block;
    margin-left: 3px;
    color: var(--gold-1);
    font-style: normal;
    font-weight: 400;
    animation: caretBlink 0.9s steps(1) infinite;
    transform: translateY(-1px);
}
@keyframes caretBlink {
    50% { opacity: 0; }
}

/* Features */
.features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}
.features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 12px;
    border-left: 2px solid var(--gold-2);
    background: rgba(0, 0, 0, 0.35);
    border-radius: 0 4px 4px 0;
    transition: 0.25s;
}
.features li:hover {
    border-left-color: var(--gold-1);
    background: rgba(0, 0, 0, 0.5);
    transform: translateX(4px);
}
.feat-icon {
    width: 30px; height: 30px;
    display: grid; place-items: center;
    border: 1px solid rgba(244, 212, 123, 0.35);
    border-radius: 50%;
    color: var(--gold-1);
    font-size: 12px;
    background: rgba(244, 212, 123, 0.05);
    flex-shrink: 0;
}
.feat-text { display: flex; flex-direction: column; line-height: 1.2; }
.feat-text strong {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--gold-1);
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.feat-text span {
    font-size: 11px;
    color: var(--ink-1);
    margin-top: 2px;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* Countdown mini badge */
.countdown-badge {
    display: grid;
    grid-template-columns: auto auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 2px;
    align-items: center;
    padding: 10px 14px;
    margin-bottom: 16px;
    border: 1px solid rgba(193, 48, 48, 0.45);
    background:
        linear-gradient(90deg, rgba(193, 48, 48, 0.18), rgba(193, 48, 48, 0.04)),
        rgba(10, 6, 8, 0.5);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}
.countdown-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(244,212,123,0.12), transparent);
    transform: translateX(-100%);
    animation: shimmer 4s infinite;
}
@keyframes shimmer {
    to { transform: translateX(100%); }
}
.cd-label {
    grid-column: 1; grid-row: 1;
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--ink-3);
}
.cd-days {
    grid-column: 2; grid-row: 1 / span 2;
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 36px;
    line-height: 1;
    color: var(--gold-1);
    text-shadow: 0 0 14px rgba(244,212,123,0.45);
}
.cd-sub {
    grid-column: 1; grid-row: 2;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--ink-2);
}
.cd-date {
    grid-column: 3; grid-row: 1 / span 2;
    justify-self: end;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--ink-2);
    text-align: right;
    font-family: 'Inter', sans-serif;
}

/* CTA row */
.cta-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 3px;
    border-radius: 2px;
    transition: 0.28s ease;
    cursor: url('images/cursors/cursor5.cur'), pointer;
    overflow: hidden;
    border: 1px solid transparent;
}
.btn i { font-size: 12px; }
.btn-primary {
    flex: 1 1 200px;
    background: linear-gradient(180deg, var(--gold-1), var(--gold-2));
    color: #1a0a0a;
    border-color: var(--gold-1);
    box-shadow: 0 8px 24px rgba(244, 212, 123, 0.25), inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(244, 212, 123, 0.45), inset 0 1px 0 rgba(255,255,255,0.45);
    filter: brightness(1.05);
}
.btn-ghost {
    flex: 0 1 auto;
    color: var(--ink-1);
    background: rgba(0,0,0,0.25);
    border-color: rgba(201, 169, 96, 0.4);
}
.btn-ghost:hover {
    border-color: var(--gold-1);
    color: var(--gold-1);
    background: rgba(244, 212, 123, 0.08);
    box-shadow: 0 0 18px rgba(244,212,123,0.2);
    transform: translateY(-2px);
}
.btn::after {
    content: '';
    position: absolute; top: 0; left: -75%;
    width: 50%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: skewX(-20deg);
    transition: 0.6s;
}
.btn:hover::after { left: 130%; }

/* ===================== FORTRESS STRIP ===================== */

.fortress-strip {
    grid-area: fortress;
    position: relative;
    z-index: 10;
    padding: 0 56px;
    display: flex;
    align-items: center;
    gap: 22px;
    border-top: 1px solid rgba(201, 169, 96, 0.12);
    border-bottom: 1px solid rgba(201, 169, 96, 0.12);
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    animation: fadeUp 1.2s ease-out 0.8s both;
}
.fs-label {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--ink-3);
    min-width: 64px;
}
.fs-items {
    flex: 1;
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scrollbar-width: none;
}
.fs-items::-webkit-scrollbar { display: none; }
.fs-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: 0.3s;
    cursor: url('images/cursors/cursor5.cur'), pointer;
    flex: 0 0 auto;
}
.fs-item img {
    width: 28px; height: 28px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(0,0,0,0.8));
    transition: 0.3s;
}
.fs-item span {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--ink-2);
    transition: 0.3s;
}
.fs-item:hover {
    border-color: rgba(244, 212, 123, 0.4);
    background: rgba(244, 212, 123, 0.05);
}
.fs-item:hover img {
    filter: drop-shadow(0 0 10px rgba(244,212,123,0.7));
    transform: scale(1.08);
}
.fs-item:hover span { color: var(--gold-1); }

/* ===================== FOOTER ===================== */

.site-footer {
    grid-area: footer;
    position: relative;
    z-index: 10;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(201, 169, 96, 0.12);
}
.sponsors {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;
    overflow: hidden;
}
.sp-label {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--ink-3);
    flex-shrink: 0;
}
.sponsors a {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    cursor: url('images/cursors/cursor5.cur'), pointer;
}
.sponsors img {
    height: 20px;
    width: auto;
    opacity: 0.5;
    transition: 0.3s;
    filter: grayscale(0.3);
}
.sponsors a:hover img {
    opacity: 1;
    filter: grayscale(0);
    transform: translateY(-2px);
}
.ga-watermark {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--ink-3);
    transition: 0.3s;
    flex-shrink: 0;
}
.ga-watermark:hover { color: var(--gold-1); }

/* ===================== ANIMATIONS ===================== */

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideRight {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeSlideLeft {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ===================== RESPONSIVE ===================== */

@media (max-height: 760px) {
    :root { --h-header: 56px; --h-fortress: 50px; --h-footer: 36px; }
    .hero { padding: 14px 48px; gap: 24px; }
    .info-panel { padding: 20px 26px 20px; }
    .panel-title { font-size: 26px; letter-spacing: 3px; }
    .panel-title span { font-size: 19px; letter-spacing: 10px; }
    .panel-subtitle { font-size: 15px; margin: 6px 0 14px; min-height: 22px; }
    .features { gap: 6px; margin-bottom: 12px; }
    .features li { padding: 5px 10px; }
    .feat-icon { width: 26px; height: 26px; font-size: 11px; }
    .feat-text strong { font-size: 12px; }
    .feat-text span { font-size: 10px; }
    .countdown-badge { padding: 8px 12px; margin-bottom: 12px; }
    .cd-days { font-size: 30px; }
    .btn { padding: 9px 14px; font-size: 10px; }
    .hero-card { max-height: 420px; }
}

@media (max-height: 640px) {
    :root { --h-header: 50px; --h-fortress: 42px; --h-footer: 32px; }
    .hero { padding: 8px 40px; gap: 18px; }
    .info-panel { padding: 14px 20px 14px; }
    .panel-title { font-size: 22px; letter-spacing: 2px; }
    .panel-title span { font-size: 16px; letter-spacing: 8px; }
    .panel-subtitle { font-size: 13px; margin: 4px 0 10px; }
    .features { gap: 4px; margin-bottom: 10px; }
    .features li { padding: 4px 8px; }
    .feat-icon { width: 22px; height: 22px; font-size: 10px; }
    .feat-text strong { font-size: 11px; letter-spacing: 1.5px; }
    .feat-text span { font-size: 9px; }
    .countdown-badge { padding: 6px 10px; margin-bottom: 10px; }
    .cd-days { font-size: 24px; }
    .cd-label, .cd-sub, .cd-date { font-size: 9px; }
    .btn { padding: 8px 12px; font-size: 9px; letter-spacing: 2px; }
    .hero-card { max-height: 340px; }
}

@media (max-width: 1200px) {
    .hero { padding-left: 40px; padding-right: 40px; gap: 24px; }
    .site-header { padding: 0 28px; }
    .fortress-strip { padding: 0 40px; }
    .site-footer { padding: 0 28px; }
}

@media (max-width: 1024px) {
    .hero { grid-template-columns: 45% 55%; }
    .panel-title { font-size: 24px; letter-spacing: 3px; }
    .panel-title span { font-size: 17px; letter-spacing: 8px; }
    .hero-card { max-height: 400px; }
}

@media (max-width: 860px) {
    html, body { height: auto; overflow: auto; }
    body {
        grid-template-rows: var(--h-header) auto auto auto;
    }
    .site-header { padding: 0 16px; }
    .server-status { padding: 4px 9px 4px 8px; gap: 7px; min-height: 30px; }
    .srv-label { font-size: 9px; letter-spacing: 1.5px; }
    .srv-count { font-size: 8px; }
    .hero {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 16px 16px 24px;
    }
    .hero-left { order: 1; height: auto; }
    .hero-right { order: 2; height: auto; }
    .hero-card { max-height: 280px; height: 260px; max-width: 100%; }
    .info-panel { max-width: 100%; }
    .fortress-strip {
        padding: 10px 16px;
        flex-direction: column;
        align-items: stretch;
        height: auto;
        gap: 10px;
    }
    .fs-label { min-width: auto; }
    .site-footer {
        padding: 12px 16px;
        flex-direction: column;
        text-align: center;
        height: auto;
    }
    .sponsors { justify-content: center; flex-wrap: wrap; }
    .cta-row .btn-primary { flex: 1 1 100%; }
}
