
:root {
    --bg: #0b0e0a;
    --panel: #121710;
    --panel-2: #1a2117;
    --olive: #8a9b55;
    --olive-bright: #c0d86c;
    --amber: #e4b54c;
    --cream: #e9e6d5;
    --muted: #9ca38f;
    --line: rgba(192, 216, 108, .18);
    --danger: #df6d57;
    --shadow: 0 24px 70px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--cream);
    background:
        radial-gradient(circle at 10% 0%, rgba(99,118,58,.16), transparent 32rem),
        linear-gradient(180deg, #0c100b 0%, #090b08 100%);
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.55;
}
button, a { font: inherit; }
a { color: inherit; }
code, kbd {
    font-family: Consolas, "Courier New", monospace;
}
.scanlines {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    opacity: .055;
    background: repeating-linear-gradient(
        0deg,
        transparent 0,
        transparent 3px,
        rgba(255,255,255,.22) 4px
    );
}
.topbar {
    height: 76px;
    padding: 0 clamp(20px, 5vw, 74px);
    display: flex;
    align-items: center;
    gap: 32px;
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(8, 11, 7, .88);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--line);
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: var(--olive-bright);
    color: #0c100b;
    font-weight: 900;
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}
.brand strong, .brand small { display: block; }
.brand strong { letter-spacing: .08em; }
.brand small { color: var(--muted); font-size: .72rem; }
.nav {
    display: flex;
    gap: 24px;
    margin-left: auto;
}
.nav a {
    text-decoration: none;
    color: #c9cdbf;
    font-size: .88rem;
}
.nav a:hover { color: var(--olive-bright); }
.top-status {
    font: 700 .75rem Consolas, monospace;
    color: var(--olive-bright);
    border: 1px solid var(--line);
    padding: 8px 11px;
}
.top-status i {
    width: 7px;
    height: 7px;
    background: var(--olive-bright);
    display: inline-block;
    border-radius: 50%;
    margin-right: 7px;
    box-shadow: 0 0 12px var(--olive-bright);
}
.nav-toggle {
    display: none;
    margin-left: auto;
    background: none;
    border: 1px solid var(--line);
    color: var(--cream);
    padding: 7px 10px;
}
.hero {
    min-height: calc(100vh - 76px);
    position: relative;
    overflow: hidden;
    padding: clamp(50px, 8vw, 105px) clamp(20px, 6vw, 90px) 74px;
    background:
        linear-gradient(90deg, rgba(8,11,7,.98) 0%, rgba(8,11,7,.78) 48%, rgba(8,11,7,.88) 100%),
        radial-gradient(circle at 72% 45%, rgba(134,157,76,.22), transparent 25rem),
        linear-gradient(135deg, #171d13, #0a0d09 66%);
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .18;
    background:
        linear-gradient(115deg, transparent 0 52%, rgba(192,216,108,.07) 52% 53%, transparent 53%),
        repeating-linear-gradient(90deg, transparent 0 90px, rgba(255,255,255,.018) 91px);
}
.hero-grid {
    max-width: 1480px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
    gap: clamp(35px, 7vw, 110px);
    align-items: center;
}
.eyebrow, .section-heading > span {
    color: var(--amber);
    font: 700 .76rem Consolas, monospace;
    letter-spacing: .2em;
}
.hero h1 {
    margin: 14px 0 22px;
    font-size: clamp(4rem, 9.8vw, 9rem);
    line-height: .79;
    letter-spacing: -.075em;
    font-weight: 1000;
}
.hero h1 span {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--olive-bright);
    text-shadow: 0 0 35px rgba(192,216,108,.12);
}
.lead {
    max-width: 690px;
    color: #c0c5b7;
    font-size: clamp(1rem, 1.4vw, 1.17rem);
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}
.button {
    border: 1px solid var(--line);
    padding: 13px 18px;
    text-decoration: none;
    cursor: pointer;
    font-weight: 800;
    letter-spacing: .03em;
    transition: .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--olive-bright); color: #0a0d08; border-color: var(--olive-bright); }
