/* ═══════════════════════════════════════════════════
   EARNRETURN — Design System v5 · 2027
   Syne + Inter · Void Black · Emerald + Gold
═══════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ── TOKENS ── */
:root {
  /* Backgrounds */
  --bg:      #07090f;
  --bg2:     #0d1017;
  --bg3:     #12161f;
  --card:    #171c28;
  --card2:   #1c2233;
  --border:  rgba(255,255,255,.07);
  --border2: rgba(255,255,255,.12);

  /* Accents */
  --em:      #00e676;
  --em2:     #00c853;
  --em-bg:   rgba(0,230,118,.08);
  --em-bd:   rgba(0,230,118,.2);
  --au:      #ffd740;
  --au2:     #ffab00;
  --au-bg:   rgba(255,215,64,.07);
  --au-bd:   rgba(255,215,64,.2);
  --rd:      #ff5252;
  --rd-bg:   rgba(255,82,82,.08);
  --rd-bd:   rgba(255,82,82,.2);
  --sky:     #40c4ff;
  --sky-bg:  rgba(64,196,255,.07);

  /* Text */
  --t0:  #ffffff;
  --t1:  #e2e8f4;
  --t2:  #8892aa;
  --t3:  #4a5268;
  --t4:  #2a3048;

  /* Radii */
  --r4:  4px;
  --r8:  8px;
  --r12: 12px;
  --r16: 16px;
  --r20: 20px;
  --r24: 24px;

  /* Layout */
  --max: 1280px;
  --px:  clamp(14px, 4vw, 48px);

  /* Easing */
  --ease: cubic-bezier(.2,0,0,1);
  --pop:  cubic-bezier(.34,1.56,.64,1);
}

/* ── RESET ── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; color-scheme: dark }
body { font-family: 'Inter', system-ui, sans-serif; font-size: 14px; line-height: 1.6;
       color: var(--t1); background: var(--bg); -webkit-font-smoothing: antialiased; overflow-x: hidden }
a { text-decoration: none; color: inherit }
img, video { display: block; max-width: 100% }
button, input, select, textarea { font-family: inherit; font-size: inherit }
button { cursor: pointer; border: none; background: none }
::selection { background: var(--em); color: #000 }
::-webkit-scrollbar { width: 3px; height: 3px }
::-webkit-scrollbar-track { background: var(--bg2) }
::-webkit-scrollbar-thumb { background: var(--card2); border-radius: 99px }

/* ════════════════════════════════════
   POPUP WELCOME
════════════════════════════════════ */
.woverlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(7,9,15,.88);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center; padding: 16px;
  animation: fadein .3s var(--ease);
}
@keyframes fadein { from { opacity:0 } to { opacity:1 } }
.wpop {
  background: var(--card); border: 1px solid var(--border2);
  border-radius: var(--r24); padding: clamp(28px,5vw,48px);
  max-width: 520px; width: 100%; position: relative; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.8);
  animation: slideup .35s var(--pop) .05s both;
}
@keyframes slideup { from { opacity:0; transform:translateY(24px) scale(.97) } to { opacity:1; transform:none } }
.wpop::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,230,118,.06) 0%, transparent 60%);
  pointer-events: none;
}
.wpop-close {
  position: absolute; top: 16px; right: 16px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--card2); border: 1px solid var(--border);
  color: var(--t3); font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.wpop-close:hover { background: var(--border2); color: var(--t1) }
.wpop-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--em-bg); border: 1px solid var(--em-bd);
  border-radius: 99px; padding: 4px 12px;
  font-size: 10px; font-weight: 600; color: var(--em);
  text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 18px;
}
.wpop-tag .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--em);
  box-shadow: 0 0 6px var(--em); animation: blink 1.5s ease-in-out infinite }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.wpop h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px,5vw,38px); font-weight: 800;
  line-height: 1.05; letter-spacing: -.5px; color: var(--t0); margin-bottom: 12px;
}
.wpop h2 .g {
  background: linear-gradient(120deg, var(--au), #fff176, var(--au));
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: shine 3s linear infinite;
}
@keyframes shine { to { background-position: 200% center } }
.wpop-desc { font-size: 14px; color: var(--t2); line-height: 1.7; margin-bottom: 22px }
.wpop-range {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r16); padding: 16px 20px;
  display: flex; align-items: center; gap: 16px; margin-bottom: 22px;
}
.wpop-range-val {
  font-family: 'Syne', sans-serif; font-size: 38px; font-weight: 800;
  color: var(--em); line-height: 1; text-shadow: 0 0 30px rgba(0,230,118,.35);
}
.wpop-range-val.au { color: var(--au); text-shadow: 0 0 30px rgba(255,215,64,.3) }
.wpop-range-lbl { font-size: 11px; color: var(--t3); margin-top: 3px }
.wpop-range-arrow { color: var(--t3); font-size: 20px; flex: 1; text-align: center }
.wpop-cta {
  width: 100%; padding: 14px; background: var(--em); color: #000;
  border-radius: var(--r12); font-size: 14px; font-weight: 700; border: none;
  transition: all .15s var(--ease); cursor: pointer; margin-bottom: 10px;
  position: relative; overflow: hidden;
}
.wpop-cta::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transform: translateX(-100%); transition: transform .5s;
}
.wpop-cta:hover { background: var(--em2); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,230,118,.3) }
.wpop-cta:hover::after { transform: translateX(100%) }
.wpop-skip { display: block; text-align: center; font-size: 12px; color: var(--t3); transition: color .15s }
.wpop-skip:hover { color: var(--t2) }

