/* ========================================
   DMWIN — Premium Online Casino
   Theme: Midnight Black + Electric Neon Blue
   ======================================== */

:root {
  /* Palette */
  --bg:           #0D0E15;
  --bg-deep:      #07080D;
  --surface:      #11131C;
  --surface-2:    #161927;
  --border:       rgba(0, 229, 255, 0.12);
  --border-hover: rgba(0, 229, 255, 0.55);

  --neon:         #00E5FF;   /* Electric Neon Blue */
  --cobalt:       #0052FF;   /* Sapphire Cobalt Blue */
  --neon-soft:    rgba(0, 229, 255, 0.16);
  --cobalt-soft:  rgba(0, 82, 255, 0.20);

  --text:         #F5F7FA;
  --text-dim:     #A8B0C0;
  --text-mute:    #6B7385;

  /* Type */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Misc */
  --radius:    14px;
  --radius-lg: 20px;
  --container: 1200px;
  --ease:      cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ----- Ambient background ----- */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 60% at 15% 0%, rgba(0, 82, 255, 0.18), transparent 60%),
    radial-gradient(ellipse 70% 50% at 85% 20%, rgba(0, 229, 255, 0.12), transparent 65%),
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(0, 82, 255, 0.10), transparent 70%);
  pointer-events: none;
}
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.6;
  pointer-events: none;
}

/* ----- Layout ----- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section--alt {
  background: linear-gradient(180deg, transparent, rgba(0, 82, 255, 0.04), transparent);
}
.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.section__lead {
  color: var(--text-dim);
  margin: 0;
  font-size: 17px;
}

/* ----- Eyebrow chip ----- */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neon);
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(0, 229, 255, 0.04);
  margin-bottom: 24px;
}
.eyebrow--bright {
  color: #fff;
  border-color: var(--neon);
  background: linear-gradient(90deg, var(--cobalt-soft), var(--neon-soft));
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.25);
}

/* ----- Navigation ----- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(13, 14, 21, 0.85);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__links {
  display: flex;
  gap: 32px;
}
.nav__links a {
  color: var(--text-dim);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s var(--ease);
}
.nav__links a:hover { color: var(--neon); }
.nav__links a.is-active {
  color: var(--neon);
  position: relative;
}
.nav__links a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -22px;
  height: 2px;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
  border-radius: 2px;
}
.nav__cta { display: flex; gap: 10px; }

/* ----- Hamburger toggle (mobile) ----- */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 5px;
  width: 42px;
  height: 38px;
  padding: 9px 10px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  margin-left: 4px;
  transition: border-color 0.2s var(--ease);
}
.nav__toggle:hover { border-color: var(--border-hover); }
.nav__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--neon);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
  transform-origin: center;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----- Logo ----- */
.logo {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.logo__img {
  display: block;
  height: 44px;
  width: 44px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--border), 0 0 18px rgba(0, 229, 255, 0.18);
  transition: box-shadow 0.25s var(--ease);
}
.logo:hover .logo__img {
  box-shadow: 0 0 0 1px var(--border-hover), 0 0 24px rgba(0, 229, 255, 0.35);
}
/* Larger logo in the footer brand block */
.footer__brand .logo__img { height: 56px; width: 56px; border-radius: 12px; }
/* Legacy text-logo fallback (kept for any leftover refs) */
.logo__mark {
  background: linear-gradient(135deg, var(--neon), var(--cobalt));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 24px rgba(0, 229, 255, 0.4);
}
.logo__text { color: var(--text); }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 22px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  position: relative;
}
.btn--sm { padding: 9px 16px; font-size: 14px; border-radius: 10px; }
.btn--lg { padding: 16px 32px; font-size: 16px; border-radius: 14px; }

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--cobalt) 0%, var(--neon) 100%);
  box-shadow:
    0 0 0 1px rgba(0, 229, 255, 0.5) inset,
    0 8px 24px rgba(0, 82, 255, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(0, 229, 255, 0.8) inset,
    0 12px 32px rgba(0, 82, 255, 0.5),
    0 0 24px rgba(0, 229, 255, 0.4);
}

.btn--secondary {
  color: var(--neon);
  background: transparent;
  border-color: var(--neon);
  box-shadow: 0 0 0 1px transparent, 0 0 18px rgba(0, 229, 255, 0.18);
}
.btn--secondary:hover {
  background: rgba(0, 229, 255, 0.08);
  box-shadow: 0 0 0 1px var(--neon), 0 0 28px rgba(0, 229, 255, 0.4);
  transform: translateY(-2px);
}

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

