/* ==========================================================================
   OPZ DAYZ — TACTICAL STOREFRONT DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rajdhani:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root{
  /* palette */
  --void:#0a0b0d;
  --panel:#131519;
  --panel-alt:#1a1d22;
  --panel-raised:#20242a;
  --border:#2b2f36;
  --border-light:#3a3f47;

  --red:#d81e2c;
  --red-bright:#ff2d3d;
  --red-dim:#5c1218;
  --blue:#1c6fd8;
  --blue-bright:#3fa2ff;
  --blue-dim:#12324f;

  --text:#eceef0;
  --text-soft:#a8adb5;
  --text-mute:#686e77;

  --online:#3ecf6a;
  --offline:#ff3b3b;

  --font-display:'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-hud:'Rajdhani', 'Segoe UI', sans-serif;
  --font-body:'Inter', -apple-system, 'Segoe UI', sans-serif;

  --radius-sm:2px;
  --radius:4px;
  --shadow-panel: 0 8px 30px rgba(0,0,0,.55);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--void);
  color:var(--text);
  font-family:var(--font-body);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{ margin:0; font-weight:600; }
p{ margin:0; }
input,select,textarea{ font-family:inherit; }

.container{
  width:100%;
  max-width:1240px;
  margin:0 auto;
  padding:0 24px;
}

/* ---- background texture layers ---- */
body::before{
  content:'';
  position:fixed; inset:0;
  pointer-events:none;
  z-index:0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size:44px 44px;
  mask-image:radial-gradient(ellipse at 50% 0%, black 0%, transparent 75%);
}
body::after{
  content:'';
  position:fixed; inset:0;
  pointer-events:none;
  z-index:0;
  opacity:.5;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%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)' opacity='0.035'/%3E%3C/svg%3E");
}
#app, header, main, footer{ position:relative; z-index:1; }

/* ---- kinetic grid interactive background (js/kineticGrid.js) ---- */
.kinetic-grid-canvas{
  position:fixed; inset:0;
  width:100%; height:100%;
  z-index:0;
  pointer-events:none;
  display:block;
}

/* ---- HUD utility bits ---- */
.eyebrow{
  font-family:var(--font-hud);
  font-weight:700;
  letter-spacing:.28em;
  text-transform:uppercase;
  font-size:12px;
  color:var(--red-bright);
  display:flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:'';
  width:18px; height:2px;
  background:var(--red-bright);
  display:inline-block;
}
.eyebrow.blue{ color:var(--blue-bright); }
.eyebrow.blue::before{ background:var(--blue-bright); }

.bracket-panel{
  position:relative;
  border:1px solid var(--border);
  background:linear-gradient(155deg, var(--panel) 0%, var(--panel-alt) 100%);
}
.bracket-panel::before,.bracket-panel::after,
.bracket-corners > span{ pointer-events:none; }
.bracket-panel::before,.bracket-panel::after{
  content:'';
  position:absolute;
  width:16px; height:16px;
  border-color:var(--red-bright);
  border-style:solid;
  border-width:0;
  z-index:2;
}
.bracket-panel::before{
  top:-1px; left:-1px;
  border-top-width:2px; border-left-width:2px;
}
.bracket-panel::after{
  bottom:-1px; right:-1px;
  border-bottom-width:2px; border-right-width:2px;
  border-color:var(--blue-bright);
}

/* ==========================================================================
   WARNING / NOTICE BANNERS (admin page, security callouts)
   ========================================================================== */
.warning-banner{
  display:flex; gap:16px; align-items:flex-start;
  border:1px solid var(--red-dim);
  background:linear-gradient(155deg, rgba(216,30,44,.08) 0%, rgba(216,30,44,.03) 100%);
  border-radius:var(--radius);
  padding:20px 22px;
  margin-bottom:28px;
}
.warning-banner svg{ flex:none; width:22px; height:22px; color:var(--red-bright); margin-top:2px; }
.warning-banner h4{
  font-family:var(--font-hud); font-weight:700; font-size:14px;
  letter-spacing:.04em; text-transform:uppercase; color:var(--red-bright);
  margin-bottom:6px;
}
.warning-banner p{ font-size:13.5px; color:var(--text-soft); line-height:1.6; }
.warning-banner p + p{ margin-top:8px; }
.warning-banner code{
  background:var(--panel-alt); padding:1px 6px; border-radius:3px;
  font-size:.92em; color:var(--text);
}

.admin-status-pill{
  display:inline-flex; align-items:center; gap:6px;
  font-family:var(--font-hud); font-size:11px; font-weight:700;
  letter-spacing:.06em; text-transform:uppercase;
  padding:4px 10px; border-radius:20px;
  background:rgba(62,207,106,.12); color:var(--online);
  border:1px solid rgba(62,207,106,.35);
}
.admin-status-pill.off{
  background:rgba(104,110,119,.12); color:var(--text-mute);
  border-color:var(--border-light);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family:var(--font-hud);
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:14px;
  padding:13px 26px;
  border-radius:var(--radius-sm);
  border:1px solid transparent;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  white-space:nowrap;
}
.btn:active{ transform:translateY(1px); }

