/* Eden website - one stylesheet for every page. Dark "Maple night" theme: indigo sky, maple orange + gold accents,
   rose/violet glows taken from the launcher art. Fonts: Fredoka (display), Nunito (text). */

:root {
  --bg: #0d0a1e;
  --bg-2: #130f2a;
  --panel: rgba(30, 24, 62, .66);
  --panel-solid: #1b1638;
  --panel-2: #231c47;
  --line: rgba(255, 255, 255, .09);
  --line-2: rgba(255, 255, 255, .16);
  --text: #f6f3ff;
  --muted: #b3acd6;
  --dim: #8079a8;
  --maple: #ff9a3d;
  --maple-2: #ffb65c;
  --gold: #ffd36b;
  --rose: #ff6f9f;
  --violet: #a08cff;
  --sky: #6fc8ff;
  --mint: #4fe3b0;
  --red: #ff6b6b;
  --grad-cta: linear-gradient(135deg, #ffc15e 0%, #ff8a3d 55%, #ff6f6f 100%);
  --grad-text: linear-gradient(120deg, #ffe08a 0%, #ffab4c 45%, #ff7aa8 100%);
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px -20px rgba(0, 0, 0, .7);
  --wrap: 1180px;
  --nav-h: 68px;
  --font-display: "Fredoka", "Nunito", system-ui, sans-serif;
  --font: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0; min-height: 100vh; background: var(--bg); color: var(--text);
  font: 16px/1.65 var(--font); overflow-x: hidden;
  background-image:
    radial-gradient(900px 500px at 85% -10%, rgba(160, 140, 255, .16), transparent 60%),
    radial-gradient(700px 480px at -10% 20%, rgba(255, 111, 159, .10), transparent 60%),
    radial-gradient(800px 600px at 50% 110%, rgba(255, 154, 61, .08), transparent 60%);
  background-attachment: fixed;
}
img, video { max-width: 100%; display: block; }
a { color: var(--maple-2); text-decoration: none; }
a:hover { color: var(--gold); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; letter-spacing: .2px; }
p { margin: 0 0 1em; }
::selection { background: rgba(255, 154, 61, .35); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.grad-text { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pixel { image-rendering: pixelated; }

/* ------------------------------------------------------------------ nav */
.nav {
  position: sticky; top: 0; z-index: 50; height: var(--nav-h);
  background: rgba(13, 10, 30, .72); backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { height: 100%; display: flex; align-items: center; gap: 18px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--text); font-family: var(--font-display); font-weight: 700; font-size: 26px; letter-spacing: 2px; }
.brand:hover { color: var(--text); }
.brand svg { width: 34px; height: 34px; filter: drop-shadow(0 4px 10px rgba(255, 154, 61, .45)); }
.brand span { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-links { display: flex; align-items: center; gap: 2px; margin-left: 10px; }
.nav-links a { color: var(--muted); font-weight: 700; font-size: 15px; padding: 8px 12px; border-radius: 10px; transition: color .15s, background .15s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); background: rgba(255, 255, 255, .06); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; margin-left: auto; background: none; border: 1px solid var(--line-2); color: var(--text); border-radius: 10px; width: 42px; height: 40px; cursor: pointer; }
.nav-toggle svg { width: 22px; height: 22px; margin: auto; }

.status-pill {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; color: var(--muted);
  padding: 6px 12px; border-radius: 999px; background: rgba(255, 255, 255, .05); border: 1px solid var(--line); white-space: nowrap;
}
.status-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--dim); }
.status-pill[data-state="online"] { color: #c7ffe9; }
.status-pill[data-state="online"] .dot { background: var(--mint); box-shadow: 0 0 0 0 rgba(79, 227, 176, .6); animation: pulse 2s infinite; }
.status-pill[data-state="offline"] { color: #ffc9c9; }
.status-pill[data-state="offline"] .dot { background: var(--red); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(79, 227, 176, .55); } 70% { box-shadow: 0 0 0 9px rgba(79, 227, 176, 0); } 100% { box-shadow: 0 0 0 0 rgba(79, 227, 176, 0); } }

/* ------------------------------------------------------------------ buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; cursor: pointer;
  font: 800 15px/1 var(--font); letter-spacing: .3px; padding: 14px 22px; border-radius: 14px; border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s, border-color .2s, color .2s; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--grad-cta); color: #2a1300; box-shadow: 0 10px 30px -10px rgba(255, 138, 61, .8), inset 0 1px 0 rgba(255, 255, 255, .45); }
.btn-primary:hover { color: #2a1300; transform: translateY(-2px); box-shadow: 0 16px 36px -10px rgba(255, 138, 61, .9), inset 0 1px 0 rgba(255, 255, 255, .45); }
.btn-ghost { background: rgba(255, 255, 255, .06); color: var(--text); border-color: var(--line-2); backdrop-filter: blur(6px); }
.btn-ghost:hover { color: var(--text); background: rgba(255, 255, 255, .12); transform: translateY(-2px); }
.btn-discord { background: #5865f2; color: #fff; }
.btn-discord:hover { color: #fff; background: #6b77f5; transform: translateY(-2px); }
.btn-sm { padding: 10px 14px; font-size: 14px; border-radius: 12px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: default; transform: none; }

/* ------------------------------------------------------------------ hero */
.hero { position: relative; min-height: min(86vh, 820px); display: flex; align-items: center; overflow: hidden; margin-top: calc(-1 * var(--nav-h)); padding-top: var(--nav-h); }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 10, 30, .92) 0%, rgba(13, 10, 30, .72) 38%, rgba(13, 10, 30, .12) 70%, rgba(13, 10, 30, .25) 100%),
    linear-gradient(180deg, rgba(13, 10, 30, .35) 0%, rgba(13, 10, 30, 0) 30%, rgba(13, 10, 30, 0) 65%, var(--bg) 100%);
}
.hero .wrap { position: relative; z-index: 1; width: 100%; padding-top: 40px; padding-bottom: 80px; }
.hero-copy { max-width: 620px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--gold); background: rgba(255, 211, 107, .1); border: 1px solid rgba(255, 211, 107, .28); padding: 6px 12px; border-radius: 999px;
}
.hero h1 { font-size: clamp(44px, 7vw, 84px); margin: 18px 0 14px; font-weight: 700; text-shadow: 0 6px 40px rgba(0, 0, 0, .45); }
.hero h1 .grad-text { display: inline-block; }
.hero .lead { font-size: clamp(17px, 2vw, 20px); color: #e4def9; max-width: 540px; margin-bottom: 28px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta { margin-top: 14px; color: var(--muted); font-size: 13px; }
.rate-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.rate-chip {
  display: flex; flex-direction: column; min-width: 96px; padding: 10px 16px; border-radius: 14px;
  background: rgba(20, 16, 44, .62); border: 1px solid var(--line-2); backdrop-filter: blur(8px);
}
.rate-chip b { font-family: var(--font-display); font-size: 26px; font-weight: 600; line-height: 1.1; color: var(--text); }
.rate-chip > span { font-size: 11px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted); }
.rate-chip.hot b { color: var(--gold); }
.hero-sprites { position: absolute; right: 4%; bottom: 60px; z-index: 1; display: flex; align-items: flex-end; gap: 16px; pointer-events: none; }
.hero-sprites img { filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .5)); animation: bob 3.2s ease-in-out infinite; }
.hero-sprites img:nth-child(2) { animation-delay: .6s; }
.hero-sprites img:nth-child(3) { animation-delay: 1.2s; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ------------------------------------------------------------------ page header (non-home pages) */
.page-hero { position: relative; padding: 64px 0 36px; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .38;
  background: var(--page-art, none) center 35% / cover no-repeat;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 100%); mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
}
.page-hero h1 { font-size: clamp(36px, 5vw, 56px); margin: 14px 0 10px; }
.page-hero p { color: var(--muted); font-size: 18px; max-width: 680px; }
.crumbs { font-size: 14px; color: var(--dim); }
.crumbs a { color: var(--muted); }

