/* =========================================================
   FAIRPLAY — Orange & Black theme
   Pure CSS. No frameworks.
   ========================================================= */

:root {
  --orange: #ff6b00;
  --orange-2: #ff9a1f;
  --orange-3: #ffc266;
  --orange-dark: #b84a00;
  --orange-deep: #6e2c00;
  --black: #070708;
  --bg: #0b0b0d;
  --bg-2: #111114;
  --bg-3: #17171b;
  --card: #1b1b21;
  --card-2: #212128;
  --text: #f6f6f8;
  --muted: #b3b3bf;
  --dim: #7a7a88;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.16);
  --green: #3aa935;
  --white: #ffffff;
  --font-head: 'Rajdhani', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  --glow: 0 0 44px rgba(255, 107, 0, 0.35);
  --container: 1200px;
  --header-h: 82px;
  --ease: cubic-bezier(0.22, 0.8, 0.24, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange-2); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--orange-3); }
ul, ol { padding-left: 1.2rem; }
p { margin: 0 0 1rem; }
strong { color: var(--white); font-weight: 600; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.1;
  margin: 0 0 0.75rem;
  color: var(--white);
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.3rem, 4.6vw + 0.8rem, 4.4rem); font-weight: 700; text-transform: uppercase; }
h2 { font-size: clamp(1.85rem, 2.6vw + 0.6rem, 3rem); font-weight: 700; text-transform: uppercase; }
h3 { font-size: clamp(1.25rem, 1vw + 0.8rem, 1.55rem); font-weight: 600; }

.grad {
  background: linear-gradient(95deg, var(--orange-3) 0%, var(--orange) 45%, var(--orange-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(64px, 8vw, 116px) 0;
  scroll-margin-top: calc(var(--header-h) + 12px);
}
.section-alt { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.section-tight { padding-top: clamp(40px, 5vw, 70px); }

.sec-head { max-width: 760px; margin-bottom: clamp(32px, 4vw, 56px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head p.lead { color: var(--muted); font-size: 1.08rem; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--orange-2);
  margin-bottom: 0.9rem;
}
.kicker::before {
  content: '';
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  border-radius: 2px;
}
.sec-head.center .kicker::before { display: none; }

.lead { font-size: 1.12rem; color: var(--muted); }
.muted { color: var(--muted); }
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }

/* ---------- Ambient background FX ---------- */
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(255, 107, 0, 0.16), transparent 60%),
    radial-gradient(700px 500px at -10% 40%, rgba(255, 107, 0, 0.08), transparent 60%),
    radial-gradient(800px 600px at 60% 110%, rgba(255, 154, 31, 0.08), transparent 60%);
}
.bg-fx::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 20%, transparent 70%);
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.14), transparent 60%);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.6s;
}
body.has-cursor .cursor-glow { opacity: 1; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 1001;
  background: linear-gradient(90deg, var(--orange-dark), var(--orange), var(--orange-3));
  box-shadow: 0 0 14px rgba(255, 107, 0, 0.8);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: padding 0.35s var(--ease), background 0.35s, box-shadow 0.35s;
  background: linear-gradient(180deg, rgba(7, 7, 8, 0.9), rgba(7, 7, 8, 0.2));
}
.site-header.scrolled {
  padding: 8px 0;
  background: rgba(9, 9, 11, 0.86);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45), inset 0 -1px 0 var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
  transition: transform 0.3s var(--ease);
}
.logo:hover { transform: scale(1.04); }
.logo-svg { height: 46px; width: auto; }
.site-header.scrolled .logo-svg { height: 40px; }