.btn-primary{
  background:linear-gradient(135deg, var(--red) 0%, #a2131e 100%);
  color:#fff;
  box-shadow:0 0 0 1px rgba(216,30,44,.4), 0 8px 20px -8px rgba(216,30,44,.8);
}
.btn-primary:hover{ box-shadow:0 0 0 1px var(--red-bright), 0 0 22px -2px rgba(255,45,61,.75); }

.btn-secondary{
  background:linear-gradient(135deg, var(--blue) 0%, #0f4f9c 100%);
  color:#fff;
  box-shadow:0 0 0 1px rgba(28,111,216,.4), 0 8px 20px -8px rgba(28,111,216,.8);
}
.btn-secondary:hover{ box-shadow:0 0 0 1px var(--blue-bright), 0 0 22px -2px rgba(63,162,255,.75); }

.btn-ghost{
  background:transparent;
  border-color:var(--border-light);
  color:var(--text);
}
.btn-ghost:hover{ border-color:var(--text-soft); background:rgba(255,255,255,.03); }

.btn-block{ width:100%; }
.btn-sm{ padding:9px 16px; font-size:12px; }
.btn:disabled{ opacity:.4; cursor:not-allowed; box-shadow:none; }

.btn-discord{
  background:linear-gradient(135deg,#5865F2,#3945c4);
  color:#fff;
  box-shadow:0 0 0 1px rgba(88,101,242,.5), 0 8px 20px -8px rgba(88,101,242,.8);
}
.btn-discord:hover{ box-shadow:0 0 0 1px #8891f5, 0 0 22px -2px rgba(88,101,242,.8); }
.btn-discord svg{ width:16px; height:16px; fill:currentColor; }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(10,11,13,.88);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}
.site-header .container{
  display:flex; align-items:center; justify-content:space-between;
  height:76px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  font-family:var(--font-display);
  font-size:26px;
  letter-spacing:.04em;
  white-space:nowrap;
  flex-shrink:1;
  min-width:0;
}
.brand-text{ min-width:0; overflow:hidden; }
.brand-text b{ white-space:nowrap; }
.brand .mark{
  width:38px; height:38px;
  border:2px solid var(--red-bright);
  display:flex; align-items:center; justify-content:center;
  position:relative;
  transform:rotate(45deg);
  flex:none;
}
.brand .mark span{
  transform:rotate(-45deg);
  font-family:var(--font-display);
  font-weight:400; font-size:19px;
  color:var(--red-bright);
}
.brand .brand-text b{ color:var(--red-bright); }
.brand .brand-text small{
  display:block;
  font-family:var(--font-hud);
  font-size:10px;
  letter-spacing:.35em;
  color:var(--blue-bright);
  font-weight:700;
  margin-top:-4px;
}

.main-nav{ display:flex; align-items:center; gap:30px; }
.main-nav a{
  font-family:var(--font-hud);
  font-weight:600;
  font-size:14px;
  letter-spacing:.05em;
  text-transform:uppercase;
  color:var(--text-soft);
  transition:color .15s ease;
  position:relative;
  padding:6px 0;
}
.main-nav a:hover, .main-nav a.active{ color:var(--text); }
.main-nav a.active::after{
  content:'';
  position:absolute; left:0; right:0; bottom:-2px;
  height:2px; background:var(--red-bright);
}

.header-actions{ display:flex; align-items:center; gap:14px; flex-shrink:0; }
.icon-btn{
  position:relative;
  width:42px; height:42px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--border-light);
  background:var(--panel-alt);
  border-radius:var(--radius-sm);
  color:var(--text);
  transition:border-color .15s ease, background .15s ease;
}
.icon-btn:hover{ border-color:var(--red-bright); }
.icon-btn svg{ width:19px; height:19px; }
.cart-count{
  position:absolute; top:-7px; right:-7px;
  background:var(--red-bright);
  color:#fff;
  font-family:var(--font-hud); font-weight:700;
  font-size:11px;
  min-width:18px; height:18px;
  border-radius:9px;
  display:flex; align-items:center; justify-content:center;
  padding:0 4px;
  border:2px solid var(--void);
}
.cart-count[data-empty="true"]{ display:none; }

.nav-toggle{
  display:none;
  width:42px; height:42px;
  border:1px solid var(--border-light);
  background:var(--panel-alt);
  align-items:center; justify-content:center;
  color:var(--text);
}
.nav-toggle svg{ width:20px; height:20px; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position:relative;
  padding:96px 0 80px;
  overflow:hidden;
  border-bottom:1px solid var(--border);
}
.hero::before{
  content:'';
  position:absolute; inset:0;
  background:
    radial-gradient(700px 420px at 12% 20%, rgba(216,30,44,.16), transparent 65%),
    radial-gradient(700px 420px at 88% 30%, rgba(28,111,216,.16), transparent 65%);
  pointer-events:none;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:56px;
  align-items:center;
  position:relative;
}
.hero-tag{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-hud); font-weight:700; letter-spacing:.2em;
  text-transform:uppercase; font-size:11px;
  color:var(--text-soft);
  border:1px solid var(--border-light);
  padding:7px 12px;
  background:var(--panel-alt);
  margin-bottom:22px;
}
.hero-tag .dot{ width:7px; height:7px; border-radius:50%; background:var(--online); box-shadow:0 0 8px var(--online); }

.hero h1{
  font-family:var(--font-display);
  font-size:clamp(46px, 6.4vw, 82px);
  line-height:.96;
  letter-spacing:.01em;
  text-transform:uppercase;
  margin-bottom:20px;
}
.hero h1 .accent-red{ color:var(--red-bright); }
.hero h1 .accent-blue{ color:var(--blue-bright); }

.hero p.lead{
  font-size:17px;
  color:var(--text-soft);
  max-width:520px;
  margin-bottom:34px;
}
.hero-cta{ display:flex; gap:16px; flex-wrap:wrap; }

.hero-stats{
  display:flex; gap:28px;
  margin-top:44px;
  flex-wrap:wrap;
}
.hero-stat b{
  font-family:var(--font-display);
  font-size:30px;
  display:block;
  letter-spacing:.02em;
}
.hero-stat span{
  font-family:var(--font-hud);
  font-size:11px;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:var(--text-mute);
}

/* ==========================================================================
   SERVER STATUS PANEL
   ========================================================================== */
.status-panel{
  padding:26px;
  border-radius:var(--radius);
  box-shadow:var(--shadow-panel);
}
.status-panel-head{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:20px;
  padding-bottom:16px;
  border-bottom:1px solid var(--border);
}
.status-panel-head h3{
  font-family:var(--font-hud); font-weight:700;
  letter-spacing:.1em; text-transform:uppercase; font-size:14px;
  color:var(--text-soft);
}
.status-pill{
  display:flex; align-items:center; gap:8px;
  font-family:var(--font-hud); font-weight:700;
  font-size:12px; letter-spacing:.08em; text-transform:uppercase;
  padding:6px 12px;
  border-radius:20px;
  border:1px solid var(--border-light);
}
.status-pill .dot{ width:8px; height:8px; border-radius:50%; }
.status-pill.online{ color:var(--online); border-color:rgba(62,207,106,.4); background:rgba(62,207,106,.08); }
.status-pill.online .dot{ background:var(--online); box-shadow:0 0 8px var(--online); animation:pulse-dot 1.8s infinite; }
.status-pill.offline{ color:var(--offline); border-color:rgba(255,59,59,.4); background:rgba(255,59,59,.08); }
.status-pill.offline .dot{ background:var(--offline); }
.status-pill.loading{ color:var(--text-mute); }
.status-pill.loading .dot{ background:var(--text-mute); animation:pulse-dot 1s infinite; }
@keyframes pulse-dot{ 0%,100%{ opacity:1;} 50%{ opacity:.35;} }

.status-server-name{
  font-family:var(--font-display);
  font-size:24px;
  letter-spacing:.03em;
  margin-bottom:18px;
  text-transform:uppercase;
}
.status-server-name small{
  display:block;
  font-family:var(--font-hud);
  font-size:11px;
  letter-spacing:.15em;
  color:var(--text-mute);
  margin-top:2px;
  text-transform:uppercase;
}

.status-bar-track{
  width:100%; height:10px;
  background:var(--panel-raised);
  border:1px solid var(--border);
  overflow:hidden;
  margin-bottom:10px;
}
.status-bar-fill{
  height:100%;
  background:linear-gradient(90deg, var(--blue) 0%, var(--red) 100%);
  width:0%;
  transition:width .6s ease;
}
.status-numbers{
  display:flex; justify-content:space-between; align-items:baseline;
  font-family:var(--font-hud);
}
.status-numbers .count{ font-size:22px; font-weight:700; color:var(--text); }
.status-numbers .label{ font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:var(--text-mute); }

.status-meta{
  margin-top:18px;
  padding-top:16px;
  border-top:1px solid var(--border);
  font-family:var(--font-hud);
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--text-mute);
  display:flex;
  justify-content:space-between;
}
.status-meta .live-tick::before{
  content:'●'; color:var(--online); margin-right:6px; font-size:9px;
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section{ padding:88px 0; }
.section.alt{ background:var(--panel); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.section-head{
  text-align:center;
  max-width:640px;
  margin:0 auto 52px;
}
.section-head .eyebrow{ justify-content:center; margin-bottom:14px; }
.section-head h2{
  font-family:var(--font-display);
  font-size:clamp(32px,4vw,46px);
  text-transform:uppercase;
  letter-spacing:.01em;
  margin-bottom:12px;
}
.section-head p{ color:var(--text-soft); font-size:15px; }

/* ==========================================================================
   PRODUCT CATEGORY CARDS (home)
   ========================================================================== */
.category-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}
.category-card{
  padding:32px 28px;
  border-radius:var(--radius);
  transition:transform .2s ease, box-shadow .2s ease;
  display:flex; flex-direction:column;
  min-height:290px;
}
.category-card:hover{ transform:translateY(-4px); box-shadow:0 16px 40px -18px rgba(0,0,0,.7); }
.category-card .icon-wrap{
  width:54px; height:54px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--border-light);
  background:var(--panel-raised);
  margin-bottom:22px;
}
.category-card .icon-wrap svg{ width:26px; height:26px; }
.category-card.red .icon-wrap svg{ color:var(--red-bright); }
.category-card.blue .icon-wrap svg{ color:var(--blue-bright); }
.category-card h3{
  font-family:var(--font-display);
  font-size:26px; text-transform:uppercase; letter-spacing:.02em;
  margin-bottom:10px;
}
.category-card p{ color:var(--text-soft); font-size:14px; margin-bottom:24px; flex:1; }
.category-card .price-tag{
  font-family:var(--font-hud); font-weight:700;
  font-size:13px; letter-spacing:.05em; text-transform:uppercase;
  color:var(--text-mute); margin-bottom:18px;
}
.category-card .price-tag b{ color:var(--text); font-size:18px; }
.category-card .card-link{
  font-family:var(--font-hud); font-weight:700;
  font-size:13px; letter-spacing:.1em; text-transform:uppercase;
  display:inline-flex; align-items:center; gap:8px;
}
.category-card.red .card-link{ color:var(--red-bright); }
.category-card.blue .card-link{ color:var(--blue-bright); }
.category-card .card-link svg{ width:14px; height:14px; transition:transform .15s ease; }
.category-card:hover .card-link svg{ transform:translateX(4px); }

