/* =====================================================
   LOVE RUMMY — style.css  v3.0  (Production Ready)
   Fixes applied:
   ✓ All -webkit- prefixes added (Safari 9+, iOS 9+)
   ✓ -webkit-backdrop-filter before backdrop-filter
   ✓ inset-inline replaced with left:0;right:0
   ✓ aspect-ratio height fallbacks added
   ✓ -webkit-transform, -webkit-transition everywhere
   ✓ -webkit-flex / display:flex both written
   ✓ -moz-user-select, -ms-user-select added
   ✓ Firefox scrollbar via scrollbar-color
   ✓ prefers-reduced-motion block added
   ✓ will-change only on animated elements
   ===================================================== */

/* ── VARIABLES ── */
:root {
  --gold: #e2b64a;
  --gold-light: #f5d98a;
  --gold-dark: #b8882c;
  --red: #e63946;
  --teal: #14b8a6;
  --purple: #a78bfa;
  --green: #4ade80;
  --bg: #0d0b14;
  --bg2: #0f0c1a;
  --bg3: #141128;
  --card: #1a1630;
  --border: rgba(255, 255, 255, 0.08);
  --text: #e2daf5;
  --muted: #7c6f9e;
  --white: #ffffff;
  --font-h: "Outfit", sans-serif;
  --font-b: "Nunito", sans-serif;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 40px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 4px 24px rgba(226, 182, 74, 0.35);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.3s;
}

/* ── RESET ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul,
ol {
  list-style: none;
}
button {
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--bg2);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 99px;
}
* {
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) var(--bg2);
}

/* ── SELECTION ── */
::-moz-selection {
  background: rgba(226, 182, 74, 0.25);
  color: var(--white);
}
::selection {
  background: rgba(226, 182, 74, 0.25);
  color: var(--white);
}

/* ── FOCUS ── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

/* ── GRADIENT TEXT ── */
.g-text {
  background: -webkit-linear-gradient(
    135deg,
    var(--gold) 0%,
    var(--gold-light) 50%,
    var(--red) 100%
  );
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    var(--gold-light) 50%,
    var(--red) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold); /* fallback */
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  BUTTONS  ━━━━ */
.btn {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 9px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: var(--r-xl);
  border: none;
  cursor: pointer;
  -webkit-transition:
    -webkit-transform var(--dur) var(--ease),
    -webkit-box-shadow var(--dur) var(--ease);
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-linear-gradient(rgba(255, 255, 255, 0.1), transparent);
  background: linear-gradient(rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.btn:hover::after {
  opacity: 1;
}

.btn-glow {
  background: -webkit-linear-gradient(
    135deg,
    var(--gold) 0%,
    var(--gold-dark) 100%
  );
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg);
  -webkit-box-shadow: var(--shadow-gold);
  box-shadow: var(--shadow-gold);
}
.btn-glow:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 32px rgba(226, 182, 74, 0.55);
  box-shadow: 0 8px 32px rgba(226, 182, 74, 0.55);
}
.btn-glow:active {
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}
.btn-xl {
  padding: 17px 38px;
  font-size: 1.05rem;
}

/* ── SECTION COMMON ── */
.section {
  padding: clamp(64px, 8vw, 120px) 0;
}
.sec-hdr {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 70px);
}
.sec-tag {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 99px;
  margin-bottom: 14px;
  background: rgba(226, 182, 74, 0.12);
  color: var(--gold);
  border: 1px solid rgba(226, 182, 74, 0.25);
}
.sec-hdr h2 {
  font-family: var(--font-h);
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 14px;
}
.sec-hdr p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  HEADER  ━━━━ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0; /* FIX: replaced inset-inline:0 */
  z-index: 1000;
  -webkit-transition:
    background var(--dur) var(--ease),
    -webkit-box-shadow var(--dur) var(--ease);
  transition:
    background var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}
#site-header.scrolled {
  background: rgba(13, 11, 20, 0.93);
  -webkit-backdrop-filter: blur(20px); /* FIX: webkit FIRST */
  backdrop-filter: blur(20px);
  -webkit-box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}
.brand {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
}
.brand-icon {
  font-size: 1.6rem;
}
.brand-name em {
  font-style: normal;
  color: var(--gold);
}

#primary-nav {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 2px;
}
.nav-link {
  padding: 8px 14px;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  -webkit-transition:
    color var(--dur),
    background var(--dur);
  transition:
    color var(--dur),
    background var(--dur);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}