.main-nav { margin-left: auto; }
.main-nav ul {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  position: relative;
  display: block;
  padding: 0.55rem 0.95rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  border-radius: 10px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a:hover { color: var(--orange-3); }
.main-nav a.active { color: var(--orange-2); }

.header-cta { display: flex; align-items: center; gap: 0.6rem; }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 1002;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.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); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: radial-gradient(1000px 600px at 100% 0%, rgba(255, 107, 0, 0.25), transparent 60%), rgba(8, 8, 10, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 28px 40px;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu ul { list-style: none; margin: 0 0 2rem; padding: 0; }
.mobile-menu li { transform: translateX(-16px); opacity: 0; transition: all 0.45s var(--ease); transition-delay: calc(var(--i, 0) * 60ms); }
.mobile-menu.open li { transform: none; opacity: 1; }
.mobile-menu a.mm-link {
  display: block;
  padding: 0.85rem 0;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a.mm-link.active { color: var(--orange-2); }
.mobile-menu .mm-cta { display: grid; gap: 0.8rem; }
.mobile-menu .mm-cta .btn-3d, .mobile-menu .mm-cta .btn-ghost { justify-content: center; }

/* ---------- Buttons ---------- */
.btn-3d {
  --tx: 0px;
  --ty: 0px;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  border: 0;
  border-radius: 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #150900;
  cursor: pointer;
  background: linear-gradient(180deg, #ffb457 0%, #ff7a12 45%, #ff6200 100%);
  box-shadow:
    0 6px 0 #a84100,
    0 9px 0 rgba(0, 0, 0, 0.35),
    0 22px 44px rgba(255, 107, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -2px 0 rgba(0, 0, 0, 0.15);
  transform: translate3d(var(--tx), var(--ty), 0);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), filter 0.18s;
  overflow: hidden;
  white-space: nowrap;
  transform-style: preserve-3d;
}
.btn-3d::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -70%;
  width: 45%;
  height: 180%;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.55) 50%, transparent 100%);
  transform: skewX(-22deg);
  animation: shine 4.5s ease-in-out infinite;
  pointer-events: none;
}
.btn-3d::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 18px;
  z-index: -1;
  background: radial-gradient(circle, rgba(255, 154, 31, 0.6), transparent 70%);
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.3s;
}
.btn-3d:hover {
  transform: translate3d(var(--tx), calc(var(--ty) - 3px), 0);
  box-shadow:
    0 9px 0 #a84100,
    0 12px 0 rgba(0, 0, 0, 0.35),
    0 30px 60px rgba(255, 107, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -2px 0 rgba(0, 0, 0, 0.15);
  filter: brightness(1.06);
  color: #150900;
}
.btn-3d:hover::after { opacity: 1; }
.btn-3d:active {
  transform: translate3d(var(--tx), calc(var(--ty) + 4px), 0);
  box-shadow:
    0 2px 0 #a84100,
    0 4px 0 rgba(0, 0, 0, 0.35),
    0 10px 22px rgba(255, 107, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn-3d .btn-icon { width: 22px; height: 22px; flex-shrink: 0; }
.btn-3d .btn-arrow {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  transition: transform 0.3s var(--ease);
}
.btn-3d:hover .btn-arrow { transform: translateX(4px) rotate(-8deg); }
.btn-3d .btn-arrow svg { width: 14px; height: 14px; }

.btn-sm { padding: 0.72rem 1.3rem; font-size: 0.98rem; border-radius: 11px; }
.btn-lg { padding: 1.15rem 2.5rem; font-size: 1.25rem; }

.btn-ghost {
  --tx: 0px;
  --ty: 0px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.8rem;
  border-radius: 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 154, 31, 0.55);
  box-shadow: inset 0 0 0 0 rgba(255, 107, 0, 0), 0 10px 30px rgba(0, 0, 0, 0.35);
  transform: translate3d(var(--tx), var(--ty), 0);
  transition: all 0.25s var(--ease);
  overflow: hidden;
  white-space: nowrap;
}
.btn-ghost:hover {
  color: var(--white);
  border-color: var(--orange-2);
  background: rgba(255, 107, 0, 0.14);
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.12), 0 14px 34px rgba(255, 107, 0, 0.25);
  transform: translate3d(var(--tx), calc(var(--ty) - 2px), 0);
}
.btn-ghost.btn-sm { padding: 0.68rem 1.2rem; font-size: 0.96rem; border-radius: 11px; }

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transform: scale(0);
  animation: ripple 0.65s ease-out forwards;
  pointer-events: none;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.cta-row.center { justify-content: center; }
.cta-inline { margin-top: 1.6rem; }

@keyframes shine {
  0%, 60% { left: -70%; }
  100% { left: 140%; }
}
@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}

/* ---------- Cards ---------- */
.card {
  position: relative;
  background: linear-gradient(160deg, var(--card) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 2.4vw, 32px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
  transform-style: preserve-3d;
  will-change: transform;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 154, 31, 0.9), rgba(255, 107, 0, 0.1) 40%, rgba(255, 154, 31, 0.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 154, 31, 0.16), transparent 45%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), var(--glow); border-color: rgba(255, 154, 31, 0.35); }
.card:hover::before, .card:hover::after { opacity: 1; }
.card > * { position: relative; z-index: 1; }
.card h3 { margin-top: 0.9rem; }
.card p:last-child { margin-bottom: 0; }

.ic-wrap {
  width: 66px;
  height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255, 107, 0, 0.22), rgba(255, 107, 0, 0.04));
  border: 1px solid rgba(255, 154, 31, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 24px rgba(0, 0, 0, 0.35);
  transform: translateZ(30px);
}
.ic-wrap img { width: 40px; height: 40px; filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5)); }
.card:hover .ic-wrap { animation: bob 1.4s ease-in-out infinite; }

