/* ============================================================
   STANDOFF 2 — GLASSMORPHISM LANDING
   ============================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #050811;
  color: #e8ecf5;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 100px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: #ffd24a; color: #050811; }

/* ============= BACKGROUND ============= */
.bg-image {
  position: fixed; inset: 0; z-index: -3;
  background:
    url('img/storeog.jpg') center/cover no-repeat fixed;
  filter: brightness(.42) saturate(1.2);
}
.bg-image::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 10%, #ff7b1c33 0%, transparent 55%),
    radial-gradient(ellipse at 85% 30%, #ffd24a26 0%, transparent 60%),
    radial-gradient(ellipse at 50% 90%, #6b1bff26 0%, transparent 55%);
}
.bg-overlay {
  position: fixed; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(5,8,17,.85) 0%, rgba(5,8,17,.6) 40%, rgba(5,8,17,.95) 100%);
}
.bg-noise {
  position: fixed; inset: 0; z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: .035;
  pointer-events: none;
}

/* ============= PARTICLES ============= */
.particles {
  position: fixed; inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.particles span {
  position: absolute;
  bottom: -30px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff8c2 0%, #ffd24a 60%, transparent 100%);
  box-shadow: 0 0 8px #ffd24a;
  animation: rise linear infinite;
  opacity: 0;
}
.particles span:nth-child(1)  { left: 4%;  animation-duration: 14s; animation-delay: 0s;   width: 4px; height: 4px; }
.particles span:nth-child(2)  { left: 11%; animation-duration: 18s; animation-delay: 2s;   width: 6px; height: 6px; }
.particles span:nth-child(3)  { left: 17%; animation-duration: 12s; animation-delay: 4s;   }
.particles span:nth-child(4)  { left: 23%; animation-duration: 20s; animation-delay: 1s;   width: 8px; height: 8px; }
.particles span:nth-child(5)  { left: 30%; animation-duration: 16s; animation-delay: 6s;   }
.particles span:nth-child(6)  { left: 36%; animation-duration: 13s; animation-delay: 3s;   width: 5px; height: 5px; }
.particles span:nth-child(7)  { left: 42%; animation-duration: 19s; animation-delay: 8s;   }
.particles span:nth-child(8)  { left: 49%; animation-duration: 15s; animation-delay: 0s;   width: 7px; height: 7px; }
.particles span:nth-child(9)  { left: 55%; animation-duration: 17s; animation-delay: 5s;   }
.particles span:nth-child(10) { left: 61%; animation-duration: 14s; animation-delay: 7s;   width: 4px; height: 4px; }
.particles span:nth-child(11) { left: 67%; animation-duration: 21s; animation-delay: 2s;   }
.particles span:nth-child(12) { left: 73%; animation-duration: 16s; animation-delay: 9s;   width: 6px; height: 6px; }
.particles span:nth-child(13) { left: 79%; animation-duration: 13s; animation-delay: 4s;   }
.particles span:nth-child(14) { left: 85%; animation-duration: 18s; animation-delay: 1s;   width: 5px; height: 5px; }
.particles span:nth-child(15) { left: 91%; animation-duration: 15s; animation-delay: 6s;   }
.particles span:nth-child(16) { left: 96%; animation-duration: 22s; animation-delay: 3s;   width: 8px; height: 8px; }
.particles span:nth-child(17) { left: 14%; animation-duration: 24s; animation-delay: 11s;  }
.particles span:nth-child(18) { left: 45%; animation-duration: 20s; animation-delay: 13s;  width: 4px; height: 4px; }
.particles span:nth-child(19) { left: 70%; animation-duration: 19s; animation-delay: 10s;  }
.particles span:nth-child(20) { left: 88%; animation-duration: 17s; animation-delay: 12s;  }
@keyframes rise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  50%  { transform: translateY(-50vh) translateX(30px); }
  90%  { opacity: 1; }
  100% { transform: translateY(-110vh) translateX(-30px); opacity: 0; }
}

/* ============= GLASS PRIMITIVES ============= */
.glass {
  background: linear-gradient(135deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  box-shadow:
    0 8px 32px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.08);
  border-radius: 20px;
}
.glass-soft {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
}