.button.secondary { background: var(--amber); color: #121008; border-color: var(--amber); }
.button.ghost { background: rgba(255,255,255,.025); color: var(--cream); }
.connect-strip, .mini-command, .cta-command {
    margin-top: 25px;
    display: flex;
    align-items: stretch;
    max-width: 700px;
    border: 1px solid var(--line);
    background: rgba(0,0,0,.25);
}
.connect-strip span {
    display: grid;
    place-items: center;
    padding: 0 14px;
    color: var(--muted);
    font: 700 .68rem Consolas, monospace;
    border-right: 1px solid var(--line);
}
.connect-strip code, .mini-command code, .cta-command code {
    flex: 1;
    padding: 14px;
    color: var(--olive-bright);
    overflow-x: auto;
}
.connect-strip button, .mini-command button, .cta-command button {
    border: 0;
    border-left: 1px solid var(--line);
    background: transparent;
    color: var(--amber);
    padding: 0 15px;
    cursor: pointer;
    font: 800 .72rem Consolas, monospace;
}
.server-card {
    background: linear-gradient(180deg, rgba(25,32,22,.96), rgba(13,17,12,.97));
    border: 1px solid rgba(192,216,108,.23);
    box-shadow: var(--shadow);
    position: relative;
}
.server-card::before {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(255,255,255,.035);
    pointer-events: none;
}
.server-card-head {
    padding: 22px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
}
.server-card-head small { color: var(--amber); font: 700 .68rem Consolas, monospace; }
.server-card-head h2 { margin: 7px 0 0; font-size: 1.05rem; }
.badge {
    padding: 6px 8px;
    font: 800 .66rem Consolas, monospace;
    border: 1px solid;
}
.badge.online { color: var(--olive-bright); border-color: var(--olive-bright); }
.badge.offline { color: var(--danger); border-color: var(--danger); }
.badge.loading { color: var(--amber); border-color: var(--amber); }
.status-grid {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.status-grid div {
    padding: 17px 20px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.status-grid dt { color: var(--muted); font: 700 .64rem Consolas, monospace; }
.status-grid dd { margin: 5px 0 0; font-weight: 800; font-size: .88rem; }
.players-panel { padding: 20px; }
.panel-title {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font: 700 .62rem Consolas, monospace;
}
.player-list { margin-top: 14px; max-height: 175px; overflow: auto; }
.player {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255,255,255,.08);
}
.player span:last-child { color: var(--amber); font: .75rem Consolas, monospace; }
.muted { color: var(--muted); }
.radar {
    width: 330px;
    height: 330px;
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(192,216,108,.11);
    opacity: .28;
}
.radar::before, .radar::after {
    content: "";
    position: absolute;
    inset: 50% 0 auto;
    border-top: 1px solid rgba(192,216,108,.12);
}
.radar::after { transform: rotate(90deg); }
.radar span, .radar b {
    position: absolute;
    border: 1px solid rgba(192,216,108,.11);
    border-radius: 50%;
}
.radar span { inset: 25%; }
.radar b { inset: 40%; }
.radar i {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(192,216,108,.33), transparent 20%, transparent 100%);
    animation: sweep 6s linear infinite;
}
.radar-one { right: -110px; top: -75px; }
.radar-two { left: -180px; bottom: -90px; transform: scale(.65); }
@keyframes sweep { to { transform: rotate(360deg); } }
.ticker {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 42px;
    overflow: hidden;
    border-top: 1px solid var(--line);
    background: rgba(0,0,0,.28);
}
.ticker-track {
    width: max-content;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 45px;
    animation: ticker 24s linear infinite;
    font: 700 .68rem Consolas, monospace;
    color: #bcc5a9;
}
@keyframes ticker { to { transform: translateX(-50%); } }
.section {
    padding: clamp(70px, 9vw, 125px) clamp(20px, 6vw, 90px);
    max-width: 1600px;
    margin: 0 auto;
}
.section-dark {
    max-width: none;
    background: #10140e;
    border-top: 1px solid rgba(255,255,255,.035);
    border-bottom: 1px solid rgba(255,255,255,.035);
}
.section-dark > * { max-width: 1420px; margin-left: auto; margin-right: auto; }
.section-heading { max-width: 770px; margin-bottom: 42px; }
.section-heading h2 {
    margin: 8px 0 10px;
    font-size: clamp(2.2rem, 5vw, 4.7rem);
    line-height: .95;
    letter-spacing: -.045em;
}
.section-heading p { color: var(--muted); }
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
}
.steps article {
    min-height: 290px;
    padding: 28px;
    border-right: 1px solid var(--line);
    position: relative;
}
.steps article:last-child { border-right: 0; }
.step-number {
    display: block;
    color: var(--olive-bright);
    font: 900 2.2rem Consolas, monospace;
    opacity: .65;
}
.steps h3 { margin-top: 38px; }
.steps p { color: var(--muted); }
.steps a { color: var(--amber); text-decoration: none; }
.mini-command { margin-top: 15px; font-size: .75rem; }
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.feature-card {
    min-height: 250px;
    padding: 26px;
    background: linear-gradient(145deg, #1a2017, #121610);
    border: 1px solid var(--line);
}
.feature-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid var(--olive-bright);
    color: var(--olive-bright);
    font: 900 .85rem Consolas, monospace;
}
.feature-card p { color: var(--muted); }
.bridge-diagram {
    margin-top: 20px;
    padding: 28px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 18px;
    border: 1px solid var(--line);
    background: rgba(0,0,0,.18);
}
.bridge-diagram div { text-align: center; }
.bridge-diagram strong, .bridge-diagram span { display: block; }
.bridge-diagram span { color: var(--muted); font-size: .77rem; }
.bridge-diagram i { color: var(--amber); }
.bot-grid, .map-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.bot-grid article {
    padding: 27px;
    min-height: 190px;
    border: 1px solid var(--line);
    background:
        linear-gradient(135deg, rgba(192,216,108,.06), transparent 60%),
        var(--panel);
    position: relative;
}
.bot-grid article > span {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--amber);
    font: 800 .7rem Consolas, monospace;
}
.bot-grid h3 { margin: 33px 0 4px; font-size: 1.6rem; }
.bot-grid p { color: var(--muted); }
.bot-grid b { color: var(--olive-bright); font: .75rem Consolas, monospace; }
.map {
    min-height: 240px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid var(--line);
    overflow: hidden;
    position: relative;
    background:
        linear-gradient(0deg, rgba(5,7,5,.96), rgba(5,7,5,.15)),
        linear-gradient(135deg, #687047, #20291a);
}
.map::before {
    content: "";
    position: absolute;
    inset: -20%;
    background: repeating-linear-gradient(120deg, transparent 0 35px, rgba(255,255,255,.035) 36px 37px);
    transform: rotate(6deg);
}
.map span, .map small { position: relative; z-index: 1; }
.map span { font-size: 1.8rem; font-weight: 900; }
.map small { color: #b8c0ac; }
.map.inferno { background-color: #503927; }
.map.nuke { background-color: #2b4b50; }
.map.train { background-color: #4b4936; }
.map.aztec { background-color: #455735; }
.map.cbble { background-color: #5b4635; }
.download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}
.download-card {
    padding: 28px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    background: var(--panel);
}
.download-card.featured { border-color: var(--olive-bright); }
.download-card small { color: var(--amber); font: 700 .68rem Consolas, monospace; }
.download-card p { color: var(--muted); }
.download-card a {
    margin-top: auto;
    text-decoration: none;
    color: var(--olive-bright);
    font-weight: 800;
}
.requirements {
    margin-top: 18px;
    border: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1.4fr repeat(5, 1fr);
}
.requirements h3, .requirements div { margin: 0; padding: 18px; border-right: 1px solid var(--line); }
.requirements span, .requirements strong { display: block; }
.requirements span { color: var(--muted); font: .65rem Consolas, monospace; }
.requirements strong { margin-top: 5px; font-size: .82rem; }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
    cursor: pointer;
    padding: 22px 4px;
    font-weight: 800;
    list-style: none;
}
.faq summary::after { content: "+"; float: right; color: var(--amber); }
.faq details[open] summary::after { content: "−"; }
.faq p { max-width: 850px; color: var(--muted); padding-bottom: 20px; }
.cta {
    padding: clamp(85px, 11vw, 150px) 20px;
    text-align: center;
    background:
        radial-gradient(circle, rgba(192,216,108,.12), transparent 35rem),
        #0b0e0a;
}
.cta p { color: var(--amber); font: 800 .75rem Consolas, monospace; letter-spacing: .2em; }
.cta h2 { margin: 10px 0 28px; font-size: clamp(3rem, 8vw, 7.4rem); line-height: .9; }
.cta-command { max-width: 630px; margin: 0 auto; text-align: left; }
footer {
    padding: 28px clamp(20px, 6vw, 90px);
    display: flex;
    justify-content: space-between;
    gap: 25px;
    color: var(--muted);
    border-top: 1px solid var(--line);
    font-size: .78rem;
}
footer strong, footer span { margin-right: 15px; }
.toast {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 120;
    background: var(--olive-bright);
    color: #0a0d08;
    padding: 12px 16px;
    font-weight: 900;
    transform: translateY(90px);
    opacity: 0;
    transition: .25s ease;
}
.toast.show { transform: translateY(0); opacity: 1; }

@media (max-width: 1050px) {
    .hero-grid { grid-template-columns: 1fr; }
    .server-card { max-width: 720px; }
    .steps, .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .steps article:nth-child(2) { border-right: 0; }
    .steps article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .bridge-diagram { grid-template-columns: 1fr; }
    .bridge-diagram i { transform: rotate(90deg); }
    .requirements { grid-template-columns: repeat(2, 1fr); }
    .requirements h3 { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
    .topbar { height: 68px; padding: 0 18px; }
    .top-status { display: none; }
    .nav-toggle { display: block; }
    .nav {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        padding: 18px;
        flex-direction: column;
        background: #0b0e0a;
        border-bottom: 1px solid var(--line);
    }
    .nav.open { display: flex; }
    .hero { min-height: auto; padding: 70px 18px 82px; }
    .hero h1 { font-size: clamp(3.4rem, 20vw, 6rem); }
    .connect-strip span { display: none; }
    .server-card-head { flex-direction: column; gap: 12px; }
    .steps, .feature-grid, .bot-grid, .map-grid, .download-grid { grid-template-columns: 1fr; }
    .steps article { border-right: 0; border-bottom: 1px solid var(--line); }
    .steps article:last-child { border-bottom: 0; }
    .section { padding-left: 18px; padding-right: 18px; }
    .requirements { grid-template-columns: 1fr; }
    .requirements h3 { grid-column: auto; }
    .requirements h3, .requirements div { border-right: 0; border-bottom: 1px solid var(--line); }
    footer { flex-direction: column; }
}