/* ════════════════════════════════════
   BANNER
════════════════════════════════════ */
.tbanner {
  background: var(--bg3); border-bottom: 1px solid var(--border);
  padding: 9px var(--px); display: flex; align-items: center;
  justify-content: center; gap: 10px; font-size: 12px; color: var(--t2); position: relative;
}
.tbanner .live { width: 6px; height: 6px; border-radius: 50%; background: var(--em);
  box-shadow: 0 0 6px var(--em); animation: blink 1.5s ease-in-out infinite }
.tbanner strong { color: var(--em) }
.tbanner-close { position: absolute; right: 14px; color: var(--t3); font-size: 15px; padding: 2px 5px; transition: color .15s }
.tbanner-close:hover { color: var(--t1) }

/* ════════════════════════════════════
   NAVBAR
════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 80; height: 58px;
  background: rgba(13,16,23,.9); backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px; padding: 0 var(--px);
}
.nav-logo {
  flex-shrink: 0; display: flex; align-items: center; gap: 9px;
  font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800;
  color: var(--t0); letter-spacing: -.2px;
}
.nav-logo-ico {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--em); display: flex; align-items: center; justify-content: center;
  font-size: 16px; box-shadow: 0 0 16px rgba(0,230,118,.3);
}
.nav-logo em { color: var(--em); font-style: normal }

.nav-search {
  flex: 1; max-width: 540px; height: 34px;
  display: flex; background: var(--bg3); border: 1px solid var(--border2);
  border-radius: var(--r8); overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}
.nav-search:focus-within { border-color: var(--em-bd); box-shadow: 0 0 0 3px rgba(0,230,118,.07) }
.nav-search-cat {
  background: var(--card2); border: none; border-right: 1px solid var(--border);
  padding: 0 10px; color: var(--t2); font-size: 12px; cursor: pointer; flex-shrink: 0;
}
.nav-search input {
  flex: 1; border: none; outline: none; background: transparent;
  padding: 0 12px; font-size: 13px; color: var(--t1); min-width: 0;
}
.nav-search input::placeholder { color: var(--t3) }
.nav-search-btn {
  background: var(--em); border: none; padding: 0 14px; color: #000;
  display: flex; align-items: center; flex-shrink: 0; transition: background .15s;
}
.nav-search-btn:hover { background: var(--em2) }

.nav-right { display: flex; align-items: center; gap: 8px; margin-left: auto; flex-shrink: 0 }
.nav-link {
  padding: 5px 10px; border: 1px solid var(--border); border-radius: var(--r8);
  background: var(--card); display: flex; flex-direction: column; gap: 0px;
  transition: all .15s; white-space: nowrap;
}
.nav-link:hover { border-color: var(--border2); background: var(--card2) }
.nav-link .s { font-size: 10px; color: var(--t3); line-height: 1.3 }
.nav-link .b { font-size: 12px; font-weight: 600; color: var(--t1); line-height: 1.3 }
.nav-cta {
  background: var(--em); color: #000; border-radius: var(--r8);
  padding: 8px 14px; font-size: 12px; font-weight: 700; white-space: nowrap;
  transition: all .15s; display: flex; align-items: center; gap: 6px;
  box-shadow: 0 0 16px rgba(0,230,118,.2);
}
.nav-cta:hover { background: var(--em2); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,230,118,.3) }

/* ════════════════════════════════════
   SUBNAV
════════════════════════════════════ */
.subnav {
  background: var(--bg2); border-bottom: 1px solid var(--border);
  display: flex; padding: 0 var(--px); overflow-x: auto; scrollbar-width: none; height: 38px;
}
.subnav::-webkit-scrollbar { display: none }
.subnav a {
  height: 100%; display: flex; align-items: center; padding: 0 13px;
  font-size: 12px; font-weight: 500; color: var(--t2); white-space: nowrap;
  border-bottom: 2px solid transparent; transition: color .15s, border-color .15s;
}
.subnav a:hover { color: var(--t1) }
.subnav a.active { color: var(--t0); border-bottom-color: var(--em) }
.subnav a.hi-au { color: var(--au) }
.subnav a.hi-em { color: var(--em) }

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  position: relative; min-height: 560px;
  display: flex; align-items: center;
  padding: clamp(56px,8vw,110px) var(--px);
  background: var(--bg2); overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
                    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0, black 30%, transparent 70%);
}
.hero-glow1 {
  position: absolute; top: -10%; right: 0; width: 55%; height: 120%;
  background: radial-gradient(ellipse 60% 70% at 80% 40%, rgba(0,230,118,.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-glow2 {
  position: absolute; bottom: -20%; left: 20%; width: 60%; height: 100%;
  background: radial-gradient(ellipse 50% 60% at 50% 80%, rgba(255,215,64,.03) 0%, transparent 55%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 620px }
.hero-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--em-bg); border: 1px solid var(--em-bd);
  border-radius: 99px; padding: 5px 14px; margin-bottom: 22px;
  font-size: 10px; font-weight: 600; color: var(--em);
  text-transform: uppercase; letter-spacing: 1.2px;
}
.hero-tag .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--em);
  box-shadow: 0 0 6px var(--em); animation: blink 1.5s ease-in-out infinite }
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px,7vw,80px); font-weight: 800;
  line-height: .98; letter-spacing: -2px; color: var(--t0); margin-bottom: 20px;
}
.hero h1 .line-au {
  display: block;
  background: linear-gradient(110deg, var(--au) 0%, #fff9a0 40%, var(--au) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: shine 4s linear infinite;
}
.hero h1 .line-em {
  display: block;
  background: linear-gradient(110deg, var(--em) 0%, #a0ffe4 50%, var(--em) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: shine 3s linear infinite;
}
.hero-sub {
  font-size: clamp(15px,1.6vw,17px); color: var(--t2);
  line-height: 1.7; max-width: 460px; margin-bottom: 30px;
}
.hero-stats {
  display: flex; gap: clamp(18px,3.5vw,44px); flex-wrap: wrap; margin-bottom: 32px;
}
.hs .v {
  font-family: 'Syne', sans-serif; font-size: clamp(22px,3vw,30px);
  font-weight: 800; color: var(--t0); line-height: 1;
}
.hs .v.em { color: var(--em); text-shadow: 0 0 16px rgba(0,230,118,.3) }
.hs .v.au {
  background: linear-gradient(120deg, var(--au), #fff176);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hs .l { font-size: 10px; color: var(--t3); text-transform: uppercase; letter-spacing: .7px; margin-top: 3px }

.hero-search {
  display: flex; max-width: 480px;
  background: var(--card); border: 1px solid var(--border2);
  border-radius: var(--r12); overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,230,118,.05), 0 20px 40px rgba(0,0,0,.4);
  transition: box-shadow .15s;
}
.hero-search:focus-within { box-shadow: 0 0 0 2px var(--em-bd), 0 20px 40px rgba(0,0,0,.4) }
.hero-search input {
  flex: 1; border: none; outline: none; background: transparent;
  padding: 14px 18px; font-size: 14px; color: var(--t1); min-width: 0;
}
.hero-search input::placeholder { color: var(--t3) }
.hero-search button {
  background: var(--em); border: none; padding: 14px 22px;
  font-size: 13px; font-weight: 700; color: #000; flex-shrink: 0;
  display: flex; align-items: center; gap: 7px; transition: background .15s;
}
.hero-search button:hover { background: var(--em2) }

/* ════════════════════════════════════
   STRIP
════════════════════════════════════ */
.strip {
  background: var(--bg3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 12px var(--px); display: flex; align-items: center;
  justify-content: center; gap: clamp(14px,4vw,48px); flex-wrap: wrap;
}
.strip-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--t2) }
.strip-item .ico {
  width: 26px; height: 26px; border-radius: 6px; background: var(--card2);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 13px;
}
.strip-item strong { color: var(--t1) }
.strip-div { width: 1px; height: 18px; background: var(--border) }

/* ════════════════════════════════════
   CATBAR
════════════════════════════════════ */
.catbar {
  background: var(--bg2); border-bottom: 1px solid var(--border);
  padding: 10px var(--px); display: flex; gap: 6px; flex-wrap: wrap;
}
.pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 13px; background: var(--card); border: 1px solid var(--border);
  border-radius: 99px; font-size: 12px; font-weight: 500; color: var(--t2);
  cursor: pointer; transition: all .15s var(--ease); white-space: nowrap;
}
.pill:hover { border-color: var(--border2); color: var(--t1); transform: translateY(-1px) }
.pill.active { background: var(--em-bg); border-color: var(--em-bd); color: var(--em) }

/* ════════════════════════════════════
   PAGE / SECTIONS
════════════════════════════════════ */
.page { max-width: var(--max); margin: 0 auto; padding: 24px var(--px) }

.sec {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r20); padding: 22px 24px; margin-bottom: 18px; position: relative; overflow: hidden;
}
.sec::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}
.sec-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border); gap: 10px;
}
.sec-title {
  font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800;
  color: var(--t0); display: flex; align-items: center; gap: 8px; letter-spacing: -.2px;
}
.sec-link { font-size: 12px; color: var(--sky); font-weight: 500; display: flex; align-items: center; gap: 4px }
.sec-link:hover { text-decoration: underline }