.badge-soon{
  display:inline-block;
  font-family:var(--font-hud); font-weight:700;
  font-size:10px; letter-spacing:.15em; text-transform:uppercase;
  padding:4px 10px;
  background:var(--panel-raised);
  border:1px solid var(--border-light);
  color:var(--text-mute);
  align-self:flex-start;
  margin-bottom:16px;
}

/* ==========================================================================
   PRODUCT DETAIL (Priority / Clan Tag)
   ========================================================================== */
.product-detail{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:56px;
  align-items:flex-start;
}
.product-visual{
  border-radius:var(--radius);
  padding:44px 30px;
  min-height:340px;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.product-visual.has-image{
  padding:0;
  min-height:420px;
}
.product-visual-img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  object-position:center;
  z-index:0;
}
.product-visual .target-motif{
  position:absolute; inset:0;
  opacity:.5;
  background:
    repeating-radial-gradient(circle at 50% 50%, transparent 0, transparent 38px, rgba(255,255,255,.035) 39px, rgba(255,255,255,.035) 40px);
}
.product-visual .glyph{
  width:104px; height:104px;
  border:2px solid var(--red-bright);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px;
  position:relative; z-index:1;
  background:rgba(216,30,44,.06);
}
.product-visual .glyph svg{ width:46px; height:46px; color:var(--red-bright); }
.product-visual.blue .glyph{ border-color:var(--blue-bright); background:rgba(28,111,216,.08); }
.product-visual.blue .glyph svg{ color:var(--blue-bright); }
.product-visual h4{
  font-family:var(--font-display); font-size:24px; text-transform:uppercase;
  letter-spacing:.03em; position:relative; z-index:1;
}
.product-visual p{ color:var(--text-mute); font-size:13px; margin-top:8px; position:relative; z-index:1; font-family:var(--font-hud); letter-spacing:.06em; text-transform:uppercase; }

