/* ============================================================
   SERVER STAGES  —  two-stage launch roadmap (below the hero)
   ============================================================ */
.st-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0;
    background: #0a0b0d;
    overflow: hidden;
}
.st-section::before,
.st-section::after {
    content: "";
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    z-index: 4;
    background: linear-gradient(90deg, transparent, rgba(209, 155, 37, .45), transparent);
}
.st-section::before { top: 0; }
.st-section::after  { bottom: 0; }

/* ---- fading background slideshow (shared across stages) ---- */
.st-slideshow { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.st-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.6s ease-in-out, transform 6s ease-out;
    will-change: opacity;
}
.st-slide.active { opacity: 1; transform: scale(1); }
.st-video-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        radial-gradient(1000px 560px at 50% 42%, rgba(8, 10, 14, .5), rgba(8, 10, 14, .86) 92%),
        linear-gradient(180deg, rgba(8, 10, 14, .9) 0%, rgba(8, 10, 14, .68) 45%, rgba(8, 10, 14, .92) 100%);
}
.st-content { position: relative; z-index: 2; width: 100%; }

@media (max-width: 767px) {
    .st-section { min-height: auto; }
}

/* ---- header ---- */
.st-header { text-align: center; margin-bottom: 40px; }
.st-eyebrow { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.st-eyebrow-line { width: 46px; height: 1px; background: linear-gradient(90deg, transparent, var(--secondary-color, #d19b25)); }
.st-eyebrow-line:last-child { background: linear-gradient(90deg, var(--secondary-color, #d19b25), transparent); }
.st-eyebrow-text { font-family: "Oxanium", sans-serif; letter-spacing: .3em; font-size: 12px; font-weight: 700; color: var(--secondary-color, #d19b25); text-transform: uppercase; }
.st-title { font-family: "Oxanium", sans-serif; font-weight: 800; font-size: 40px; color: #fff; margin: 0 0 12px; }
.st-subtitle { max-width: 640px; margin: 0 auto; color: #9c9c9c; font-size: 15px; line-height: 1.6; }

/* ---- tabs ---- */
.st-tabs { display: flex; align-items: stretch; gap: 12px; max-width: 1040px; margin: 0 auto 26px; }
.st-tab {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    cursor: pointer;
    text-align: left;
    transition: all .16s ease;
}
.st-tab-num { font-family: "Oxanium", sans-serif; font-weight: 800; font-size: 26px; color: rgba(209, 155, 37, .4); line-height: 1; flex: 0 0 auto; }
.st-tab-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.st-tab-name { font-family: "Oxanium", sans-serif; font-weight: 700; font-size: 15.5px; color: #eaeaea; white-space: nowrap; }
.st-tab-when { font-family: "Oxanium", sans-serif; font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--secondary-color, #d19b25); white-space: nowrap; }
.st-tab:hover { border-color: rgba(209, 155, 37, .4); background: rgba(209, 155, 37, .06); }
.st-tab.active {
    border-color: rgba(209, 155, 37, .55);
    background: linear-gradient(180deg, rgba(209, 155, 37, .16), rgba(209, 155, 37, .05));
    box-shadow: 0 8px 26px -12px rgba(184, 114, 30, .7);
}
.st-tab.active .st-tab-num { color: var(--secondary-color, #d19b25); }
.st-tab.active .st-tab-name { color: #fff; }

/* ---- panels ---- */
.st-panels { max-width: 820px; margin: 0 auto; }
.st-panel {
    display: none;
    position: relative;
    background:
        radial-gradient(600px 220px at 15% 0%, rgba(209, 155, 37, .08), transparent 70%),
        linear-gradient(180deg, #101114, #0d0e10);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    padding: 34px 38px;
    overflow: hidden;
}
.st-panel.active { display: block; animation: st-fade .35s ease; }
@keyframes st-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.st-panel-badge {
    position: absolute;
    top: 8px; right: 24px;
    font-family: "Oxanium", sans-serif;
    font-weight: 800;
    font-size: 120px;
    line-height: 1;
    color: rgba(209, 155, 37, .06);
    pointer-events: none;
    user-select: none;
}
.st-panel-when {
    font-family: "Oxanium", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--secondary-color, #d19b25);
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid rgba(209, 155, 37, .35);
    border-radius: 20px;
    margin-bottom: 14px;
}
.st-panel-title { font-family: "Oxanium", sans-serif; font-weight: 800; font-size: 26px; color: #fff; margin: 0 0 12px; position: relative; }
.st-panel-desc { color: #b9b9bd; font-size: 15px; line-height: 1.65; margin: 0 0 20px; position: relative; }

.st-points { display: flex; flex-direction: column; gap: 11px; position: relative; }
.st-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, .025);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 9px;
    color: #d1d1d1;
    font-size: 14.5px;
    line-height: 1.55;
}
.st-point > i { color: var(--secondary-color, #d19b25); font-size: 14px; margin-top: 3px; flex: 0 0 auto; }
.st-point strong { color: #fff; }

/* PvP warning callout */
.st-warn {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 9px;
    background: rgba(224, 56, 79, .10);
    border: 1px solid rgba(224, 56, 79, .35);
    border-left: 3px solid #e0384f;
    color: #f0d2d6;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
}
.st-warn > i { color: #ff7183; font-size: 16px; margin-top: 2px; flex: 0 0 auto; }
.st-warn strong { color: #fff; }

@media (max-width: 767px) {
    .st-section { padding: 60px 0 70px; }
    .st-title { font-size: 30px; }
    .st-tabs { flex-direction: column; gap: 12px; }
    .st-panel { padding: 26px 22px; }
    .st-panel-badge { font-size: 84px; top: 6px; right: 16px; }
}