.grid { display: grid; gap: clamp(16px, 2vw, 26px); }
.grid > *, .split > *, .text-block { min-width: 0; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 60px) 0 90px;
  overflow: hidden;
  isolation: isolate;
}
.hero.page-hero { min-height: 74svh; padding-bottom: 70px; }
.hero-bg {
  position: absolute;
  inset: -6%;
  background-size: cover;
  background-position: center;
  z-index: -3;
  transform: scale(1.06);
  animation: heroZoom 18s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 600px at 20% 30%, rgba(255, 107, 0, 0.32), transparent 60%),
    linear-gradient(90deg, rgba(7, 7, 8, 0.96) 0%, rgba(7, 7, 8, 0.82) 45%, rgba(7, 7, 8, 0.55) 100%),
    linear-gradient(180deg, rgba(7, 7, 8, 0.2) 0%, rgba(7, 7, 8, 0.1) 60%, var(--bg) 100%);
}
.hero-particles { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; pointer-events: none; }
.hero-content { position: relative; max-width: 760px; }
.hero h1 { margin-bottom: 1.2rem; text-shadow: 0 10px 40px rgba(0, 0, 0, 0.6); }
.hero .lead { font-size: clamp(1.02rem, 1vw + 0.7rem, 1.22rem); max-width: 640px; color: #d8d8e0; }
.hero-cta { margin-top: 2rem; }
.hero .kicker { animation: fadeUp 0.9s var(--ease) both; }
.hero h1 { animation: fadeUp 0.9s 0.1s var(--ease) both; }
.hero .lead { animation: fadeUp 0.9s 0.2s var(--ease) both; }
.hero .hero-cta { animation: fadeUp 0.9s 0.3s var(--ease) both; }
.hero .trust-row { animation: fadeUp 0.9s 0.4s var(--ease) both; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  padding: 0;
  margin: 2.2rem 0 0;
}
.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem 0.45rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(12, 12, 14, 0.6);
  backdrop-filter: blur(8px);
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}
.trust-row img { width: 24px; height: 24px; }
.trust-row strong { color: var(--white); }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: 28px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  display: block;
}
.scroll-cue::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: var(--orange-2);
  transform: translateX(-50%);
  animation: cue 1.8s ease-in-out infinite;
}

/* Floating 3D objects */
.float-layer { position: absolute; inset: 0; pointer-events: none; z-index: 0; perspective: 1200px; }
.float-obj { position: absolute; will-change: transform; transition: transform 0.25s ease-out; }
.float-obj > * { animation: floatY 6s ease-in-out infinite; }
.float-obj.f2 > * { animation-duration: 7.5s; animation-delay: -2s; }
.float-obj.f3 > * { animation-duration: 8.5s; animation-delay: -4s; }

.coin {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 44px;
  color: #7a3a00;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
  background: radial-gradient(circle at 35% 30%, #ffe0a3, #ffa62e 40%, #ff6b00 75%, #b84a00 100%);
  box-shadow:
    inset -10px -12px 20px rgba(120, 40, 0, 0.5),
    inset 8px 10px 16px rgba(255, 255, 255, 0.45),
    0 20px 40px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(255, 130, 0, 0.35);
  position: relative;
  transform-style: preserve-3d;
}
.coin::before {
  content: '';
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  border: 2px dashed rgba(120, 50, 0, 0.45);
}
.coin.sm { width: 60px; height: 60px; font-size: 28px; }
.coin-spin { animation: spinY 7s linear infinite; }

.pcard {
  width: 84px;
  height: 118px;
  border-radius: 12px;
  background: linear-gradient(160deg, #fff 0%, #ececf1 100%);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6), inset 0 0 0 4px #fff, inset 0 0 0 5px rgba(0, 0, 0, 0.1);
  display: grid;
  place-items: center;
  font-size: 44px;
  color: #ff6b00;
  transform: rotate(-12deg);
  position: relative;
}
.pcard::before, .pcard::after {
  position: absolute;
  font-size: 16px;
  font-weight: 700;
  color: #ff6b00;
  font-family: var(--font-head);
}
.pcard::before { content: 'A'; top: 8px; left: 10px; }
.pcard::after { content: 'A'; bottom: 8px; right: 10px; transform: rotate(180deg); }

.cball {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ff7d5c, #d8261a 45%, #7a0d08 100%);
  box-shadow: inset -8px -10px 18px rgba(0, 0, 0, 0.5), 0 20px 40px rgba(0, 0, 0, 0.55);
  position: relative;
  overflow: hidden;
}
.cball::before {
  content: '';
  position: absolute;
  inset: -10px 30px;
  border-left: 2px dashed rgba(255, 255, 255, 0.85);
  border-right: 2px dashed rgba(255, 255, 255, 0.85);
  border-radius: 50%;
}

.chip {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #1a1a1f 0 32%, transparent 33%),
    repeating-conic-gradient(#ff6b00 0 12%, #fff 12% 25%);
  box-shadow: inset 0 0 0 6px #1a1a1f, inset 0 0 0 8px rgba(255, 255, 255, 0.2), 0 20px 40px rgba(0, 0, 0, 0.55);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--orange-2);
  font-size: 20px;
  position: relative;
}
.chip::after { content: '₹'; }

.ring3d {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 18px solid transparent;
  background: linear-gradient(var(--bg), var(--bg)) padding-box, conic-gradient(from 0deg, var(--orange), transparent 30%, var(--orange-3) 50%, transparent 70%, var(--orange)) border-box;
  opacity: 0.35;
  animation: spinZ 12s linear infinite;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-22px) rotate(4deg); }
}
@keyframes spinY {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}
@keyframes spinZ {
  to { transform: rotate(360deg); }
}
@keyframes bob {
  0%, 100% { transform: translateZ(30px) translateY(0); }
  50% { transform: translateZ(30px) translateY(-6px); }
}
@keyframes cue {
  0% { transform: translate(-50%, 0); opacity: 1; }
  80% { transform: translate(-50%, 16px); opacity: 0; }
  100% { opacity: 0; }
}
@keyframes heroZoom {
  from { transform: scale(1.06) translate(0, 0); }
  to { transform: scale(1.14) translate(-1.5%, 1%); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 60, 60, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(255, 60, 60, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 60, 60, 0); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.breadcrumb li + li::before { content: '/'; margin: 0 0.45rem 0 0.1rem; color: var(--dim); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--orange-2); }
.breadcrumb [aria-current] { color: var(--orange-2); }

/* ---------- Ticker ---------- */
.ticker {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, var(--orange-dark), var(--orange) 40%, var(--orange-2) 60%, var(--orange-dark));
  color: #150900;
  padding: 0.75rem 0;
  transform: rotate(-1deg) scale(1.02);
  box-shadow: 0 10px 40px rgba(255, 107, 0, 0.35);
  z-index: 2;
}
.ticker-track {
  display: flex;
  gap: 2.6rem;
  width: max-content;
  animation: ticker 38s linear infinite;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 2.6rem; }
.ticker-track span::after { content: '◆'; font-size: 0.7rem; opacity: 0.7; }
.ticker:hover .ticker-track { animation-play-state: paused; }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: -20px;
}
.stat {
  text-align: center;
  padding: 26px 16px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--card), var(--bg-2));
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.stat:hover { transform: translateY(-6px) scale(1.02); border-color: rgba(255, 154, 31, 0.4); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--glow); }
.stat-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
  color: var(--white);
  text-shadow: 0 0 30px rgba(255, 107, 0, 0.45);
}
.stat-num .grad { display: inline-block; }
.stat-label { color: var(--muted); font-size: 0.92rem; margin-top: 0.4rem; }