.product-info .eyebrow{ margin-bottom:14px; }
.product-info h2{
  font-family:var(--font-display); font-size:clamp(30px,4vw,42px);
  text-transform:uppercase; margin-bottom:14px;
}
.product-info > p.desc{ color:var(--text-soft); font-size:15px; margin-bottom:28px; max-width:520px; }

.option-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-bottom:26px;
}
.option-card{
  border:1px solid var(--border-light);
  background:var(--panel-alt);
  padding:18px;
  border-radius:var(--radius-sm);
  cursor:pointer;
  transition:border-color .15s ease, background .15s ease;
  position:relative;
}
.option-card:hover{ border-color:var(--text-soft); }
.option-card.selected{
  border-color:var(--red-bright);
  background:rgba(216,30,44,.08);
  box-shadow:0 0 0 1px var(--red-bright) inset;
}
.option-card .opt-label{
  font-family:var(--font-hud); font-weight:700;
  font-size:12px; letter-spacing:.1em; text-transform:uppercase;
  color:var(--text-mute); margin-bottom:8px;
}
.option-card.selected .opt-label{ color:var(--red-bright); }
.option-card .opt-days{
  font-family:var(--font-display); font-size:22px; text-transform:uppercase; margin-bottom:4px;
}
.option-card .opt-price{
  font-family:var(--font-hud); font-weight:700; font-size:18px; color:var(--text);
}
.option-card .opt-check{
  position:absolute; top:14px; right:14px;
  width:18px; height:18px; border-radius:50%;
  border:2px solid var(--border-light);
}
.option-card.selected .opt-check{
  border-color:var(--red-bright);
  background:var(--red-bright);
  box-shadow:0 0 0 3px rgba(216,30,44,.2);
}

.price-row{
  display:flex; align-items:baseline; gap:10px;
  margin-bottom:24px;
  font-family:var(--font-display);
}
.price-row .amount{ font-size:38px; color:var(--text); }
.price-row .cadence{ font-family:var(--font-hud); font-size:12px; color:var(--text-mute); text-transform:uppercase; letter-spacing:.1em; }

.product-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:28px; }

.feature-list{ display:grid; gap:12px; }
.feature-list li{
  display:flex; align-items:center; gap:12px;
  font-size:14px; color:var(--text-soft);
}
.feature-list li svg{ width:16px; height:16px; color:var(--online); flex:none; }

/* ==========================================================================
   GEAR COMING SOON
   ========================================================================== */