/* ------------------------------------------------------------------ sections */
.section { padding: 72px 0; position: relative; }
.section-tight { padding: 40px 0; }
.section-head { max-width: 720px; margin-bottom: 36px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); margin: 12px 0 10px; }
.section-head p { color: var(--muted); font-size: 18px; margin: 0; }
.kicker { font-size: 13px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; color: var(--maple); }

.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: var(--shadow);
}
.card h3 { font-size: 21px; }
.card p { color: var(--muted); }
.card p:last-child { margin-bottom: 0; }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* stat strip under the hero */
.stat-strip { position: relative; z-index: 2; margin-top: -54px; }
.stat-strip .card { display: grid; grid-template-columns: repeat(4, 1fr); padding: 0; overflow: hidden; }
.stat { padding: 22px 24px; border-right: 1px solid var(--line); display: flex; gap: 14px; align-items: center; }
.stat:last-child { border-right: 0; }
.stat img { width: 40px; height: 40px; object-fit: contain; flex: none; }
.stat b { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 600; line-height: 1.2; }
.stat div > span { display: block; font-size: 13px; color: var(--muted); }

/* feature cards */
.feature { position: relative; overflow: hidden; transition: transform .2s ease, border-color .2s; display: flex; flex-direction: column; }
.feature:hover { transform: translateY(-4px); border-color: rgba(255, 211, 107, .35); }
.feature .icon {
  width: 72px; height: 72px; border-radius: 20px; display: grid; place-items: center; margin-bottom: 16px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 211, 107, .28), rgba(160, 140, 255, .12) 70%); border: 1px solid var(--line-2);
}
.feature .icon img { max-width: 52px; max-height: 52px; }
.feature .more { margin-top: auto; padding-top: 6px; font-weight: 800; font-size: 14px; }
.feature .tag { position: absolute; top: 18px; right: 18px; font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--mint); background: rgba(79, 227, 176, .1); border: 1px solid rgba(79, 227, 176, .3); padding: 3px 8px; border-radius: 999px; }