/* Breadcrumb */
.crumb {
  font-size: 11px; color: var(--t3); display: flex; align-items: center;
  flex-wrap: wrap; gap: 5px; padding: 9px var(--px);
  background: var(--bg3); border-bottom: 1px solid var(--border);
}
.crumb a { color: var(--sky) }
.crumb a:hover { text-decoration: underline }

/* ════════════════════════════════════
   SLIDER
════════════════════════════════════ */
.slider-track {
  display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; padding-bottom: 4px; scroll-behavior: smooth;
}
.slider-track::-webkit-scrollbar { display: none }
.sl-nav { display: flex; gap: 6px }
.sl-btn {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--card2); border: 1px solid var(--border2);
  color: var(--t2); display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: all .15s;
}
.sl-btn:hover { background: var(--em); color: #000; border-color: var(--em); box-shadow: 0 0 12px rgba(0,230,118,.3) }

/* Slide card */
.scard {
  flex-shrink: 0; width: 200px; scroll-snap-align: start;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r16); overflow: hidden; position: relative;
  transition: transform .2s var(--ease), box-shadow .2s, border-color .2s; cursor: pointer;
}
.scard:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.6); border-color: var(--border2) }
.scard-rank {
  position: absolute; top: 8px; left: 8px; z-index: 2;
  font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700;
  padding: 2px 8px; border-radius: 99px; letter-spacing: .2px;
}
.rank-1 { background: rgba(255,215,64,.12); border: 1px solid rgba(255,215,64,.3); color: var(--au) }
.rank-2 { background: rgba(200,200,200,.08); border: 1px solid rgba(200,200,200,.2); color: #c0c0c0 }
.rank-3 { background: rgba(205,127,50,.1); border: 1px solid rgba(205,127,50,.25); color: #cd7f32 }
.rank-n { background: rgba(255,255,255,.05); border: 1px solid var(--border); color: var(--t3) }
.scard-img {
  aspect-ratio: 1; background: var(--card); padding: 16px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.scard-img img { width: 100%; height: 100%; object-fit: contain; transition: transform .35s var(--ease) }
.scard:hover .scard-img img { transform: scale(1.06) }
.scard-no-img { font-size: 46px; color: var(--card2) }
.scard-body { padding: 10px 12px }
.scard-brand { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .7px; color: var(--t3); margin-bottom: 3px }
.scard-title { font-size: 12px; font-weight: 500; color: var(--t1); line-height: 1.4; margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden }
.scard-price { font-size: 13px; font-weight: 700; color: var(--t0); margin-bottom: 7px }
.scard-cb {
  background: var(--em-bg); border: 1px solid var(--em-bd);
  border-radius: var(--r8); padding: 6px 9px;
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px;
}
.scard-cb-v { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 800; color: var(--em) }
.scard-cb-l { font-size: 9px; color: var(--t3); text-transform: uppercase; letter-spacing: .3px }
.scard-buy {
  width: 100%; background: var(--em); border: none; border-radius: var(--r8);
  padding: 8px; font-size: 12px; font-weight: 700; color: #000; transition: all .15s;
}
.scard-buy:hover { background: var(--em2); box-shadow: 0 4px 14px rgba(0,230,118,.25) }

/* Expired overlay */
.exp-overlay {
  position: absolute; inset: 0; z-index: 3;
  background: rgba(7,9,15,.82); backdrop-filter: blur(4px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.exp-tag {
  background: var(--rd-bg); border: 1px solid var(--rd-bd); color: var(--rd);
  font-size: 10px; font-weight: 700; padding: 3px 10px;
  border-radius: 99px; text-transform: uppercase; letter-spacing: .4px;
}
.exp-txt { font-size: 11px; color: var(--t3); text-align: center; max-width: 120px; line-height: 1.4 }

/* ════════════════════════════════════
   PRODUCT GRID & CARD
════════════════════════════════════ */
.pgrid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 12px;
}
.pcard {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r16); overflow: hidden; display: flex; flex-direction: column;
  cursor: pointer; position: relative;
  transition: transform .2s var(--ease), box-shadow .2s, border-color .2s;
}
.pcard:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.5); border-color: var(--border2) }
.pcard.unavail { opacity: .55 }
.pcard-bgs { position: absolute; top: 8px; left: 8px; z-index: 1; display: flex; flex-direction: column; gap: 3px }
.badge { font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 99px; display: inline-block; letter-spacing: .2px }
.b-cb  { background: var(--em-bg);  border: 1px solid var(--em-bd);  color: var(--em) }
.b-top { background: var(--au-bg);  border: 1px solid var(--au-bd);  color: var(--au) }
.b-new { background: var(--sky-bg); border: 1px solid rgba(64,196,255,.2); color: var(--sky) }
.b-exp { background: var(--rd-bg);  border: 1px solid var(--rd-bd);  color: var(--rd) }
.pcard-img {
  aspect-ratio: 1; background: var(--card); padding: 14px;
  display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative;
}
.pcard-img img { width: 100%; height: 100%; object-fit: contain; transition: transform .35s var(--ease) }
.pcard:hover .pcard-img img { transform: scale(1.05) }
.pcard-no-img { font-size: 42px; color: var(--card2) }
.unavail-mask {
  position: absolute; inset: 0; background: rgba(7,9,15,.5);
  display: flex; align-items: center; justify-content: center;
}
.unavail-mask span {
  background: var(--rd-bg); border: 1px solid var(--rd-bd); color: var(--rd);
  font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 99px;
}
.pcard-body { padding: 11px 13px; flex: 1; display: flex; flex-direction: column; gap: 3px }
.pcard-brand { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .7px; color: var(--t3) }
.pcard-title { font-size: 12px; font-weight: 500; line-height: 1.4; color: var(--t1);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden }
.pcard:hover .pcard-title { color: var(--em) }
.pcard-price { font-size: 13px; font-weight: 700; color: var(--t0) }
.pcard-cb {
  background: var(--em-bg); border: 1px solid var(--em-bd);
  border-radius: var(--r8); padding: 5px 9px;
  display: flex; align-items: center; gap: 6px; margin-top: 3px;
}
.pcard-cb.na { background: var(--rd-bg); border-color: var(--rd-bd) }
.cb-v { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: var(--em) }
.cb-v.na { color: var(--rd); font-family: 'Inter', sans-serif; font-size: 11px }
.cb-l { font-size: 10px; color: var(--t3) }
.pcard-foot { padding: 8px 13px; border-top: 1px solid var(--border) }
.btn-pcard {
  width: 100%; background: var(--em); border: none; border-radius: var(--r8);
  padding: 7px; font-size: 12px; font-weight: 700; color: #000; transition: all .15s;
}
.btn-pcard:hover { background: var(--em2); box-shadow: 0 4px 12px rgba(0,230,118,.22) }
.btn-notify {
  width: 100%; background: transparent; border: 1px solid var(--border2);
  border-radius: var(--r8); padding: 7px; font-size: 11px; font-weight: 500; color: var(--t3); transition: all .15s;
}
.btn-notify:hover { border-color: var(--rd-bd); color: var(--rd) }

/* ════════════════════════════════════
   STEPS
════════════════════════════════════ */
.steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px }
.step {
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r16); padding: 20px;
  text-align: center; transition: border-color .15s, transform .15s; position: relative; overflow: hidden;
}
.step::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--em), transparent); opacity: 0; transition: opacity .15s }
.step:hover { border-color: var(--em-bd); transform: translateY(-3px) }
.step:hover::after { opacity: 1 }
.step-n {
  width: 42px; height: 42px; border-radius: 50%; background: var(--em); color: #000;
  font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; box-shadow: 0 0 16px rgba(0,230,118,.25);
}
.step h3 { font-size: 13px; font-weight: 700; color: var(--t0); margin-bottom: 6px }
.step p  { font-size: 12px; color: var(--t2); line-height: 1.6 }