.gear-panel{
  padding:60px 30px;
  text-align:center;
  border-radius:var(--radius);
  position:relative;
}
.gear-panel .crate-icon{
  width:80px; height:80px; margin:0 auto 22px;
  border:2px dashed var(--border-light);
  display:flex; align-items:center; justify-content:center;
  color:var(--text-mute);
}
.gear-panel .crate-icon svg{ width:36px; height:36px; }
.gear-panel h3{ font-family:var(--font-display); font-size:30px; text-transform:uppercase; margin-bottom:10px; }
.gear-panel p{ color:var(--text-soft); max-width:420px; margin:0 auto 20px; font-size:14px; }

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-list{ max-width:760px; margin:0 auto; display:grid; gap:12px; }
.faq-item{
  border:1px solid var(--border);
  background:var(--panel-alt);
  border-radius:var(--radius-sm);
  overflow:hidden;
}
.faq-q{
  width:100%;
  display:flex; align-items:center; justify-content:space-between;
  padding:20px 22px;
  background:none; border:none; color:var(--text);
  font-family:var(--font-hud); font-weight:600; font-size:15px;
  text-align:left;
}
.faq-q .plus{
  width:22px; height:22px; flex:none;
  border:1px solid var(--border-light);
  display:flex; align-items:center; justify-content:center;
  position:relative;
}
.faq-q .plus::before,.faq-q .plus::after{
  content:''; position:absolute; background:var(--text-soft);
}
.faq-q .plus::before{ width:10px; height:2px; }
.faq-q .plus::after{ width:2px; height:10px; transition:transform .2s ease; }
.faq-item.open .plus::after{ transform:rotate(90deg); }
.faq-item.open .plus{ border-color:var(--red-bright); }
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
}
.faq-a-inner{ padding:0 22px 20px; color:var(--text-soft); font-size:14px; line-height:1.7; }
.faq-item.open .faq-a{ max-height:300px; }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band{
  border-radius:var(--radius);
  padding:56px 40px;
  text-align:center;
  position:relative;
  overflow:hidden;
  border:1px solid var(--border);
  background:
    radial-gradient(500px 260px at 20% 30%, rgba(216,30,44,.22), transparent 70%),
    radial-gradient(500px 260px at 80% 70%, rgba(28,111,216,.22), transparent 70%),
    var(--panel);
}
.cta-band h2{
  font-family:var(--font-display); font-size:clamp(28px,4vw,40px);
  text-transform:uppercase; margin-bottom:14px;
}
.cta-band p{ color:var(--text-soft); margin-bottom:26px; }
.cta-band-actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{
  border-top:1px solid var(--border);
  padding:60px 0 30px;
  background:var(--panel);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:40px;
  margin-bottom:44px;
}
.footer-brand p{ color:var(--text-mute); font-size:13px; margin-top:16px; max-width:280px; }
.footer-col h4{
  font-family:var(--font-hud); font-weight:700;
  font-size:12px; letter-spacing:.15em; text-transform:uppercase;
  color:var(--text-mute); margin-bottom:16px;
}
.footer-col ul{ display:grid; gap:10px; }
.footer-col a{ color:var(--text-soft); font-size:14px; transition:color .15s ease; }
.footer-col a:hover{ color:var(--text); }
.footer-bottom{
  border-top:1px solid var(--border);
  padding-top:24px;
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:12px;
  font-size:12px; color:var(--text-mute);
  font-family:var(--font-hud); letter-spacing:.04em;
}
.footer-socials{ display:flex; gap:16px; align-items:center; }
.admin-link{ color:var(--text-mute); opacity:.55; font-size:11px; letter-spacing:.06em; transition:opacity .15s ease, color .15s ease; }
.admin-link:hover{ opacity:1; color:var(--text-soft); }

/* ==========================================================================
   CART DRAWER
   ========================================================================== */
.drawer-overlay{
  position:fixed; inset:0;
  background:rgba(4,5,6,.7);
  backdrop-filter:blur(2px);
  z-index:90;
  opacity:0; pointer-events:none;
  transition:opacity .25s ease;
}
.drawer-overlay.open{ opacity:1; pointer-events:auto; }

.cart-drawer{
  position:fixed; top:0; right:0; bottom:0;
  width:420px; max-width:92vw;
  background:var(--panel);
  border-left:1px solid var(--border);
  z-index:91;
  display:flex; flex-direction:column;
  transform:translateX(100%);
  transition:transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow:-20px 0 50px rgba(0,0,0,.5);
}
.cart-drawer.open{ transform:translateX(0); }
.cart-header{
  display:flex; align-items:center; justify-content:space-between;
  padding:22px 24px;
  border-bottom:1px solid var(--border);
}
.cart-header h3{
  font-family:var(--font-display); font-size:22px; text-transform:uppercase; letter-spacing:.03em;
}
.cart-close{
  width:36px; height:36px;
  border:1px solid var(--border-light);
  background:var(--panel-alt);
  display:flex; align-items:center; justify-content:center;
  color:var(--text);
}
.cart-close svg{ width:16px; height:16px; }

.cart-items{ flex:1; overflow-y:auto; padding:8px 24px; }
.cart-empty{
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  height:100%; text-align:center; color:var(--text-mute);
  padding:40px 20px;
}
.cart-empty svg{ width:44px; height:44px; margin-bottom:14px; opacity:.5; }
.cart-empty p{ font-size:14px; margin-bottom:18px; }

.cart-item{
  display:flex; gap:14px;
  padding:18px 0;
  border-bottom:1px solid var(--border);
}
.cart-item .thumb{
  width:56px; height:56px; flex:none;
  border:1px solid var(--border-light);
  background:var(--panel-raised);
  display:flex; align-items:center; justify-content:center;
}
.cart-item .thumb svg{ width:24px; height:24px; color:var(--red-bright); }
.cart-item.blue .thumb svg{ color:var(--blue-bright); }
.cart-item-body{ flex:1; min-width:0; }
.cart-item-body .name{ font-weight:600; font-size:14px; margin-bottom:2px; }
.cart-item-body .meta{ font-size:12px; color:var(--text-mute); font-family:var(--font-hud); letter-spacing:.04em; text-transform:uppercase; }
.cart-item-body .gift-tag{
  display:inline-flex; align-items:center; gap:5px;
  margin-top:6px;
  font-size:11px; color:var(--blue-bright);
  font-family:var(--font-hud); letter-spacing:.04em; text-transform:uppercase;
  border:1px solid var(--blue-dim); background:rgba(28,111,216,.08);
  padding:3px 8px;
}
.cart-item-foot{ display:flex; align-items:center; justify-content:space-between; margin-top:10px; }
.cart-item-price{ font-family:var(--font-hud); font-weight:700; font-size:14px; }
.cart-item-remove{
  background:none; border:none; color:var(--text-mute);
  font-family:var(--font-hud); font-size:12px; text-transform:uppercase; letter-spacing:.05em;
  display:flex; align-items:center; gap:5px;
}
.cart-item-remove:hover{ color:var(--red-bright); }
.cart-item-remove svg{ width:13px; height:13px; }

