:root {
    --bg: #0a0512;
    --bg-2: #120a1f;
    --surface: #170e28;
    --surface-2: #1e1233;
    --border: rgba(168, 85, 247, 0.16);
    --border-strong: rgba(168, 85, 247, 0.4);
    --accent: #a855f7;
    --accent-2: #d946ef;
    --accent-dim: #7e22ce;
    --accent-glow: rgba(168, 85, 247, 0.45);
    --text: #ede9f5;
    --muted: #a598b8;
    --muted-2: #6b5f80;
    --gold: #ffd166;
    --silver: #d4d4dc;
    --bronze: #e0995a;
    --nav-h: 76px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Manrope', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 900px 500px at 85% -5%, rgba(217, 70, 239, 0.16), transparent 60%),
        radial-gradient(ellipse 700px 500px at -5% 30%, rgba(168, 85, 247, 0.14), transparent 60%),
        radial-gradient(ellipse 800px 600px at 50% 110%, rgba(126, 34, 206, 0.12), transparent 60%);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; }

::selection { background: var(--accent); color: #0a0512; }

/* ---------- Top Nav ---------- */
.topnav {
    position: sticky;
    top: 0;
    z-index: 200;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    background: rgba(10, 5, 18, 0.72);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 19px;
    letter-spacing: 0.2px;
}

.nav-brand .mark {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #0a0512;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 0 22px var(--accent-glow);
}

.nav-brand .season {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--accent-2);
    background: rgba(217, 70, 239, 0.12);
    border: 1px solid rgba(217, 70, 239, 0.3);
    padding: 3px 9px;
    border-radius: 20px;
    margin-left: 4px;
    letter-spacing: 0.5px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 5px;
    border-radius: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-size: 13.5px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 30px;
    transition: 0.2s ease;
}

.nav-links a:hover { color: var(--text); background: rgba(255, 255, 255, 0.04); }

.nav-links a.current {
    color: #0a0512;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.nav-ip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 9px 16px;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12.5px;
    color: var(--accent-2);
    font-weight: 600;
    transition: 0.2s ease;
}

.nav-ip:hover { border-color: var(--border-strong); }
.nav-ip i { font-size: 11px; color: var(--muted-2); }

.nav-toggle {
    display: none;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
}

.mobile-drop {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: rgba(10, 5, 18, 0.96);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    padding: 14px 20px 20px;
    position: sticky;
    top: var(--nav-h);
    z-index: 199;
}

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

.mobile-drop a {
    text-decoration: none;
    color: var(--muted);
    font-size: 14.5px;
    font-weight: 600;
    padding: 13px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-drop a.current { color: var(--accent-2); background: rgba(217, 70, 239, 0.1); }

/* ---------- Layout shell ---------- */
.shell {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ---------- Hero ---------- */
.hero {
    padding: 100px 0 70px;
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--accent-2);
    background: rgba(217, 70, 239, 0.1);
    border: 1px solid rgba(217, 70, 239, 0.32);
    padding: 7px 16px;
    border-radius: 30px;
    margin-bottom: 26px;
    width: fit-content;
}

.hero-eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 10px var(--accent-2);
    animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-family: 'Sora', sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -1.5px;
    margin-bottom: 22px;
}

.hero-title .grad {
    background: linear-gradient(120deg, var(--accent), var(--accent-2) 60%, #f0abfc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-sub {
    font-size: 16px;
    color: var(--muted);
    max-width: 480px;
    line-height: 1.75;
    margin-bottom: 34px;
}

.hero-sub strong { color: var(--text); }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-nyx {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #0a0512;
    text-decoration: none;
    font-weight: 700;
    font-size: 14.5px;
    padding: 15px 28px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    transition: 0.2s ease;
}

.btn-nyx:hover { transform: translateY(-3px); box-shadow: 0 14px 34px var(--accent-glow); }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 14.5px;
    padding: 15px 26px;
    border-radius: 14px;
    border: 1px solid var(--border);
    transition: 0.2s ease;
}

.btn-ghost:hover { border-color: var(--border-strong); background: rgba(168, 85, 247, 0.06); }

/* Orb graphic, replaces the hexagon reactor look entirely */
.orb-wrap {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-core {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #f0abfc, var(--accent-2) 40%, var(--accent-dim) 75%, #2e1065 100%);
    box-shadow: 0 0 90px var(--accent-glow), 0 0 160px rgba(168, 85, 247, 0.2), inset -20px -20px 50px rgba(0,0,0,0.35);
    animation: orb-float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes orb-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-16px); }
}