/* Glow pulse */
.glow {
  position: relative;
}
.glow::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--cobalt), var(--neon));
  filter: blur(14px);
  opacity: 0.5;
  z-index: -1;
  transition: opacity 0.3s var(--ease);
}
.glow:hover::after { opacity: 0.85; }
.glow--strong::after { filter: blur(20px); opacity: 0.7; }

/* ----- Hero ----- */
.hero {
  padding: 120px 0 100px;
  text-align: center;
  position: relative;
}
.hero__inner { max-width: 880px; margin: 0 auto; }
.hero__title {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}
.hero__title-accent {
  background: linear-gradient(135deg, var(--neon), #6ad9ff 50%, var(--cobalt));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.divider {
  color: var(--neon);
  font-weight: 300;
  margin: 0 8px;
  text-shadow: 0 0 16px rgba(0, 229, 255, 0.6);
}
.hero__subtitle {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto 40px;
}
.hero__ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-mute);
}
.hero__trust li { display: flex; align-items: center; gap: 8px; }
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
}

/* ----- Hero visual (centered in hero) ----- */
.hero__visual {
  display: flex;
  justify-content: center;
  margin: 8px 0 32px;
}
.hero__visual-img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 24px;
  border: 1px solid var(--neon);
  box-shadow:
    0 0 0 1px rgba(0, 229, 255, 0.4),
    0 8px 20px rgba(0, 0, 0, 0.55),
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 40px 100px rgba(0, 82, 255, 0.55),
    0 0 60px rgba(0, 229, 255, 0.45),
    0 0 140px rgba(0, 229, 255, 0.25);
}
@media (max-width: 680px) {
  .hero__visual-img { max-width: 380px; border-radius: 18px; }
}

/* ----- Stats Strip ----- */
.stats {
  padding: 0 0 32px;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 32px 16px;
  background:
    radial-gradient(ellipse 70% 100% at 50% 0%, rgba(0, 229, 255, 0.06), transparent 60%),
    linear-gradient(180deg, var(--surface) 0%, rgba(13, 14, 21, 0.6) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  overflow: hidden;
  position: relative;
}
.stats__grid::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--neon), transparent 40%, transparent 60%, var(--cobalt));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  pointer-events: none;
}
.stat {
  padding: 8px 18px;
  position: relative;
  transition: transform 0.3s var(--ease);
}
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border-hover), transparent);
}
.stat:hover { transform: translateY(-3px); }
.stat:hover .stat__icon {
  color: var(--neon);
  box-shadow: 0 0 0 1px var(--border-hover), 0 0 24px rgba(0, 229, 255, 0.4);
}
.stat__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cobalt-soft), var(--neon-soft));
  color: var(--neon);
  border: 1px solid var(--border);
  box-shadow: 0 0 0 1px transparent, 0 0 16px rgba(0, 229, 255, 0.15);
  transition: all 0.3s var(--ease);
}
.stat__icon svg { width: 24px; height: 24px; }
.stat__num {
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  background: linear-gradient(135deg, #fff 0%, #d6f5ff 40%, var(--neon) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.25));
}
.stat__label {
  font-size: 11.5px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-top: 8px;
}
@media (max-width: 880px) {
  .stats__grid { padding: 28px 12px; }
  .stat { padding: 8px 12px; }
}
@media (max-width: 680px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); padding: 24px 12px; row-gap: 24px; }
  /* Separators: drop the line on the leftmost of each row */
  .stat + .stat::before { display: none; }
  .stat:nth-child(2)::before,
  .stat:nth-child(4)::before {
    content: '';
    display: block;
    position: absolute;
    left: 0; top: 18%; bottom: 18%;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--border-hover), transparent);
  }
}

/* ----- Feature SVG icons ----- */
.feature__icon svg {
  width: 40px;
  height: 40px;
  color: var(--neon);
  filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.5));
}

/* ----- Game Cards ----- */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.game-card {
  position: relative;
  padding: 28px 24px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
  overflow: hidden;
  isolation: isolate;
}
.game-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(0, 229, 255, 0.10), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  z-index: -1;
}
.game-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px var(--border-hover),
    0 0 32px rgba(0, 229, 255, 0.15);
}
.game-card:hover::before { opacity: 1; }
.game-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--cobalt-soft), var(--neon-soft));
  color: var(--neon);
  margin-bottom: 18px;
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.game-card:hover .game-card__icon {
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.35);
  border-color: var(--neon);
}
.game-card__icon svg { width: 26px; height: 26px; }
.game-card__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.game-card__desc {
  font-size: 14px;
  color: var(--text-dim);
  margin: 0 0 20px;
  line-height: 1.55;
}
.game-card__cta {
  display: inline-block;
  color: var(--neon);
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.2s var(--ease);
}
.game-card:hover .game-card__cta { transform: translateX(4px); }
.game-card--featured {
  border-color: rgba(0, 229, 255, 0.35);
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.08);
}
.game-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--neon);
  background: rgba(0, 229, 255, 0.10);
  border: 1px solid var(--border-hover);
  border-radius: 999px;
}