.cart-footer{
  border-top:1px solid var(--border);
  padding:22px 24px 26px;
}
.cart-totals-row{
  display:flex; justify-content:space-between; align-items:center;
  margin-bottom:6px;
  font-family:var(--font-hud);
  font-size:13px; color:var(--text-soft); text-transform:uppercase; letter-spacing:.04em;
}
.cart-totals-row.grand{
  font-size:16px; color:var(--text); font-weight:700;
  margin:14px 0 20px;
  padding-top:14px;
  border-top:1px solid var(--border);
}
.cart-totals-row.grand b{ font-family:var(--font-display); font-size:24px; letter-spacing:.02em; }

/* ==========================================================================
   MODAL (Gift form)
   ========================================================================== */
.modal-overlay{
  position:fixed; inset:0;
  background:rgba(4,5,6,.78);
  backdrop-filter:blur(2px);
  z-index:120;
  display:flex; align-items:center; justify-content:center;
  padding:20px;
  opacity:0; pointer-events:none;
  transition:opacity .2s ease;
}
.modal-overlay.open{ opacity:1; pointer-events:auto; }
.modal-box{
  width:100%; max-width:460px;
  background:var(--panel);
  border:1px solid var(--border-light);
  border-radius:var(--radius);
  padding:30px;
  transform:translateY(14px) scale(.98);
  transition:transform .2s ease;
  max-height:90vh;
  overflow-y:auto;
}
.modal-overlay.open .modal-box{ transform:translateY(0) scale(1); }
.modal-head{ display:flex; align-items:flex-start; justify-content:space-between; margin-bottom:6px; }
.modal-head h3{ font-family:var(--font-display); font-size:24px; text-transform:uppercase; }
.modal-close{ background:none; border:none; color:var(--text-mute); width:28px; height:28px; }
.modal-close svg{ width:18px; height:18px; }
.modal-sub{ color:var(--text-soft); font-size:13px; margin-bottom:22px; }

/* ==========================================================================
   FORMS
   ========================================================================== */
.field{ margin-bottom:18px; }
.field label{
  display:block;
  font-family:var(--font-hud); font-weight:700;
  font-size:11px; letter-spacing:.1em; text-transform:uppercase;
  color:var(--text-mute); margin-bottom:8px;
}
.field .hint{ font-size:11px; color:var(--text-mute); margin-top:6px; }
.field input[type="text"],
.field input[type="number"],
.field select{
  width:100%;
  background:var(--panel-alt);
  border:1px solid var(--border-light);
  color:var(--text);
  padding:12px 14px;
  font-size:14px;
  border-radius:var(--radius-sm);
  transition:border-color .15s ease;
}
.field input:focus, .field select:focus{ outline:none; border-color:var(--red-bright); }
.field input.invalid{ border-color:var(--offline); }
.field-error{ font-size:11px; color:var(--offline); margin-top:6px; display:none; }
.field-error.show{ display:block; }

.radio-row{ display:flex; gap:10px; flex-wrap:wrap; }
.radio-chip{
  border:1px solid var(--border-light);
  background:var(--panel-alt);
  padding:10px 16px;
  font-family:var(--font-hud); font-weight:700; font-size:13px;
  letter-spacing:.04em;
  cursor:pointer;
}
.radio-chip.selected{ border-color:var(--red-bright); color:var(--red-bright); background:rgba(216,30,44,.08); }

.form-msg{
  display:flex; align-items:center; gap:10px;
  padding:12px 14px;
  border-radius:var(--radius-sm);
  font-size:13px;
  margin-top:16px;
}
.form-msg.success{ background:rgba(62,207,106,.1); border:1px solid rgba(62,207,106,.35); color:var(--online); }
.form-msg.error{ background:rgba(255,59,59,.1); border:1px solid rgba(255,59,59,.35); color:var(--offline); }

/* ==========================================================================
   TOAST
   ========================================================================== */
.toast-stack{
  position:fixed; bottom:24px; right:24px; z-index:200;
  display:flex; flex-direction:column; gap:10px;
  max-width:340px;
}
.toast{
  background:var(--panel-raised);
  border:1px solid var(--border-light);
  border-left:3px solid var(--online);
  padding:14px 16px;
  font-size:13px;
  box-shadow:0 10px 30px rgba(0,0,0,.4);
  animation:toast-in .2s ease;
  display:flex; gap:10px; align-items:flex-start;
}
.toast svg{ width:16px; height:16px; color:var(--online); flex:none; margin-top:1px; }
@keyframes toast-in{ from{ opacity:0; transform:translateY(10px);} to{ opacity:1; transform:translateY(0);} }

/* ==========================================================================
   BREADCRUMB / PAGE HEAD (checkout, profile)
   ========================================================================== */