/* ════════════════════════════════════
   PRODUCT PAGE
════════════════════════════════════ */
.prod-layout {
  max-width: var(--max); margin: 0 auto; padding: 22px var(--px);
  display: grid; grid-template-columns: 340px 1fr 280px; gap: 24px; align-items: start;
}
@media (max-width: 1100px) { .prod-layout { grid-template-columns: 300px 1fr } .buybox { grid-column: 1/-1; max-width: 380px } }
@media (max-width: 680px)  { .prod-layout { grid-template-columns: 1fr } .buybox { max-width: 100% } }

.gallery { position: sticky; top: 68px }
.gallery-main {
  aspect-ratio: 1; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r16); overflow: hidden;
  display: flex; align-items: center; justify-content: center; padding: 18px;
}
.gallery-main img, .gallery-main video { width: 100%; height: 100%; object-fit: contain }
.gallery-thumbs { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px }
.gthumbs {
  width: 48px; height: 48px; border: 2px solid var(--border); border-radius: var(--r8);
  background: var(--card); padding: 3px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; overflow: hidden; transition: border-color .15s;
}
.gthumbs:hover, .gthumbs.active { border-color: var(--em) }
.gthumbs img, .gthumbs video { width: 100%; height: 100%; object-fit: contain; pointer-events: none }