/* ----- Features ----- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature {
  padding: 36px 28px;
  text-align: center;
  background: linear-gradient(180deg, var(--surface), transparent);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
}
.feature:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.feature__icon {
  font-size: 40px;
  margin-bottom: 18px;
  display: inline-block;
  filter: drop-shadow(0 0 16px rgba(0, 229, 255, 0.4));
}
.feature__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
}
.feature__desc {
  font-size: 14.5px;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.6;
}

/* ----- Promo Banner ----- */
.promo {
  padding: 80px 0;
}
.promo__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 64px 56px;
  background:
    radial-gradient(ellipse 100% 80% at 100% 50%, rgba(0, 229, 255, 0.15), transparent 70%),
    linear-gradient(135deg, rgba(0, 82, 255, 0.18) 0%, rgba(13, 14, 21, 0.9) 60%);
  border: 1px solid var(--border-hover);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  contain: layout paint;
  box-shadow:
    0 0 60px rgba(0, 82, 255, 0.2),
    inset 0 0 1px rgba(0, 229, 255, 0.4);
}
.promo__inner::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  background: linear-gradient(135deg, var(--neon), transparent 40%, var(--cobalt));
  border-radius: inherit;
  z-index: -1;
  opacity: 0.4;
}
.promo__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.promo__title-accent {
  background: linear-gradient(135deg, var(--neon), var(--cobalt));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.promo__desc {
  font-size: 16px;
  color: var(--text-dim);
  margin: 0 0 32px;
  max-width: 480px;
}
.promo__desc strong { color: var(--neon); font-weight: 700; }

.promo__visual {
  position: relative;
  height: 280px;
  contain: layout paint;
}
.chip {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 800;
  letter-spacing: -0.02em;
  border: 2px solid var(--neon);
  background:
    conic-gradient(from 0deg, transparent 0deg, rgba(0, 229, 255, 0.28) 50deg, transparent 110deg),
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), transparent 55%),
    linear-gradient(135deg, var(--cobalt), #001a4d);
  color: #fff;
  box-shadow:
    0 0 20px rgba(0, 229, 255, 0.35),
    inset 0 0 16px rgba(0, 229, 255, 0.15);
  will-change: transform;
}
.chip__label {
  position: relative;
  z-index: 1;
  display: inline-block;
  animation: spin-counter 24s linear infinite;
}
.chip__sup { font-size: 0.55em; vertical-align: super; opacity: 0.8; }
.chip--1 {
  width: 160px; height: 160px;
  font-size: 44px;
  top: 20px; right: 40px;
  animation: spin 24s linear infinite;
}
.chip--2 {
  width: 96px; height: 96px;
  font-size: 24px;
  bottom: 30px; right: 180px;
  animation: spin 18s linear infinite reverse;
}
.chip--2 .chip__label { animation: spin-counter 18s linear infinite reverse; }
.chip--3 {
  width: 80px; height: 80px;
  font-size: 22px;
  top: 60px; right: 200px;
  animation: spin 20s linear infinite;
}
.chip--3 .chip__label { animation: spin-counter 20s linear infinite; }

@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes spin-counter {
  to { transform: rotate(-360deg); }
}

/* ----- Footer ----- */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(0, 82, 255, 0.04));
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__tagline {
  color: var(--text-mute);
  font-size: 14px;
  max-width: 280px;
  margin: 14px 0 0;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--neon);
  margin: 0 0 18px;
  font-weight: 600;
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--text-dim);
  padding: 5px 0;
  transition: color 0.2s var(--ease);
}
.footer__col a:hover { color: var(--neon); }