.orb-ring {
    position: absolute;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    opacity: 0.6;
}

.orb-ring.r1 { width: 260px; height: 260px; animation: spin-cw 22s linear infinite; border-style: dashed; }
.orb-ring.r2 { width: 330px; height: 330px; animation: spin-ccw 30s linear infinite; }
.orb-ring.r3 { width: 380px; height: 90px; border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-18deg); animation: spin-cw 18s linear infinite; opacity: 0.35; }

@keyframes spin-cw { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes spin-ccw { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

.orb-particle {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #f0abfc;
    box-shadow: 0 0 8px #f0abfc;
}

@media (prefers-reduced-motion: reduce) {
    .orb-core, .orb-ring, .hero-eyebrow .dot { animation: none; }
}

/* ---------- Stat strip, diagonal card row instead of a boxed grid ---------- */
.stat-strip {
    display: flex;
    gap: 14px;
    margin-bottom: 90px;
    flex-wrap: wrap;
}

.stat-pill {
    flex: 1;
    min-width: 140px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px 22px;
    position: relative;
    overflow: hidden;
}

.stat-pill::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -20%;
    width: 100px;
    height: 100px;
    background: var(--accent);
    filter: blur(50px);
    opacity: 0.25;
}

.stat-pill .num {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-2);
    position: relative;
}

.stat-pill .lbl {
    font-size: 11.5px;
    color: var(--muted-2);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
    position: relative;
}

/* ---------- Section ---------- */
.section { padding: 0 0 90px; position: relative; }

.section-head { margin-bottom: 34px; display: flex; align-items: baseline; gap: 16px; }

.section-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--accent-2);
    letter-spacing: 1px;
}

.section-title {
    font-family: 'Sora', sans-serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--border-strong), transparent); }

/* ---------- FAQ accordion, different interaction than CoreSMP's flat list ---------- */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 760px; }

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-weight: 700;
    font-size: 15px;
    padding: 18px 22px;
    cursor: pointer;
}

.faq-q i.q-icon { color: var(--accent-2); font-size: 14px; transition: transform 0.25s ease; }
.faq-item.open .q-icon { transform: rotate(45deg); }

.faq-a {
    font-size: 13.5px;
    color: var(--muted);
    padding: 0 22px;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-a { padding: 0 22px 20px; max-height: 200px; }

/* ---------- Status panel, radial instead of boxed rows ---------- */
.status-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 30px 32px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 26px;
    align-items: center;
}

.status-orb-mini {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #f0abfc, var(--accent-2) 45%, var(--accent-dim) 100%);
    box-shadow: 0 0 34px var(--accent-glow);
    flex-shrink: 0;
}

.status-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 30px; }

.status-unit .status-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted-2);
    margin-bottom: 6px;
}

.status-unit .status-value { font-size: 14.5px; font-weight: 700; }

.status-online { color: #34d399; }
.status-offline { color: #fb7185; }
.status-loading { color: var(--muted-2); font-style: italic; font-weight: 500; }

.motd-box p { margin: 0; line-height: 1.4; }

/* ---------- Players, horizontal scroll row instead of a grid ---------- */
.players-row {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.players-row::-webkit-scrollbar { height: 6px; }
.players-row::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 4px; }

.player-chip {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 10px 18px;
    font-size: 13.5px;
    font-weight: 600;
    white-space: nowrap;
}

.player-chip .glow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 6px #34d399;
}

/* ---------- Rules, staggered/offset accordion layout, distinctly not a 4-card grid ---------- */
.rules-wrap { padding: 0 0 90px; }

.rules-stack { display: flex; flex-direction: column; gap: 14px; max-width: 880px; }

.rules-block {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 26px 28px;
}

.rules-block:nth-child(even) { margin-left: 40px; }

.rules-block-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.rules-block-head .idx {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.18), rgba(217, 70, 239, 0.1));
    border: 1px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-2);
    font-size: 16px;
    flex-shrink: 0;
}

.rules-block-head h3 { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; }

.rules-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.rules-tags span {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--muted);
    background: var(--surface-2);
    border: 1px solid var(--border);
    padding: 7px 14px;
    border-radius: 20px;
}

.rules-note {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-2);
    font-size: 13px;
    margin-top: 8px;
    padding: 14px 18px;
    background: rgba(217, 70, 239, 0.06);
    border: 1px solid rgba(217, 70, 239, 0.25);
    border-radius: 12px;
}