.prod-brand { font-size: 12px; color: var(--sky); font-weight: 500; margin-bottom: 5px }
.prod-title {
  font-family: 'Syne', sans-serif; font-size: clamp(18px,2.5vw,26px);
  font-weight: 800; line-height: 1.1; letter-spacing: -.3px; color: var(--t0); margin-bottom: 12px;
}
.prod-price {
  font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; color: var(--t0); margin-bottom: 16px;
}
.cb-box {
  background: linear-gradient(135deg, rgba(0,230,118,.06), rgba(0,230,118,.02));
  border: 1px solid var(--em-bd); border-left: 3px solid var(--em);
  border-radius: var(--r12); padding: 15px 16px; margin-bottom: 16px;
}
.cb-box .lbl { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--em); margin-bottom: 2px }
.cb-box .amt {
  font-family: 'Syne', sans-serif; font-size: 30px; font-weight: 800; color: var(--em); line-height: 1;
  text-shadow: 0 0 16px rgba(0,230,118,.3);
}
.cb-box .note { font-size: 11px; color: var(--t3); margin-top: 3px }
.cb-box .cb-warn {
  margin-top: 10px; background: var(--au-bg); border: 1px solid var(--au-bd);
  border-radius: var(--r8); padding: 8px 11px; font-size: 11px; color: var(--t2);
  display: flex; align-items: flex-start; gap: 6px;
}

.tabs { display: flex; border-bottom: 1px solid var(--border); margin-top: 20px }
.tab {
  padding: 9px 16px; background: none; border: none; font-size: 13px; font-weight: 600;
  color: var(--t3); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color .15s, border-color .15s;
}
.tab:hover { color: var(--t1) }
.tab.active { color: var(--t0); border-bottom-color: var(--em) }
.tabp { padding: 14px 0; display: none }
.tabp.active { display: block }

.specs-tbl { width: 100%; border-collapse: collapse }
.specs-tbl tr:nth-child(odd) td { background: rgba(255,255,255,.02) }
.specs-tbl td { padding: 8px 12px; font-size: 13px; border-bottom: 1px solid var(--border); color: var(--t2) }
.specs-tbl td:first-child { color: var(--t3); width: 38%; font-weight: 600 }
.faq-item { border-bottom: 1px solid var(--border) }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; padding: 11px 0;
  font-size: 13px; font-weight: 600; color: var(--t1); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.faq-q svg { transition: transform .2s; flex-shrink: 0; color: var(--t3) }
.faq-item.open .faq-q svg { transform: rotate(180deg) }
.faq-a { padding: 0 0 11px; font-size: 13px; line-height: 1.7; color: var(--t2); display: none }
.faq-item.open .faq-a { display: block }