/* ---------- Tables ---------- */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--card), var(--bg-2));
  box-shadow: var(--shadow);
  -webkit-overflow-scrolling: touch;
}
.data-table {
  width: 100%;
  min-width: 0;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.98rem;
}
.data-table.cols-3 { min-width: 520px; }
.data-table th, .data-table td { padding: 1rem 1.3rem; text-align: left; vertical-align: top; }
.data-table th {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: #150900;
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
}
.data-table td { border-bottom: 1px solid var(--line); color: var(--muted); transition: background 0.25s, color 0.25s; }
.data-table td:first-child { color: var(--white); font-weight: 600; }
.data-table tbody tr { transition: transform 0.25s var(--ease); }
.data-table tbody tr:hover td { background: rgba(255, 107, 0, 0.08); color: var(--white); }
.data-table tbody tr:last-child td { border-bottom: 0; }

/* ---------- Steps ---------- */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  counter-reset: step;
}
.steps.cols-2 { grid-template-columns: repeat(2, 1fr); }
.step {
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: linear-gradient(160deg, var(--card), var(--bg-2));
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.step:hover { transform: translateX(6px); border-color: rgba(255, 154, 31, 0.4); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 107, 0, 0.18); }
.step-num {
  counter-increment: step;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: #150900;
  background: radial-gradient(circle at 35% 30%, #ffd08a, #ff8c1a 45%, #ff6200 100%);
  box-shadow: 0 5px 0 #a84100, 0 12px 24px rgba(255, 107, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.step-num::before { content: counter(step); }
.step-body { flex: 1; }
.step-body strong { display: block; font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: var(--white); letter-spacing: 0.02em; }
.step-body span { color: var(--muted); font-size: 0.97rem; }
.step-ic { flex-shrink: 0; width: 34px; height: 34px; opacity: 0.9; filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.5)); margin-left: auto; }

/* ---------- Split layouts ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.split.rev > :first-child { order: 2; }
.split .sec-head { margin-bottom: 1.4rem; }

.media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 1px var(--line);
  transform-style: preserve-3d;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  aspect-ratio: 4 / 3;
}
.media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 7, 8, 0.85));
}
.media:hover img { transform: scale(1.06); }
.media-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 107, 0, 0.92);
  color: #150900;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  box-shadow: 0 10px 24px rgba(255, 107, 0, 0.4);
}
.media-tag img { width: 20px; height: 20px; }

/* ---------- Icon list ---------- */
.icon-list { list-style: none; padding: 0; margin: 1.2rem 0; display: grid; gap: 0.7rem; }
.icon-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
}
.icon-list li:hover { transform: translateX(6px); border-color: rgba(255, 154, 31, 0.4); background: rgba(255, 107, 0, 0.07); }
.icon-list img { width: 30px; height: 30px; flex-shrink: 0; filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.5)); }
.icon-list.cols-2 { grid-template-columns: repeat(2, 1fr); }

.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.check-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.check-list img { width: 28px; height: 28px; flex-shrink: 0; margin-top: 0.2rem; }
.check-list strong { color: var(--white); }