.page-head{
  padding:52px 0 40px;
  border-bottom:1px solid var(--border);
}
.page-head h1{
  font-family:var(--font-display); font-size:clamp(34px,5vw,52px);
  text-transform:uppercase;
}
.breadcrumb{
  font-family:var(--font-hud); font-size:12px; letter-spacing:.08em; text-transform:uppercase;
  color:var(--text-mute); margin-bottom:14px;
}
.breadcrumb a{ color:var(--text-soft); }
.breadcrumb a:hover{ color:var(--red-bright); }

/* ==========================================================================
   CHECKOUT
   ========================================================================== */
.checkout-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:44px;
  align-items:flex-start;
}
.panel{
  border-radius:var(--radius);
  padding:30px;
}
.panel h3{
  font-family:var(--font-display); font-size:22px; text-transform:uppercase;
  margin-bottom:20px;
  padding-bottom:16px;
  border-bottom:1px solid var(--border);
}
.summary-line{
  display:flex; justify-content:space-between; gap:12px;
  padding:12px 0;
  border-bottom:1px solid var(--border);
  font-size:13px;
}
.summary-line .name{ color:var(--text); }
.summary-line .sub{ display:block; color:var(--text-mute); font-size:11px; margin-top:3px; text-transform:uppercase; font-family:var(--font-hud); }
.summary-line b{ font-family:var(--font-hud); }
.summary-total{
  display:flex; justify-content:space-between; align-items:baseline;
  margin-top:18px; padding-top:18px;
}
.summary-total span{ font-family:var(--font-hud); text-transform:uppercase; letter-spacing:.08em; font-size:13px; color:var(--text-soft); }
.summary-total b{ font-family:var(--font-display); font-size:30px; }

.confirm-box{
  text-align:center;
  padding:70px 30px;
  border-radius:var(--radius);
}
.confirm-box .check-circle{
  width:84px; height:84px; margin:0 auto 24px;
  border:2px solid var(--online);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:var(--online);
  box-shadow:0 0 30px -6px rgba(62,207,106,.5);
}
.confirm-box .check-circle svg{ width:38px; height:38px; }
.confirm-box h2{ font-family:var(--font-display); font-size:36px; text-transform:uppercase; margin-bottom:10px; }
.confirm-box p{ color:var(--text-soft); margin-bottom:6px; }
.confirm-box .order-id{
  display:inline-block; margin:18px 0 26px;
  font-family:var(--font-hud); font-weight:700; letter-spacing:.1em;
  background:var(--panel-alt); border:1px solid var(--border-light);
  padding:10px 18px; font-size:14px;
}
.confirm-actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ==========================================================================
   PROFILE
   ========================================================================== */
.profile-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:44px;
  align-items:flex-start;
}
.profile-card{ padding:30px; border-radius:var(--radius); }
.profile-avatar{
  width:74px; height:74px;
  border:2px solid var(--red-bright);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-size:28px;
  margin-bottom:18px;
  background:rgba(216,30,44,.08);
}
.profile-card h3{ font-family:var(--font-display); font-size:24px; text-transform:uppercase; margin-bottom:4px; }
.profile-card .sub{ color:var(--text-mute); font-size:12px; font-family:var(--font-hud); letter-spacing:.06em; text-transform:uppercase; margin-bottom:20px; }
.profile-field{ margin-bottom:16px; }
.profile-field .k{ font-family:var(--font-hud); font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--text-mute); margin-bottom:4px; }
.profile-field .v{ font-size:14px; word-break:break-all; }

.order-history{ display:grid; gap:16px; }
.order-card{ padding:22px 24px; border-radius:var(--radius); }
.order-card-head{ display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:14px; gap:12px; flex-wrap:wrap; }
.order-card-head .oid{ font-family:var(--font-hud); font-weight:700; font-size:13px; letter-spacing:.06em; }
.order-card-head .odate{ font-size:11px; color:var(--text-mute); text-transform:uppercase; font-family:var(--font-hud); letter-spacing:.05em; }
.order-line{ display:flex; justify-content:space-between; align-items:center; padding:10px 0; border-top:1px solid var(--border); gap:12px; flex-wrap:wrap; }
.order-line .n{ font-size:14px; }
.order-line .n small{ display:block; color:var(--text-mute); font-size:11px; text-transform:uppercase; font-family:var(--font-hud); margin-top:2px; }

.status-badge{
  font-family:var(--font-hud); font-weight:700; font-size:10px; letter-spacing:.1em; text-transform:uppercase;
  padding:4px 10px; border-radius:20px; display:inline-flex; align-items:center; gap:5px;
}
.status-badge.active{ color:var(--online); background:rgba(62,207,106,.1); border:1px solid rgba(62,207,106,.35); }
.status-badge.expired{ color:var(--text-mute); background:var(--panel-raised); border:1px solid var(--border-light); }
.status-badge.permanent{ color:var(--blue-bright); background:rgba(28,111,216,.1); border:1px solid rgba(28,111,216,.35); }

.empty-state{ text-align:center; padding:60px 20px; color:var(--text-mute); }
.empty-state svg{ width:40px; height:40px; margin-bottom:14px; opacity:.5; }

/* ==========================================================================
   MOBILE NAV DRAWER
   Rendered as a top-level element on <body> (not nested inside the header)
   so its `position:fixed` is relative to the viewport — the header uses
   backdrop-filter, which would otherwise create a containing block for any
   fixed-position descendant and break full-height positioning.
   ========================================================================== */