.buybox {
  background: var(--card); border: 1px solid var(--border2);
  border-radius: var(--r20); padding: 18px; position: sticky; top: 68px;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.buybox-price { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 800; color: var(--t0); margin-bottom: 3px }
.buybox-stock { color: var(--em); font-size: 12px; font-weight: 600; margin-bottom: 12px }
.buybox-cb {
  background: var(--em-bg); border: 1px solid var(--em-bd);
  border-radius: var(--r12); padding: 11px; margin-bottom: 10px;
}
.buybox-cb strong { color: var(--em); font-size: 15px; font-family: 'Syne', sans-serif }
.buybox-cb p { font-size: 11px; color: var(--t2); margin-top: 2px }
.buybox-warn {
  background: var(--au-bg); border: 1px solid var(--au-bd);
  border-radius: var(--r8); padding: 7px 10px; font-size: 11px; color: var(--t2);
  display: flex; align-items: center; gap: 5px; margin-bottom: 11px;
}
.btn-main {
  width: 100%; background: var(--em); border: none; border-radius: var(--r12);
  padding: 13px; font-size: 14px; font-weight: 700; color: #000; margin-bottom: 8px; transition: all .15s;
}
.btn-main:hover { background: var(--em2); box-shadow: 0 6px 20px rgba(0,230,118,.25) }
.btn-sec {
  width: 100%; background: var(--card2); border: 1px solid var(--border2);
  border-radius: var(--r12); padding: 10px; font-size: 13px; font-weight: 500; color: var(--t2); transition: all .15s;
}
.btn-sec:hover { background: var(--card); color: var(--t1) }
.buybox-notes { margin-top: 11px; font-size: 11px; color: var(--t3); line-height: 1.8 }
.buybox-notes a { color: var(--sky) }

/* ════════════════════════════════════
   SHOP
════════════════════════════════════ */
.shop-layout {
  max-width: var(--max); margin: 0 auto; padding: 18px var(--px);
  display: grid; grid-template-columns: 210px 1fr; gap: 18px; align-items: start;
}
@media (max-width: 820px) { .shop-layout { grid-template-columns: 1fr } .shop-sidebar { display: none } }

.shop-sidebar {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r16); padding: 16px; position: sticky; top: 68px;
}
.fg { margin-bottom: 16px }
.fg:last-child { margin-bottom: 0 }
.fg h4 { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .9px; color: var(--t3);
  margin-bottom: 8px; padding-bottom: 5px; border-bottom: 1px solid var(--border) }
.fg a { display: block; font-size: 12px; color: var(--t2); padding: 3px 0; transition: color .15s }
.fg a:hover { color: var(--t1) }
.fg a.active { color: var(--em); font-weight: 600 }
.fg label { display: flex; align-items: center; gap: 6px; padding: 3px 0; font-size: 12px; cursor: pointer; color: var(--t2) }
.fg label:hover { color: var(--t1) }
.fg input[type=radio] { accent-color: var(--em) }

.shop-bar {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r12);
  padding: 9px 13px; display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px; flex-wrap: wrap; gap: 8px;
}
.shop-count { font-size: 13px; color: var(--t2) }
.shop-count strong { color: var(--t0) }
.shop-sort { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--t3) }
.shop-sort select {
  background: var(--card2); border: 1px solid var(--border2);
  border-radius: var(--r8); padding: 4px 8px; font-size: 12px; color: var(--t1); cursor: pointer;
}

/* ════════════════════════════════════
   FORMS
════════════════════════════════════ */
.form-wrap {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r20); padding: clamp(18px,4vw,32px);
}
.form-wrap h2 {
  font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800;
  color: var(--t0); margin-bottom: 16px; letter-spacing: -.2px;
}
.form-group { margin-bottom: 14px }
.form-label { display: block; font-size: 10px; font-weight: 700; color: var(--t3);
  margin-bottom: 5px; text-transform: uppercase; letter-spacing: .6px }
.form-input {
  width: 100%; background: var(--bg3); border: 1px solid var(--border2);
  border-radius: var(--r8); padding: 9px 11px; font-size: 13px; color: var(--t1);
  outline: none; transition: border-color .15s, box-shadow .15s;
}
.form-input:focus { border-color: var(--em-bd); box-shadow: 0 0 0 3px rgba(0,230,118,.06) }
.form-input::placeholder { color: var(--t3) }
textarea.form-input { resize: vertical; min-height: 82px }
select.form-input { cursor: pointer }

.upload-area {
  border: 2px dashed var(--border2); border-radius: var(--r12);
  padding: 24px; text-align: center; cursor: pointer; transition: all .15s;
}
.upload-area:hover { border-color: var(--em-bd); background: var(--em-bg) }
.upload-area input { display: none }