/* ---------- Phone mockup ---------- */
.phone-scene { perspective: 1400px; display: grid; place-items: center; padding: 20px 0; }
.phone {
  position: relative;
  width: min(300px, 78vw);
  aspect-ratio: 9 / 19;
  border-radius: 46px;
  background: #0f0f12;
  border: 9px solid #26262c;
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.7),
    0 0 0 2px #0a0a0c,
    0 0 80px rgba(255, 107, 0, 0.25),
    inset 0 0 0 2px rgba(255, 255, 255, 0.05);
  transform: rotateY(-16deg) rotateX(6deg) rotateZ(-2deg);
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease);
  animation: phoneFloat 7s ease-in-out infinite;
  overflow: hidden;
}
.phone-scene:hover .phone { transform: rotateY(-6deg) rotateX(2deg) rotateZ(0deg); }
.phone::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 26px;
  border-radius: 20px;
  background: #0a0a0c;
  z-index: 3;
}
.phone-screen {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #17171c, #0d0d10);
  padding: 54px 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
}
.ps-top { display: flex; justify-content: space-between; align-items: center; }
.ps-logo { height: 22px; }
.ps-avatar { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--orange-2), var(--orange-dark)); }
.ps-tabs { display: flex; gap: 6px; }
.ps-tabs span {
  flex: 1;
  text-align: center;
  padding: 7px 0;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--muted);
}
.ps-tabs span.on { background: linear-gradient(180deg, var(--orange-2), var(--orange)); color: #150900; border-color: transparent; }
.ps-card {
  border-radius: 14px;
  padding: 12px;
  background: linear-gradient(160deg, #23232a, #17171c);
  border: 1px solid var(--line);
  display: grid;
  gap: 8px;
}
.ps-card .ps-row { display: flex; justify-content: space-between; align-items: center; color: var(--muted); }
.ps-live { display: inline-flex; align-items: center; gap: 6px; color: #ff6a6a; font-weight: 700; font-size: 10px; letter-spacing: 0.1em; }
.ps-live::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #ff4b4b; animation: pulse 1.6s infinite; }
.ps-odds { display: flex; gap: 6px; }
.ps-odds span {
  flex: 1;
  text-align: center;
  padding: 8px 4px;
  border-radius: 8px;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 154, 31, 0.3);
  color: var(--orange-3);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
}
.ps-btn {
  margin-top: auto;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffb457, #ff6200);
  color: #150900;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 0 #a84100;
}
.ps-bar { height: 8px; border-radius: 4px; background: rgba(255, 255, 255, 0.08); }
.ps-bar.w60 { width: 60%; }
.ps-bar.w40 { width: 40%; }
.phone-glow {
  position: absolute;
  width: 70%;
  height: 40%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(255, 107, 0, 0.35), transparent 70%);
  filter: blur(30px);
  z-index: -1;
}
@keyframes phoneFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}

/* ---------- Bonus banner ---------- */
.bonus-banner {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: clamp(34px, 5vw, 64px) clamp(24px, 5vw, 64px);
  background:
    radial-gradient(700px 400px at 90% 10%, rgba(255, 255, 255, 0.25), transparent 60%),
    linear-gradient(135deg, #ff9a1f 0%, #ff6b00 45%, #c24f00 100%);
  color: #150900;
  box-shadow: 0 30px 80px rgba(255, 107, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  isolation: isolate;
}
.bonus-banner::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent 0 80%, rgba(255, 255, 255, 0.35) 90%, transparent 100%);
  animation: spinZ 10s linear infinite;
  z-index: -1;
}
.bonus-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0 12px, transparent 12px 24px);
  mix-blend-mode: multiply;
  z-index: -1;
}
.bonus-title {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.4rem, 2vw + 0.5rem, 2.2rem);
  line-height: 1.05;
  margin: 0;
}
.bonus-mid {
  display: block;
  font-size: clamp(1.6rem, 2.4vw + 0.6rem, 2.8rem);
  color: #150900;
  opacity: 0.85;
  margin-top: 0.3rem;
}
.bonus-big {
  display: block;
  font-size: clamp(4.2rem, 9vw, 8.6rem);
  line-height: 0.95;
  color: #fff;
  text-shadow:
    0 1px 0 #ffd49c, 0 2px 0 #f7c88a, 0 3px 0 #efbc78, 0 4px 0 #e6b066, 0 5px 0 #dda456,
    0 6px 0 #d49846, 0 7px 0 #cb8c36, 0 8px 0 #b97a22, 0 14px 30px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.02em;
}
.bonus-sub {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: #150900;
  color: var(--orange-3);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.95rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}