.pay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.pay {
  display: grid;
  place-items: center;
  height: 40px;
  padding: 0 6px;
  color: var(--text-dim);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.2s var(--ease);
}
.pay svg { width: 100%; height: 22px; display: block; }
.pay:hover {
  border-color: var(--border-hover);
  background: var(--surface-2);
  transform: translateY(-1px);
}
.pay--upi      { color: #FF7A00; }
.pay--paytm    { color: #00BAF2; }
.pay--phonepe  { color: #6739B7; }
.pay--gpay     { color: #4285F4; }
.pay--rupay    { color: #097A33; }
.pay--imps     { color: #1F3E91; }
.pay--visa     { color: #F5F7FA; }
.pay--mc svg   { height: 24px; }
.pay--usdt     { color: #26A17B; }
.pay--btc      { color: #F7931A; }

/* ----- Socials ----- */
.socials {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}
.social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: fit-content;
  transition: all 0.2s var(--ease);
}
.social svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.social:hover {
  color: var(--neon);
  border-color: var(--border-hover);
  background: var(--surface-2);
  transform: translateX(2px);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-mute);
}
.footer__bottom p { margin: 0; }

/* ----- Responsive ----- */
@media (max-width: 880px) {
  /* Show hamburger, hide inline nav links — they become a slide-down menu */
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 16px;
    background: rgba(13, 14, 21, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease), padding 0.3s var(--ease);
  }
  .nav__links.is-open {
    max-height: 480px;
    padding: 16px 24px 20px;
  }
  .nav__links a {
    display: block;
    padding: 14px 4px;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav__links a:last-child { border-bottom: 0; }
  .nav__links a.is-active::after { display: none; }
  .nav__links a.is-active {
    color: var(--neon);
    background: linear-gradient(90deg, rgba(0, 229, 255, 0.06), transparent);
    padding-left: 12px;
    border-left: 2px solid var(--neon);
  }

  .section { padding: 72px 0; }
  .hero { padding: 80px 0 64px; }
  .promo__inner {
    grid-template-columns: 1fr;
    padding: 40px 28px;
  }
  .promo__visual {
    height: 200px;
    margin-top: 12px;
  }
  .chip--1 { width: 130px; height: 130px; font-size: 36px; right: 20px; }
  .chip--2 { width: 80px; height: 80px; font-size: 20px; right: 140px; bottom: 20px; }
  .chip--3 { width: 70px; height: 70px; font-size: 18px; right: 160px; top: 40px; }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .footer__bottom { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  /* Hide Login in the top bar — it's accessible via hamburger menu */
  .nav__cta .btn--ghost { display: none; }
  .hero__ctas .btn { width: 100%; }
  /* Promo banner CTA fills width for easier tapping */
  .promo .btn--primary { width: 100%; }
  .promo__inner { padding: 32px 20px; }
  .footer__cols { grid-template-columns: 1fr; }
}

/* Prevent body scroll while mobile menu is open */
body.nav-open { overflow: hidden; }

/* ----- Sticky mobile CTA bar ----- */
.sticky-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 90;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--cobalt) 0%, var(--neon) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  text-align: center;
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(0, 229, 255, 0.55) inset,
    0 8px 28px rgba(0, 82, 255, 0.55),
    0 0 40px rgba(0, 229, 255, 0.35);
  align-items: center;
  justify-content: center;
  gap: 8px;
  animation: sticky-cta-pulse 2.4s ease-in-out infinite;
}
.sticky-cta:hover { transform: translateY(-1px); }
.sticky-cta__icon { font-size: 18px; }
.sticky-cta__text strong { font-weight: 800; }
.sticky-cta__arrow {
  display: inline-block;
  margin-left: 2px;
  transition: transform 0.25s var(--ease);
}
.sticky-cta:active .sticky-cta__arrow { transform: translateX(3px); }
@keyframes sticky-cta-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(0, 229, 255, 0.55) inset,
      0 8px 28px rgba(0, 82, 255, 0.55),
      0 0 40px rgba(0, 229, 255, 0.35);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(0, 229, 255, 0.85) inset,
      0 12px 36px rgba(0, 82, 255, 0.7),
      0 0 60px rgba(0, 229, 255, 0.55);
  }
}
@media (max-width: 880px) {
  .sticky-cta { display: flex; }
  /* Push footer up so the sticky bar doesn't cover its content */
  .footer { padding-bottom: 96px; }
}
/* Hide sticky CTA on tiny screens when the hamburger menu is open */
body.nav-open .sticky-cta { opacity: 0; pointer-events: none; }
.sticky-cta { transition: opacity 0.2s var(--ease), transform 0.2s var(--ease); }

/* =========================================
   Inner page styles
   ========================================= */

.page-hero {
  padding: 80px 0 56px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 12px 0 14px;
  background: linear-gradient(135deg, #fff 50%, var(--neon));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-hero__lead {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 680px;
  margin: 0 auto;
}

.page {
  padding: 64px 0 96px;
}
.page__container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}
.page__container--wide { max-width: 1100px; }

.prose h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 48px 0 14px;
  color: #fff;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 28px 0 10px;
  color: var(--neon);
}
.prose p, .prose li {
  color: var(--text-dim);
  line-height: 1.75;
  font-size: 15.5px;
}
.prose p { margin: 0 0 14px; }
.prose ul, .prose ol {
  padding-left: 22px;
  margin: 0 0 18px;
}
.prose li { margin-bottom: 6px; }
.prose strong { color: var(--text); }
.prose a {
  color: var(--neon);
  text-decoration: underline;
  text-decoration-color: var(--border-hover);
  text-underline-offset: 3px;
}
.prose a:hover { text-decoration-color: var(--neon); }

/* Bonus / VIP / Card grids */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.bonus-card {
  padding: 28px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.bonus-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}
.bonus-card--highlight {
  background: linear-gradient(135deg, rgba(0, 82, 255, 0.18), rgba(13, 14, 21, 0.9));
  border-color: var(--border-hover);
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.12);
}
.bonus-card__amount {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--neon), var(--cobalt));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}
.bonus-card__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #fff;
}
.bonus-card__desc {
  font-size: 14.5px;
  color: var(--text-dim);
  margin: 0 0 20px;
  flex: 1;
}
.bonus-card__meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