/* ════════════════════════════════════
   BUTTONS
════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  border: none; border-radius: var(--r8); padding: 9px 20px;
  font-size: 13px; font-weight: 700; cursor: pointer;
  transition: all .15s var(--ease); white-space: nowrap; text-decoration: none;
}
.btn-em   { background: var(--em);  color: #000 }
.btn-em:hover  { background: var(--em2); box-shadow: 0 6px 18px rgba(0,230,118,.25) }
.btn-au   { background: linear-gradient(135deg, var(--au), var(--au2)); color: #000 }
.btn-au:hover  { box-shadow: 0 6px 18px rgba(255,215,64,.2) }
.btn-ghost { background: var(--card2); border: 1px solid var(--border2); color: var(--t2) }
.btn-ghost:hover { background: var(--card); color: var(--t1) }
.btn-danger { background: var(--rd-bg); border: 1px solid var(--rd-bd); color: var(--rd) }
.btn-danger:hover { background: rgba(255,82,82,.14) }
.btn-full { width: 100%; text-align: center }
.btn-sm { padding: 5px 12px; font-size: 11px }
.btn-lg { padding: 13px 30px; font-size: 15px }

/* ════════════════════════════════════
   ALERTS
════════════════════════════════════ */
.alert {
  border-radius: var(--r8); padding: 10px 13px; font-size: 13px;
  margin-bottom: 12px; display: flex; align-items: flex-start; gap: 8px; line-height: 1.5;
}
.alert-ok   { background: var(--em-bg);  border: 1px solid var(--em-bd);  color: #86efac }
.alert-err  { background: var(--rd-bg);  border: 1px solid var(--rd-bd);  color: var(--rd) }
.alert-warn { background: var(--au-bg);  border: 1px solid var(--au-bd);  color: var(--au) }
.alert-info { background: var(--sky-bg); border: 1px solid rgba(64,196,255,.2); color: var(--sky) }

/* ════════════════════════════════════
   STATUS BADGES
════════════════════════════════════ */
.status { display: inline-block; padding: 2px 9px; border-radius: 99px; font-size: 10px; font-weight: 700; text-transform: capitalize; letter-spacing: .2px }
.s-pending  { background: var(--au-bg);  color: var(--au);  border: 1px solid var(--au-bd) }
.s-review   { background: var(--sky-bg); color: var(--sky); border: 1px solid rgba(64,196,255,.2) }
.s-approved { background: var(--em-bg);  color: var(--em);  border: 1px solid var(--em-bd) }
.s-rejected { background: var(--rd-bg);  color: var(--rd);  border: 1px solid var(--rd-bd) }
.s-paid     { background: rgba(134,239,172,.07); color: #86efac; border: 1px solid rgba(134,239,172,.18) }

/* ════════════════════════════════════
   MODAL
════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(7,9,15,.85);
  backdrop-filter: blur(12px); z-index: 200;
  display: flex; align-items: center; justify-content: center; padding: 16px;
  opacity: 0; pointer-events: none; transition: opacity .2s var(--ease);
}
.modal-overlay.open { opacity: 1; pointer-events: all }
.modal-box {
  background: var(--card); border: 1px solid var(--border2);
  border-radius: var(--r20); padding: clamp(20px,4vw,32px); max-width: 420px; width: 100%;
  box-shadow: 0 0 60px rgba(0,0,0,.8);
  transform: translateY(14px) scale(.97); transition: transform .2s var(--ease);
}
.modal-overlay.open .modal-box { transform: none }
.modal-box h2 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; color: var(--t0); margin-bottom: 8px }
.modal-box p { font-size: 13px; color: var(--t2); line-height: 1.65; margin-bottom: 10px }
.modal-warn { background: var(--au-bg); border: 1px solid var(--au-bd); border-radius: var(--r8); padding: 9px 11px; font-size: 12px; color: var(--t2); margin-bottom: 16px }
.modal-acts { display: flex; gap: 8px }
.modal-acts .btn { flex: 1 }

/* ════════════════════════════════════
   DASHBOARD
════════════════════════════════════ */
.dash-layout {
  max-width: var(--max); margin: 0 auto; padding: 22px var(--px);
  display: grid; grid-template-columns: 220px 1fr; gap: 22px; align-items: start;
}
@media (max-width: 820px) { .dash-layout { grid-template-columns: 1fr } }

.dash-sidebar {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r20); overflow: hidden; position: sticky; top: 68px;
}
.dash-user {
  padding: 20px; text-align: center; border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, var(--card), var(--bg3));
}
.dash-av {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--em), var(--em2));
  margin: 0 auto 12px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: #000;
  border: 3px solid rgba(0,230,118,.18); box-shadow: 0 0 16px rgba(0,230,118,.18);
}
.dash-av img { width: 100%; height: 100%; object-fit: cover }
.dash-user h3 { font-size: 13px; color: var(--t0); font-weight: 700; margin-bottom: 2px }
.dash-user p  { font-size: 11px; color: var(--t3) }
.dash-nav { padding: 8px }
.dash-nav a {
  display: flex; align-items: center; gap: 8px; padding: 8px 11px; border-radius: var(--r8);
  font-size: 12px; color: var(--t2); transition: all .15s;
}
.dash-nav a:hover { background: var(--card2); color: var(--t1) }
.dash-nav a.active { background: var(--em-bg); color: var(--em); font-weight: 600; border: 1px solid var(--em-bd) }
.dash-nav .sep { height: 1px; background: var(--border); margin: 5px 0 }

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 18px }
@media (max-width: 560px) { .stats-grid { grid-template-columns: 1fr 1fr } }
.stat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r16); padding: 16px; position: relative; overflow: hidden;
}
.stat-card::before { content:''; position:absolute; top:0; right:0; width:70px; height:70px; border-radius:50%;
  background:radial-gradient(circle, var(--sc,rgba(0,230,118,.08)) 0%, transparent 70%); transform:translate(30%,-30%) }
.stat-card.g { --sc: rgba(0,230,118,.08) }
.stat-card.a { --sc: rgba(255,215,64,.08) }
.stat-card .n { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800; color: var(--t0) }
.stat-card.g .n { color: var(--em) }
.stat-card.a .n { color: var(--au) }
.stat-card .l { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .4px; color: var(--t3); margin-top: 2px }

/* ════════════════════════════════════
   TABLES
════════════════════════════════════ */
.tbl-wrap { overflow-x: auto }
.tbl { width: 100%; border-collapse: collapse; font-size: 12px }
.tbl thead th {
  background: rgba(255,255,255,.02); padding: 8px 11px; text-align: left;
  font-size: 9px; font-weight: 700; color: var(--t3); text-transform: uppercase;
  letter-spacing: .7px; border-bottom: 1px solid var(--border); white-space: nowrap;
}
.tbl td { padding: 11px 11px; border-bottom: 1px solid var(--border); vertical-align: middle }
.tbl tbody tr:hover td { background: rgba(255,255,255,.02) }
.tbl tbody tr:last-child td { border-bottom: none }

/* ════════════════════════════════════
   CARD BOX
════════════════════════════════════ */
.card-box {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r16); padding: 18px; margin-bottom: 14px;
}
.card-box h2 {
  font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 800; color: var(--t0);
  margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border);
}