/* ============= NAVBAR ============= */
.navbar {
  position: sticky; top: 16px;
  z-index: 50;
  margin: 16px auto 0;
  max-width: 1200px;
  padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  width: calc(100% - 32px);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800;
}
.brand-logo { height: 30px; width: auto; object-fit: contain; display:block; filter: drop-shadow(0 2px 8px rgba(255,210,74,.35)); }
.brand-text {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  letter-spacing: 3px;
  background: linear-gradient(135deg, #fff 0%, #ffd24a 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: #b8c0d4;
  transition: color .2s;
  position: relative;
}
.nav-links a:hover { color: #ffd24a; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; left: 0; right: 0;
  height: 2px; background: #ffd24a;
  transform: scaleX(0); transition: transform .25s;
}
.nav-links a:hover::after { transform: scaleX(1); }
.navbar-status {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: #b8c0d4;
  padding: 6px 14px;
  background: rgba(43, 255, 123, .08);
  border: 1px solid rgba(43, 255, 123, .25);
  border-radius: 20px;
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #2bff7b;
  box-shadow: 0 0 10px #2bff7b;
  animation: pulse 1.6s infinite;
}
@keyframes pulse { 50% { opacity: .4; transform: scale(.85); } }
@media (max-width: 760px) {
  .nav-links { display: none; }
  .navbar { padding: 10px 16px; }
}

/* ============= HERO ============= */
.hero {
  position: relative; z-index: 2;
  max-width: 1200px;
  margin: 60px auto 80px;
  padding: 0 16px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 920px) {
  .hero { margin-top: 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px;
  color: #ffd24a;
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 6.4vw, 68px);
  line-height: 1.05;
  letter-spacing: -.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-title-gold {
  display: inline-flex; align-items: baseline; gap: 14px;
  margin: 8px 0;
}
.hero-title-gold .num {
  font-size: 1.5em;
  background: linear-gradient(180deg, #fff8c2 0%, #ffd24a 35%, #f0a020 75%, #c47512 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 4px 24px rgba(255, 210, 74, .5));
  position: relative;
  animation: goldShine 3s ease-in-out infinite;
}
@keyframes goldShine {
  0%, 100% { filter: drop-shadow(0 4px 24px rgba(255, 210, 74, .5)); }
  50%      { filter: drop-shadow(0 4px 36px rgba(255, 210, 74, .9)); }
}
.hero-title-gold .lbl {
  font-size: .55em;
  background: linear-gradient(180deg, #fff8c2, #ffd24a);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-title-sub {
  display: block;
  font-size: .55em;
  font-weight: 500;
  color: #b8c0d4;
  letter-spacing: 2px;
  margin-top: 4px;
}
.hero-desc {
  font-size: 16px;
  color: #b8c0d4;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-desc b { color: #ffd24a; font-weight: 600; }

.hero-cta-row {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 420px;
}
.stat {
  position: relative;
  padding: 20px 14px 18px;
  text-align: center;
  border-radius: 16px;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s, box-shadow .35s;
}
.stat::before {
  content: '';
  position: absolute; top: 0; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffd24a, transparent);
  opacity: .55;
  transition: opacity .35s, left .35s, right .35s;
}
.stat::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 50% 0%, rgba(255,210,74,.10), transparent 60%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}
.stat:hover {
  transform: translateY(-3px);
  border-color: rgba(255,210,74,.35);
  box-shadow: 0 14px 30px rgba(0,0,0,.35), 0 0 0 1px rgba(255,210,74,.18);
}
.stat:hover::before { left: 0; right: 0; opacity: 1; }
.stat:hover::after { opacity: 1; }
.stat-icon {
  width: 38px; height: 38px;
  margin: 0 auto 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,210,74,.08);
  border: 1px solid rgba(255,210,74,.2);
  border-radius: 50%;
  box-shadow: inset 0 0 12px rgba(255,210,74,.08);
}
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  display: flex; align-items: baseline; justify-content: center; gap: 5px;
  letter-spacing: .5px;
  text-shadow: 0 0 18px rgba(255,210,74,.18);
}
.stat-num .stat-unit {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  color: #ffd24a;
  text-transform: uppercase;
  text-shadow: none;
  position: relative;
  top: -2px;
}
.stat-lbl {
  font-size: 10.5px;
  color: #8893ab;
  letter-spacing: 1.1px;
  margin-top: 8px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.4;
}
.live-dot {
  width: 8px !important; height: 8px;
  border-radius: 50%;
  background: #2bff7b !important;
  box-shadow: 0 0 8px #2bff7b;
  animation: pulse 1.6s infinite;
}

/* ============= HERO CARD ============= */
.hero-card {
  position: relative;
  padding: 28px;
  overflow: hidden;
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transition: transform .5s;
}
.hero-card:hover { transform: perspective(1200px) rotateY(-2deg) rotateX(0deg); }
@media (max-width: 920px) {
  .hero-card { transform: none; }
  .hero-card:hover { transform: none; }
}
.card-glow {
  position: absolute; top: -40%; left: -40%;
  width: 80%; height: 80%;
  background: radial-gradient(circle, #ffd24a40 0%, transparent 70%);
  filter: blur(40px);
  animation: floatGlow 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(40%, 40%); }
}
.card-badge {
  position: absolute;
  top: 18px; right: 18px;
  z-index: 2;
  padding: 6px 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #ff7b1c, #ff2b2b);
  color: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(255, 43, 43, .4);
}
.card-image {
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 12px 24px rgba(255, 210, 74, .35));
  position: relative;
  z-index: 1;
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat { 50% { transform: translateY(-10px); } }
.card-content { position: relative; z-index: 1; }
.card-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.card-row:last-of-type { border-bottom: none; }
.card-label { font-size: 13px; color: #8893ab; }
.card-value { font-size: 14px; font-weight: 600; }

.card-progress { margin-top: 18px; }
.progress-info {
  display: flex; justify-content: space-between;
  font-size: 12px; color: #8893ab;
  margin-bottom: 8px;
}
.progress-info b { color: #fff; }
.progress-bar {
  height: 8px;
  background: rgba(255,255,255,.06);
  border-radius: 4px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffd24a, #ff7b1c);
  border-radius: 4px;
  position: relative;
  box-shadow: 0 0 12px #ffd24a80;
}
.progress-fill::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  animation: progressShine 2s ease-in-out infinite;
}
@keyframes progressShine {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .5px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .3s;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, #ffd24a 0%, #ff7b1c 100%);
  color: #1a0d05;
  box-shadow:
    0 8px 24px rgba(255, 123, 28, .4),
    inset 0 1px 0 rgba(255,255,255,.4);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-20deg);
  transition: left .6s;
}
.btn-primary:hover::before { left: 130%; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 123, 28, .55), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: rgba(255,255,255,.05);
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,210,74,.4);
}
.btn-big { padding: 18px 36px; font-size: 17px; }
.btn-sticky { padding: 14px 28px; width: 100%; max-width: 380px; }