/* VIP tiers */
.vip-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  margin: 32px 0;
}
.vip-tier {
  padding: 24px 20px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
}
.vip-tier:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}
.vip-tier__name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 8px 0 4px;
}
.vip-tier__deposit {
  font-size: 12px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.vip-tier__list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font-size: 13.5px;
  color: var(--text-dim);
}
.vip-tier__list li {
  padding: 6px 0;
  border-top: 1px solid var(--border);
}
.vip-tier__list li::before {
  content: '✓';
  color: var(--neon);
  margin-right: 8px;
  font-weight: 700;
}
.vip-tier--bronze   .vip-tier__name { color: #CD7F32; }
.vip-tier--silver   .vip-tier__name { color: #C0C0C0; }
.vip-tier--gold     .vip-tier__name { color: #FFD700; }
.vip-tier--platinum .vip-tier__name { color: #E5E4E2; }
.vip-tier--sapphire .vip-tier__name { color: var(--neon); text-shadow: 0 0 12px rgba(0, 229, 255, 0.5); }
.vip-tier--sapphire {
  border-color: var(--neon);
  background: linear-gradient(180deg, var(--surface), rgba(0, 82, 255, 0.08));
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.15);
}

/* Payment methods */
.methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 32px 0;
}
.method {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.method__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.method__name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.method__type {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  background: rgba(0, 229, 255, 0.08);
  color: var(--neon);
  border-radius: 999px;
  border: 1px solid var(--border);
}
.method__row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  padding: 6px 0;
  border-top: 1px solid var(--border);
}
.method__row span:first-child { color: var(--text-mute); }
.method__row span:last-child  { color: var(--text); font-weight: 600; }

/* FAQ */
.faq-list { margin: 32px 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item__q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--text);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  padding: 20px 40px 20px 0;
  cursor: pointer;
  display: block;
  position: relative;
  transition: color 0.2s var(--ease);
}
.faq-item__q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: var(--neon);
  transition: transform 0.3s var(--ease);
}
.faq-item[open] .faq-item__q::after { transform: translateY(-50%) rotate(45deg); }
.faq-item__q:hover { color: var(--neon); }
.faq-item__a {
  padding: 0 0 20px;
  color: var(--text-dim);
  line-height: 1.7;
  font-size: 14.5px;
}
.faq-cat {
  margin: 40px 0 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--neon);
}

/* Contact cards */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 32px 0;
}
.contact-card {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.3s var(--ease);
}
.contact-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.12);
}
.contact-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cobalt-soft), var(--neon-soft));
  color: var(--neon);
  border: 1px solid var(--border);
}
.contact-card__icon svg { width: 28px; height: 28px; }
.contact-card__title { font-size: 17px; font-weight: 700; margin: 0 0 6px; }
.contact-card__desc { font-size: 14px; color: var(--text-dim); margin: 0; }

/* Mid-page CTA */
.cta-band {
  margin: 56px 0;
  padding: 36px;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 82, 255, 0.15), rgba(13, 14, 21, 0.9));
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
}
.cta-band h3 {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  margin: 0 0 8px;
  color: #fff;
}
.cta-band p {
  color: var(--text-dim);
  margin: 0 0 22px;
}

@media (max-width: 680px) {
  .page-hero { padding: 56px 0 40px; }
  .page { padding: 40px 0 64px; }
}

/* ----- Reduced motion ----- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