/* ════════════════════════════════════
   ADMIN
════════════════════════════════════ */
.admin-wrap { display: flex; min-height: 100vh; background: var(--bg) }
.admin-aside {
  width: 220px; background: var(--bg2); flex-shrink: 0;
  display: flex; flex-direction: column; position: sticky; top: 0; height: 100vh;
  overflow-y: auto; border-right: 1px solid var(--border);
}
.admin-logo {
  background: var(--bg3); padding: 16px 18px; border-bottom: 1px solid var(--border);
  font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 800; color: var(--em);
  text-shadow: 0 0 16px rgba(0,230,118,.25);
}
.admin-logo span { color: var(--t3); font-size: 9px; font-family: 'Inter', sans-serif; font-weight: 400;
  display: block; margin-top: 2px; text-transform: uppercase; letter-spacing: 1px }
.admin-slbl { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: var(--t3); padding: 10px 18px 2px }
.admin-aside a { display: flex; align-items: center; gap: 8px; padding: 8px 18px;
  color: var(--t2); font-size: 12px; transition: all .15s }
.admin-aside a:hover { background: rgba(255,255,255,.03); color: var(--t1) }
.admin-aside a.active { background: var(--em-bg); color: var(--em); font-weight: 700; border-left: 2px solid var(--em) }
.admin-aside .sep { height: 1px; background: var(--border); margin: 5px 0 }
.admin-main { flex: 1; padding: clamp(14px,3vw,32px); overflow-y: auto; max-width: 1100px }
.admin-main h1 {
  font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800;
  color: var(--t0); margin-bottom: 20px; letter-spacing: -.3px;
}
.admin-stats { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; margin-bottom: 20px }
.astat { background: var(--card); border: 1px solid var(--border); border-radius: var(--r16); padding: 16px; position: relative; overflow: hidden }
.astat::before { content:''; position:absolute; top:0; right:0; width:60px; height:60px; border-radius:50%;
  background:radial-gradient(circle,rgba(0,230,118,.08) 0%,transparent 65%); transform:translate(30%,-30%) }
.astat .n { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800; color: var(--em) }
.astat .l { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--t3); margin-top: 2px }

/* Login admin */
.login-page { min-height: 100vh; background: var(--bg); display: flex; align-items: center; justify-content: center; padding: 32px; position: relative }
.login-page::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 70% 60% at 50% 50%,rgba(0,230,118,.03) 0%,transparent 65%) }
.login-card {
  background: var(--card); border: 1px solid var(--border2); border-radius: var(--r24);
  padding: clamp(24px,5vw,44px); max-width: 380px; width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,.7); text-align: center; position: relative; z-index: 1;
}
.login-logo { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 800; color: var(--t0); margin-bottom: 5px }
.login-logo em { color: var(--em); font-style: normal }
.login-sub { font-size: 13px; color: var(--t3); margin-bottom: 24px }
.btn-google {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--card2); border: 1px solid var(--border2); border-radius: var(--r12);
  padding: 13px; font-size: 14px; font-weight: 600; color: var(--t1); cursor: pointer; transition: all .15s;
}
.btn-google:hover { background: var(--card); box-shadow: 0 4px 20px rgba(0,0,0,.4); border-color: var(--border2) }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.footer-body {
  background: var(--bg3); padding: clamp(24px,4vw,44px) var(--px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 24px;
  border-top: 1px solid var(--border);
}
.fc h4 { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700; color: var(--t0);
  margin-bottom: 11px; text-transform: uppercase; letter-spacing: .4px }
.fc a { display: block; color: var(--t3); font-size: 12px; margin-bottom: 7px; transition: color .15s }
.fc a:hover { color: var(--em) }
.fc p { color: var(--t3); font-size: 12px; line-height: 1.7 }
.footer-brand { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 800; color: var(--t0); margin-bottom: 7px }
.footer-brand em { color: var(--em); font-style: normal }
.footer-bottom {
  background: var(--bg); padding: 12px var(--px);
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 16px;
  border-top: 1px solid var(--border);
}
.footer-bottom a { color: var(--t3); font-size: 11px; transition: color .15s }
.footer-bottom a:hover { color: var(--t1) }

/* ════════════════════════════════════
   UTILS
════════════════════════════════════ */
.muted    { color: var(--t2) }
.em-txt   { color: var(--em) }
.au-txt   { color: var(--au) }
.link     { color: var(--sky) }
.link:hover { text-decoration: underline }
.empty-state { text-align: center; padding: 44px 20px; color: var(--t2) }
.empty-state .icon { font-size: 48px; margin-bottom: 12px }
.empty-state h3 { font-size: 16px; color: var(--t0); margin-bottom: 4px; font-weight: 700 }
.divider { height: 1px; background: var(--border); margin: 12px 0 }

/* Animations stagger */
@keyframes fadeup { from { opacity:0; transform:translateY(12px) } to { opacity:1; transform:none } }
.fade-in { animation: fadeup .35s var(--ease) both }
.fade-in:nth-child(2) { animation-delay:.05s } .fade-in:nth-child(3) { animation-delay:.1s }
.fade-in:nth-child(4) { animation-delay:.15s } .fade-in:nth-child(5) { animation-delay:.2s }
.fade-in:nth-child(6) { animation-delay:.25s } .fade-in:nth-child(7) { animation-delay:.3s }
.fade-in:nth-child(8) { animation-delay:.35s }

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 768px) {
  .nav .nav-search { display: none }
  .subnav { display: none }
  .pgrid { grid-template-columns: repeat(2, 1fr); gap: 9px }
  .footer-body { grid-template-columns: 1fr 1fr }
  .admin-aside { display: none }
  .hero h1 { letter-spacing: -1px }
}
@media (max-width: 400px) {
  .pgrid { grid-template-columns: 1fr }
  .stats-grid { grid-template-columns: 1fr 1fr }
}
