@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --bg: #080b0d;
  --panel: #101518;
  --panel-2: #151b1f;
  --line: #263036;
  --text: #f2f5f3;
  --muted: #929da3;
  --acid: #c8f135;
  --acid-dark: #91b111;
  --orange: #f3852a;
  --red: #ff5a4f;
  --blue: #5865f2;
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.narrow { max-width: 860px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(8,11,13,.9);
  backdrop-filter: blur(18px);
}
.nav-shell { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 42px;
  color: #0b0e0b;
  background: var(--acid);
  clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
  font: 900 24px/1 "Barlow Condensed", sans-serif;
}
.brand span:last-child { display: flex; flex-direction: column; line-height: 1.05; }
.brand strong { font: 800 20px "Barlow Condensed", sans-serif; letter-spacing: .04em; }
.brand small { color: var(--muted); font-size: 8px; letter-spacing: .22em; margin-top: 4px; }
.desktop-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.desktop-nav a { position: relative; color: #b7c0c3; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; }
.desktop-nav a:hover, .desktop-nav a.active { color: #fff; }
.desktop-nav a.active::after { content: ""; position: absolute; height: 2px; left: 0; right: 0; bottom: -28px; background: var(--acid); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.user-chip { display: flex; align-items: center; gap: 9px; padding: 5px 9px 5px 5px; background: #151a1e; border: 1px solid var(--line); font-size: 12px; font-weight: 600; }
.user-chip img, .avatar-fallback { width: 30px; height: 30px; border-radius: 3px; object-fit: cover; }
.avatar-fallback { display: grid; place-items: center; background: var(--acid); color: #111; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid transparent;
  padding: 0 22px;
  color: #fff;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: .2s ease;
}
.button:hover { transform: translateY(-2px); filter: brightness(1.08); }
.button.primary { color: #10130a; background: var(--acid); border-color: var(--acid); }
.button.ghost { border-color: #394349; background: rgba(255,255,255,.025); }
.button.discord { background: var(--blue); border-color: var(--blue); }
.button.light { color: #10130a; background: #fff; }
.button.small { min-height: 36px; padding: 0 14px; font-size: 10px; }

.hero {
  position: relative;
  min-height: 670px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, #080b0d 0%, rgba(8,11,13,.96) 35%, rgba(8,11,13,.45) 68%, rgba(8,11,13,.68) 100%),
    linear-gradient(0deg, rgba(8,11,13,.7), transparent 45%),
    url("/images/survival-hero.png") center right / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0 59%, rgba(200,241,53,.025) 59% 60%, transparent 60%);
}
.hero-glow { position: absolute; width: 340px; height: 340px; border: 1px solid rgba(200,241,53,.1); border-radius: 50%; right: 13%; top: 22%; box-shadow: 0 0 100px rgba(200,241,53,.08); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 80px; padding-block: 80px; }
.eyebrow { color: var(--acid); font: 700 12px "Barlow Condensed", sans-serif; letter-spacing: .22em; }
.eyebrow i { display: inline-block; width: 28px; height: 1px; vertical-align: middle; margin-right: 10px; background: var(--acid); }
.hero h1, .page-hero h1, .detail-copy h1 {
  margin: 18px 0;
  font: 900 clamp(68px, 7.7vw, 112px)/.79 "Barlow Condensed", sans-serif;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.hero h1 em { color: var(--acid); font-style: normal; }
.hero-copy > p { max-width: 600px; color: #a8b1b5; font-size: 16px; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 58px; color: #7e898e; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.hero-meta b { color: var(--acid); margin-right: 5px; }
.hero-panel {
  position: relative;
  min-height: 430px;
  border: 1px solid #2a3439;
  background: linear-gradient(145deg, rgba(18,24,26,.82), rgba(5,8,9,.9));
  box-shadow: 34px 30px 0 rgba(0,0,0,.22);
  clip-path: polygon(0 0, 93% 0, 100% 8%, 100% 100%, 8% 100%, 0 92%);
  overflow: hidden;
}
.hero-panel::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, rgba(255,255,255,.016) 0 1px, transparent 1px 5px); }
.scanner { position: absolute; left: 0; right: 0; height: 1px; top: 48%; background: var(--acid); box-shadow: 0 0 22px var(--acid); opacity: .6; }
.panel-top { position: absolute; top: 24px; left: 28px; right: 28px; display: flex; justify-content: space-between; color: var(--muted); font-size: 9px; letter-spacing: .2em; }
.panel-top b { color: var(--acid); }
.skull-mark { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,.07); font: 900 118px "Barlow Condensed"; letter-spacing: -.05em; transform: rotate(-7deg); }
.panel-readout { position: absolute; left: 34px; bottom: 44px; display: flex; flex-direction: column; }
.panel-readout small { color: var(--muted); letter-spacing: .2em; }
.panel-readout strong { color: var(--acid); font: 800 62px "Barlow Condensed"; line-height: 1; }
.coordinates { position: absolute; right: 28px; bottom: 28px; color: #5c686e; font: 600 8px monospace; transform: rotate(-90deg); transform-origin: right bottom; }

.section { padding-block: 88px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 34px; }
.section-heading h2, .claim-strip h2, .panel-title h2 { margin: 5px 0 0; font: 800 42px "Barlow Condensed"; text-transform: uppercase; letter-spacing: -.01em; }
.section-heading > a, .panel-title > a { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card { border: 1px solid #222b30; background: #0e1316; transition: .25s ease; }
.product-card:hover { transform: translateY(-5px); border-color: #3b474d; }
.product-art { position: relative; height: 210px; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at center, #293238, #13191c 68%); }
.product-art.has-image, .detail-art.has-image, .admin-product-visual.has-image {
  background:
    linear-gradient(0deg, rgba(6,9,10,.5), rgba(6,9,10,.08)),
    var(--product-image) center / cover no-repeat;
}
.product-art.has-image .product-symbol, .detail-art.has-image .detail-symbol { opacity: .16; }
.product-card.vip .product-art, .detail-art.vip { background: radial-gradient(circle at center, #3a2517, #17120f 68%); }
.product-card.welcome .product-art, .detail-art.welcome { background: radial-gradient(circle at center, #29340f, #12150c 68%); }
.card-grid { position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(#fff 1px, transparent 1px), linear-gradient(90deg, #fff 1px, transparent 1px); background-size: 26px 26px; transform: perspective(220px) rotateX(42deg) scale(1.5); }
.product-symbol { position: relative; z-index: 1; color: rgba(255,255,255,.86); font: 900 70px "Barlow Condensed"; letter-spacing: -.04em; text-shadow: 0 8px 0 rgba(0,0,0,.25); }
.product-card.vip .product-symbol { color: var(--orange); }
.product-card.welcome .product-symbol { color: var(--acid); }
.badge { position: absolute; z-index: 2; top: 12px; left: 12px; padding: 5px 9px; color: #111; background: var(--acid); font: 800 9px Inter; letter-spacing: .1em; }
.vip .badge { background: var(--orange); }
.product-body { padding: 21px; }
.server-label { color: var(--acid); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.product-body h3 { margin: 5px 0 6px; font: 700 25px "Barlow Condensed"; text-transform: uppercase; }
.product-body p { min-height: 48px; margin: 0; color: #818c91; font-size: 12px; line-height: 1.55; }
.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; padding-top: 16px; border-top: 1px solid #222a2e; }
.price { font: 700 21px "Barlow Condensed"; }
.arrow-link { display: grid; place-items: center; width: 34px; height: 30px; color: #111; background: var(--acid); }

.claim-strip { padding: 64px 0; color: #111; background: var(--acid); }
.claim-strip .eyebrow { color: #3b460d; }
.claim-grid { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.claim-strip h2 { font-size: 48px; }
.claim-strip p { margin: 0; max-width: 680px; color: #3f491c; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.steps article { min-height: 210px; padding: 30px; background: #0e1316; }
.steps b { color: var(--acid); font: 700 16px "Barlow Condensed"; }
.steps h3 { margin: 30px 0 6px; font: 700 24px "Barlow Condensed"; text-transform: uppercase; }
.steps p { color: var(--muted); font-size: 12px; }

.page-hero { border-bottom: 1px solid var(--line); background: linear-gradient(110deg, #0b0f11, #13191c); }
.page-hero.compact { padding: 68px 0 56px; }
.page-hero h1 { margin: 8px 0; font-size: 68px; line-height: .9; }
.page-hero p { color: var(--muted); margin: 0; }
.filters { display: grid; grid-template-columns: 1fr 1fr auto; align-items: end; gap: 14px; margin-bottom: 30px; padding: 18px; border: 1px solid var(--line); background: var(--panel); }
label { display: grid; gap: 7px; color: #aeb7ba; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
input, select, textarea {
  width: 100%;
  color: #fff;
  border: 1px solid #313c42;
  outline: none;
  background: #0a0e10;
  padding: 12px 13px;
  font-size: 13px;
  text-transform: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--acid); box-shadow: 0 0 0 2px rgba(200,241,53,.08); }
textarea { resize: vertical; }
.empty-state { padding: 60px 30px; border: 1px dashed #303b40; text-align: center; color: var(--muted); }
.empty-state strong { display: block; color: #fff; font: 700 26px "Barlow Condensed"; text-transform: uppercase; }

.product-detail { display: grid; grid-template-columns: 1fr .9fr; gap: 64px; align-items: center; min-height: 670px; }
.detail-art { position: relative; min-height: 480px; display: grid; place-items: center; overflow: hidden; border: 1px solid #303a3f; background: radial-gradient(circle at center, #293238, #13191c 68%); }
.detail-symbol { position: relative; z-index: 1; font: 900 110px "Barlow Condensed"; color: rgba(255,255,255,.75); transform: rotate(-6deg); }
.detail-art.vip .detail-symbol { color: var(--orange); }
.detail-art.welcome .detail-symbol { color: var(--acid); font-size: 82px; }
.back-link { display: inline-block; margin-bottom: 28px; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.detail-copy h1 { margin: 14px 0 20px; font-size: 74px; line-height: .82; }
.lead { color: #a9b2b6; font-size: 16px; }
.delivery-note { display: grid; gap: 4px; margin: 28px 0; padding: 17px; border-left: 3px solid var(--acid); background: #11171a; }
.delivery-note b { font: 700 18px "Barlow Condensed"; text-transform: uppercase; }
.delivery-note span { color: var(--muted); font-size: 12px; }
.buy-box { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding-top: 24px; border-top: 1px solid var(--line); }
.buy-box > div { display: flex; flex-direction: column; }
.buy-box small { color: var(--muted); font-size: 9px; letter-spacing: .12em; }
.buy-box strong { font: 800 36px "Barlow Condensed"; }
.fine-print { color: #69757a; font-size: 10px; }

.account-grid { display: grid; grid-template-columns: 330px 1fr; gap: 28px; align-items: start; }
.profile-card, .orders-panel, .order-detail-card, .message-card, .admin-card { border: 1px solid var(--line); background: var(--panel); }
.profile-card { padding: 26px; }
.profile-head { display: flex; align-items: center; gap: 15px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.profile-head img, .profile-avatar { width: 56px; height: 56px; border-radius: 4px; object-fit: cover; }
.profile-avatar { display: grid; place-items: center; color: #111; background: var(--acid); font: 800 24px "Barlow Condensed"; }
.profile-head small { color: var(--acid); font-size: 9px; letter-spacing: .15em; }
.profile-head h2 { margin: 0; font: 700 24px "Barlow Condensed"; }
.stack-form { display: grid; gap: 14px; margin-top: 22px; }
.stack-form > small { color: var(--muted); font-size: 10px; text-transform: none; }
.text-button { padding: 0; border: 0; color: var(--muted); background: none; font-size: 11px; text-decoration: underline; }
.profile-card > form:last-child { margin-top: 20px; }
.identity-lock { display: grid; gap: 8px; margin-top: 22px; padding: 18px; border: 1px solid #4b5a27; background: linear-gradient(135deg, rgba(200,241,53,.09), rgba(200,241,53,.015)); }
.identity-lock > small { color: var(--acid); font-size: 9px; letter-spacing: .16em; }
.identity-lock > strong { font: 700 20px "Barlow Condensed"; letter-spacing: .05em; }
.identity-lock p { margin: 8px 0 0; color: #9eaa91; font-size: 10px; }
.identity-lock p span { display: inline-grid; place-items: center; width: 18px; height: 18px; margin-right: 5px; color: #111; border-radius: 50%; background: var(--acid); }
.orders-panel { min-width: 0; padding: 26px; }
.panel-title { display: flex; justify-content: space-between; align-items: end; margin-bottom: 22px; }
.order-list { display: grid; }
.order-row { display: grid; grid-template-columns: 1fr auto 100px; align-items: center; gap: 20px; padding: 16px 4px; border-top: 1px solid var(--line); }
.order-row:hover { background: rgba(255,255,255,.018); }
.order-row div { display: grid; }
.order-row small, table small { color: var(--muted); font-size: 9px; letter-spacing: .05em; }
.order-row strong { font: 600 18px "Barlow Condensed"; }
.order-row > b { text-align: right; font: 600 17px "Barlow Condensed"; }
.status { display: inline-flex; width: fit-content; align-items: center; padding: 5px 8px; border: 1px solid #425057; color: #b9c2c6; font-size: 9px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.status-delivered { color: var(--acid); border-color: #64751f; background: rgba(200,241,53,.06); }
.status-waiting_player { color: #ffc172; border-color: #6c4a24; }
.status-failed, .status-review, .status-payment_failed { color: #ff8b84; border-color: #6b302c; }
.status-delivering, .status-queued { color: #8ec9ff; border-color: #315473; }
.status.large { padding: 8px 12px; font-size: 10px; }

.order-detail-card { padding: 34px; }
.order-title { display: flex; justify-content: space-between; align-items: start; gap: 30px; }
.order-title h1 { margin: 7px 0 0; font: 800 44px "Barlow Condensed"; text-transform: uppercase; }
.order-title p { color: var(--muted); margin: 0; }
.progress-track { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); margin: 48px 0; }
.progress-track::before { content: ""; position: absolute; top: 15px; left: 10%; right: 10%; height: 1px; background: #394349; }
.progress-track div { position: relative; z-index: 1; display: grid; justify-items: center; gap: 8px; color: #6f7a7f; text-align: center; font-size: 10px; text-transform: uppercase; letter-spacing: .06em; }
.progress-track i { display: grid; place-items: center; width: 31px; height: 31px; border: 1px solid #465158; border-radius: 50%; background: var(--panel); font-style: normal; }
.progress-track .done, .progress-track .current { color: #fff; }
.progress-track .done i { color: #111; border-color: var(--acid); background: var(--acid); }
.progress-track .current i { color: var(--acid); border-color: var(--acid); box-shadow: 0 0 18px rgba(200,241,53,.18); }
.progress-track small { color: inherit; }
.action-callout { margin: 25px 0; padding: 18px; border-left: 3px solid #607078; background: #0b1012; }
.action-callout.warning { border-color: var(--orange); }
.action-callout.success { border-color: var(--acid); }
.action-callout.error { border-color: var(--red); }
.action-callout strong { font: 700 20px "Barlow Condensed"; text-transform: uppercase; }
.action-callout p { margin: 3px 0 0; color: var(--muted); font-size: 12px; }
.order-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; padding: 1px; background: var(--line); }
.order-facts div { padding: 15px; background: #0d1214; }
.order-facts dt { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.order-facts dd { margin: 3px 0 0; font: 600 17px "Barlow Condensed"; }
.dev-box { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 24px; padding: 17px; border: 1px dashed var(--acid-dark); background: rgba(200,241,53,.035); }
.dev-box p { margin: 2px 0; color: var(--muted); font-size: 11px; }

.alert { margin-top: 16px; padding: 13px 16px; border: 1px solid; font-size: 12px; }
.alert.success { color: #dffa84; border-color: #5a6b20; background: #151b0d; }
.alert.error { color: #ffa7a1; border-color: #6d312d; background: #1c1010; }
.alert.warning { color: #ffd195; border-color: #6d4c27; background: #1c160f; }
.message-card { margin-block: 70px; padding: 70px; text-align: center; }
.message-card h1 { margin: 8px 0; font: 800 54px "Barlow Condensed"; text-transform: uppercase; }
.message-card p { color: var(--muted); margin-bottom: 28px; }

.admin-stack { display: grid; gap: 18px; }
.admin-card { overflow: hidden; }
.admin-card summary, .admin-table-head { display: flex; justify-content: space-between; align-items: center; padding: 22px 25px; cursor: pointer; font: 700 24px "Barlow Condensed"; text-transform: uppercase; list-style: none; }
.admin-card summary::-webkit-details-marker { display: none; }
.admin-card summary small, .admin-table-head small { display: block; color: var(--acid); font: 700 9px Inter; letter-spacing: .14em; }
.admin-card summary b, .admin-table-head b { color: var(--muted); }
.admin-content { padding: 25px; border-top: 1px solid var(--line); }
.two-col { display: grid; grid-template-columns: 380px 1fr; gap: 34px; }
.admin-content .stack-form { margin: 0; }
.admin-content h3 { margin: 0; font: 700 23px "Barlow Condensed"; text-transform: uppercase; }
.admin-list { display: grid; align-content: start; }
.admin-list-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.admin-list-row > div { display: grid; }
.admin-list-row small { color: var(--muted); font-size: 10px; }
.table-wrap { overflow-x: auto; border-top: 1px solid var(--line); }
table { width: 100%; border-collapse: collapse; min-width: 760px; }
th, td { padding: 14px 18px; border-bottom: 1px solid var(--line); text-align: left; font-size: 11px; }
th { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; background: #0c1012; }
td small { display: block; }
code { color: var(--acid); }

/* Command center */
.admin-shell { width: min(100%, 1600px); min-height: calc(100vh - 76px); margin: 0 auto; display: grid; grid-template-columns: 238px 1fr; background: #080b0d; }
.admin-sidebar { position: sticky; top: 76px; height: calc(100vh - 76px); display: flex; flex-direction: column; padding: 28px 18px; border-right: 1px solid #293238; background: linear-gradient(180deg, #111719, #090c0e); }
.admin-sidebar::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .12; background: repeating-linear-gradient(0deg, transparent 0 4px, #fff 5px); }
.admin-brand { position: relative; z-index: 1; display: flex; align-items: center; gap: 10px; padding: 0 8px 30px; border-bottom: 1px solid var(--line); }
.admin-brand > div { display: grid; }
.admin-brand strong { font: 800 17px "Barlow Condensed"; letter-spacing: .04em; }
.admin-brand small { color: var(--muted); font-size: 7px; letter-spacing: .18em; }
.admin-sidebar nav { position: relative; z-index: 1; display: grid; gap: 5px; margin-top: 28px; }
.admin-sidebar nav a { display: flex; align-items: center; gap: 13px; min-height: 48px; padding: 0 13px; color: #899499; border: 1px solid transparent; font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.admin-sidebar nav a span { color: #4f5a5f; font: 600 9px monospace; }
.admin-sidebar nav a:hover { color: #fff; background: #151c1f; }
.admin-sidebar nav a.active { color: #111; background: var(--acid); clip-path: polygon(0 0, 96% 0, 100% 50%, 96% 100%, 0 100%); }
.admin-sidebar nav a.active span { color: #576811; }
.admin-exit { position: relative; z-index: 1; margin-top: auto; padding: 13px; color: #717c80; border-top: 1px solid var(--line); font-size: 10px; text-transform: uppercase; }
.admin-main { min-width: 0; padding: 34px clamp(20px, 3vw, 48px) 70px; background: radial-gradient(circle at 90% 0, rgba(200,241,53,.05), transparent 28%); }
.admin-topbar { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 30px; padding-bottom: 24px; border-bottom: 1px solid #2a3439; }
.admin-topbar h1 { margin: 5px 0 0; font: 900 clamp(38px, 5vw, 62px)/.9 "Barlow Condensed"; text-transform: uppercase; }
.admin-operator { display: grid; justify-items: end; }
.admin-operator small { color: var(--acid); font-size: 8px; letter-spacing: .16em; }
.admin-operator strong { font: 700 17px "Barlow Condensed"; }
.admin-panel { border: 1px solid #29343a; background: linear-gradient(145deg, #111719, #0d1214); }
.panel-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.panel-heading small { display: block; color: var(--acid); font-size: 8px; font-weight: 700; letter-spacing: .16em; }
.panel-heading h2 { margin: 2px 0 0; font: 800 25px "Barlow Condensed"; text-transform: uppercase; }
.panel-heading > a, .panel-heading > span { color: var(--muted); font-size: 9px; text-transform: uppercase; }
.panel-heading > b { color: var(--acid); font: 800 30px "Barlow Condensed"; }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 18px; }
.metric-card { position: relative; min-height: 142px; display: grid; align-content: center; padding: 22px; overflow: hidden; border: 1px solid #2a353a; background: #101619; }
.metric-card::after { content: ""; position: absolute; right: -30px; bottom: -60px; width: 115px; height: 115px; border: 1px solid rgba(255,255,255,.06); transform: rotate(45deg); }
.metric-card small { color: #808b90; font-size: 8px; font-weight: 700; letter-spacing: .13em; }
.metric-card strong { color: #fff; font: 800 38px "Barlow Condensed"; line-height: 1.1; }
.metric-card span { color: #677277; font-size: 9px; }
.metric-card.primary { border-color: #667a20; background: linear-gradient(135deg, rgba(200,241,53,.14), #101619 72%); }
.metric-card.primary strong { color: var(--acid); }
.metric-card.warning strong { color: var(--orange); }
.admin-dashboard-grid { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(300px, .7fr); gap: 18px; margin-bottom: 18px; }
.admin-dashboard-grid.lower { grid-template-columns: 1.25fr .75fr; }
.revenue-chart { height: 250px; display: grid; grid-template-columns: repeat(14, 1fr); gap: 5px; align-items: end; padding: 25px 20px 8px; }
.chart-column { height: 100%; display: grid; grid-template-rows: 20px 1fr 18px; gap: 4px; justify-items: center; }
.chart-value { color: #667176; font: 600 9px monospace; }
.chart-bar { width: min(22px, 70%); height: 100%; display: flex; align-items: end; background: rgba(255,255,255,.025); }
.chart-bar i { width: 100%; min-height: 4px; background: linear-gradient(0deg, #7f990f, var(--acid)); box-shadow: 0 0 14px rgba(200,241,53,.12); }
.chart-column small { color: #616c71; font-size: 7px; transform: rotate(-45deg); }
.chart-legend { padding: 12px 24px 18px; color: #687378; font-size: 9px; }
.chart-legend i { display: inline-block; width: 9px; height: 9px; margin-right: 6px; background: var(--acid); }
.server-monitor { align-self: stretch; }
.server-runtime { display: grid; grid-template-columns: 12px 1fr auto; align-items: center; gap: 12px; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.runtime-light { width: 9px; height: 9px; border-radius: 50%; }
.runtime-light.online { background: var(--acid); box-shadow: 0 0 12px var(--acid); }
.runtime-light.offline { background: var(--red); box-shadow: 0 0 12px var(--red); }
.server-runtime > div { display: grid; }
.server-runtime strong { font: 700 16px "Barlow Condensed"; }
.server-runtime small { color: #657075; font: 8px monospace; }
.server-runtime b { color: #9da7ab; font: 600 10px monospace; text-transform: uppercase; }
.compact-order-list a { display: grid; grid-template-columns: 1fr auto 90px; align-items: center; gap: 16px; padding: 14px 20px; border-bottom: 1px solid var(--line); }
.compact-order-list a:hover { background: rgba(255,255,255,.02); }
.compact-order-list div { display: grid; }
.compact-order-list strong { font: 600 16px "Barlow Condensed"; }
.compact-order-list small { color: var(--muted); font-size: 8px; }
.compact-order-list > a > b { text-align: right; font: 700 15px "Barlow Condensed"; }
.audit-list { padding: 10px 20px 16px; }
.audit-list > div { display: grid; grid-template-columns: 8px 1fr; gap: 10px; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.045); }
.audit-list i { width: 6px; height: 6px; margin-top: 7px; border-radius: 50%; background: var(--acid); }
.audit-list span { display: grid; }
.audit-list strong { color: #bac3c6; font-size: 10px; }
.audit-list small { color: #5f6a6f; font-size: 8px; }
.admin-empty { padding: 35px; color: var(--muted); text-align: center; font-size: 11px; }
.admin-actions { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 20px; }
.admin-actions p { color: var(--muted); }
.admin-catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.admin-product-card { border: 1px solid #29343a; background: #101518; }
.admin-product-card.inactive { opacity: .55; }
.admin-product-visual { position: relative; height: 155px; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle, #2c363b, #111719 70%); }
.admin-product-visual.vip { background: radial-gradient(circle, #4b2d18, #17120f 70%); }
.admin-product-visual.welcome { background: radial-gradient(circle, #354317, #11150d 70%); }
.admin-product-visual > span { font: 900 48px "Barlow Condensed"; color: rgba(255,255,255,.15); }
.admin-product-visual > i { position: absolute; top: 10px; right: 10px; padding: 4px 7px; color: #111; background: var(--acid); font: 800 7px Inter; font-style: normal; }
.admin-product-body { padding: 18px; }
.admin-product-body > small { color: var(--acid); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.admin-product-body h2 { margin: 4px 0; font: 800 24px "Barlow Condensed"; text-transform: uppercase; }
.admin-product-body p { height: 44px; overflow: hidden; color: #7f8a8e; font-size: 10px; }
.admin-product-body > div { display: flex; justify-content: space-between; color: #849094; font-size: 9px; }
.admin-product-body > div strong { color: #fff; font: 700 19px "Barlow Condensed"; }
.admin-product-body footer { display: flex; align-items: center; justify-content: space-between; margin-top: 15px; padding-top: 14px; border-top: 1px solid var(--line); }
.admin-editor { display: grid; grid-template-columns: minmax(0, 1fr) 290px; gap: 18px; align-items: start; }
.editor-main { padding-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; padding: 22px 24px; }
.form-grid.compact { padding-inline: 0; }
.span-2 { grid-column: span 2; }
.command-editor { color: #cbe183; font-family: Consolas, monospace; line-height: 1.65; }
.command-help { display: flex; gap: 12px; margin: 0 24px; padding: 14px; color: var(--muted); border: 1px dashed #4a5826; background: rgba(200,241,53,.035); font-size: 10px; }
.editor-side { position: sticky; top: 98px; display: grid; gap: 24px; padding: 24px; }
.editor-side small, .access-add > div > small { color: var(--acid); font-size: 8px; letter-spacing: .14em; }
.editor-side h2, .access-add h2 { margin: 2px 0; font: 800 28px "Barlow Condensed"; text-transform: uppercase; }
.toggle-row { display: flex; grid-column: auto; align-items: center; gap: 10px; cursor: pointer; text-transform: none; }
.toggle-row input { position: absolute; opacity: 0; width: 1px; }
.toggle-row > span { position: relative; width: 38px; height: 20px; border: 1px solid #485359; border-radius: 12px; background: #090d0f; }
.toggle-row > span::after { content: ""; position: absolute; width: 12px; height: 12px; left: 3px; top: 3px; border-radius: 50%; background: #687378; transition: .2s; }
.toggle-row input:checked + span { border-color: var(--acid-dark); background: rgba(200,241,53,.1); }
.toggle-row input:checked + span::after { left: 21px; background: var(--acid); }
.toggle-row b { color: #aab3b6; font-size: 10px; }
.danger-note { padding: 15px; border-left: 3px solid var(--orange); background: #17130f; }
.danger-note strong { color: var(--orange); font: 700 17px "Barlow Condensed"; text-transform: uppercase; }
.danger-note p { margin: 4px 0; color: #8f877e; font-size: 9px; }
.admin-filters { display: grid; grid-template-columns: 1.6fr 1fr auto; align-items: end; gap: 12px; margin-bottom: 18px; padding: 16px; border: 1px solid var(--line); background: #101518; }
.server-admin-grid { display: grid; grid-template-columns: 380px 1fr; gap: 18px; }
.server-control { padding: 24px; }
.server-control-head { display: flex; align-items: center; gap: 20px; }
.server-control-head h2 { margin: 4px 0 0; font: 800 30px "Barlow Condensed"; text-transform: uppercase; }
.server-control-head p { margin: 0; color: var(--muted); font: 9px monospace; }
.server-orbit { position: relative; width: 92px; height: 92px; flex: 0 0 92px; display: grid; place-items: center; border: 1px solid #3a454b; border-radius: 50%; }
.server-orbit::before, .server-orbit::after { content: ""; position: absolute; border: 1px solid; border-radius: 50%; }
.server-orbit::before { inset: 8px; opacity: .4; }
.server-orbit::after { inset: 16px; opacity: .2; }
.server-orbit.online { color: var(--acid); border-color: var(--acid-dark); box-shadow: inset 0 0 28px rgba(200,241,53,.08); }
.server-orbit.offline { color: var(--red); border-color: #713530; }
.server-orbit span { font: 800 31px "Barlow Condensed"; line-height: .7; }
.server-orbit small { position: absolute; bottom: 19px; font-size: 6px; letter-spacing: .14em; }
.player-list { max-height: 600px; overflow-y: auto; }
.player-row { display: grid; grid-template-columns: 38px minmax(180px, 1fr) auto; align-items: center; gap: 13px; padding: 14px 20px; border-bottom: 1px solid var(--line); }
.player-index { display: grid; place-items: center; width: 35px; height: 35px; color: #111; background: var(--acid); font: 800 17px "Barlow Condensed"; clip-path: polygon(0 0, 86% 0, 100% 50%, 86% 100%, 0 100%); }
.player-row > div:nth-child(2) { display: grid; }
.player-row strong { font: 700 17px "Barlow Condensed"; }
.player-row small { color: #687378; font: 8px monospace; }
.player-row dl { display: flex; gap: 25px; margin: 0; }
.player-row dl span { display: grid; }
.player-row dt { color: #5e696e; font-size: 7px; }
.player-row dd { margin: 0; color: #ccd3d5; font: 700 15px "Barlow Condensed"; }
.add-server-panel { margin-top: 18px; }
.add-server-panel summary { padding: 20px 24px; color: var(--acid); cursor: pointer; font: 700 18px "Barlow Condensed"; text-transform: uppercase; }
.access-grid { display: grid; grid-template-columns: 1fr 330px; gap: 18px; }
.access-row { display: grid; grid-template-columns: 42px 1fr auto auto; align-items: center; gap: 14px; padding: 14px 20px; border-bottom: 1px solid var(--line); }
.access-row.inactive { opacity: .45; }
.access-row .profile-avatar { width: 38px; height: 38px; }
.access-row > div:nth-child(2) { display: grid; }
.access-row strong { font: 700 16px "Barlow Condensed"; }
.access-row small { color: #687378; font: 8px monospace; }
.access-add { padding: 24px; }
.access-add p { color: var(--muted); font-size: 10px; }
.registered-users { display: grid; gap: 8px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); }
.registered-users > small { color: var(--muted); font-size: 8px; letter-spacing: .1em; }
.registered-users > div { display: flex; justify-content: space-between; gap: 10px; }
.registered-users strong { font-size: 10px; }
.registered-users code { font-size: 8px; }

.site-footer { border-top: 1px solid var(--line); background: #060809; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding-block: 52px; }
.footer-grid > div { display: grid; align-content: start; gap: 8px; }
.footer-grid p, .footer-grid a { margin: 0; color: #778287; font-size: 11px; }
.footer-grid strong { font: 700 17px "Barlow Condensed"; text-transform: uppercase; }
.footer-brand { margin-bottom: 10px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-block: 18px; border-top: 1px solid #171d20; color: #505b60; font-size: 9px; text-transform: uppercase; letter-spacing: .06em; }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .hero-grid, .product-detail, .account-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 40px; }
  .hero-panel { min-height: 330px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .profile-card { order: 0; }
  .orders-panel { order: 1; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; min-width: 0; height: auto; padding: 14px; overflow: hidden; }
  .admin-sidebar nav { width: 100%; display: flex; overflow-x: auto; margin-top: 14px; }
  .admin-sidebar nav a { flex: 0 0 135px; }
  .admin-exit { display: none; }
  .admin-main { min-width: 0; overflow: hidden; }
  .metric-grid, .admin-catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-dashboard-grid, .admin-dashboard-grid.lower, .server-admin-grid, .access-grid { grid-template-columns: 1fr; }
  .admin-editor { grid-template-columns: 1fr; }
  .editor-side { position: static; }
}

@media (max-width: 640px) {
  .shell { width: min(calc(100% - 24px), var(--shell)); }
  .site-header .brand small, .user-chip span, .nav-actions .ghost { display: none; }
  .nav-shell { min-height: 64px; gap: 10px; }
  .button { min-height: 44px; padding-inline: 16px; }
  .hero { min-height: auto; }
  .hero-grid { padding-block: 56px; }
  .hero h1 { font-size: 64px; }
  .hero-actions, .claim-grid, .buy-box, .footer-bottom, .dev-box { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-meta { margin-top: 38px; gap: 12px; }
  .hero-panel { min-height: 280px; }
  .skull-mark { font-size: 80px; }
  .section { padding-block: 58px; }
  .section-heading { align-items: start; flex-direction: column; }
  .section-heading h2, .claim-strip h2 { font-size: 37px; }
  .product-grid, .steps, .footer-grid, .filters { grid-template-columns: 1fr; }
  .steps { gap: 1px; }
  .claim-strip { padding-block: 48px; }
  .detail-art { min-height: 330px; }
  .detail-symbol { font-size: 78px; }
  .detail-copy h1 { font-size: 58px; }
  .order-row { grid-template-columns: 1fr auto; }
  .order-row > b { display: none; }
  .order-detail-card { padding: 22px 16px; }
  .order-title { flex-direction: column; }
  .progress-track span { display: none; }
  .order-facts { grid-template-columns: 1fr; }
  .message-card { padding: 45px 20px; }
  .footer-grid { gap: 30px; }
  .admin-main { padding-inline: 12px; }
  .admin-topbar { align-items: start; flex-direction: column; }
  .admin-operator { justify-items: start; }
  .metric-grid, .admin-catalog-grid { grid-template-columns: 1fr; }
  .form-grid, .admin-filters { grid-template-columns: 1fr; }
  .span-2 { grid-column: auto; }
  .revenue-chart { gap: 2px; overflow-x: auto; }
  .chart-column { min-width: 19px; }
  .player-row { grid-template-columns: 38px 1fr; }
  .player-row dl { grid-column: 2; gap: 16px; }
  .compact-order-list a { grid-template-columns: 1fr auto; }
  .compact-order-list > a > b { display: none; }
  .access-row { grid-template-columns: 38px 1fr; }
  .access-row .status, .access-row form { grid-column: 2; }
}