.warn-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, rgba(217, 70, 239, 0.1), transparent);
    border-left: 3px solid var(--accent-2);
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 13.5px;
    color: var(--text);
    margin-top: 18px;
    max-width: 880px;
}

/* ---------- Members, horizontal role rail ---------- */
.role-rail { display: flex; flex-direction: column; gap: 22px; }

.role-group-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.role-group-title::after { content: ""; flex: 1; height: 1px; background: var(--border); }

.member-strip { display: flex; gap: 12px; flex-wrap: wrap; }

.member-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px 20px 12px 12px;
    transition: 0.2s ease;
}

.member-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }

.member-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: #0a0512;
    font-size: 15px;
    flex-shrink: 0;
}

.member-name { font-weight: 700; font-size: 14.5px; }
.member-role { font-size: 11.5px; color: var(--muted-2); }

/* owner gets a slightly bigger highlighted treatment */
.role-group.owner-group .member-card {
    border-color: var(--border-strong);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), var(--surface));
}

.role-group.owner-group .member-avatar {
    width: 48px;
    height: 48px;
    box-shadow: 0 0 20px var(--accent-glow);
}

/* ---------- Leaderboard, tab pill switcher ---------- */
.lb-tabs { display: inline-flex; gap: 6px; background: var(--surface); border: 1px solid var(--border); padding: 5px; border-radius: 30px; margin-bottom: 26px; }

.lb-tab {
    background: none;
    border: none;
    color: var(--muted);
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s ease;
}

.lb-tab.active { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #0a0512; }

.lb-container { display: none; flex-direction: column; gap: 10px; max-width: 680px; }
.lb-container.active { display: flex; }

.lb-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 15px 22px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.lb-rank {
    font-family: 'JetBrains Mono', monospace;
    background: var(--surface-2);
    color: var(--muted);
    font-weight: 700;
    font-size: 12.5px;
    padding: 6px 13px;
    border-radius: 20px;
    min-width: 40px;
    text-align: center;
}

.lb-card.top-1 .lb-rank { background: var(--gold); color: #241a00; }
.lb-card.top-2 .lb-rank { background: var(--silver); color: #1e1e24; }
.lb-card.top-3 .lb-rank { background: var(--bronze); color: #241300; }

.lb-info { display: flex; justify-content: space-between; align-items: center; flex: 1; }
.lb-name { font-weight: 700; font-size: 15px; }
.lb-stats { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--muted); }
.lb-card.top-1 .lb-stats { color: var(--accent-2); }
.lb-empty { text-align: center; color: var(--muted); padding: 34px 0; font-size: 14px; }

/* ---------- Store ---------- */
.store-header { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; margin-bottom: 34px; }

.currency-wrapper { display: flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--border); padding: 9px 16px; border-radius: 30px; }
.currency-label { font-size: 12px; color: var(--muted); font-family: 'JetBrains Mono', monospace; }
.currency-select {
    background: rgba(217, 70, 239, 0.1);
    color: var(--accent-2);
    border: 1px solid var(--border-strong);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12.5px;
    font-family: 'JetBrains Mono', monospace;
    cursor: pointer;
    appearance: none;
}
.currency-select option { background: var(--surface); color: var(--text); }

.store-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ranks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }

.store-item, .rank-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 30px 22px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.2s ease;
    position: relative;
    overflow: hidden;
}

.store-item:hover, .rank-card:hover { border-color: var(--border-strong); transform: translateY(-5px); }

.rank-card.featured {
    border-color: var(--border-strong);
    background: linear-gradient(160deg, rgba(217, 70, 239, 0.1), var(--surface) 60%);
}

.rank-card.featured::before {
    content: "TOP TIER";
    position: absolute;
    top: 14px;
    right: -32px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #0a0512;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 34px;
    transform: rotate(35deg);
    letter-spacing: 0.5px;
}

.store-item .icon-orb, .rank-card .icon-orb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #f0abfc, var(--accent-2) 45%, var(--accent-dim) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    margin-bottom: 16px;
    box-shadow: 0 0 24px var(--accent-glow);
}

.demo-card .icon-orb { background: var(--surface-2); box-shadow: none; color: var(--muted); }
.demo-card .demo-title { color: var(--muted); font-style: italic; font-weight: 500; font-size: 17px; font-family: 'Sora', sans-serif; }
.demo-card .store-btn { background: var(--surface-2); color: var(--muted); cursor: not-allowed; box-shadow: none; }
.demo-card .store-btn:hover { transform: none; box-shadow: none; }