.bonus-art { position: relative; height: 240px; }
.bonus-art .coin, .bonus-art .chip, .bonus-art .pcard { position: absolute; }
.bonus-art .coin.a { left: 10%; top: 10%; animation: floatY 5s ease-in-out infinite; }
.bonus-art .coin.b { right: 8%; top: 30%; width: 72px; height: 72px; font-size: 32px; animation: floatY 6.5s ease-in-out infinite -2s; }
.bonus-art .chip { left: 42%; bottom: 0; animation: floatY 7s ease-in-out infinite -4s; }
.bonus-art .pcard { left: 24%; bottom: 8%; transform: rotate(10deg); animation: floatY 6s ease-in-out infinite -1s; }
.bonus-banner .btn-3d { background: linear-gradient(180deg, #2a2a30, #111114); color: var(--white); box-shadow: 0 6px 0 #000, 0 16px 40px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.12); }
.bonus-banner .btn-3d:hover { color: var(--white); }

/* ---------- Promo codes ---------- */
.promo-list { display: grid; gap: 0.7rem; margin-top: 1rem; }
.promo-code {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem 0.8rem;
  padding: 0.7rem 0.7rem 0.7rem 1.1rem;
  border-radius: 12px;
  background: #0d0d10;
  border: 1.5px dashed rgba(255, 154, 31, 0.6);
  font-family: 'Consolas', 'SFMono-Regular', monospace;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange-3);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.promo-code:hover { border-color: var(--orange-2); box-shadow: 0 0 24px rgba(255, 107, 0, 0.25); }
.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  border-radius: 9px;
  border: 0;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #150900;
  background: linear-gradient(180deg, #ffb457, #ff6b00);
  box-shadow: 0 3px 0 #a84100;
  transition: transform 0.15s, box-shadow 0.15s, background 0.3s;
}
.copy-btn img { width: 16px; height: 16px; }
.copy-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 0 #a84100, 0 10px 20px rgba(255, 107, 0, 0.35); }
.copy-btn:active { transform: translateY(2px); box-shadow: 0 1px 0 #a84100; }
.copy-btn.copied { background: linear-gradient(180deg, #7ee27a, #3aa935); box-shadow: 0 3px 0 #1f6b1c; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translate(-50%, 20px);
  padding: 0.8rem 1.3rem;
  border-radius: 12px;
  background: #16161a;
  border: 1px solid rgba(255, 154, 31, 0.5);
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 107, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease);
  z-index: 1200;
}
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

/* ---------- Bonus boxes ---------- */
.bonus-box { text-align: left; display: flex; flex-direction: column; }
.bonus-box .cta-inline { margin-top: auto; padding-top: 1.4rem; }
.bonus-box .ic-wrap { margin-bottom: 0.2rem; }

/* ---------- Sport / game cards ---------- */
.sport-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  border: 1px solid var(--line);
  display: block;
  color: var(--white);
}
.sport-card img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease), filter 0.5s; filter: saturate(0.85); }
.sport-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 7, 8, 0) 30%, rgba(7, 7, 8, 0.6) 65%, rgba(7, 7, 8, 0.96) 100%);
}
.sport-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), var(--glow); border-color: rgba(255, 154, 31, 0.5); color: var(--white); }
.sport-card:hover img.bg { transform: scale(1.1); filter: saturate(1.1); }
.sport-card .sc-body { position: absolute; inset: auto 0 0; z-index: 2; padding: 22px; transform: translateZ(40px); }
.sport-card .sc-ic {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 107, 0, 0.9);
  box-shadow: 0 10px 24px rgba(255, 107, 0, 0.45);
  margin-bottom: 0.7rem;
  transition: transform 0.4s var(--ease);
}
.sport-card:hover .sc-ic { transform: rotate(-8deg) scale(1.08); }
.sport-card .sc-ic img { width: 34px; height: 34px; }
.sport-card h3 { margin: 0 0 0.25rem; font-size: 1.5rem; text-transform: uppercase; }
.sport-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.sport-card .sc-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(7, 7, 8, 0.7);
  border: 1px solid var(--line-2);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--orange-3);
  backdrop-filter: blur(6px);
}

.game-card {
  position: relative;
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  background: linear-gradient(160deg, var(--card), var(--bg-2));
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
  transform-style: preserve-3d;
  overflow: hidden;
}
.game-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 0%), rgba(255, 107, 0, 0.22), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
}
.game-card:hover { transform: translateY(-8px); border-color: rgba(255, 154, 31, 0.45); box-shadow: 0 26px 60px rgba(0, 0, 0, 0.55), var(--glow); }
.game-card:hover::before { opacity: 1; }
.game-card .gc-ic {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 1rem;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #26262d, #131316);
  border: 1px solid var(--line-2);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateZ(40px);
  transition: transform 0.4s var(--ease);
}
.game-card:hover .gc-ic { transform: translateZ(60px) rotateZ(-6deg) scale(1.06); }
.game-card .gc-ic img { width: 52px; height: 52px; filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.6)); }
.game-card h3 { margin: 0.3rem 0 0.2rem; font-size: 1.3rem; text-transform: uppercase; position: relative; }
.game-card .gc-tag { position: relative; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange-2); font-family: var(--font-head); font-weight: 700; }

/* ---------- Live badge ---------- */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 60, 60, 0.12);
  border: 1px solid rgba(255, 90, 90, 0.5);
  color: #ff7b7b;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.live-dot { width: 10px; height: 10px; border-radius: 50%; background: #ff4b4b; animation: pulse 1.6s infinite; display: inline-block; }