/* steps */
.steps { counter-reset: step; }
.step { position: relative; padding-top: 28px; }
.step::before {
  counter-increment: step; content: counter(step); position: absolute; top: -22px; left: 24px;
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  font: 700 22px/1 var(--font-display); color: #2a1300; background: var(--grad-cta); box-shadow: 0 10px 24px -8px rgba(255, 138, 61, .8);
}
.step .btn { margin-top: 8px; }

/* regions strip */
.regions { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.region {
  position: relative; border-radius: var(--radius-sm); padding: 16px 14px 14px; min-height: 196px; overflow: hidden;
  background: linear-gradient(160deg, var(--c1, #2a2358), var(--c2, #171235)); border: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: flex-end; transition: transform .2s;
}
.region:hover { transform: translateY(-3px); }
.region img { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); max-height: 96px; max-width: 88%; object-fit: contain; filter: drop-shadow(0 8px 12px rgba(0, 0, 0, .45)); }
.region b { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--text); line-height: 1.2; }
.region span { font-size: 13px; color: var(--muted); font-weight: 700; }

/* boss parade */
.boss-row { display: flex; gap: 26px; align-items: flex-end; justify-content: center; flex-wrap: wrap; }
.boss { text-align: center; }
.boss img { height: 120px; width: auto; margin: 0 auto 8px; object-fit: contain; filter: drop-shadow(0 12px 20px rgba(0, 0, 0, .55)); }
.boss b { display: block; font-family: var(--font-display); font-weight: 600; }
.boss span { font-size: 13px; color: var(--muted); }

/* news cards */
.news-card { display: flex; flex-direction: column; gap: 6px; color: var(--text); transition: transform .2s, border-color .2s; }
.news-card:hover { color: var(--text); transform: translateY(-3px); border-color: rgba(255, 211, 107, .35); }
.news-card time { font-size: 13px; color: var(--dim); font-weight: 700; }
.news-card h3 { margin: 0; font-size: 20px; }
.news-card p { font-size: 15px; margin: 0; }
.badge { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 3px 9px; border-radius: 999px; background: rgba(160, 140, 255, .14); color: #d3caff; border: 1px solid rgba(160, 140, 255, .3); align-self: flex-start; }
.badge.update { background: rgba(255, 154, 61, .12); color: #ffd1a6; border-color: rgba(255, 154, 61, .35); }
.badge.event { background: rgba(79, 227, 176, .1); color: #b8ffe6; border-color: rgba(79, 227, 176, .3); }

/* rankings */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); background: var(--panel); }
table.data { width: 100%; border-collapse: collapse; font-size: 15px; }
table.data th { text-align: left; font-size: 12px; letter-spacing: 1.1px; text-transform: uppercase; color: var(--dim); font-weight: 800; padding: 14px 18px; border-bottom: 1px solid var(--line); background: rgba(0, 0, 0, .15); white-space: nowrap; }
table.data td { padding: 12px 18px; border-bottom: 1px solid var(--line); }
table.data tr:last-child td { border-bottom: 0; }
table.data tbody tr:hover td { background: rgba(255, 255, 255, .03); }
.rank { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--muted); width: 64px; }
.rank-1 .rank { color: #ffd36b; } .rank-2 .rank { color: #d9e2f2; } .rank-3 .rank { color: #f0a36a; }
.medal { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; font-size: 14px; color: #2a1300; }
.rank-1 .medal { background: linear-gradient(135deg, #ffe8a3, #ffb938); }
.rank-2 .medal { background: linear-gradient(135deg, #f4f7fb, #aab6c8); }
.rank-3 .medal { background: linear-gradient(135deg, #ffcf9e, #cd7f32); }
.lvl { font-family: var(--font-display); font-weight: 600; color: var(--gold); }
.muted { color: var(--muted); }
.dim { color: var(--dim); }
.podium { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 22px; }
.podium .card { text-align: center; padding: 22px 16px; }
.podium .medal { width: 44px; height: 44px; font-size: 18px; margin: 0 auto 10px; font-family: var(--font-display); font-weight: 700; }
.podium b { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 600; }

/* forms */
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.input, select.input {
  width: 100%; background: rgba(0, 0, 0, .25); border: 1px solid var(--line-2); color: var(--text); border-radius: 12px;
  padding: 13px 14px; font: 600 15px/1.2 var(--font); transition: border-color .15s, box-shadow .15s;
}
.input::placeholder { color: var(--dim); }
.input:focus { outline: none; border-color: var(--maple); box-shadow: 0 0 0 4px rgba(255, 154, 61, .15); }
select.input { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 20px) 55%, calc(100% - 14px) 55%; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 36px; }
.msg { margin-top: 14px; padding: 12px 14px; border-radius: 12px; font-size: 14px; font-weight: 700; display: none; }
.msg.err { display: block; background: rgba(255, 107, 107, .12); border: 1px solid rgba(255, 107, 107, .4); color: #ffc2c2; }
.msg.ok { display: block; background: rgba(79, 227, 176, .1); border: 1px solid rgba(79, 227, 176, .38); color: #b8ffe6; }

/* download page */
.dl-card { display: grid; grid-template-columns: 1.05fr 1fr; gap: 0; padding: 0; overflow: hidden; }
.dl-art { position: relative; min-height: 360px; background: #120d26; }
.dl-art video, .dl-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dl-body { padding: 32px; }
.checklist { list-style: none; padding: 0; margin: 18px 0 0; }
.checklist li { position: relative; padding-left: 34px; margin: 12px 0; color: #ddd7f5; }
.checklist li::before { content: ""; position: absolute; left: 0; top: 3px; width: 22px; height: 22px; border-radius: 7px; background: rgba(79, 227, 176, .14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234fe3b0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 14px no-repeat; border: 1px solid rgba(79, 227, 176, .35); }
.checklist small { display: block; color: var(--dim); font-size: 14px; }
.note { display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; border-radius: var(--radius-sm); background: rgba(255, 211, 107, .07); border: 1px solid rgba(255, 211, 107, .25); color: #f1e7c9; font-size: 15px; }
.note svg { width: 22px; height: 22px; flex: none; margin-top: 2px; color: var(--gold); }
.note p { margin: 0; }
.spec-list { display: grid; grid-template-columns: auto 1fr; gap: 8px 18px; font-size: 15px; margin: 0; }
.spec-list dt { color: var(--dim); font-weight: 700; }
.spec-list dd { margin: 0; }

/* donate */
.method-toggle { display: inline-flex; padding: 5px; border-radius: 16px; background: rgba(0, 0, 0, .3); border: 1px solid var(--line-2); gap: 4px; }
.method-toggle button { font: 800 15px/1 var(--font); color: var(--muted); background: none; border: 0; padding: 12px 20px; border-radius: 12px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; }
.method-toggle button[aria-pressed="true"] { color: #2a1300; background: var(--grad-cta); }
.method-toggle .bonus { font-size: 11px; background: rgba(79, 227, 176, .2); color: var(--mint); padding: 3px 7px; border-radius: 999px; }
.method-toggle button[aria-pressed="true"] .bonus { background: rgba(42, 19, 0, .15); color: #2a1300; }
.tiers { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; margin-top: 26px; }
.tier { position: relative; text-align: center; padding: 26px 16px 20px; display: flex; flex-direction: column; align-items: center; transition: transform .2s, border-color .2s; }
.tier:hover { transform: translateY(-4px); border-color: rgba(255, 211, 107, .4); }
.tier.popular { border-color: rgba(255, 154, 61, .55); background: linear-gradient(180deg, rgba(255, 154, 61, .14), var(--panel)); }
.tier .ribbon { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: #2a1300; background: var(--grad-cta); padding: 5px 12px; border-radius: 999px; white-space: nowrap; }
.tier img { height: 54px; width: auto; margin: 4px auto 12px; }
.tier .price { font-family: var(--font-display); font-size: 40px; font-weight: 600; line-height: 1; }
.tier .nx { margin-top: 12px; font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--gold); }
.tier .nx small { font-family: var(--font); font-size: 13px; color: var(--muted); font-weight: 700; }
.tier .bonus-line { font-size: 13px; font-weight: 800; color: var(--mint); min-height: 20px; margin-top: 2px; }
.tier .vip { margin-top: 10px; font-size: 14px; font-weight: 800; color: #d3caff; min-height: 22px; }
.tier .vip.none { color: var(--dim); font-weight: 700; }
.pay-box { display: none; }
.pay-box.active { display: block; }
.addr { display: flex; gap: 8px; align-items: center; margin: 10px 0; }
.addr code { flex: 1; min-width: 0; overflow-wrap: anywhere; font-size: 14px; padding: 12px 14px; border-radius: 12px; background: rgba(0, 0, 0, .35); border: 1px solid var(--line-2); color: var(--gold); }
.tier { cursor: pointer; }
.tier.selected { border-color: rgba(79, 227, 176, .7); box-shadow: 0 0 0 2px rgba(79, 227, 176, .3); }
.claim { margin-top: 34px; }
.claim h3 { margin-top: 0; }
.claim-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 18px; margin-top: 18px; }
.claim-grid .wide { grid-column: 1 / -1; }
.claim .opt { text-transform: none; letter-spacing: 0; font-weight: 700; color: var(--dim); }
.claim .hint { display: block; margin-top: 6px; color: var(--dim); font-size: 13px; }
.claim textarea.input { resize: vertical; min-height: 84px; font-weight: 500; line-height: 1.5; }
.claim .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.claim-foot { display: flex; gap: 16px; align-items: center; justify-content: space-between; flex-wrap: wrap; margin-top: 4px; }
.claim-sum { font-weight: 800; color: var(--gold); }
.claim-sum small { display: block; color: var(--dim); font-weight: 700; font-size: 13px; }
.claim-done { padding: 18px 0 4px; }
.done-ref { font: 700 26px/1.2 ui-monospace, Consolas, monospace; color: var(--gold); margin: 6px 0 10px; letter-spacing: 1px; }
.claim-check { margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); max-width: 520px; }
.claim-check label { display: block; font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.claim-check .addr { margin: 8px 0 0; }
@media (max-width: 720px) { .claim-grid { grid-template-columns: 1fr; } }
.crypto-box.active { display: grid; gap: 18px; margin-top: 26px; }
.crypto-card { padding: 26px 28px; }
.cc-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.cc-head h3 { margin: 0; display: flex; align-items: center; gap: 14px; font-size: 24px; text-transform: uppercase; letter-spacing: .02em; }
.cc-head p { margin: 4px 0 0 30px; color: var(--muted); font-weight: 700; }
.cc-dot { width: 16px; height: 16px; flex: none; border-radius: 50%; background: #26a17b; box-shadow: 0 0 0 5px rgba(38, 161, 123, .18); }
.cc-bonus { flex: none; font-size: 13px; font-weight: 800; color: #062a1f; background: var(--mint); padding: 6px 11px; border-radius: 9px; }
.crypto-card .addr { margin: 20px 0 0; }
.crypto-card .addr code { color: var(--text); font-size: 15px; }
.cc-qr { margin: 20px 0 0; text-align: center; }
.cc-qr svg { display: block; width: 220px; height: 220px; margin: 0 auto; padding: 10px; background: #fff; border-radius: 16px; }
.cc-qr figcaption { margin-top: 8px; font-size: 14px; color: var(--muted); }
.cc-warn { margin-top: 20px; padding: 14px 18px; border-radius: 12px; font-size: 15px; background: rgba(255, 107, 107, .09); border: 1px solid rgba(255, 107, 107, .38); color: #ffc9c9; }
.cc-warn b { color: #ff9d9d; }
@media (max-width: 560px) { .crypto-card { padding: 20px 18px; } .cc-head h3 { font-size: 19px; gap: 10px; } .cc-head p { margin-left: 26px; } .cc-qr svg { width: 190px; height: 190px; } }

/* faq */
.faq details { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--panel); margin-bottom: 10px; overflow: hidden; }
.faq summary { cursor: pointer; list-style: none; padding: 18px 54px 18px 20px; font-weight: 800; font-size: 16px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font: 600 24px/1 var(--font-display); color: var(--maple); transition: transform .2s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details > div { padding: 0 20px 18px; color: var(--muted); }
.faq details > div p:last-child { margin: 0; }

/* cta band */
.cta-band { position: relative; overflow: hidden; border-radius: 26px; padding: 54px 44px; border: 1px solid rgba(255, 211, 107, .25);
  background: linear-gradient(120deg, rgba(255, 154, 61, .22), rgba(160, 140, 255, .18) 60%, rgba(255, 111, 159, .18)); display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(28px, 3.6vw, 40px); margin: 0 0 8px; }
.cta-band p { margin: 0; color: #e4def9; font-size: 18px; }
.cta-band .actions { margin-left: auto; display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band img.float { position: absolute; right: 18px; bottom: -8px; height: 110px; opacity: .9; pointer-events: none; }

/* footer */
footer.site { margin-top: 90px; border-top: 1px solid var(--line); background: rgba(8, 6, 20, .6); padding: 48px 0 30px; font-size: 15px; }
footer.site .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
footer.site h4 { font-size: 14px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; font-family: var(--font); font-weight: 800; }
footer.site ul { list-style: none; padding: 0; margin: 0; }
footer.site li { margin: 7px 0; }
footer.site a { color: var(--muted); }
footer.site a:hover { color: var(--text); }
footer.site .legal { margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--dim); font-size: 13px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

/* ------------------------------------------------------------------ wiki */
.wiki { display: grid; grid-template-columns: 250px minmax(0, 1fr) 210px; gap: 36px; align-items: start; padding-top: 34px; }
.wiki-side { position: sticky; top: calc(var(--nav-h) + 20px); max-height: calc(100vh - var(--nav-h) - 40px); overflow-y: auto; padding-right: 6px; scrollbar-width: thin; }
.wiki-search { position: relative; margin-bottom: 18px; }
.wiki-search input { padding-left: 40px; }
.wiki-search svg { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--dim); }
.search-results { position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 20; background: var(--panel-solid); border: 1px solid var(--line-2); border-radius: 14px; box-shadow: var(--shadow); padding: 6px; display: none; max-height: 60vh; overflow-y: auto; }
.search-results.open { display: block; }
.search-results a { display: block; padding: 10px 12px; border-radius: 10px; color: var(--text); }
.search-results a:hover, .search-results a.active { background: rgba(255, 255, 255, .07); }
.search-results a small { display: block; color: var(--muted); font-size: 13px; }
.search-results .empty { padding: 12px; color: var(--muted); font-size: 14px; }
.wiki-nav h5 { font-size: 12px; letter-spacing: 1.3px; text-transform: uppercase; color: var(--dim); margin: 20px 0 6px; font-weight: 800; font-family: var(--font); }
.wiki-nav h5:first-child { margin-top: 0; }
.wiki-nav a { display: block; padding: 6px 12px; margin: 1px 0; border-radius: 9px; color: var(--muted); font-weight: 700; font-size: 15px; border-left: 2px solid transparent; }
.wiki-nav a:hover { color: var(--text); background: rgba(255, 255, 255, .04); }
.wiki-nav a[aria-current="page"] { color: var(--text); background: rgba(255, 154, 61, .1); border-left-color: var(--maple); }
.wiki-toc { position: sticky; top: calc(var(--nav-h) + 20px); font-size: 14px; }
.wiki-toc h5 { font-size: 12px; letter-spacing: 1.3px; text-transform: uppercase; color: var(--dim); margin: 0 0 10px; font-weight: 800; font-family: var(--font); }
.wiki-toc a { display: block; color: var(--muted); padding: 4px 0 4px 12px; border-left: 2px solid var(--line); }
.wiki-toc a.sub { padding-left: 24px; font-size: 13px; }
.wiki-toc a:hover, .wiki-toc a.active { color: var(--text); border-left-color: var(--maple); }
.wiki-side-toggle { display: none; }

.article { min-width: 0; }
.article-head { display: flex; gap: 20px; align-items: center; margin-bottom: 8px; }
.article-head img { width: 84px; height: 84px; object-fit: contain; flex: none; filter: drop-shadow(0 10px 16px rgba(0, 0, 0, .5)); }
.article-head h1 { font-size: clamp(32px, 4vw, 46px); margin: 6px 0 4px; }
.article-head p { color: var(--muted); margin: 0; font-size: 17px; }
.prose { font-size: 17px; color: #e5e0f7; }
.prose h2 { font-size: 28px; margin: 44px 0 14px; padding-top: 8px; }
.prose h3 { font-size: 21px; margin: 30px 0 10px; }
.prose h2 .anchor, .prose h3 .anchor { opacity: 0; margin-left: 8px; color: var(--dim); font-size: .8em; transition: opacity .15s; }
.prose h2:hover .anchor, .prose h3:hover .anchor { opacity: 1; }
.prose p, .prose li { color: #dcd6f2; }
.prose strong { color: var(--text); }
.prose ul, .prose ol { padding-left: 24px; margin: 0 0 1.1em; }
.prose li { margin: 6px 0; }
.prose li::marker { color: var(--maple); }
.prose code { font-size: .88em; background: rgba(255, 255, 255, .08); border: 1px solid var(--line); padding: 2px 7px; border-radius: 7px; color: var(--gold); }
.prose pre { background: rgba(0, 0, 0, .35); border: 1px solid var(--line); border-radius: 12px; padding: 16px; overflow-x: auto; }
.prose pre code { background: none; border: 0; padding: 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 0 0 1.4em; font-size: 15px; display: block; overflow-x: auto; }
.prose th { text-align: left; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--dim); padding: 10px 14px; border-bottom: 1px solid var(--line-2); white-space: nowrap; }
.prose td { padding: 10px 14px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.prose tbody tr:hover td { background: rgba(255, 255, 255, .025); }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 36px 0; }
.prose img.ico { display: inline-block; vertical-align: middle; max-height: 32px; width: auto; margin: -4px 4px 0 0; }
.prose figure.sprite { float: right; margin: 0 0 16px 24px; text-align: center; }
.prose figure.sprite img { max-height: 150px; width: auto; filter: drop-shadow(0 10px 16px rgba(0, 0, 0, .5)); margin: 0 auto; }
.prose figure.sprite figcaption { font-size: 13px; color: var(--dim); margin-top: 6px; }
.prose .kbd, .prose kbd { font: 800 13px/1 var(--font); padding: 4px 8px; border-radius: 7px; background: rgba(255, 255, 255, .1); border: 1px solid var(--line-2); border-bottom-width: 3px; color: var(--text); }
.callout { border-radius: 14px; padding: 16px 18px 16px 52px; margin: 0 0 1.3em; position: relative; border: 1px solid; }
.callout p:last-child { margin: 0; }
.callout::before { position: absolute; left: 16px; top: 15px; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 8px; font: 800 14px/1 var(--font); }
.callout.tip { background: rgba(79, 227, 176, .07); border-color: rgba(79, 227, 176, .3); }
.callout.tip::before { content: "✓"; background: rgba(79, 227, 176, .2); color: var(--mint); }
.callout.note { background: rgba(111, 200, 255, .07); border-color: rgba(111, 200, 255, .3); }
.callout.note::before { content: "i"; background: rgba(111, 200, 255, .2); color: var(--sky); }
.callout.warn { background: rgba(255, 154, 61, .08); border-color: rgba(255, 154, 61, .35); }
.callout.warn::before { content: "!"; background: rgba(255, 154, 61, .22); color: var(--maple-2); }
.callout.eden { background: linear-gradient(120deg, rgba(255, 211, 107, .09), rgba(160, 140, 255, .08)); border-color: rgba(255, 211, 107, .32); }
.callout.eden::before { content: "✦"; background: rgba(255, 211, 107, .2); color: var(--gold); }
.article-foot { margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.pager a { display: block; padding: 14px 18px; border-radius: 14px; border: 1px solid var(--line); background: var(--panel); min-width: 220px; color: var(--text); }
.pager a:hover { border-color: rgba(255, 211, 107, .35); color: var(--text); }
.pager small { display: block; color: var(--dim); font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.pager .next { text-align: right; margin-left: auto; }
.live { color: var(--gold); font-weight: 800; }

/* wiki home */
.wiki-cats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.wiki-cat h3 { display: flex; align-items: center; gap: 12px; }
.wiki-cat h3 img { width: 44px; height: 44px; object-fit: contain; }
.wiki-cat ul { list-style: none; padding: 0; margin: 12px 0 0; }
.wiki-cat li { border-top: 1px solid var(--line); }
.wiki-cat li a { display: flex; justify-content: space-between; gap: 10px; padding: 10px 2px; color: #ddd7f5; font-weight: 700; }
.wiki-cat li a:hover { color: var(--gold); }
.wiki-cat li a::after { content: "→"; color: var(--dim); }
.path { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.path a { display: block; padding: 16px; border-radius: 14px; background: var(--panel); border: 1px solid var(--line); color: var(--text); transition: transform .2s, border-color .2s; }
.path a:hover { transform: translateY(-3px); border-color: rgba(255, 211, 107, .35); color: var(--text); }
.path small { display: block; font-size: 12px; font-weight: 800; letter-spacing: 1px; color: var(--maple); text-transform: uppercase; }
.path b { font-family: var(--font-display); font-weight: 600; font-size: 18px; }

/* ------------------------------------------------------------------ library */
.lib-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 18px; }
.lib-tabs button { font: 800 15px/1 var(--font); color: var(--muted); background: rgba(255, 255, 255, .04); border: 1px solid var(--line); padding: 12px 18px; border-radius: 12px; cursor: pointer; display: inline-flex; gap: 8px; align-items: center; }
.lib-tabs button img { width: 22px; height: 22px; object-fit: contain; }
.lib-tabs button[aria-selected="true"] { color: var(--text); background: rgba(255, 154, 61, .14); border-color: rgba(255, 154, 61, .45); }
.lib-bar { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 16px; }
.lib-bar .input { max-width: 420px; }
.lib-bar .meta { margin-left: auto; font-size: 13px; color: var(--dim); }
.lib { display: grid; grid-template-columns: minmax(0, 380px) minmax(0, 1fr); gap: 20px; align-items: start; }
.lib-list { display: flex; flex-direction: column; gap: 6px; max-height: 72vh; overflow-y: auto; padding-right: 4px; scrollbar-width: thin; }
.lib-row { display: flex; align-items: center; gap: 12px; padding: 8px 12px; border-radius: 12px; background: var(--panel); border: 1px solid var(--line); cursor: pointer; color: var(--text); text-align: left; font: inherit; width: 100%; }
.lib-row:hover { border-color: var(--line-2); }
.lib-row[aria-current="true"] { border-color: rgba(255, 154, 61, .55); background: rgba(255, 154, 61, .1); }
.lib-row .thumb { width: 44px; height: 44px; flex: none; display: grid; place-items: center; }
.lib-row .thumb img { max-width: 44px; max-height: 44px; object-fit: contain; }
.lib-row b { display: block; font-weight: 800; line-height: 1.25; }
.lib-row small { color: var(--muted); font-size: 13px; }
.lib-row .right { margin-left: auto; text-align: right; font-size: 13px; color: var(--muted); white-space: nowrap; }
.lib-detail { min-height: 300px; position: sticky; top: calc(var(--nav-h) + 20px); max-height: calc(100vh - var(--nav-h) - 40px); overflow-y: auto; scrollbar-width: thin; }
.lib-detail .empty { color: var(--muted); text-align: center; padding: 60px 20px; }
.lib-detail .empty img { margin: 0 auto 12px; height: 80px; }
.det-head { display: flex; gap: 18px; align-items: center; margin-bottom: 16px; }
.det-head .pic { width: 110px; height: 110px; flex: none; display: grid; place-items: center; background: radial-gradient(circle, rgba(160, 140, 255, .18), transparent 70%); border-radius: 18px; }
.det-head .pic img { max-width: 104px; max-height: 104px; object-fit: contain; }
.det-head h2 { margin: 0 0 4px; font-size: 28px; }
.pills { display: flex; flex-wrap: wrap; gap: 6px; }
.pill { font-size: 13px; font-weight: 800; padding: 4px 10px; border-radius: 999px; background: rgba(255, 255, 255, .06); border: 1px solid var(--line); color: #ddd7f5; }
.pill.gold { color: var(--gold); border-color: rgba(255, 211, 107, .3); background: rgba(255, 211, 107, .08); }
.pill.boss { color: #ffc2c2; border-color: rgba(255, 107, 107, .4); background: rgba(255, 107, 107, .1); }
.det-sec h4 { font-family: var(--font); font-size: 12px; font-weight: 800; letter-spacing: 1.3px; text-transform: uppercase; color: var(--dim); margin: 22px 0 10px; }
.drops { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 6px; }
.drop { display: flex; align-items: center; gap: 10px; padding: 7px 10px; border-radius: 10px; background: rgba(0, 0, 0, .2); border: 1px solid var(--line); color: var(--text); font-size: 14px; cursor: pointer; text-align: left; font-family: inherit; }
.drop:hover { border-color: var(--line-2); color: var(--text); }
.drop img { width: 32px; height: 32px; object-fit: contain; flex: none; }
.drop span { flex: 1; min-width: 0; line-height: 1.25; font-weight: 700; }
.drop em { font-style: normal; font-size: 12px; font-weight: 800; color: var(--gold); white-space: nowrap; }
.drop em.low { color: var(--muted); }
.maplist { list-style: none; padding: 0; margin: 0; font-size: 15px; }
.maplist li { display: flex; justify-content: space-between; gap: 12px; padding: 8px 2px; border-bottom: 1px solid var(--line); }
.maplist li span:last-child { color: var(--muted); white-space: nowrap; font-size: 13px; }
.train-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; align-items: center; padding: 14px 16px; border-radius: 14px; background: var(--panel); border: 1px solid var(--line); }
.train-row b { display: block; }
.train-row .mobs { display: flex; gap: 8px; align-items: center; margin-top: 6px; flex-wrap: wrap; }
.train-row .mobs img { height: 40px; width: auto; }
.train-row .mobs span { font-size: 13px; color: var(--muted); }
.train-row .score { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--gold); text-align: right; }
.train-row .score small { display: block; font-family: var(--font); font-size: 12px; color: var(--dim); font-weight: 800; }
.loading { color: var(--muted); padding: 30px; text-align: center; }

/* ------------------------------------------------------------------ misc */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ------------------------------------------------------------------ responsive */
@media (max-width: 1180px) {
  .regions { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .wiki { grid-template-columns: 240px minmax(0, 1fr); }
  .wiki-toc { display: none; }
  .tiers { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .nav-links, .nav-right .btn { display: none; }
  .nav-toggle { display: grid; }
  .nav-right { margin-left: 0; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; position: absolute; top: var(--nav-h); left: 0; right: 0; margin: 0;
    padding: 12px 16px 18px; background: rgba(13, 10, 30, .97); border-bottom: 1px solid var(--line); gap: 2px;
  }
  .nav.open .nav-links a { padding: 12px 14px; font-size: 16px; }
  .grid-3, .grid-4, .regions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-split { grid-template-columns: minmax(0, 1fr) !important; }
  .stat-strip .card { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .hero-sprites { display: none; }
  .wiki { grid-template-columns: minmax(0, 1fr); }
  .wiki-side { position: static; max-height: none; overflow: visible; }
  .wiki-side-toggle { display: flex; }
  .wiki-nav { display: none; }
  .wiki-side.open .wiki-nav { display: block; }
  .wiki-cats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .path { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lib { grid-template-columns: minmax(0, 1fr); }
  .lib-detail { position: static; max-height: none; }
  .lib-list { max-height: 46vh; }
  .dl-card { grid-template-columns: 1fr; }
  .dl-art { min-height: 240px; }
  footer.site .cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 16px; }
  .section { padding: 52px 0; }
  .grid-2, .grid-3, .grid-4, .wiki-cats { grid-template-columns: minmax(0, 1fr); }
  .tiers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero { min-height: 640px; }
  .hero-media::after { background: linear-gradient(180deg, rgba(13, 10, 30, .55) 0%, rgba(13, 10, 30, .78) 55%, var(--bg) 100%); }
  .hero-ctas .btn { flex: 1 1 100%; }
  .rate-chip { min-width: 0; flex: 1 1 calc(50% - 10px); }
  .stat-strip .card { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .podium { grid-template-columns: 1fr; }
  .cta-band { padding: 36px 22px; }
  .cta-band .actions { margin-left: 0; width: 100%; }
  .cta-band .actions .btn { flex: 1; }
  .cta-band img.float { display: none; }
  .prose figure.sprite { float: none; margin: 0 0 16px; }
  .article-head img { width: 60px; height: 60px; }
  .status-pill .label-long { display: none; }
  footer.site .cols { grid-template-columns: 1fr; }
  table.data th, table.data td { padding: 10px 12px; }
  .hide-sm { display: none; }
}