.store-item h3, .rank-card h3 { font-family: 'Sora', sans-serif; font-size: 19px; margin-bottom: 6px; }
.store-item p, .rank-card p { font-size: 13.5px; color: var(--muted); line-height: 1.5; margin-bottom: 16px; min-height: 40px; }

.rank-card .rank-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 2px 0 14px;
}

.rank-detail {
    width: 100%;
    text-align: left;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 18px;
}

.rank-detail-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-2);
    margin-bottom: 8px;
}

.rank-detail-label:not(:first-child) { margin-top: 14px; }
.rank-detail-list { list-style: none; }
.rank-detail-list li { font-family: 'JetBrains Mono', monospace; font-size: 12.5px; color: var(--muted); padding: 3px 0; }

.store-btn, .rank-btn {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #0a0512;
    border: none;
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13.5px;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    max-width: 180px;
    transition: 0.2s ease;
}

.store-btn:hover, .rank-btn:hover { transform: scale(1.04); box-shadow: 0 10px 26px var(--accent-glow); }

.price-tag { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--muted); margin-top: 8px; }

/* ---------- Billing notice block ---------- */
.billing-notice {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 30px 32px;
    margin-bottom: 40px;
    max-width: 880px;
}

.billing-notice h3 {
    font-family: 'Sora', sans-serif;
    font-size: 19px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-2);
}

.billing-notice ul { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 4px; }

.billing-notice li {
    font-size: 13.5px;
    color: var(--muted);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.billing-notice li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-2);
}

.billing-notice li strong { color: var(--text); }

.billing-example {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 18px;
    margin-top: 16px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
}

.billing-example strong { color: var(--text); }

.payment-note {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(217, 70, 239, 0.06);
    border: 1px solid rgba(217, 70, 239, 0.25);
    border-radius: 14px;
    padding: 16px 20px;
    font-size: 13.5px;
    color: var(--text);
    margin-top: 18px;
    max-width: 880px;
}

/* ---------- Footer ---------- */
.site-footer {
    padding: 34px 0 46px;
    color: var(--muted-2);
    font-size: 12.5px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer .discord-link {
    color: var(--muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.15s ease;
}
.site-footer .discord-link:hover { color: var(--accent-2); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Page hero for inner pages ---------- */
.page-hero { padding: 70px 0 50px; }
.page-kicker { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--accent-2); letter-spacing: 1.5px; display: block; margin-bottom: 18px; }
.page-title { font-family: 'Sora', sans-serif; font-size: 42px; font-weight: 700; letter-spacing: -1px; margin-bottom: 14px; }
.page-sub, .page-lede { font-size: 15px; color: var(--muted); max-width: 560px; line-height: 1.7; }

/* ---------- About page ---------- */
.about-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 20px; margin-bottom: 20px; }

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 32px 34px;
}

.card h2 {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card h2 i { color: var(--accent-2); }

.card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 16.5px;
    margin: 22px 0 12px;
}

.card p { color: var(--muted); line-height: 1.8; font-size: 14.5px; }

.conn-list, .feat-list { list-style: none; }

.conn-list li, .feat-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    color: var(--muted);
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.conn-list li:last-child, .feat-list li:last-child { border-bottom: none; }

.conn-list i, .feat-list i { color: var(--accent-2); width: 16px; text-align: center; }
.conn-list strong { color: var(--text); }

.side-card {
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: 22px;
    padding: 30px 28px;
    background-image: radial-gradient(circle at 100% 0%, rgba(217, 70, 239, 0.14), transparent 60%);
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: fit-content;
}

.side-card .season-badge {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #0a0512;
}

.side-card h3 { font-family: 'Sora', sans-serif; font-size: 18px; }
.side-card p { color: var(--muted); font-size: 13.5px; line-height: 1.6; }

.mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.mini-stat {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 16px;
}

.mini-stat .n { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 18px; color: var(--accent-2); }
.mini-stat .l { font-size: 10.5px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }

a.mini-stat { transition: 0.2s ease; text-align: center; }
a.mini-stat:hover { border-color: var(--border-strong); transform: translateY(-3px); }
a.mini-stat .n { font-size: 20px; }