.odds-demo { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.4rem; }
.odds-demo span {
  padding: 0.7rem 1.2rem;
  border-radius: 12px;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 154, 31, 0.35);
  color: var(--orange-3);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  transition: all 0.3s var(--ease);
}
.odds-demo span:hover { background: var(--orange); color: #150900; transform: translateY(-3px); box-shadow: 0 10px 24px rgba(255, 107, 0, 0.4); }

/* ---------- Payment icons ---------- */
.pay-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }
.pay-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1rem 0.6rem 0.7rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
}
.pay-row span:hover { transform: translateY(-4px); border-color: rgba(255, 154, 31, 0.5); background: rgba(255, 107, 0, 0.08); box-shadow: 0 12px 26px rgba(0, 0, 0, 0.4); }
.pay-row img { width: 28px; height: 28px; }

/* ---------- Badge tiles ---------- */
.badge-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 2rem; }
.badge-tile {
  text-align: center;
  padding: 26px 18px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--card), var(--bg-2));
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
  transform-style: preserve-3d;
}
.badge-tile:hover { transform: translateY(-6px) rotateX(4deg); border-color: rgba(255, 154, 31, 0.45); box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5), var(--glow); }
.badge-tile img { width: 56px; height: 56px; margin: 0 auto 0.8rem; filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.6)); transform: translateZ(30px); }
.badge-tile strong { display: block; font-family: var(--font-head); font-size: 1.15rem; letter-spacing: 0.04em; text-transform: uppercase; }

/* ---------- Testimonials ---------- */
.testi-wrap { position: relative; }
.testi-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 10px 4px 26px;
  -webkit-overflow-scrolling: touch;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi {
  flex: 0 0 min(100%, 400px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}
.testi .quote-mark { width: 40px; height: 40px; opacity: 0.9; }
.testi blockquote { margin: 1rem 0 1.4rem; color: var(--muted); font-size: 1rem; line-height: 1.75; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 0.9rem; }
.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: #150900;
  background: radial-gradient(circle at 35% 30%, #ffd08a, #ff8c1a 45%, #ff6200 100%);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.testi-author strong { display: block; font-family: var(--font-head); font-size: 1.1rem; letter-spacing: 0.03em; }
.testi-author span { color: var(--dim); font-size: 0.9rem; }
.stars { display: flex; gap: 2px; margin-top: 0.3rem; }
.stars img { width: 16px; height: 16px; }
.testi-nav { display: flex; gap: 0.6rem; justify-content: center; margin-top: 0.4rem; }
.testi-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 154, 31, 0.5);
  background: rgba(255, 107, 0, 0.1);
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.25s var(--ease);
}
.testi-nav button:hover { background: var(--orange); color: #150900; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(255, 107, 0, 0.4); }
.testi-nav svg { width: 18px; height: 18px; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item {
  border-radius: var(--radius-sm);
  background: linear-gradient(160deg, var(--card), var(--bg-2));
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item.open { border-color: rgba(255, 154, 31, 0.5); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 107, 0, 0.12); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  border: 0;
  background: transparent;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.faq-q .plus {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  color: #150900;
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.35s var(--ease);
  box-shadow: 0 3px 0 #a84100;
}
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 1.3rem 1.2rem; margin: 0; color: var(--muted); }

/* ---------- Explore / link cards ---------- */
.explore-card {
  position: relative;
  display: block;
  min-height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  color: var(--white);
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
}
.explore-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.explore-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7, 7, 8, 0.1), rgba(7, 7, 8, 0.92)); }
.explore-card .ec-body { position: absolute; inset: auto 0 0; z-index: 2; padding: 22px; display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; }
.explore-card .ec-text { min-width: 0; }
.explore-card h3 { margin: 0; text-transform: uppercase; }
.explore-card .ec-text span { color: var(--muted); font-size: 0.9rem; display: block; }
.explore-card .go {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: #150900;
  box-shadow: 0 10px 24px rgba(255, 107, 0, 0.45);
  transition: transform 0.35s var(--ease);
}
.explore-card .go svg { width: 18px; height: 18px; }
.explore-card:hover { transform: translateY(-8px); border-color: rgba(255, 154, 31, 0.5); box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), var(--glow); color: var(--white); }
.explore-card:hover img { transform: scale(1.08); }
.explore-card:hover .go { transform: rotate(-45deg) scale(1.1); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 70px);
  text-align: center;
  background:
    radial-gradient(800px 400px at 50% -20%, rgba(255, 154, 31, 0.5), transparent 60%),
    linear-gradient(160deg, #1b1b21, #0d0d10);
  border: 1px solid rgba(255, 154, 31, 0.3);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  isolation: isolate;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(from 0deg, transparent 0 70%, var(--orange) 85%, transparent 100%);
  animation: spinZ 8s linear infinite;
  z-index: -2;
}
.cta-band::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  background: linear-gradient(160deg, #1b1b21, #0d0d10);
  z-index: -1;
}
.cta-band .cta-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw + 0.5rem, 3rem);
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 1rem;
  color: var(--white);
}
.cta-band p { color: var(--muted); max-width: 640px; margin-inline: auto; }
.cta-band .float-layer { z-index: 0; }
.cta-band > *:not(.float-layer) { position: relative; z-index: 1; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  margin-top: clamp(40px, 6vw, 80px);
  padding: clamp(50px, 6vw, 80px) 0 28px;
  background: linear-gradient(180deg, var(--bg-2), var(--black));
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.footer-glow {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--orange-3), var(--orange), transparent);
  box-shadow: 0 0 30px rgba(255, 107, 0, 0.8);
  animation: glowPulse 3s ease-in-out infinite;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(24px, 4vw, 56px); }