/* ============= SECTIONS ============= */
.section {
  position: relative; z-index: 2;
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 16px;
}
.section-head { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #ffd24a;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 5vw, 44px);
  letter-spacing: -.5px;
  text-transform: uppercase;
}
.gold-text {
  background: linear-gradient(180deg, #fff8c2 0%, #ffd24a 50%, #d18a18 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ============= FEATURES GRID ============= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.feature {
  padding: 28px 24px;
  text-align: left;
  transition: transform .3s, border-color .3s;
}
.feature:hover {
  transform: translateY(-6px);
  border-color: rgba(255,210,74,.3);
}
.feature-ico {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.1);
}
.ico-bolt   { background: linear-gradient(135deg, #ffd24a26, #ff7b1c0d); color: #ffd24a; }
.ico-shield { background: linear-gradient(135deg, #2bff7b26, #1baaff0d); color: #2bff7b; }
.ico-fire   { background: linear-gradient(135deg, #ff2b2b26, #ff7b1c0d); color: #ff5b5b; }
.ico-medal  { background: linear-gradient(135deg, #b86bff26, #ff2bd80d); color: #c895ff; }
.feature h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.feature p { font-size: 14px; color: #b8c0d4; }

/* ============= WEAPONS GRID ============= */
.weapons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.weapon {
  position: relative;
  padding: 20px;
  text-align: center;
  transition: transform .3s;
}
.weapon:hover { transform: translateY(-8px) scale(1.02); }
.weapon img,
.weapon-art {
  width: 100%;
  height: 140px;
  object-fit: cover;
  background-size: 240% auto;
  background-repeat: no-repeat;
  margin: 12px 0;
  border-radius: 12px;
  border: 1px solid rgba(255,210,74,.18);
  box-shadow: 0 8px 24px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.04);
  filter: drop-shadow(0 8px 16px rgba(255,210,74,.18));
  transition: transform .5s ease, background-position .5s ease;
}
.weapon:hover .weapon-art,
.weapon:hover img { transform: scale(1.04); }
.weapon-tier {
  position: absolute;
  top: 14px; left: 14px;
  font-family: 'Oswald', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 1;
}
.tier-legendary { background: linear-gradient(135deg, #ff2b2b, #ff7b1c); color: #fff; box-shadow: 0 4px 12px rgba(255,43,43,.4); }
.tier-mythic    { background: linear-gradient(135deg, #b86bff, #ff2bd8); color: #fff; box-shadow: 0 4px 12px rgba(184,107,255,.4); }
.tier-epic      { background: linear-gradient(135deg, #6b1bff, #1baaff); color: #fff; box-shadow: 0 4px 12px rgba(107,27,255,.4); }
.tier-rare      { background: linear-gradient(135deg, #1baaff, #2bff7b); color: #fff; box-shadow: 0 4px 12px rgba(27,170,255,.4); }
.weapon-info h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.weapon-price { font-size: 14px; color: #b8c0d4; }
.weapon-price .gold-text { font-weight: 700; font-size: 16px; }

/* ============= STEPS ============= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.step {
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.step-num {
  font-family: 'Oswald', sans-serif;
  font-size: 64px;
  font-weight: 700;
  background: linear-gradient(180deg, #ffd24a, #ff7b1c);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
  margin-bottom: 16px;
  opacity: .9;
}
.step h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.step p { font-size: 14px; color: #b8c0d4; }
.step b { color: #ffd24a; }

/* ============= REVIEWS ============= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.review { padding: 24px; transition: transform .3s; }
.review:hover { transform: translateY(-4px); }
.review-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.ava {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex: 0 0 44px;
  border: 2px solid rgba(255,255,255,.15);
}
.ava-1 { background: linear-gradient(135deg, #ff2b2b, #ffd24a); }
.ava-2 { background: linear-gradient(135deg, #2bff7b, #1baaff); }
.ava-3 { background: linear-gradient(135deg, #b86bff, #ff2bd8); }
.ava-name { font-weight: 700; font-size: 15px; }
.ava-rank { font-size: 12px; color: #ffd24a; }
.review-stars {
  margin-left: auto;
  color: #ffd24a;
  font-size: 13px;
  letter-spacing: 1px;
}
.review p {
  font-size: 14px;
  color: #d8dde8;
  margin-bottom: 12px;
  line-height: 1.6;
}
.review-time { font-size: 12px; color: #8893ab; }

/* ============= CTA SECTION ============= */
.cta-section { max-width: 900px; }
.cta-block {
  position: relative;
  padding: 56px 32px;
  text-align: center;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: -50%; left: 50%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, #ffd24a30 0%, transparent 60%);
  filter: blur(40px);
  transform: translateX(-50%);
  pointer-events: none;
  animation: ctaGlow 6s ease-in-out infinite;
}
@keyframes ctaGlow {
  50% { transform: translateX(-50%) scale(1.2); opacity: .7; }
}
.cta-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ffd24a;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.cta-block h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(24px, 4.6vw, 38px);
  letter-spacing: -.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
  position: relative; z-index: 1;
}
.cta-block p {
  font-size: 16px;
  color: #b8c0d4;
  max-width: 520px;
  margin: 0 auto 32px;
  position: relative; z-index: 1;
}
.cta-block .btn { position: relative; z-index: 1; }

/* ============= FOOTER ============= */
.foot {
  position: relative; z-index: 2;
  margin-top: 100px;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 40px 16px 30px;
}
.foot-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 20px;
}
.foot-brand { display: flex; flex-direction: column; gap: 4px; }
.foot-tag { font-size: 12px; color: #8893ab; }
.foot-links { display: flex; gap: 24px; flex-wrap: wrap; }
.foot-links a {
  font-size: 13px;
  color: #b8c0d4;
  transition: color .2s;
}
.foot-links a:hover { color: #ffd24a; }
.foot-copy {
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: #5a6377;
  margin-top: 16px;
}

/* ============= STICKY CTA ============= */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(5,8,17,.95) 50%);
  display: flex; justify-content: center;
  z-index: 60;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
}
.sticky-cta .btn { pointer-events: auto; }

/* ============= RESPONSIVE ============= */
@media (max-width: 600px) {
  .hero-card { padding: 20px; }
  .card-image { height: 160px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats .stat:last-child { grid-column: 1 / -1; }
  .section { margin: 60px auto; }
  .cta-block { padding: 40px 20px; }
  .step { padding: 24px 20px; }
  .step-num { font-size: 48px; }
}

/* ============= NAV BUTTON ============= */
.btn-nav {
  padding: 9px 18px;
  font-size: 13px;
  letter-spacing: .5px;
}
@media (max-width: 760px) {
  .btn-nav { padding: 8px 14px; font-size: 12px; }
}

/* ============= SECTION SUBTITLE ============= */
.section-sub {
  max-width: 680px;
  margin: 14px auto 0;
  color: #b8c0d4;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

/* ============= TRUST STRIP ============= */
.trust-strip {
  position: relative; z-index: 2;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: #d8dce8;
  font-weight: 500;
  letter-spacing: .3px;
}
.trust-divider {
  width: 1px; height: 22px;
  background: rgba(255,255,255,.08);
}
@media (max-width: 720px) {
  .trust-strip { gap: 14px; padding: 14px 16px; margin: 0 16px 30px; }
  .trust-divider { display: none; }
  .trust-item { font-size: 12px; }
}

/* ============= ABOUT ============= */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.about-card {
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffd24a, transparent);
  opacity: .55;
}
.about-num {
  font-family: 'Oswald', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #ffd24a;
  opacity: .45;
  line-height: 1;
  margin-bottom: 14px;
}
.about-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: #fff;
}
.about-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #b8c0d4;
}

/* ============= COMPARISON TABLE ============= */
.compare-table {
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
}
.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 15px;
  color: #d8dce8;
}
.compare-row:last-child { border-bottom: none; }
.compare-row > div:first-child {
  font-weight: 600;
  color: #fff;
}
.compare-row .col-paid {
  text-align: center;
  color: #8a93a8;
  font-weight: 500;
}
.compare-row .col-bonus {
  text-align: center;
  color: #fff;
  font-weight: 700;
}
.compare-head {
  background: rgba(255,210,74,.06);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-size: 12px !important;
  color: #ffd24a !important;
}
.compare-head > div { color: #ffd24a !important; font-weight: 700; }
@media (max-width: 720px) {
  .compare-row {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'param param' 'paid bonus';
    gap: 8px 12px;
    padding: 14px 16px;
    font-size: 14px;
  }
  .compare-row > div:first-child { grid-area: param; }
  .compare-row .col-paid { grid-area: paid; text-align: left; font-size: 13px; }
  .compare-row .col-bonus { grid-area: bonus; text-align: right; font-size: 13px; }
  .compare-head { display: none; }
}

/* ============= FAQ ============= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  padding: 0;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] {
  border-color: rgba(255,210,74,.35);
  box-shadow: 0 8px 32px rgba(255,210,74,.08);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 15.5px;
  color: #fff;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: #ffd24a; }
.faq-icon {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  color: #ffd24a;
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,210,74,.3);
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform .25s ease, background .25s ease;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: rgba(255,210,74,.15);
}
.faq-body {
  padding: 0 24px 22px;
  color: #b8c0d4;
  font-size: 14.5px;
  line-height: 1.7;
}
@media (max-width: 600px) {
  .faq-item summary { padding: 16px 18px; font-size: 14.5px; }
  .faq-body { padding: 0 18px 18px; font-size: 14px; }
}

/* ============= FOOTER LOGO ============= */
.foot-logo {
  height: 28px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(255,210,74,.3));
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ============= REMOVE LIVE-DOT (legacy) ============= */
.live-dot { display: none !important; }

/* ============= MODAL (game ID) ============= */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: radial-gradient(ellipse at center, rgba(20,15,5,.6), rgba(3,5,10,.92));
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding: 44px 36px 30px;
  border-radius: 24px;
  text-align: center;
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(255,210,74,.08), transparent 65%),
    linear-gradient(180deg, rgba(22,26,40,.95), rgba(12,14,22,.95));
  border: 1px solid rgba(255,210,74,.18);
  box-shadow:
    0 40px 100px rgba(0,0,0,.7),
    0 0 0 1px rgba(255,255,255,.04),
    0 0 60px rgba(255,210,74,.08);
  transform: translateY(24px) scale(.94);
  opacity: 0;
  transition: transform .4s cubic-bezier(.2,.9,.25,1.1), opacity .3s ease;
  overflow: hidden;
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.modal-top-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffd24a 50%, transparent);
  box-shadow: 0 0 24px #ffd24a;
}
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  color: #b8c0d4;
  cursor: pointer;
  border-radius: 10px;
  transition: all .2s;
  z-index: 2;
}
.modal-close:hover {
  background: rgba(255,210,74,.1);
  border-color: rgba(255,210,74,.3);
  color: #ffd24a;
  transform: rotate(90deg);
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  margin-bottom: 22px;
  background: linear-gradient(135deg, #ffd24a, #f5a623);
  color: #0a0d16;
  border-radius: 100px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(255,210,74,.35), inset 0 1px 0 rgba(255,255,255,.5);
}
.modal-badge svg { flex-shrink: 0; }

.modal-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 22px;
  padding: 0 4px;
  max-width: 100%;
}
.modal-step {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 1;
  min-width: 0;
}
.modal-step-num {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: #6a7080;
  transition: all .2s;
  flex-shrink: 0;
}
.modal-step-lbl {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: #6a7080;
  transition: color .2s;
  white-space: nowrap;
}
.modal-step.active .modal-step-num {
  background: linear-gradient(135deg, #ffd24a, #f5a623);
  border-color: transparent;
  color: #0a0d16;
  box-shadow: 0 0 16px rgba(255,210,74,.45);
}
.modal-step.active .modal-step-lbl {
  color: #ffd24a;
}
.modal-step-line {
  flex: 1;
  height: 1px;
  min-width: 8px;
  max-width: 18px;
  background: linear-gradient(90deg, rgba(255,255,255,.05), rgba(255,255,255,.18), rgba(255,255,255,.05));
}

@media (max-width: 420px) {
  .modal-step-lbl { font-size: 0; }
  .modal-step.active .modal-step-lbl {
    font-size: 9.5px;
  }
  .modal-step-line { max-width: 32px; }
}

.modal-icon {
  position: relative;
  width: 78px; height: 78px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,210,74,.25), rgba(255,210,74,.05));
  border: 1.5px solid rgba(255,210,74,.4);
  border-radius: 50%;
  box-shadow:
    0 0 32px rgba(255,210,74,.25),
    inset 0 0 20px rgba(255,210,74,.1);
}
.modal-icon svg { position: relative; z-index: 2; }
.modal-icon-pulse {
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,210,74,.5);
  animation: modalPulse 2.2s ease-out infinite;
}
@keyframes modalPulse {
  0% { transform: scale(.9); opacity: .9; }
  100% { transform: scale(1.4); opacity: 0; }
}

.modal h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 10px;
  color: #fff;
}
.modal-sub {
  color: #b8c0d4;
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 26px;
  padding: 0 6px;
}

.modal-form { display: flex; flex-direction: column; gap: 12px; text-align: left; }
.modal-field { display: flex; flex-direction: column; gap: 8px; }
.modal-field span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #ffd24a;
}
.modal-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.modal-input-icon {
  position: absolute;
  left: 16px;
  color: #6a7080;
  transition: color .2s;
  pointer-events: none;
}
.modal-field input {
  width: 100%;
  padding: 15px 16px 15px 44px;
  font: 600 16px 'Inter', sans-serif;
  color: #fff;
  background: rgba(0,0,0,.45);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: 12px;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  letter-spacing: .3px;
}
.modal-field input::placeholder { color: #5a6075; font-weight: 400; }
.modal-field input:focus {
  border-color: #ffd24a;
  background: rgba(255,210,74,.04);
  box-shadow: 0 0 0 4px rgba(255,210,74,.12);
}
.modal-field input:focus + .modal-input-icon,
.modal-input-wrap:focus-within .modal-input-icon { color: #ffd24a; }

.modal-error {
  min-height: 16px;
  font-size: 12.5px;
  color: #ff7373;
  font-weight: 500;
  padding-left: 4px;
}
.modal-submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
  height: 54px;
  font-size: 15.5px;
}
.modal-submit:disabled {
  opacity: .65;
  cursor: not-allowed;
}

.modal-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 4px;
  color: #6a7080;
}
.modal-divider::before,
.modal-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
}
.modal-divider span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.modal-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.modal-trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: #a8b0c4;
  line-height: 1.4;
}
.modal-trust li svg { flex-shrink: 0; }
.modal-trust li b { color: #fff; font-weight: 600; }

@media (max-width: 480px) {
  .modal { padding: 36px 22px 24px; border-radius: 20px; }
  .modal h3 { font-size: 22px; }
  .modal-icon { width: 66px; height: 66px; }
  .modal-sub { font-size: 13.5px; padding: 0; }
}