.mobile-nav-drawer{
  position:fixed; top:0; left:0; right:0; bottom:0;
  background:var(--void);
  z-index:150;
  display:flex;
  flex-direction:column;
  transform:translateX(100%);
  transition:transform .25s ease;
  overflow-y:auto;
}
.mobile-nav-drawer.open{ transform:translateX(0); }
.mobile-nav-head{
  display:flex; align-items:center; justify-content:space-between;
  height:76px; flex:none;
  padding:0 24px;
  border-bottom:1px solid var(--border);
}
.mobile-nav-links{ padding:14px 24px 30px; }
.mobile-nav-links a{
  display:block;
  width:100%; padding:16px 0;
  border-bottom:1px solid var(--border);
  font-family:var(--font-hud); font-weight:600; font-size:17px;
  letter-spacing:.04em; text-transform:uppercase;
  color:var(--text-soft);
}
.mobile-nav-links a.active{ color:var(--red-bright); }
.mobile-nav-links .btn{ margin-top:20px; }

/* ==========================================================================
   LEADERBOARD
   ========================================================================== */
.lb-panel{ padding:8px 0 0; border-radius:var(--radius); overflow:hidden; }
.lb-tabs{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:22px; }
.lb-table{ border-radius:var(--radius); overflow:hidden; }
.lb-head-row, .lb-row{
  display:grid;
  grid-template-columns:56px 1fr 90px 90px 130px;
  align-items:center;
  gap:12px;
  padding:14px 20px;
}
.lb-head-row{
  font-family:var(--font-hud); font-weight:700; font-size:11px;
  letter-spacing:.1em; text-transform:uppercase; color:var(--text-mute);
  border-bottom:1px solid var(--border);
}
.lb-row{ border-bottom:1px solid var(--border); transition:background .15s ease; }
.lb-row:last-child{ border-bottom:none; }
.lb-row:hover{ background:rgba(255,255,255,.02); }
.lb-row.gold{ background:linear-gradient(90deg, rgba(255,196,64,.1), transparent 60%); }
.lb-row.silver{ background:linear-gradient(90deg, rgba(200,210,220,.08), transparent 60%); }
.lb-row.bronze{ background:linear-gradient(90deg, rgba(205,127,80,.09), transparent 60%); }
.lb-rank{ font-family:var(--font-display); font-size:20px; color:var(--text-soft); text-align:center; }
.lb-medal{
  display:inline-flex; align-items:center; justify-content:center;
  width:30px; height:30px; border-radius:50%;
  font-family:var(--font-hud); font-weight:700; font-size:14px;
  color:#0a0b0d;
}
.lb-row.gold .lb-medal{ background:linear-gradient(135deg,#ffe083,#c9971f); }
.lb-row.silver .lb-medal{ background:linear-gradient(135deg,#eef2f5,#a7b0b8); }
.lb-row.bronze .lb-medal{ background:linear-gradient(135deg,#e2a06e,#9c5a2e); }
.lb-player{ display:flex; align-items:center; gap:12px; min-width:0; }
.lb-avatar{
  width:36px; height:36px; flex:none;
  border:1px solid var(--border-light);
  background:var(--panel-raised);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-hud); font-weight:700; font-size:12px;
  color:var(--text-soft);
}
.lb-name{ display:block; font-weight:600; font-size:14px; }
.lb-steamid{ display:block; font-family:var(--font-hud); font-size:11px; color:var(--text-mute); letter-spacing:.03em; }
.lb-stat{ font-family:var(--font-hud); font-size:14px; text-align:center; color:var(--text-soft); }
.lb-stat.lb-highlight{ font-weight:700; font-size:16px; color:var(--text); text-align:right; padding-right:8px; }

.stat-grid{
  display:grid; grid-template-columns:repeat(4, 1fr); gap:16px;
  margin-bottom:28px;
}
.stat-card{
  padding:20px; border-radius:var(--radius); text-align:center;
}
.stat-card .v{ font-family:var(--font-display); font-size:30px; letter-spacing:.02em; }
.stat-card .k{ font-family:var(--font-hud); font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--text-mute); margin-top:4px; }

.kd-grid{
  display:grid; grid-template-columns:repeat(4, 1fr); gap:16px;
  margin-bottom:8px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns:1fr; }
  .product-detail{ grid-template-columns:1fr; }
  .checkout-grid{ grid-template-columns:1fr; }
  .profile-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .category-grid{ grid-template-columns:1fr; }
}
@media (max-width: 760px){
  .main-nav{ display:none; }
  .nav-toggle{ display:flex; }
  .header-actions .btn-discord span{ display:none; }
  .header-actions .btn-discord{ padding:11px 14px; }
  .brand{ font-size:19px; gap:8px; }
  .brand .mark{ width:32px; height:32px; }
  .brand .mark span{ font-size:15px; }
  .brand-text small{ display:none; }
  .hero{ padding:60px 0 50px; }
  .section{ padding:60px 0; }
  .option-grid{ grid-template-columns:1fr; }
  .cart-drawer{ width:100%; }
  .footer-grid{ grid-template-columns:1fr; gap:30px; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
  .lb-head-row, .lb-row{ grid-template-columns:36px 1fr 70px; }
  .lb-head-row .lb-deaths-col, .lb-row .lb-stat:nth-child(4){ display:none; }
  .stat-grid, .kd-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:480px){
  .hero-stats{ gap:20px; }
  .confirm-box{ padding:50px 20px; }
}