.nav-dl {
  font-size: 0.88rem;
  padding: 11px 22px;
}

.hamburger {
  display: none;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--text);
  border-radius: 99px;
  -webkit-transition: all var(--dur) var(--ease);
  transition: all var(--dur) var(--ease);
}
.hamburger.open span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(5px, -5px);
  transform: rotate(-45deg) translate(5px, -5px);
}

.mob-nav {
  display: none;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px 20px;
  background: rgba(13, 11, 20, 0.97);
  border-top: 1px solid var(--border);
}
.mob-nav.open {
  display: -webkit-flex;
  display: flex;
}
.mob-link {
  padding: 12px 16px;
  border-radius: var(--r-sm);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  -webkit-transition:
    color var(--dur),
    background var(--dur);
  transition:
    color var(--dur),
    background var(--dur);
}
.mob-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}
.mob-cta {
  margin-top: 8px;
  -webkit-justify-content: center;
  justify-content: center;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  HERO  ━━━━ */
.hero {
  position: relative;
  min-height: 100vh;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
  background:
    -webkit-radial-gradient(
      ellipse 90% 70% at 10% 30%,
      rgba(226, 182, 74, 0.14) 0%,
      transparent 55%
    ),
    -webkit-radial-gradient(
        ellipse 70% 60% at 90% 70%,
        rgba(230, 57, 70, 0.12) 0%,
        transparent 55%
      ),
    -webkit-radial-gradient(
        ellipse 60% 50% at 50% 5%,
        rgba(20, 184, 166, 0.08) 0%,
        transparent 50%
      ),
    var(--bg);
  background:
    radial-gradient(
      ellipse 90% 70% at 10% 30%,
      rgba(226, 182, 74, 0.14) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 70% 60% at 90% 70%,
      rgba(230, 57, 70, 0.12) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 60% 50% at 50% 5%,
      rgba(20, 184, 166, 0.08) 0%,
      transparent 50%
    ),
    var(--bg);
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  -webkit-filter: blur(80px);
  filter: blur(80px);
  opacity: 0.18;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}
.orb1 {
  width: 500px;
  height: 500px;
  top: -10%;
  left: -10%;
  background: var(--gold);
}
.orb2 {
  width: 400px;
  height: 400px;
  bottom: 0;
  right: -5%;
  background: var(--red);
}
.orb3 {
  width: 350px;
  height: 350px;
  top: 40%;
  left: 45%;
  background: var(--teal);
  opacity: 0.1;
}

.particle {
  position: absolute;
  font-size: 1.6rem;
  opacity: 0.08;
  -webkit-animation: floatParticle 8s ease-in-out infinite;
  animation: floatParticle 8s ease-in-out infinite;
}
.p1 {
  top: 15%;
  left: 5%;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.p2 {
  top: 25%;
  right: 8%;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.p3 {
  top: 60%;
  left: 3%;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
.p4 {
  bottom: 20%;
  right: 5%;
  -webkit-animation-delay: 4.5s;
  animation-delay: 4.5s;
}
.p5 {
  top: 45%;
  left: 48%;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  font-size: 2rem;
}

@-webkit-keyframes floatParticle {
  0%,
  100% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(10deg);
    transform: translateY(-20px) rotate(10deg);
  }
}
@keyframes floatParticle {
  0%,
  100% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(10deg);
    transform: translateY(-20px) rotate(10deg);
  }
}

.hero-grid {
  display: -webkit-grid;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  -webkit-align-items: center;
  align-items: center;
  padding: clamp(40px, 6vw, 80px) 0;
}

.hero-badge {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 22px;
  background: rgba(74, 222, 128, 0.1);
  color: var(--green);
  border: 1px solid rgba(74, 222, 128, 0.25);
  font-family: var(--font-h);
  font-size: 0.82rem;
  font-weight: 700;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  }
  70% {
    -webkit-box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
    box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}
@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  }
  70% {
    -webkit-box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
    box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}

.hero-copy h1 {
  font-family: var(--font-h);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 490px;
}
.hero-sub strong {
  color: var(--gold);
}
.hero-btns {
  display: -webkit-flex;
  display: flex;
  gap: 14px;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.trust-strip {
  display: -webkit-flex;
  display: flex;
  gap: 12px;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.trust-strip li {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  font-size: 0.85rem;
}
.trust-strip li span {
  font-size: 1.2rem;
}
.trust-strip li div {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  line-height: 1.2;
}
.trust-strip li b {
  font-size: 0.95rem;
  color: var(--white);
  font-family: var(--font-h);
}
.trust-strip li small {
  color: var(--muted);
  font-size: 0.75rem;
}

.hero-visual {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.phone-frame {
  position: relative;
  width: 100%;
  max-width: 320px;
  border-radius: var(--r-lg);
  -webkit-box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 32px 80px rgba(0, 0, 0, 0.6),
    var(--shadow-gold);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 32px 80px rgba(0, 0, 0, 0.6),
    var(--shadow-gold);
  background: var(--card);
  overflow: hidden;
}
.phone-img {
  width: 100%;
  height: 400px; /* fallback for browsers without aspect-ratio */
  -webkit-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 4 / 5; /* modern browsers override the height */
}

/* FIX: -webkit-backdrop-filter BEFORE backdrop-filter everywhere */
.float-card {
  position: absolute;
  background: rgba(26, 22, 48, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  padding: 12px 16px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 2px;
  -webkit-animation: floatCard 3s ease-in-out infinite;
  animation: floatCard 3s ease-in-out infinite;
}
.fc-top {
  top: -16px;
  left: -20px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.fc-bot {
  bottom: -16px;
  right: -20px;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.fc-label {
  font-size: 0.72rem;
  color: var(--muted);
}
.fc-val {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold);
}
.fc-sub {
  font-size: 0.72rem;
  color: var(--muted);
}

@-webkit-keyframes floatCard {
  0%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes floatCard {
  0%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
} /* FIX: inset-inline replaced */
.hero-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  STATS  ━━━━ */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.stats-list {
  display: -webkit-grid;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  -webkit-align-items: center;
  align-items: center;
}
.stat {
  text-align: center;
  padding: clamp(22px, 4vw, 38px) 16px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  gap: 6px;
}
.snum {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.snum sup {
  font-size: 0.55em;
  color: var(--gold);
}
.slabel {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  FEATURES  ━━━━ */
.features-sec {
  background: var(--bg2);
}
.feat-grid {
  display: -webkit-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.feat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(22px, 3vw, 34px);
  -webkit-transition:
    -webkit-transform var(--dur) var(--ease),
    border-color var(--dur),
    -webkit-box-shadow var(--dur);
  transition:
    transform var(--dur) var(--ease),
    border-color var(--dur),
    box-shadow var(--dur);
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px; /* FIX: inset-inline replaced */
  background: -webkit-linear-gradient(90deg, var(--gold), var(--red));
  background: linear-gradient(90deg, var(--gold), var(--red));
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.feat-card:hover {
  -webkit-transform: translateY(-7px);
  transform: translateY(-7px);
  border-color: rgba(226, 182, 74, 0.3);
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}
.feat-card:hover::before {
  opacity: 1;
}
.feat-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.fi-red {
  background: rgba(230, 57, 70, 0.15);
  color: var(--red);
}
.fi-gold {
  background: rgba(226, 182, 74, 0.15);
  color: var(--gold);
}
.fi-teal {
  background: rgba(20, 184, 166, 0.15);
  color: var(--teal);
}
.fi-purple {
  background: rgba(167, 139, 250, 0.15);
  color: var(--purple);
}
.feat-card h3 {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.feat-card ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 9px;
}
.feat-card li {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.9rem;
  color: var(--muted);
}
.feat-card li::before {
  content: "✓";
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.15);
  color: var(--teal);
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 900;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  ABOUT  ━━━━ */
.about-sec {
  background: var(--bg);
}
.about-grid {
  display: -webkit-grid;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  -webkit-align-items: center;
  align-items: center;
}
.about-frame {
  position: relative;
}
.about-img {
  width: 100%;
  border-radius: var(--r-lg);
  height: 340px;
  -webkit-object-fit: cover;
  object-fit: cover; /* fallback */
  aspect-ratio: 4/3;
  background: var(--card);
  -webkit-box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.5),
    0 0 0 1px var(--border);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.5),
    0 0 0 1px var(--border);
}
.about-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: -webkit-linear-gradient(135deg, var(--gold), var(--gold-dark));
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--r-md);
  padding: 14px 16px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  gap: 2px;
  -webkit-box-shadow: var(--shadow-gold);
  box-shadow: var(--shadow-gold);
}
.about-badge b {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--bg);
}
.about-badge span {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(13, 11, 20, 0.75);
}
.about-copy .sec-tag {
  display: inline-block;
  margin-bottom: 14px;
}
.about-copy h2 {
  font-family: var(--font-h);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 18px;
}
.about-copy p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.75;
}
.check-list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  margin: 22px 0 28px;
}
.check-list li {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}
.check-list li i {
  color: var(--teal);
  font-size: 1rem;
  width: 20px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  STEPS  ━━━━ */
.steps-sec {
  background: var(--bg2);
}
.steps-row {
  display: -webkit-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
  text-align: center;
  position: relative;
  overflow: visible;
  -webkit-transition:
    -webkit-transform var(--dur) var(--ease),
    border-color var(--dur),
    -webkit-box-shadow var(--dur);
  transition:
    transform var(--dur) var(--ease),
    border-color var(--dur),
    box-shadow var(--dur);
}
.step-card:hover {
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
  border-color: rgba(226, 182, 74, 0.3);
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}
.step-n {
  font-family: var(--font-h);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  color: rgba(226, 182, 74, 0.12);
  position: absolute;
  top: 8px;
  right: 14px;
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.step-ico,
.step-card h3,
.step-card p {
  position: relative;
  z-index: 1;
}
.step-ico {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  background: rgba(226, 182, 74, 0.12);
  border: 1px solid rgba(226, 182, 74, 0.2);
}
.step-card h3 {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  GAMES  ━━━━ */
.games-sec {
  background: var(--bg);
}
.games-grid {
  display: -webkit-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.game-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  -webkit-transition:
    -webkit-transform var(--dur) var(--ease),
    border-color var(--dur),
    -webkit-box-shadow var(--dur);
  transition:
    transform var(--dur) var(--ease),
    border-color var(--dur),
    box-shadow var(--dur);
}
.game-card:hover {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
  border-color: rgba(226, 182, 74, 0.35);
  -webkit-box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}
.gimg-wrap {
  position: relative;
  overflow: hidden;
  height: 185px;
  background: var(--bg3); /* fallback */
  aspect-ratio: 16/9;
}
.gimg-wrap img {
  width: 100%;
  height: 100%;
  -webkit-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s var(--ease);
  transition: transform 0.4s var(--ease);
}
.game-card:hover .gimg-wrap img {
  -webkit-transform: scale(1.07);
  transform: scale(1.07);
}
.g-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 99px;
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--gold);
  color: var(--bg);
}
.badge-hot {
  background: var(--red);
  color: var(--white);
}
.badge-new {
  background: var(--teal);
  color: var(--bg);
}
.g-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-linear-gradient(
    top,
    transparent 40%,
    rgba(13, 11, 20, 0.85) 100%
  );
  background: linear-gradient(
    to top,
    rgba(13, 11, 20, 0.85) 0%,
    transparent 60%
  );
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.game-card:hover .g-overlay {
  opacity: 1;
}
.btn-play {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 99px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-h);
  font-size: 0.85rem;
  font-weight: 700;
  -webkit-transition:
    -webkit-transform 0.2s,
    -webkit-box-shadow 0.2s;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-play:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-box-shadow: var(--shadow-gold);
  box-shadow: var(--shadow-gold);
}
.gbody {
  padding: 18px 20px 22px;
}
.gmeta {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 8px;
}
.gtag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  background: rgba(226, 182, 74, 0.1);
  color: var(--gold-light);
}
.gprize {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
}
.gbody h3 {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.gbody p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.6;
}
.gfoot {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
}
.gfoot i {
  margin-right: 4px;
}
.diff {
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 700;
}
.easy {
  background: rgba(74, 222, 128, 0.1);
  color: var(--green);
}
.medium {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}
.hard {
  background: rgba(230, 57, 70, 0.1);
  color: var(--red);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  TESTIMONIALS  ━━━━ */
.testi-sec {
  background: var(--bg2);
}
.testi-grid {
  display: -webkit-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(20px, 3vw, 30px);
  position: relative;
  overflow: hidden;
  -webkit-transition:
    -webkit-transform var(--dur) var(--ease),
    border-color var(--dur),
    -webkit-box-shadow var(--dur);
  transition:
    transform var(--dur) var(--ease),
    border-color var(--dur),
    box-shadow var(--dur);
}
.testi-card:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  border-color: rgba(226, 182, 74, 0.3);
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}
.tq {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.1;
  font-family: Georgia, serif;
}
.testi-card p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-foot {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 12px;
}
.tavatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  background: -webkit-linear-gradient(135deg, var(--gold), var(--gold-dark));
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--bg);
}
.tinfo {
  -webkit-flex: 1;
  flex: 1;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 2px;
}
.tinfo strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
}
.twon {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
}
.tstars {
  display: -webkit-flex;
  display: flex;
  gap: 3px;
}
.tstars i {
  font-size: 0.75rem;
  color: var(--gold);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  FAQ  ━━━━ */
.faq-sec {
  background: var(--bg);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  -webkit-transition: border-color var(--dur);
  transition: border-color var(--dur);
}
.faq-item.open {
  border-color: rgba(226, 182, 74, 0.3);
}
.faq-btn {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  color: var(--white);
}
.faq-btn span:first-child {
  font-family: var(--font-h);
  font-size: 0.97rem;
  font-weight: 600;
}
.faq-icon {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(226, 182, 74, 0.1);
  color: var(--gold);
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 0.85rem;
  -webkit-transition:
    -webkit-transform 0.3s var(--ease),
    background 0.3s;
  transition:
    transform 0.3s var(--ease),
    background 0.3s;
}
.faq-item.open .faq-icon {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: rgba(226, 182, 74, 0.22);
}
.faq-panel {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.35s var(--ease);
  transition: max-height 0.35s var(--ease);
}
.faq-item.open .faq-panel {
  max-height: 400px;
}
.faq-panel p {
  padding: 16px 24px 20px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
}
.faq-panel strong {
  color: var(--white);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  CTA  ━━━━ */
.cta-sec {
  position: relative;
  text-align: center;
  padding: clamp(64px, 8vw, 120px) 0;
  background:
    -webkit-radial-gradient(
      ellipse 80% 60% at 50% 50%,
      rgba(226, 182, 74, 0.12) 0%,
      transparent 65%
    ),
    var(--bg2);
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 50%,
      rgba(226, 182, 74, 0.12) 0%,
      transparent 65%
    ),
    var(--bg2);
}
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 500px;
  height: 300px;
  border-radius: 50%;
  background: -webkit-radial-gradient(
    ellipse,
    rgba(226, 182, 74, 0.1) 0%,
    transparent 70%
  );
  background: radial-gradient(
    ellipse,
    rgba(226, 182, 74, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.cta-inner .sec-tag {
  margin-bottom: 18px;
}
.cta-inner h2 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.cta-inner p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 30px;
}
.cta-btns {
  display: -webkit-flex;
  display: flex;
  gap: 14px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.bonus-chip {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 10px 22px;
  border-radius: 99px;
  background: rgba(226, 182, 74, 0.09);
  border: 1px solid rgba(226, 182, 74, 0.22);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  FOOTER  ━━━━ */
#site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: clamp(48px, 6vw, 80px) 0 0;
}
.footer-grid {
  display: -webkit-grid;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: 48px;
}
.footer-brand .brand {
  display: -webkit-inline-flex;
  display: inline-flex;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-h);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a,
.footer-col ul li span {
  font-size: 0.88rem;
  color: var(--muted);
  -webkit-transition:
    color var(--dur),
    padding-left var(--dur);
  transition:
    color var(--dur),
    padding-left var(--dur);
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 7px;
}
.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}
.social-row {
  display: -webkit-flex;
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.sbtn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.88rem;
  -webkit-transition:
    background var(--dur),
    color var(--dur),
    -webkit-transform var(--dur);
  transition:
    background var(--dur),
    color var(--dur),
    transform var(--dur);
  border: 1px solid var(--border);
}
.sbtn:hover {
  background: var(--gold);
  color: var(--bg);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 12px;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--muted);
}
.fbl {
  display: -webkit-flex;
  display: flex;
  gap: 18px;
}
.fbl a {
  font-size: 0.82rem;
  color: var(--muted);
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.fbl a:hover {
  color: var(--gold);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  SOCIAL SIDEBAR  ━━━━ */
.social-sidebar {
  position: fixed;
  right: 18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 9px;
  z-index: 900;
}
.sbar {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.92rem;
  -webkit-transition:
    background var(--dur),
    color var(--dur),
    -webkit-transform var(--dur),
    -webkit-box-shadow var(--dur);
  transition:
    background var(--dur),
    color var(--dur),
    transform var(--dur),
    box-shadow var(--dur);
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}
.sbar:hover {
  background: var(--gold);
  color: var(--bg);
  -webkit-transform: scale(1.12);
  transform: scale(1.12);
  border-color: transparent;
  -webkit-box-shadow: var(--shadow-gold);
  box-shadow: var(--shadow-gold);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  MOBILE BAR  ━━━━ */
.mob-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: rgba(13, 11, 20, 0.96);
  -webkit-backdrop-filter: blur(20px); /* FIX: webkit FIRST */
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s var(--ease);
  transition: transform 0.3s var(--ease);
}
.mob-bar.show {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.mob-bar-inner {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 12px;
}
.mob-bar-info {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
}
.mob-bar-logo {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  -webkit-object-fit: cover;
  object-fit: cover;
}
.mob-bar-name {
  font-family: var(--font-h);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.mob-bar-sub {
  font-size: 0.72rem;
  color: var(--muted);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  SCROLL TOP  ━━━━ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  left: 22px;
  z-index: 900;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.92rem;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all var(--dur);
  transition: all var(--dur);
  opacity: 0;
  pointer-events: none;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}
.scroll-top.show {
  opacity: 1;
  pointer-events: all;
}
.scroll-top:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: transparent;
  -webkit-box-shadow: var(--shadow-gold);
  box-shadow: var(--shadow-gold);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  REVEAL ANIMATIONS  ━━━━ */
.reveal {
  opacity: 0;
  -webkit-transform: translateY(26px);
  transform: translateY(26px);
  -webkit-transition:
    opacity 0.65s var(--ease),
    -webkit-transform 0.65s var(--ease);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
}
.reveal-left {
  opacity: 0;
  -webkit-transform: translateX(-32px);
  transform: translateX(-32px);
  -webkit-transition:
    opacity 0.65s var(--ease),
    -webkit-transform 0.65s var(--ease);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
}
.reveal-right {
  opacity: 0;
  -webkit-transform: translateX(32px);
  transform: translateX(32px);
  -webkit-transition:
    opacity 0.65s var(--ease),
    -webkit-transform 0.65s var(--ease);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
}
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  -webkit-transform: translate(0);
  transform: translate(0);
}
.delay-1 {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.delay-2 {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.delay-3 {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.delay-4 {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  RESPONSIVE 1024  ━━━━ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .social-sidebar {
    display: none;
  }
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  RESPONSIVE 768  ━━━━ */
@media (max-width: 768px) {
  #primary-nav {
    display: none;
  }
  .nav-dl {
    display: none;
  }
  .hamburger {
    display: -webkit-flex;
    display: flex;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    -webkit-order: -1;
    order: -1;
  }
  .phone-frame {
    max-width: 280px;
    margin: 0 auto;
  }
  .fc-top,
  .fc-bot {
    display: none;
  }
  .stats-list {
    grid-template-columns: 1fr 1px 1fr;
  }
  .stat-divider:last-of-type {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-visual {
    -webkit-order: -1;
    order: -1;
  }
  .about-badge {
    right: 0;
    bottom: -12px;
  }
  .steps-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .mob-bar {
    display: block;
  }
  .scroll-top {
    bottom: 80px;
  }
  .footer-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  RESPONSIVE 480  ━━━━ */
@media (max-width: 480px) {
  .hero-btns,
  .cta-btns {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .hero-btns .btn,
  .cta-btns .btn {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .trust-strip li {
    -webkit-flex: 1;
    flex: 1;
    min-width: calc(50% - 8px);
    -webkit-justify-content: center;
    justify-content: center;
  }
  .feat-grid,
  .games-grid,
  .testi-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  REDUCED MOTION  ━━━━ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  PRINT  ━━━━ */
@media print {
  .social-sidebar,
  .mob-bar,
  .scroll-top,
  #site-header {
    display: none !important;
  }
  body {
    background: #fff !important;
    color: #000 !important;
  }
  a {
    color: #000 !important;
    text-decoration: underline;
  }
  .g-text {
    -webkit-text-fill-color: #c07000 !important;
    color: #c07000 !important;
  }
}