/* ---------- Gallery ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-tile {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 4 / 3;
    background: radial-gradient(circle at 30% 20%, rgba(217, 70, 239, 0.14), transparent 55%), var(--surface);
    display: flex;
    align-items: flex-end;
}

.gallery-tile:nth-child(3n+1) { grid-row: span 2; aspect-ratio: 4 / 6.4; }

.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-tile:hover img { transform: scale(1.06); }

.gallery-tile .tile-cap {
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px 18px;
    background: linear-gradient(0deg, rgba(10, 5, 18, 0.92), transparent);
    font-size: 13px;
    font-weight: 700;
    width: 100%;
}

.gallery-tile .tile-cap span {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    font-weight: 500;
    color: var(--muted);
    margin-top: 2px;
}

.gallery-upload-note {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(217, 70, 239, 0.06);
    border: 1px solid rgba(217, 70, 239, 0.25);
    border-radius: 14px;
    padding: 16px 20px;
    font-size: 13.5px;
    color: var(--text);
    margin-top: 28px;
    max-width: 880px;
}

/* ---------- Vote / Rewards ---------- */
.vote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.vote-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: 0.2s ease;
}

.vote-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }

.vote-card .vote-site {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vote-card .vote-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0512;
    font-size: 17px;
    flex-shrink: 0;
}

.vote-card h3 { font-family: 'Sora', sans-serif; font-size: 16.5px; }
.vote-card .vote-cd { font-size: 11.5px; color: var(--muted-2); font-family: 'JetBrains Mono', monospace; }
.vote-card p { font-size: 13px; color: var(--muted); line-height: 1.5; }

.vote-reward-strip {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 30px 32px;
    margin-top: 30px;
}

.vote-reward-strip h3 {
    font-family: 'Sora', sans-serif;
    font-size: 19px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-2);
}

.reward-tiers { display: flex; flex-direction: column; gap: 10px; }

.reward-tier {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 20px;
}

.reward-tier .tier-name { font-weight: 700; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.reward-tier .tier-name i { color: var(--accent-2); }
.reward-tier .tier-desc { font-size: 12.5px; color: var(--muted); font-family: 'JetBrains Mono', monospace; }

/* ---------- Applications ---------- */
.apps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin-bottom: 30px; }

.app-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: 0.2s ease;
}

.app-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }

.app-card .app-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.18), rgba(217, 70, 239, 0.1));
    border: 1px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-2);
    font-size: 18px;
}

.app-card h3 { font-family: 'Sora', sans-serif; font-size: 17px; }
.app-card p { font-size: 13px; color: var(--muted); line-height: 1.6; flex: 1; }

.app-status {
    align-self: flex-start;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.app-status.open { background: rgba(52, 211, 153, 0.12); color: #34d399; border: 1px solid rgba(52, 211, 153, 0.3); }
.app-status.closed { background: rgba(251, 113, 133, 0.12); color: #fb7185; border: 1px solid rgba(251, 113, 133, 0.3); }

.app-steps { display: flex; flex-direction: column; gap: 10px; max-width: 880px; }

.app-step {
    display: flex;
    gap: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px 22px;
    align-items: flex-start;
}

.app-step .step-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #0a0512;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-step h4 { font-size: 14.5px; margin-bottom: 4px; }
.app-step p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ---------- FAQ page (full list, not accordion teaser) ---------- */
.faq-page-list { display: flex; flex-direction: column; gap: 10px; max-width: 820px; }

/* ---------- Footer extra links ---------- */
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 12.5px; transition: 0.15s ease; }
.footer-links a:hover { color: var(--accent-2); }

@media (max-width: 860px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-tile:nth-child(3n+1) { grid-row: span 1; aspect-ratio: 4/3; }
}

@media (max-width: 640px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-tile:nth-child(3n+1) { grid-row: span 1; aspect-ratio: 4/3; }
    .reward-tier { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
    .hero { grid-template-columns: 1fr; }
    .orb-wrap { height: 260px; order: -1; }
    .store-grid { grid-template-columns: repeat(2, 1fr); }
    .status-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
    .nav-links, .nav-ip { display: none; }
    .nav-toggle { display: flex; align-items: center; justify-content: center; }
    .topnav { padding: 0 20px; }
    .shell { padding: 0 22px; }
    .hero { padding: 40px 0 40px; }
    .hero-title { font-size: 40px; }
    .rules-block:nth-child(even) { margin-left: 0; }
    .site-footer { flex-direction: column; padding: 26px 0 36px; }
}

@media (max-width: 640px) {
    .hero-title { font-size: 32px; }
    .store-grid { grid-template-columns: 1fr; }
    .stat-strip { flex-direction: column; }
    .page-title { font-size: 30px; }
    .status-panel { grid-template-columns: 1fr; text-align: center; }
    .status-orb-mini { margin: 0 auto; }
    .status-grid { grid-template-columns: 1fr 1fr; }
}