.footer-brand p { color: var(--muted); font-size: 0.95rem; margin-top: 1.2rem; }
.footer-brand .logo-svg { height: 52px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.2rem; }
.footer-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.8rem 0.4rem 0.5rem;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.85rem;
  color: var(--muted);
}
.footer-badges img { width: 22px; height: 22px; }
.footer-col h3 {
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-2);
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.footer-col a { color: var(--muted); display: inline-flex; align-items: center; gap: 0.5rem; transition: color 0.25s, transform 0.25s var(--ease); }
.footer-col a::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); opacity: 0; transition: opacity 0.25s; }
.footer-col a:hover { color: var(--white); transform: translateX(4px); }
.footer-col a:hover::before { opacity: 1; }
.footer-icons { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer-icons span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem 0.4rem 0.45rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
  transition: all 0.25s var(--ease);
}
.footer-icons span:hover { border-color: rgba(255, 154, 31, 0.5); color: var(--white); transform: translateY(-3px); }
.footer-icons img { width: 22px; height: 22px; }
.footer-col + .footer-col h3:not(:first-child) { margin-top: 1.6rem; }
.footer-bottom {
  margin-top: clamp(30px, 4vw, 50px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  color: var(--dim);
  font-size: 0.86rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--muted); }

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: #150900;
  background: radial-gradient(circle at 35% 30%, #ffd08a, #ff8c1a 45%, #ff6200 100%);
  box-shadow: 0 5px 0 #a84100, 0 16px 34px rgba(255, 107, 0, 0.45);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.35s var(--ease);
}
.back-top.show { opacity: 1; visibility: visible; transform: none; }
.back-top:hover { transform: translateY(-3px); }
.back-top:active { transform: translateY(3px); box-shadow: 0 2px 0 #a84100; }
.back-top svg { width: 20px; height: 20px; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-l { transform: translateX(-40px); }
.reveal-r { transform: translateX(40px); }
.reveal-s { transform: scale(0.92); }

/* ---------- Utilities ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.divider-glow { height: 1px; background: linear-gradient(90deg, transparent, rgba(255, 154, 31, 0.5), transparent); }
.text-block p { color: var(--muted); }
.text-block h3 { margin-top: 2rem; }
.inline-note {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 107, 0, 0.08);
  border-left: 3px solid var(--orange);
  color: var(--muted);
  margin: 1.2rem 0;
}
.inline-note img { width: 26px; height: 26px; flex-shrink: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .badge-tiles { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  :root { --header-h: 74px; }
}
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split.rev > :first-child { order: 0; }
  .steps.cols-2 { grid-template-columns: 1fr; }
  .icon-list.cols-2 { grid-template-columns: 1fr; }
  .bonus-banner { grid-template-columns: 1fr; text-align: center; }
  .bonus-art { height: 180px; }
  .hero { min-height: 92svh; }
  .hero.page-hero { min-height: 60svh; }
  .float-obj.hide-m { display: none; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 32px, var(--container)); }
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:last-child { grid-column: span 2; }
  .badge-tiles { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn-3d, .btn-ghost { width: 100%; padding-inline: 1.2rem; }
  .btn-3d.btn-sm, .btn-ghost.btn-sm { width: auto; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
  .ticker-track { font-size: 0.95rem; }
  .data-table th, .data-table td { padding: 0.8rem 0.9rem; font-size: 0.9rem; }
  .step { padding: 14px; }
  .step-ic { display: none; }
  .promo-code { font-size: 0.9rem; letter-spacing: 0.08em; }
  .bonus-big { font-size: 4.2rem; }
  .testi { flex-basis: 88%; }
  .faq-q { font-size: 1.05rem; padding: 1rem; }
  .explore-card { min-height: 180px; }
  .back-top { right: 14px; bottom: 14px; width: 48px; height: 48px; }
  .phone { transform: rotateY(-10deg) rotateX(4deg); }
  .media { aspect-ratio: 16 / 11; }
  .coin { width: 70px; height: 70px; font-size: 32px; }
  .pcard { width: 62px; height: 88px; font-size: 32px; }
  .cball, .chip { width: 56px; height: 56px; }
}
@media (max-width: 640px) {
  .hero .float-obj { display: none; }
  .cta-band .float-obj { display: none; }
}
@media (max-width: 360px) {
  .stats { grid-template-columns: 1fr; }
  .stat:last-child { grid-column: auto; }
  .badge-tiles { grid-template-columns: 1fr; }
  .mobile-menu a.mm-link { font-size: 1.6rem; }
}

@media (hover: none) {
  .card:hover, .stat:hover, .step:hover, .sport-card:hover, .game-card:hover, .badge-tile:hover, .explore-card:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
