/* ============================================================
   NOTOUT — HOMEPAGE PRO
   4SIX-inspired professional sportsbook · navy + amber · full-bleed
   Loaded ONLY on front page via conditional enqueue.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=Orbitron:wght@700;800;900&display=swap');

.pro-home {
  /* Palette */
  --bg:          #0a0e1f;        /* deep navy */
  --bg-2:        #111733;
  --bg-3:        #19203f;
  --surface:     rgba(20, 26, 56, 0.7);
  --line:        rgba(255, 255, 255, 0.07);
  --line-2:      rgba(255, 255, 255, 0.12);
  --ink:         #ffffff;
  --ink-2:       #c8cce3;
  --ink-3:       #8b91ad;

  --amber:       #ff8a00;        /* primary CTA */
  --amber-2:     #ff5a00;
  --amber-glow:  rgba(255,138,0,0.5);
  --cyan:        #00d4ff;
  --green:       #22c55e;
  --gold:        #ffd700;

  --grad-amber:  linear-gradient(135deg, #ff8a00 0%, #ff3b00 100%);
  --grad-cool:   linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);

  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.pro-home * { box-sizing: border-box; }

.pro-home h1, .pro-home h2, .pro-home h3, .pro-home h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
  letter-spacing: -0.02em !important;
  line-height: 1.15 !important;
  background: none !important;
  -webkit-text-fill-color: var(--ink) !important;
  filter: none !important;
  margin: 0 0 1rem !important;
}
.pro-home h1 { font-size: clamp(2.5rem, 5vw, 4.5rem) !important; }
.pro-home h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem) !important; }
.pro-home h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem) !important; }
.pro-home h4 { font-size: clamp(1.05rem, 2vw, 1.35rem) !important; }
.pro-home h1 em, .pro-home h2 em, .pro-home h3 em {
  font-style: normal;
  background: var(--grad-amber) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.pro-home p { color: var(--ink-2); line-height: 1.6; margin: 0 0 1rem; font-size: 1rem; }
.pro-home a { color: inherit; text-decoration: none; }

.pro-home .wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============ TOP UTILITY BAR ============ */
.pro-top {
  background: #060816;
  border-bottom: 1px solid var(--line);
  font-size: .82rem;
  color: var(--ink-3);
}
.pro-top__inner {
  max-width: 1320px; margin: 0 auto; padding: .55rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem;
}
.pro-top__left { display: flex; gap: 1rem; align-items: center; }
.pro-top__right { display: flex; gap: 1rem; align-items: center; }
.pro-top__pill {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(34,197,94,0.12); color: var(--green);
  padding: .25rem .7rem; border-radius: 999px;
  font-weight: 700; font-size: .75rem;
}
.pro-top__pill::before { content: ""; width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: pulse-g 1.4s infinite; }
@keyframes pulse-g { 0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); } 50% { box-shadow: 0 0 0 8px rgba(34,197,94,0); } }

/* ============ LIVE TICKER ============ */
.pro-ticker {
  background: linear-gradient(90deg, var(--amber) 0%, var(--amber-2) 100%);
  color: #fff;
  overflow: hidden;
  border-bottom: 1px solid #000;
}
.pro-ticker__inner { display: flex; align-items: stretch; }
.pro-ticker__label {
  background: #000; color: var(--amber);
  padding: .65rem 1.25rem;
  font-weight: 800; font-size: .82rem; letter-spacing: 2px;
  display: flex; align-items: center; gap: .55rem;
  border-right: 2px solid var(--amber);
  flex-shrink: 0;
  text-transform: uppercase;
}
.pro-ticker__dot { width: 8px; height: 8px; background: var(--amber); border-radius: 50%; animation: pulse-a 1.2s infinite; }
@keyframes pulse-a { 0%,100% { box-shadow: 0 0 0 0 rgba(255,138,0,0.7); } 50% { box-shadow: 0 0 0 8px rgba(255,138,0,0); } }
.pro-ticker__track {
  display: inline-flex; gap: 3rem; white-space: nowrap; padding: .65rem 0;
  font-weight: 600; font-size: .9rem;
  animation: ticker-pro 60s linear infinite;
}
.pro-ticker__track b { color: #ffe; margin-right: .35rem; }
@keyframes ticker-pro { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ HERO ============ */
.pro-hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding: 5rem 0;
  background:
    radial-gradient(900px 600px at 12% 30%, rgba(255,138,0,0.15), transparent 60%),
    radial-gradient(800px 600px at 88% 70%, rgba(0,212,255,0.13), transparent 60%),
    var(--bg);
}
.pro-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  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: 80px 80px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
.pro-hero__grid {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 4rem; align-items: center;
}
@media (max-width: 980px) { .pro-hero__grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.pro-bonus-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,138,0,0.1); color: var(--amber);
  border: 1px solid rgba(255,138,0,0.35);
  padding: .5rem 1rem; border-radius: 999px;
  font-weight: 700; font-size: .85rem;
  margin-bottom: 1.5rem;
}
.pro-bonus-pill i { color: var(--amber); }

.pro-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem) !important;
  font-weight: 700 !important;
  margin-bottom: 1.5rem !important;
}
.pro-hero p.lead { font-size: 1rem; color: var(--ink-2); max-width: 560px; margin-bottom: 2rem; }

.pro-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.pro-btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: 1rem 1.8rem; border-radius: 12px;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: .95rem;
  letter-spacing: .3px; text-transform: none;
  cursor: pointer; transition: all .2s ease; text-decoration: none !important;
  border: none;
}
.pro-btn--primary {
  background: var(--grad-amber); color: #fff !important;
  box-shadow: 0 10px 30px var(--amber-glow), inset 0 1px 0 rgba(255,255,255,0.25);
}
.pro-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px var(--amber-glow), inset 0 1px 0 rgba(255,255,255,0.4); filter: brightness(1.05); }
.pro-btn--ghost {
  background: transparent; color: var(--ink) !important;
  border: 1px solid var(--line-2);
}
.pro-btn--ghost:hover { background: rgba(255,255,255,0.05); border-color: var(--cyan); }
.pro-btn--cyan { background: var(--grad-cool); color: #fff !important; box-shadow: 0 10px 30px rgba(0,102,255,0.4); }

.pro-trust-row {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  margin-top: 2rem; color: var(--ink-3); font-size: .88rem;
}
.pro-trust-row i { color: var(--amber); margin-right: .35rem; }

/* Hero side: floating bonus card */
.pro-hero__visual {
  position: relative; min-height: 380px;
  display: flex; align-items: center; justify-content: center;
}
.pro-hero__visual img {
  width: 100%; height: 380px; object-fit: cover; border-radius: var(--r-xl);
  border: 1px solid var(--line-2);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.pro-floating-card {
  position: absolute; background: var(--bg-2); border: 1px solid var(--line-2);
  border-radius: var(--r-md); padding: 1rem 1.25rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; gap: .75rem;
  animation: float-y 5s ease-in-out infinite;
}
@keyframes float-y { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.pro-floating-card__icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--grad-amber); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.pro-floating-card--a { top: 1.5rem; left: -1rem; }
.pro-floating-card--b { bottom: 2rem; right: -1rem; animation-delay: 1s; }
.pro-floating-card strong { color: #fff; font-size: 1rem; display: block; }
.pro-floating-card small { color: var(--ink-3); font-size: .78rem; }

/* ============ SECTION SCAFFOLD ============ */
.pro-section { padding: 3.5rem 0; position: relative; }
.pro-section--alt { background: var(--bg-2); }
.pro-section__head {
  text-align: center;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.pro-section__eyebrow {
  display: inline-block; padding: .22rem .65rem; border-radius: 999px;
  background: rgba(255,138,0,0.1); border: 1px solid rgba(255,138,0,0.3);
  color: var(--amber); font-weight: 700; font-size: .65rem; letter-spacing: 1.5px; text-transform: uppercase;
  margin: 0 0 .9rem !important;
}
.pro-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem) !important;
  margin: 0 0 .85rem !important;
  line-height: 1.2 !important;
}
.pro-section__sub {
  max-width: 620px;
  margin: 0 auto !important;
  padding: 0;
  color: var(--ink-2);
  font-size: .95rem;
  line-height: 1.6;
  text-align: center;
}

/* ============ FEATURES GRID ============ */
.pro-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.pro-feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: all .25s;
  position: relative; overflow: hidden;
}
.pro-feature:hover { border-color: var(--amber); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(255,138,0,0.15); }
.pro-feature__icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,138,0,0.18), rgba(255,90,0,0.10));
  border: 1px solid rgba(255,138,0,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--amber); margin-bottom: 1rem;
}
.pro-feature h3 { font-size: 1.15rem !important; margin-bottom: .35rem !important; }
.pro-feature p { color: var(--ink-2); font-size: .92rem; margin-bottom: .75rem; line-height: 1.55; }
.pro-feature__metric {
  display: inline-block; padding: .25rem .65rem; border-radius: 999px;
  background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.3);
  color: var(--cyan); font-weight: 700; font-size: .75rem;
}
@media (max-width: 900px) { .pro-features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .pro-features { grid-template-columns: 1fr; } }

/* ============ STATS BAR ============ */
.pro-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.pro-stat { background: var(--bg-2); padding: 2.5rem 1.5rem; text-align: center; }
.pro-stat__num {
  font-family: 'Space Grotesk', sans-serif; font-weight: 900;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  background: var(--grad-amber);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.pro-stat__label { color: var(--ink-3); font-size: .82rem; letter-spacing: 1px; text-transform: uppercase; margin-top: .5rem; display: block; }
@media (max-width: 720px) { .pro-stats { grid-template-columns: 1fr 1fr; } }

/* ============ SPLIT SECTIONS ============ */
.pro-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.pro-split--reverse > div:first-child { order: 2; }
@media (max-width: 900px) { .pro-split { grid-template-columns: 1fr; gap: 2.5rem; } .pro-split--reverse > div:first-child { order: 0; } }
.pro-split img { width: 100%; height: 380px; object-fit: cover; border-radius: var(--r-xl); border: 1px solid var(--line-2); box-shadow: 0 30px 80px rgba(0,0,0,0.5); }

.pro-bullets { list-style: none; padding: 0; margin: 1.5rem 0; display: grid; gap: .75rem; }
.pro-bullets li { display: flex; gap: .8rem; color: var(--ink-2); font-size: 1rem; }
.pro-bullets li i { color: var(--green); margin-top: .3rem; font-size: 1rem; }
.pro-bullets li b { color: #fff; }

/* ============ LEAGUE / GAME GRID ============ */
.pro-leagues { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.pro-league {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  transition: all .25s; cursor: pointer;
}
.pro-league:hover { border-color: var(--amber); transform: translateX(4px); }
.pro-league__icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--bg-3); display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; flex-shrink: 0;
}
.pro-league__info h4 { font-size: 1.05rem !important; margin: 0 !important; }
.pro-league__info span { color: var(--cyan); font-size: .8rem; font-weight: 700; }
@media (max-width: 900px) { .pro-leagues { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .pro-leagues { grid-template-columns: 1fr; } }

/* ============ STEPS (3-step process) ============ */
.pro-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; counter-reset: step; }
.pro-step {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 2rem; position: relative;
  counter-increment: step;
}
.pro-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; top: 1rem; right: 1.25rem;
  font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 3.5rem;
  color: transparent; -webkit-text-stroke: 2px var(--amber);
  line-height: 1;
}
.pro-step__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--grad-amber); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  margin-bottom: 1rem;
}
@media (max-width: 720px) { .pro-steps { grid-template-columns: 1fr; } }

/* ============ PAYMENT METHODS ============ */
.pro-payments {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 2rem;
}
.pro-pay {
  padding: .85rem 1.4rem; border-radius: 12px;
  background: var(--bg-3); border: 1px solid var(--line);
  color: var(--ink); font-weight: 700; letter-spacing: 1.5px; font-size: .85rem;
  transition: all .25s;
}
.pro-pay:hover { background: var(--amber); color: #000 !important; border-color: var(--amber); }

/* ============ MOBILE APP SECTION ============ */
.pro-app {
  background: linear-gradient(135deg, rgba(255,138,0,0.12), rgba(0,212,255,0.05));
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 4rem;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: center;
}
@media (max-width: 900px) { .pro-app { grid-template-columns: 1fr; padding: 2.5rem; } }
.pro-app h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem) !important; }
.pro-app__phone {
  position: relative; aspect-ratio: 9/16; max-width: 280px; margin: 0 auto;
  background: linear-gradient(180deg, #1a1f33, #0a0e1f);
  border-radius: 36px;
  border: 6px solid #1a1f33;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), inset 0 0 30px rgba(255,138,0,0.1);
  overflow: hidden;
}
.pro-app__phone::before {
  content: ""; position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 5px; background: #000; border-radius: 999px;
}
.pro-app__phone-screen {
  position: absolute; inset: 30px 8px 8px;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-3));
  border-radius: 22px;
  padding: 1rem; display: flex; flex-direction: column; gap: .5rem;
}
.pro-app__phone-row {
  background: var(--bg); border-radius: 8px; padding: .6rem .8rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .65rem;
}
.pro-app__phone-row b { color: var(--amber); font-family: 'Space Grotesk', sans-serif; }
.pro-app-store { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.pro-store-btn {
  display: inline-flex; align-items: center; gap: .65rem;
  background: #000; color: #fff; padding: .8rem 1.25rem;
  border: 1px solid var(--line-2); border-radius: 12px;
  font-weight: 600; font-size: .9rem; transition: all .2s;
}
.pro-store-btn i { font-size: 1.6rem; }
.pro-store-btn:hover { border-color: var(--amber); background: var(--bg-3); }
.pro-store-btn small { display: block; font-size: .65rem; opacity: .7; font-weight: 500; }

/* ============ PROMO CARDS ============ */
.pro-promos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pro-promo {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 0; overflow: hidden;
  transition: all .25s;
}
.pro-promo:hover { border-color: var(--amber); transform: translateY(-4px); }
.pro-promo__top {
  background: var(--grad-amber);
  padding: 1.5rem; color: #fff; text-align: center;
  position: relative; overflow: hidden;
}
.pro-promo__top::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(45deg, rgba(0,0,0,0.15) 25%, transparent 25%, transparent 50%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.15) 75%, transparent 75%);
  background-size: 20px 20px; opacity: .35;
}
.pro-promo__top h3 { color: #fff !important; font-size: 2.4rem !important; margin: 0 !important; position: relative; }
.pro-promo__top span { color: #fff; font-weight: 700; font-size: .9rem; position: relative; opacity: .9; }
.pro-promo__body { padding: 1.5rem; }
.pro-promo__body h4 { font-size: 1.1rem !important; margin-bottom: .5rem !important; }
.pro-promo__body p { color: var(--ink-2); font-size: .9rem; }
@media (max-width: 900px) { .pro-promos { grid-template-columns: 1fr; } }

/* ============ BLOG CARDS ============ */
.pro-blog { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pro-blog-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all .25s;
}
.pro-blog-card:hover { border-color: var(--amber); transform: translateY(-4px); }
.pro-blog-card__media { aspect-ratio: 16/10; overflow: hidden; }
.pro-blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.pro-blog-card:hover .pro-blog-card__media img { transform: scale(1.05); }
.pro-blog-card__body { padding: 1.5rem; }
.pro-blog-card__cat {
  display: inline-block; padding: .25rem .65rem; border-radius: 999px;
  background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.3);
  color: var(--cyan); font-weight: 700; font-size: .7rem; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: .75rem;
}
.pro-blog-card h4 { font-size: 1.1rem !important; margin-bottom: .5rem !important; }
.pro-blog-card__meta { color: var(--ink-3); font-size: .82rem; display: flex; gap: 1rem; }
@media (max-width: 900px) { .pro-blog { grid-template-columns: 1fr; } }

/* ============ FAQ ============ */
.pro-faq { max-width: 880px; margin: 0 auto; }
.pro-faq details {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 1.25rem 1.5rem; margin-bottom: .75rem;
  cursor: pointer; transition: border-color .25s;
}
.pro-faq details[open] { border-color: var(--amber); }
.pro-faq summary {
  font-weight: 700; color: var(--ink); list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.pro-faq summary::after { content: "+"; color: var(--amber); font-size: 1.3rem; transition: transform .25s; }
.pro-faq details[open] summary::after { transform: rotate(45deg); }
.pro-faq summary::-webkit-details-marker { display: none; }
.pro-faq details p { margin-top: 1rem; color: var(--ink-2); }

/* ============ FINAL CTA ============ */
.pro-final {
  position: relative; isolation: isolate; overflow: hidden;
  text-align: center;
  padding: 4rem 1.5rem;
  background:
    radial-gradient(700px 500px at 50% 50%, rgba(255,138,0,0.18), transparent 60%),
    var(--bg);
}
.pro-final h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem) !important; }
.pro-final .pro-cta-row { justify-content: center; }
.pro-final p.lead { max-width: 640px; margin: 1rem auto 2rem; font-size: .98rem; }

/* ============================================================
   v2 — ALTERNATE SECTION DESIGNS
   ============================================================ */

/* COUNTDOWN STRIP */
.pro-countdown-strip {
  background: linear-gradient(90deg, var(--amber) 0%, var(--amber-2) 100%);
  color: #fff;
  padding: .8rem 1.5rem;
  display: flex; justify-content: center; align-items: center; gap: 1.5rem;
  flex-wrap: wrap; font-weight: 700; font-size: .92rem;
  border-bottom: 1px solid rgba(0,0,0,0.2);
}
.pro-countdown-strip__label { display: inline-flex; align-items: center; gap: .5rem; }
.pro-countdown-strip__timer {
  display: inline-flex; gap: .35rem; font-family: 'Space Grotesk', sans-serif;
  background: rgba(0,0,0,0.25); padding: .35rem .75rem; border-radius: 8px;
  font-size: 1rem; letter-spacing: 1px;
}
.pro-countdown-strip__timer span { background: rgba(0,0,0,0.4); padding: .15rem .45rem; border-radius: 4px; font-weight: 800; }
.pro-countdown-strip a {
  background: #000; color: var(--amber); padding: .45rem 1rem; border-radius: 999px;
  font-weight: 800; font-size: .82rem; letter-spacing: 1px; text-transform: uppercase;
  transition: all .2s;
}
.pro-countdown-strip a:hover { background: #fff; color: #000; }

/* QUICK SPORT BAR — looping marquee */
.pro-quickbar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.pro-quickbar__inner {
  display: inline-flex;
  gap: .5rem;
  white-space: nowrap;
  padding: .65rem 0;
  animation: pro-quickbar-scroll 40s linear infinite;
  will-change: transform;
}
.pro-quickbar:hover .pro-quickbar__inner {
  animation-play-state: paused;
}
@keyframes pro-quickbar-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.pro-quickbar a {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .55rem 1rem; border-radius: 10px;
  background: transparent; color: var(--ink-2);
  font-weight: 600; font-size: .85rem;
  transition: background .2s, color .2s, transform .15s;
  flex-shrink: 0;
  text-decoration: none !important;
  cursor: pointer;
}
.pro-quickbar a:hover {
  background: var(--bg-3);
  color: #fff;
  transform: translateY(-1px);
}
.pro-quickbar a.is-active { background: rgba(255,138,0,0.15); color: var(--amber); }
.pro-quickbar a i { font-size: 1rem; }
.pro-quickbar a .badge {
  background: var(--amber); color: #000;
  font-size: .62rem; font-weight: 800;
  padding: .1rem .45rem; border-radius: 999px;
  margin-left: .25rem;
}
@media (prefers-reduced-motion: reduce) {
  .pro-quickbar__inner { animation: none; }
}

/* HERO V2 - CENTERED DRAMA */
.pro-hero-v2 {
  position: relative; isolation: isolate; overflow: hidden;
  padding: 4rem 0 3rem;
  text-align: center;
  background:
    radial-gradient(900px 600px at 50% 0%, rgba(255,138,0,0.18), transparent 60%),
    radial-gradient(700px 500px at 50% 100%, rgba(0,212,255,0.10), transparent 60%),
    var(--bg);
}
.pro-hero-v2::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.pro-hero-v2 h1 {
  font-size: clamp(2.25rem, 4.5vw, 4rem) !important;
  font-weight: 700 !important;
  margin: 1.5rem 0 1.5rem !important;
  letter-spacing: -0.02em !important;
}
.pro-hero-v2 .lead { font-size: 1rem; color: var(--ink-2); max-width: 720px; margin: 0 auto 2.5rem; }
.pro-hero-v2 .pro-cta-row { justify-content: center; }
.pro-hero-v2__statbar {
  margin-top: 4rem; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  max-width: 980px; margin-left: auto; margin-right: auto;
}
.pro-hero-v2__stat { background: rgba(10,14,31,0.5); backdrop-filter: blur(10px); padding: 1.5rem 1rem; }
.pro-hero-v2__stat .num { font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 1.6rem; background: var(--grad-amber); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.pro-hero-v2__stat .lbl { color: var(--ink-3); font-size: .78rem; letter-spacing: 1px; text-transform: uppercase; margin-top: .35rem; }
@media (max-width: 720px) { .pro-hero-v2__statbar { grid-template-columns: 1fr 1fr; } }

/* TRUST LOGOS BAR */
.pro-trust-bar {
  padding: 2rem 0; background: var(--bg-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.pro-trust-bar__inner {
  display: flex; align-items: center; justify-content: center; gap: 2.5rem;
  flex-wrap: wrap; opacity: .75;
}
.pro-trust-bar__inner span {
  font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 1rem;
  letter-spacing: 3px; color: var(--ink-2); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .5rem;
}
.pro-trust-bar__inner span i { color: var(--amber); }
.pro-trust-bar__inner small { color: var(--ink-3); font-size: .75rem; letter-spacing: 2px; text-transform: uppercase; padding-right: 1rem; border-right: 1px solid var(--line-2); }

/* FEATURED MATCHES (4 cards with countdown) */
.pro-matches { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.pro-match {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.25rem; transition: all .25s;
  position: relative; overflow: hidden;
}
.pro-match:hover { border-color: var(--amber); transform: translateY(-4px); }
.pro-match__league { font-size: .72rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); margin-bottom: .75rem; display: flex; justify-content: space-between; align-items: center; }
.pro-match__league .live-dot { display: inline-flex; align-items: center; gap: .35rem; color: var(--amber); }
.pro-match__league .live-dot::before { content: ""; width: 6px; height: 6px; background: var(--amber); border-radius: 50%; animation: pulse-a 1.2s infinite; }
.pro-match__teams { display: grid; gap: .65rem; margin: 1rem 0; }
.pro-match__team { display: flex; justify-content: space-between; align-items: center; }
.pro-match__team .name { color: var(--ink); font-weight: 600; font-size: .95rem; }
.pro-match__team .crest { width: 28px; height: 28px; border-radius: 6px; background: var(--bg-3); display: inline-flex; align-items: center; justify-content: center; color: var(--amber); font-family: 'Space Grotesk', sans-serif; font-size: .75rem; font-weight: 800; margin-right: .5rem; }
.pro-match__time { font-size: .8rem; color: var(--ink-3); font-family: 'Space Grotesk', sans-serif; font-weight: 600; padding: .35rem .65rem; background: var(--bg-3); border-radius: 6px; display: inline-block; }
.pro-match__odds { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .35rem; margin-top: 1rem; }
.pro-match__odd {
  background: var(--bg-3); padding: .55rem .35rem; text-align: center; border-radius: 6px;
  cursor: pointer; transition: all .15s; border: 1px solid transparent;
}
.pro-match__odd:hover { border-color: var(--amber); background: var(--bg); }
.pro-match__odd small { display: block; color: var(--ink-3); font-size: .68rem; }
.pro-match__odd b { color: var(--ink); font-family: 'Space Grotesk', sans-serif; font-size: .95rem; }
@media (max-width: 1100px) { .pro-matches { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .pro-matches { grid-template-columns: 1fr; } }

/* COMPARISON CARDS (replaces table) */
.pro-vs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .9rem;
}
@media (max-width: 1100px) { .pro-vs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .pro-vs-grid { grid-template-columns: 1fr; } }

.pro-vs-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent 35%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.4rem 1.25rem;
  position: relative;
  overflow: hidden;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.pro-vs-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0; transition: opacity .25s;
}
.pro-vs-card:hover {
  border-color: rgba(255,138,0,0.35);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.45);
}
.pro-vs-card:hover::before { opacity: 1; }

.pro-vs-card__head {
  display: flex; align-items: center; gap: .55rem;
  margin-bottom: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .68rem; letter-spacing: 1.5px; font-weight: 700;
  color: var(--ink-3); text-transform: uppercase;
}
.pro-vs-card__head i {
  width: 26px; height: 26px; border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(255,138,0,0.18), rgba(255,138,0,0.05));
  border: 1px solid rgba(255,138,0,0.3);
  color: var(--amber);
  font-size: .8rem;
  flex-shrink: 0;
}

.pro-vs-card__us {
  display: flex; align-items: baseline; gap: .55rem; margin-bottom: .35rem;
}
.pro-vs-card__brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: .65rem; letter-spacing: 2px;
  color: var(--amber); text-transform: uppercase;
}
.pro-vs-card__val {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}

.pro-vs-card__divider {
  border: none; border-top: 1px dashed rgba(255,255,255,0.08);
  margin: .85rem 0 .75rem;
}

.pro-vs-card__them {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem;
  color: var(--ink-3);
  margin-bottom: .3rem;
}
.pro-vs-card__them .label { font-weight: 500; }
.pro-vs-card__them .v {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  color: var(--ink-2);
}

.pro-vs-card__win {
  display: inline-flex; align-items: center; gap: .35rem;
  margin-top: .85rem;
  padding: .3rem .65rem;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 999px;
  color: var(--green);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: .7rem; letter-spacing: 1px;
  align-self: flex-start;
}
.pro-vs-card__win i { font-size: .65rem; }

/* COMPARISON TABLE — kept for legacy but no longer used */
.pro-compare {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
}
.pro-compare__row {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.pro-compare__row:last-child { border-bottom: none; }
.pro-compare__row > div { padding: 1.1rem 1.25rem; display: flex; align-items: center; }
.pro-compare__row > div:not(:first-child) { border-left: 1px solid var(--line); justify-content: center; text-align: center; }
.pro-compare__row.head { background: var(--bg-3); }
.pro-compare__row.head > div { font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: .85rem; letter-spacing: 1px; text-transform: uppercase; color: var(--ink); }
.pro-compare__row.head .us { background: var(--grad-amber); color: #fff; }
.pro-compare__row .us { background: rgba(255,138,0,0.05); color: var(--amber); font-weight: 700; }
.pro-compare__row .other { color: var(--ink-3); font-weight: 500; }
.pro-compare__row .label { color: var(--ink-2); font-weight: 600; }
.pro-compare__row .check { color: var(--green); font-size: 1rem; }
.pro-compare__row .cross { color: var(--ink-3); font-size: 1rem; }
@media (max-width: 720px) { .pro-compare__row > div { padding: .8rem; font-size: .85rem; } }

/* SPORT SHOWCASE — animated icon cards (no images) */
.pro-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
@media (max-width: 900px) { .pro-showcase { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .pro-showcase { grid-template-columns: 1fr; } }

.pro-showcase__card {
  position: relative; isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent 30%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem 1.6rem 1.5rem;
  text-align: left;
  text-decoration: none !important;
  display: flex; flex-direction: column;
  transition: transform .3s cubic-bezier(.2,.9,.3,1), border-color .3s, box-shadow .3s;
  overflow: hidden;
  cursor: pointer;
}
/* Top hairline accent (per-card color via --tint) */
.pro-showcase__card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--tint, var(--amber)), transparent);
  opacity: 0; transition: opacity .3s;
}
/* Glowing radial behind icon — appears on hover */
.pro-showcase__card::after {
  content: ""; position: absolute;
  top: 1.5rem; left: 1.6rem;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--tint, var(--amber)), transparent 70%);
  opacity: 0;
  filter: blur(14px);
  transition: opacity .35s;
  z-index: -1;
}
.pro-showcase__card:hover {
  transform: translateY(-6px);
  border-color: var(--tint, var(--amber));
  box-shadow: 0 24px 48px rgba(0,0,0,0.4), 0 0 0 1px color-mix(in srgb, var(--tint, var(--amber)) 40%, transparent);
}
.pro-showcase__card:hover::before { opacity: 1; }
.pro-showcase__card:hover::after  { opacity: .35; }

/* Animated icon */
.pro-showcase__icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background:
    linear-gradient(135deg,
      color-mix(in srgb, var(--tint, var(--amber)) 24%, transparent),
      color-mix(in srgb, var(--tint, var(--amber)) 6%, transparent));
  border: 1px solid color-mix(in srgb, var(--tint, var(--amber)) 35%, transparent);
  color: var(--tint, var(--amber));
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: transform .4s cubic-bezier(.2,.9,.3,1), box-shadow .4s;
  position: relative;
  animation: showcase-float 4s ease-in-out infinite;
}
@keyframes showcase-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
.pro-showcase__card:hover .pro-showcase__icon {
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--tint, var(--amber)) 50%, transparent);
  animation-play-state: paused;
}

.pro-showcase__cat {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: .65rem; letter-spacing: 1.8px;
  color: var(--tint, var(--amber));
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.pro-showcase__title {
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 1.35rem;
  letter-spacing: -0.01em;
  margin-bottom: .35rem;
  line-height: 1.15;
}
.pro-showcase__meta {
  color: var(--ink-2);
  font-size: .85rem;
  margin-bottom: 1.25rem;
  flex: 1;
}
.pro-showcase__cta {
  display: inline-flex; align-items: center; gap: .45rem;
  color: var(--tint, var(--amber));
  font-weight: 700; font-size: .85rem;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: .3px;
  margin-top: auto;
  transition: gap .25s;
}
.pro-showcase__cta i { font-size: .75rem; transition: transform .25s; }
.pro-showcase__card:hover .pro-showcase__cta { gap: .7rem; }
.pro-showcase__card:hover .pro-showcase__cta i { transform: translateX(3px); }

/* Per-card tints */
.pro-showcase__card--cricket  { --tint: #ff8a00; }
.pro-showcase__card--football { --tint: #22c55e; }
.pro-showcase__card--casino   { --tint: #a855f7; }
.pro-showcase__card--slots    { --tint: #ffd700; }
.pro-showcase__card--live     { --tint: #ff3b3b; }
.pro-showcase__card--esports  { --tint: #00d4ff; }

/* ============ VIP TIER LADDER — premium luxury redesign ============ */
.pro-ladder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.pro-tier {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 30%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem 1.5rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s cubic-bezier(.2,.9,.3,1), border-color .3s, box-shadow .3s;
}

/* Top metallic edge band per tier */
.pro-tier::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
/* Diagonal sheen on hover */
.pro-tier::after {
  content: ""; position: absolute;
  top: -50%; left: -100%;
  width: 60%; height: 200%;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.08) 50%, transparent 70%);
  transform: skewX(-20deg);
  transition: left .8s ease;
  pointer-events: none;
}
.pro-tier:hover::after { left: 130%; }

/* Tier badge (icon circle) */
.pro-tier__badge {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  position: relative; z-index: 1;
}
/* Inner ring detail */
.pro-tier__badge::after {
  content: ""; position: absolute; inset: 4px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
}

/* Tier metadata */
.pro-tier h3 {
  font-size: 1.5rem !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 700 !important;
  margin: 0 0 .15rem !important;
  letter-spacing: -0.01em !important;
}
.pro-tier__price {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: .82rem;
  letter-spacing: .5px;
  margin-bottom: 1.25rem;
  display: inline-flex; align-items: center; gap: .35rem;
  text-transform: uppercase;
}

/* Hairline above perks */
.pro-tier ul {
  list-style: none; padding: 1.25rem 0 0; margin: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: grid; gap: .65rem;
  flex: 1;
}
.pro-tier li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .55rem;
  color: var(--ink-2);
  font-size: .85rem;
  line-height: 1.45;
}
.pro-tier li i {
  margin-top: .15rem;
  font-size: .85rem;
}

/* ────── BRONZE ────── */
.pro-tier--bronze::before {
  background: linear-gradient(90deg, #8b5a2b, #cd7f32, #b8742d, #8b5a2b);
}
.pro-tier--bronze .pro-tier__badge {
  background:
    radial-gradient(circle at 30% 30%, #f4b771 0%, #cd7f32 35%, #6b3d1a 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(205,127,50,0.35), inset 0 -3px 8px rgba(0,0,0,0.35);
}
.pro-tier--bronze .pro-tier__price { color: #cd7f32; }
.pro-tier--bronze li i { color: #cd7f32; }
.pro-tier--bronze:hover {
  border-color: rgba(205,127,50,0.5);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(205,127,50,0.18);
}

/* ────── SILVER ────── */
.pro-tier--silver::before {
  background: linear-gradient(90deg, #909090, #e5e5e5, #c0c0c0, #909090);
}
.pro-tier--silver .pro-tier__badge {
  background:
    radial-gradient(circle at 30% 30%, #f8f8f8 0%, #c0c0c0 40%, #707070 100%);
  color: #1a1a1a;
  box-shadow: 0 8px 24px rgba(192,192,192,0.3), inset 0 -3px 8px rgba(0,0,0,0.25);
}
.pro-tier--silver .pro-tier__price { color: #c0c0c0; }
.pro-tier--silver li i { color: #c0c0c0; }
.pro-tier--silver:hover {
  border-color: rgba(192,192,192,0.5);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(192,192,192,0.15);
}

/* ────── GOLD ────── */
.pro-tier--gold {
  background:
    linear-gradient(180deg, rgba(255,215,0,0.10) 0%, rgba(255,215,0,0.02) 30%, transparent 60%),
    var(--surface);
  border-color: rgba(255,215,0,0.3);
}
.pro-tier--gold::before {
  background: linear-gradient(90deg, #b8860b, #ffd700, #ffe066, #ffd700, #b8860b);
}
.pro-tier--gold .pro-tier__badge {
  background:
    radial-gradient(circle at 30% 30%, #fff5b0 0%, #ffd700 35%, #b8860b 100%);
  color: #1a1a1a;
  box-shadow: 0 8px 28px rgba(255,215,0,0.5), inset 0 -3px 8px rgba(0,0,0,0.25);
}
.pro-tier--gold .pro-tier__price { color: #ffd700; }
.pro-tier--gold li i { color: #ffd700; }
.pro-tier--gold:hover {
  border-color: rgba(255,215,0,0.55);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(255,215,0,0.22);
}

/* ────── DIAMOND — featured tier ────── */
.pro-tier--diamond {
  background:
    linear-gradient(180deg, rgba(0,212,255,0.12) 0%, rgba(0,102,255,0.04) 30%, transparent 60%),
    var(--surface);
  border-color: rgba(0,212,255,0.4);
  box-shadow: 0 0 0 1px rgba(0,212,255,0.18), 0 18px 40px rgba(0,212,255,0.12);
  transform: scale(1.03);
}
.pro-tier--diamond::before {
  background: linear-gradient(90deg, #0066ff, #00d4ff, #80e8ff, #00d4ff, #0066ff);
  height: 5px;
}
/* "MOST POPULAR" badge */
.pro-tier--diamond .pro-tier__pop {
  position: absolute; top: 12px; right: 12px;
  background: linear-gradient(135deg, #00d4ff, #0066ff);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: .6rem; letter-spacing: 1.5px;
  padding: .22rem .55rem;
  border-radius: 999px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0,212,255,0.5);
}
.pro-tier--diamond .pro-tier__badge {
  background:
    radial-gradient(circle at 30% 30%, #c0f5ff 0%, #00d4ff 40%, #0066ff 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(0,212,255,0.55), inset 0 -3px 8px rgba(0,0,0,0.25);
}
.pro-tier--diamond .pro-tier__price { color: #00d4ff; }
.pro-tier--diamond li i { color: #00d4ff; }
.pro-tier--diamond:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 0 0 1px rgba(0,212,255,0.4), 0 28px 60px rgba(0,212,255,0.3);
}

@media (max-width: 1100px) { .pro-ladder { grid-template-columns: 1fr 1fr; } .pro-tier--diamond { transform: none; } .pro-tier--diamond:hover { transform: translateY(-4px); } }
@media (max-width: 480px) { .pro-ladder { grid-template-columns: 1fr; } }

/* LIVE WINNERS FEED */
.pro-winners {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.5rem; max-height: 480px; overflow: hidden;
  position: relative;
}
.pro-winners::before, .pro-winners::after {
  content: ""; position: absolute; left: 0; right: 0; height: 80px; pointer-events: none; z-index: 2;
}
.pro-winners::before { top: 0; background: linear-gradient(180deg, var(--surface), transparent); }
.pro-winners::after  { bottom: 0; background: linear-gradient(0deg, var(--surface), transparent); }
.pro-winners__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line);
}
.pro-winners__head h4 { font-size: 1.1rem !important; margin: 0 !important; }
.pro-winners__head .live { display: inline-flex; align-items: center; gap: .4rem; color: var(--green); font-weight: 700; font-size: .85rem; }
.pro-winners__head .live::before { content: ""; width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse-g 1.4s infinite; }
.pro-winners__list { display: grid; gap: .5rem; animation: scroll-up 30s linear infinite; }
.pro-winners:hover .pro-winners__list { animation-play-state: paused; }
@keyframes scroll-up {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
.pro-win {
  display: grid; grid-template-columns: auto 1fr auto; gap: .75rem; align-items: center;
  padding: .65rem .85rem; background: var(--bg-3); border-radius: 8px;
}
.pro-win__avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--grad-amber); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: .82rem; }
.pro-win__info { display: flex; flex-direction: column; gap: .15rem; }
.pro-win__info .name { color: var(--ink); font-weight: 600; font-size: .85rem; }
.pro-win__info .game { color: var(--ink-3); font-size: .75rem; }
.pro-win__amt { color: var(--green); font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 1rem; }

/* LIVE WINNERS section split */
.pro-winners-split { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 900px) { .pro-winners-split { grid-template-columns: 1fr; } }

/* PAYMENT METHOD CARDS — 6 in one row, premium */
.pro-pay-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .75rem;
}
.pro-pay-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent 40%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.1rem .9rem;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.pro-pay-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,138,0,0.55), transparent);
  opacity: 0; transition: opacity .25s;
}
.pro-pay-card:hover {
  border-color: rgba(255,138,0,0.4);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,138,0,0.1);
}
.pro-pay-card:hover::before { opacity: 1; }

/* Card head — centered logo on top, name below */
.pro-pay-card__head {
  display: flex; flex-direction: column; align-items: center; gap: .55rem;
  margin-bottom: .85rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.pro-pay-card__logo {
  width: 100%; height: 44px;
  border-radius: 6px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  padding: .4rem .65rem;
  flex-shrink: 0;
  box-sizing: border-box;
}
.pro-pay-card__logo img {
  display: block;
  width: auto !important; height: auto !important;
  max-height: 26px; max-width: 100%;
  object-fit: contain;
}
/* Bank icon variant — white plate matching other logos, with brand-amber icon */
.pro-pay-card__logo--icon {
  background: #fff;
  color: var(--amber);
  font-size: 1.4rem;
}
.pro-pay-card__name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: .82rem;
  letter-spacing: .3px;
  color: #fff;
  white-space: nowrap;
}

/* Rows — tighter, refined */
.pro-pay-card__rows { display: grid; gap: .42rem; font-size: .76rem; }
.pro-pay-card__row {
  display: flex; justify-content: space-between; align-items: center;
  color: var(--ink-3); gap: .4rem;
}
.pro-pay-card__row span { font-weight: 500; }
.pro-pay-card__row b {
  color: var(--ink); font-weight: 600; font-size: .78rem;
  font-family: 'Space Grotesk', sans-serif;
  text-align: right;
  white-space: nowrap;
}
.pro-pay-card__row .ok { color: var(--green); }

@media (max-width: 1180px) { .pro-pay-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .pro-pay-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .pro-pay-grid { grid-template-columns: 1fr; } }

/* WEEKLY BONUS CALENDAR */
.pro-calendar { display: grid; grid-template-columns: repeat(7, 1fr); gap: .5rem; }
.pro-day {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 1.25rem 1rem;
  text-align: center; transition: all .25s;
}
.pro-day:hover { border-color: var(--amber); transform: translateY(-3px); }
.pro-day.today { background: linear-gradient(180deg, rgba(255,138,0,0.18), var(--surface)); border-color: var(--amber); }
.pro-day .dow { font-size: .72rem; font-weight: 800; letter-spacing: 2px; color: var(--ink-3); text-transform: uppercase; }
.pro-day .icon { font-size: 1.6rem; color: var(--amber); margin: .65rem 0; }
.pro-day .bonus { font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: .95rem; color: var(--ink); }
.pro-day .desc { font-size: .72rem; color: var(--ink-3); margin-top: .35rem; line-height: 1.3; }
@media (max-width: 900px) { .pro-calendar { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .pro-calendar { grid-template-columns: 1fr 1fr; } }

/* APP TRIO MOCKUPS */
.pro-app-trio { display: flex; justify-content: center; align-items: end; gap: 1.5rem; perspective: 1200px; }
.pro-phone-mockup {
  position: relative; width: 180px; aspect-ratio: 9/19;
  background: linear-gradient(180deg, #1a1f33, #0a0e1f);
  border-radius: 30px;
  border: 5px solid #1a1f33;
  box-shadow: 0 30px 80px rgba(0,0,0,0.65), inset 0 0 30px rgba(255,138,0,0.08);
  overflow: hidden;
  transition: transform .3s;
}
.pro-phone-mockup::before {
  content: ""; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 50px; height: 4px; background: #000; border-radius: 999px; z-index: 3;
}
.pro-phone-mockup__screen {
  position: absolute; inset: 24px 6px 6px;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-3));
  border-radius: 18px; padding: .85rem;
  display: flex; flex-direction: column; gap: .35rem;
}
.pro-phone-mockup--center { transform: translateY(-30px) scale(1.05); z-index: 2; }
.pro-phone-mockup--left { transform: rotate(-8deg); }
.pro-phone-mockup--right { transform: rotate(8deg); }
.pro-phone-row {
  background: var(--bg); border-radius: 6px; padding: .45rem .55rem;
  display: flex; justify-content: space-between; align-items: center; font-size: .58rem;
  color: var(--ink-2);
}
.pro-phone-row b { color: var(--amber); font-family: 'Space Grotesk', sans-serif; font-weight: 800; }
.pro-phone-row.live { background: linear-gradient(135deg, var(--amber), var(--amber-2)); color: #fff; }
.pro-phone-row.live b { color: #fff; }
@media (max-width: 720px) { .pro-app-trio { flex-direction: column; align-items: center; }
  .pro-phone-mockup--center { transform: scale(1); }
  .pro-phone-mockup--left, .pro-phone-mockup--right { transform: none; }
}

/* STRATEGY HUB TABS */
.pro-tabs__nav {
  display: flex; gap: .5rem; justify-content: center; margin-bottom: 2rem;
  background: var(--bg-2); border: 1px solid var(--line);
  padding: .35rem; border-radius: 999px; max-width: 540px; margin-left: auto; margin-right: auto;
}
.pro-tabs__nav a {
  flex: 1; text-align: center; padding: .55rem 1rem;
  border-radius: 999px; color: var(--ink-2); font-weight: 600; font-size: .85rem;
  transition: all .2s; cursor: pointer !important;
  text-decoration: none !important;
  user-select: none;
  -webkit-user-select: none;
}
.pro-tabs__nav a:hover { color: #fff; background: rgba(255,138,0,0.1); }
.pro-tabs__nav a.is-active {
  background: var(--grad-amber); color: #fff !important;
  box-shadow: 0 6px 20px var(--amber-glow);
}

/* Tab panels — override .pro-strategy-grid display: grid via specificity + !important */
.pro-tabs .pro-tab-panel { display: none !important; animation: pro-tab-fade .35s ease; }
.pro-tabs .pro-tab-panel.is-active { display: grid !important; }
@keyframes pro-tab-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pro-strategy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pro-strategy-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 2rem; transition: all .25s;
}
.pro-strategy-card:hover { border-color: var(--amber); transform: translateY(-4px); }
.pro-strategy-card__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,138,0,0.18), rgba(255,90,0,0.10));
  border: 1px solid rgba(255,138,0,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--amber); margin-bottom: 1rem;
}
.pro-strategy-card__lvl { display: inline-block; padding: .15rem .55rem; background: rgba(34,197,94,0.12); color: var(--green); font-size: .7rem; font-weight: 800; letter-spacing: 1px; border-radius: 4px; margin-bottom: .75rem; }
.pro-strategy-card h4 { font-size: 1.1rem !important; margin-bottom: .5rem !important; }
@media (max-width: 900px) { .pro-strategy-grid { grid-template-columns: 1fr; } }

/* HELP CENTER — premium tinted cards + support concierge */
.pro-help {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) { .pro-help { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .pro-help { grid-template-columns: 1fr; } }

.pro-help-card {
  position: relative; isolation: isolate;
  background:
    linear-gradient(180deg,
      color-mix(in srgb, var(--tint, var(--amber)) 8%, transparent),
      transparent 35%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  transition: transform .3s cubic-bezier(.2,.9,.3,1), border-color .3s, box-shadow .3s;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.pro-help-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--tint, var(--amber)), transparent);
  opacity: 0; transition: opacity .3s;
}
.pro-help-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--tint, var(--amber)) 50%, transparent);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4),
              0 0 0 1px color-mix(in srgb, var(--tint, var(--amber)) 25%, transparent);
}
.pro-help-card:hover::before { opacity: 1; }

.pro-help-card__head {
  display: flex; justify-content: space-between; align-items: flex-start; gap: .75rem;
  margin-bottom: 1.1rem;
}
.pro-help-card__icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--tint, var(--amber)) 22%, transparent),
    color-mix(in srgb, var(--tint, var(--amber)) 6%, transparent));
  border: 1px solid color-mix(in srgb, var(--tint, var(--amber)) 35%, transparent);
  color: var(--tint, var(--amber));
  font-size: 1.35rem;
  transition: transform .35s cubic-bezier(.2,.9,.3,1);
}
.pro-help-card:hover .pro-help-card__icon { transform: scale(1.08) rotate(-4deg); }

.pro-help-card__count {
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: var(--ink-2);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: .68rem; letter-spacing: 1px;
  padding: .3rem .65rem;
  border-radius: 999px;
  text-transform: uppercase;
  margin-top: .3rem;
}

.pro-help-card h4 {
  font-size: 1.1rem !important;
  margin: 0 0 .9rem !important;
  font-weight: 700 !important;
  color: #fff !important;
}

.pro-help-card ul {
  list-style: none; padding: 0; margin: 0 0 1.1rem;
  display: grid; gap: 0;
  flex: 1;
}
.pro-help-card li {
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pro-help-card li:last-child { border-bottom: none; }
.pro-help-card li a {
  display: flex; justify-content: space-between; align-items: center;
  gap: .5rem;
  padding: .55rem 0;
  color: var(--ink-2);
  font-size: .85rem;
  transition: color .2s, padding .2s;
  text-decoration: none;
}
.pro-help-card li a::after {
  content: "→";
  color: var(--ink-3);
  font-size: .85rem;
  transition: transform .2s, color .2s;
}
.pro-help-card li a:hover {
  color: var(--tint, var(--amber));
  padding-left: .25rem;
}
.pro-help-card li a:hover::after {
  transform: translateX(3px);
  color: var(--tint, var(--amber));
}

.pro-help-card__cta {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--tint, var(--amber));
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: .8rem;
  letter-spacing: .3px;
  margin-top: auto;
  padding-top: .85rem;
  border-top: 1px solid color-mix(in srgb, var(--tint, var(--amber)) 18%, transparent);
  transition: gap .25s;
}
.pro-help-card__cta:hover { gap: .6rem; }

/* Per-category tints */
.pro-help-card--account  { --tint: #00d4ff; }
.pro-help-card--banking  { --tint: #22c55e; }
.pro-help-card--betting  { --tint: #ff8a00; }
.pro-help-card--bonus    { --tint: #a855f7; }

/* ────── Concierge Support Strip ────── */
.pro-help-concierge {
  margin-top: 1.5rem;
  background:
    linear-gradient(135deg, rgba(255,138,0,0.10), rgba(255,138,0,0.02) 50%, transparent),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}
@media (max-width: 800px) { .pro-help-concierge { grid-template-columns: 1fr; padding: 1.5rem; } }

.pro-help-concierge__copy strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 1.1rem;
  color: #fff; margin-bottom: .25rem;
}
.pro-help-concierge__copy span { color: var(--ink-2); font-size: .9rem; }
.pro-help-concierge__copy span b {
  color: var(--green); font-weight: 700;
}

.pro-help-concierge__actions {
  display: flex; gap: .55rem; flex-wrap: wrap;
}
.pro-help-channel {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .65rem 1.1rem;
  border-radius: 10px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: .85rem;
  text-decoration: none;
  transition: all .2s;
}
.pro-help-channel i { font-size: 1rem; }
.pro-help-channel--chat { background: linear-gradient(135deg, var(--amber), var(--amber-2)); border-color: transparent; box-shadow: 0 6px 18px rgba(255,138,0,0.4); }
.pro-help-channel--whatsapp i { color: #25D366; }
.pro-help-channel--telegram i { color: #229ED9; }
.pro-help-channel:hover { transform: translateY(-2px); border-color: rgba(255,138,0,0.4); }
.pro-help-channel--chat:hover { box-shadow: 0 10px 26px rgba(255,138,0,0.55); }

/* FINAL URGENCY CTA */
.pro-urgency {
  position: relative; isolation: isolate; overflow: hidden;
  text-align: center; padding: 4rem 1.5rem;
  background:
    radial-gradient(700px 500px at 50% 50%, rgba(255,138,0,0.22), transparent 60%),
    var(--bg);
}
.pro-urgency::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .6;
  background-image:
    linear-gradient(rgba(255,138,0,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,138,0,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.pro-urgency__live {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(34,197,94,0.12); color: var(--green);
  padding: .55rem 1.1rem; border-radius: 999px;
  font-weight: 700; font-size: .85rem; margin-bottom: 1.25rem;
}
.pro-urgency__live::before { content: ""; width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse-g 1.4s infinite; }
.pro-urgency h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem) !important; }

/* ============================================================
   WINZA-CLONE HERO (home-02 layout, our palette)
   Structure: pill → big H1 → single CTA → trust row | image
   ============================================================ */
.pro-hero-winza {
  position: relative; isolation: isolate; overflow: hidden;
  padding: 4rem 0 3rem;
  background:
    radial-gradient(1100px 800px at 80% 50%, rgba(255,138,0,0.12), transparent 65%),
    radial-gradient(900px 700px at 10% 80%, rgba(0,212,255,0.08), transparent 60%),
    var(--bg);
}
.pro-hero-winza::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .55;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}

.pro-hero-winza__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}
@media (max-width: 980px) {
  .pro-hero-winza__grid { grid-template-columns: 1fr; gap: 2rem; }
  .pro-hero-winza { padding: 3.5rem 0 2.5rem; }
}

/* Pill — "No Deposit Required!" */
.pro-hero-winza__pill {
  display: inline-block;
  background: rgba(255,138,0,0.12);
  color: var(--amber);
  border: 1px solid rgba(255,138,0,0.35);
  padding: .55rem 1.15rem;
  border-radius: 999px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* Big headline — large, dramatic, multi-line */
.pro-hero-winza h1 {
  font-size: clamp(2.25rem, 4.5vw, 4rem) !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 2rem !important;
  color: var(--ink) !important;
}
.pro-hero-winza h1 em {
  font-style: normal;
  background: var(--grad-amber) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* Single primary CTA — Winza uses one large pill button */
.pro-hero-winza .pro-btn {
  padding: 1.15rem 2.25rem;
  font-size: .92rem;
  border-radius: 999px;
}

/* Trust row — three pill items with their own icons */
.pro-hero-winza__trust {
  display: flex; flex-wrap: wrap; gap: 1rem 1.5rem;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  max-width: 600px;
}
.pro-hero-winza__trust-item {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--ink-2);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .2px;
}
.pro-hero-winza__trust-item i {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,138,0,0.18), rgba(255,138,0,0.05));
  border: 1px solid rgba(255,138,0,0.3);
  color: var(--amber);
  font-size: .85rem;
  flex-shrink: 0;
}
.pro-hero-winza__trust-item--green i { background: linear-gradient(135deg, rgba(34,197,94,0.18), rgba(34,197,94,0.05)); border-color: rgba(34,197,94,0.3); color: var(--green); }
.pro-hero-winza__trust-item--gold  i { background: linear-gradient(135deg, rgba(255,215,0,0.18), rgba(255,215,0,0.05)); border-color: rgba(255,215,0,0.3); color: var(--gold); }

/* Right column — image with subtle slow zoom + glow */
.pro-hero-winza__image-wrap {
  position: relative;
  isolation: isolate;
}
.pro-hero-winza__image-wrap::before {
  content: "";
  position: absolute; inset: 8% 8%;
  background: radial-gradient(ellipse at center, rgba(255,138,0,0.45), transparent 70%);
  filter: blur(60px);
  z-index: -1;
  animation: hero-glow-pulse 6s ease-in-out infinite alternate;
}
@keyframes hero-glow-pulse {
  0%   { opacity: .55; transform: scale(1); }
  100% { opacity: .9;  transform: scale(1.06); }
}
.pro-hero-winza__image-wrap img {
  width: 100%; max-width: 600px; height: auto;
  display: block; margin: 0 auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
  animation: hero-img-float 7s ease-in-out infinite;
}
@keyframes hero-img-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(-1.2deg); }
}

/* Floating accent badges around the hero image (like Winza's coin/crown overlays) */
.pro-hero-winza__badge {
  position: absolute;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: .85rem 1.1rem;
  display: flex; gap: .65rem; align-items: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
  backdrop-filter: blur(18px);
  z-index: 2;
  animation: badge-float 5s ease-in-out infinite;
}
.pro-hero-winza__badge i {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--grad-amber); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.pro-hero-winza__badge strong { color: #fff; font-family: 'Space Grotesk', sans-serif; font-size: .95rem; display: block; }
.pro-hero-winza__badge small  { color: var(--ink-3); font-size: .72rem; }
.pro-hero-winza__badge--a { top: 6%; left: -2%; }
.pro-hero-winza__badge--b { bottom: 8%; right: -3%; animation-delay: 1.5s; }
.pro-hero-winza__badge--c { top: 42%; right: -5%; animation-delay: .8s; }
@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@media (max-width: 980px) {
  .pro-hero-winza__badge--a { top: 0; left: 0; }
  .pro-hero-winza__badge--b { bottom: 0; right: 0; }
  .pro-hero-winza__badge--c { display: none; }
}

/* ============================================================
   CSS-ONLY CASINO HERO SCENE
   Slot machine + crown + chips + coins + dice + glow
   Replaces the hero-image with pure CSS art.
   ============================================================ */

.css-scene {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  perspective: 1100px;
  z-index: 0;
}

/* Central glowing orb behind the scene */
.css-scene::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 78%; aspect-ratio: 1/1;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 200, 100, 0.55), transparent 60%),
    radial-gradient(circle at center, var(--amber) 0%, var(--amber-2) 45%, transparent 75%);
  border-radius: 50%;
  filter: blur(10px);
  z-index: 0;
  animation: scene-orb 8s ease-in-out infinite alternate;
}
@keyframes scene-orb {
  0%   { transform: translate(-50%, -50%) scale(1) rotate(0deg); opacity: .85; }
  100% { transform: translate(-50%, -50%) scale(1.08) rotate(8deg); opacity: 1; }
}

/* Concentric ring (roulette feel) */
.css-scene::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 88%; aspect-ratio: 1/1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px dashed rgba(255, 215, 0, 0.35);
  z-index: 1;
  animation: scene-ring 60s linear infinite;
}
@keyframes scene-ring { from { transform: translate(-50%, -50%) rotate(0); } to { transform: translate(-50%, -50%) rotate(360deg); } }

/* Slot machine — central element */
.cs-slot {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%) rotateX(8deg);
  width: 56%; aspect-ratio: 5 / 4;
  background: linear-gradient(180deg, #1a1f3a, #0a0e1f);
  border-radius: 22px;
  border: 4px solid #2a2f50;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.7),
    inset 0 0 0 2px rgba(255, 215, 0, 0.4),
    inset 0 -10px 30px rgba(0, 0, 0, 0.6);
  padding: 14% 8% 14%;
  z-index: 5;
  animation: slot-float 6s ease-in-out infinite;
}
@keyframes slot-float {
  0%, 100% { transform: translate(-50%, -50%) rotateX(8deg) translateY(0); }
  50%      { transform: translate(-50%, -52%) rotateX(8deg) translateY(-6px); }
}
.cs-slot__top {
  position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  width: 60%; height: 28px;
  background: linear-gradient(180deg, var(--gold), #b8860b);
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -4px 14px rgba(255, 215, 0, 0.4);
}
.cs-slot__top::before {
  content: "JACKPOT";
  position: absolute; left: 0; right: 0; top: 50%;
  transform: translateY(-50%);
  text-align: center; font-family: 'Space Grotesk', sans-serif; font-weight: 900;
  font-size: 0.78rem; letter-spacing: 3px; color: #1a1a1a;
}
.cs-slot__reels {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 6%;
  height: 100%;
  position: relative; z-index: 1;
}
.cs-reel {
  background: linear-gradient(180deg, #f4f4f4, #d0d0d0);
  border-radius: 8px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 900;
  font-size: clamp(1.6rem, 4.2vw, 2.6rem);
  color: var(--amber-2);
  box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.3);
  position: relative; overflow: hidden;
}
.cs-reel::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
}
.cs-reel--a { animation: reel-spin-a 3s ease-out forwards; }
.cs-reel--b { animation: reel-spin-b 3.6s ease-out forwards; }
.cs-reel--c { animation: reel-spin-c 4.2s ease-out forwards; }
@keyframes reel-spin-a {
  0%   { background-position-y: 0; transform: translateY(-50%); opacity: .6; }
  100% { background-position-y: 200px; transform: translateY(0); opacity: 1; }
}
@keyframes reel-spin-b {
  0%   { transform: translateY(-30%); opacity: .6; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes reel-spin-c {
  0%   { transform: translateY(-40%); opacity: .6; }
  100% { transform: translateY(0); opacity: 1; }
}
.cs-slot__lever {
  position: absolute;
  right: -14px; top: 30%;
  width: 14px; height: 60%;
  background: linear-gradient(90deg, #555, #333);
  border-radius: 0 7px 7px 0;
}
.cs-slot__lever::before {
  content: ""; position: absolute; top: -10px; left: -2px;
  width: 18px; height: 18px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ff5050, #b50000);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

/* Crown floating above the slot */
.cs-crown {
  position: absolute; left: 50%; top: 5%;
  transform: translateX(-50%);
  width: 90px; height: 70px;
  z-index: 6;
  animation: crown-float 5s ease-in-out infinite;
  filter: drop-shadow(0 8px 20px rgba(255, 215, 0, 0.6));
}
@keyframes crown-float {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(-3deg); }
  50%      { transform: translateX(-50%) translateY(-8px) rotate(3deg); }
}
.cs-crown svg { width: 100%; height: 100%; }

/* Poker chip — reusable */
.cs-chip {
  position: absolute;
  width: 64px; height: 64px;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg, var(--ink) 0deg 30deg, var(--amber) 30deg 60deg);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.6),
    inset 0 0 0 8px rgba(0, 0, 0, 0.85),
    inset 0 0 0 14px var(--amber),
    inset 0 0 0 16px rgba(255, 255, 255, 0.6),
    inset 0 -6px 12px rgba(0, 0, 0, 0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 900;
  color: #fff; font-size: 1rem;
  z-index: 4;
}
.cs-chip::before {
  content: "৳";
  font-size: 1.4rem; color: var(--gold);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}
.cs-chip--a { top: 8%; right: 4%;  animation: chip-a 7s ease-in-out infinite; }
.cs-chip--b { bottom: 14%; left: 0%; width: 56px; height: 56px; animation: chip-b 8s ease-in-out infinite; }
.cs-chip--c { top: 50%; left: -2%; width: 56px; height: 56px; animation: chip-c 6s ease-in-out infinite; opacity: .85; }
@keyframes chip-a {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-22px) rotate(20deg); }
}
@keyframes chip-b {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-18px) rotate(-25deg); }
}
@keyframes chip-c {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-10px) rotate(15deg); }
}

/* Coin stack */
.cs-coins {
  position: absolute;
  bottom: 6%; right: 6%;
  width: 90px; height: 90px;
  z-index: 4;
  animation: coins-float 6s ease-in-out infinite;
}
@keyframes coins-float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-12px) rotate(-8deg); }
}
.cs-coin {
  position: absolute;
  width: 60px; height: 60px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #fff5b0, #ffd700 30%, #b8860b 100%);
  border: 2px solid rgba(0, 0, 0, 0.4);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.5);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 900;
  color: #5a3500; font-size: .95rem;
}
.cs-coin::before { content: "$"; }
.cs-coin--a { left: 18px; bottom: 0; transform: rotate(-8deg); }
.cs-coin--b { left: 0;    bottom: 18px; transform: rotate(8deg); }
.cs-coin--c { left: 30px; bottom: 32px; transform: rotate(-3deg); width: 54px; height: 54px; }

/* Dice */
.cs-dice {
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 12px;
  background: linear-gradient(145deg, #ffffff, #d0d0d0);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.55),
    inset 0 -6px 14px rgba(0, 0, 0, 0.18),
    inset 0 4px 10px rgba(255, 255, 255, 0.7);
  z-index: 3;
}
.cs-dice::before, .cs-dice::after {
  content: ""; position: absolute;
  width: 10px; height: 10px; border-radius: 50%; background: #1a1a1a;
}
.cs-dice--a { top: 10%; left: 8%; transform: rotate(-12deg); animation: dice-a 7s ease-in-out infinite; }
.cs-dice--a::before { top: 22%; left: 22%; }
.cs-dice--a::after  { bottom: 22%; right: 22%; }
.cs-dice--b { bottom: 6%; right: 38%; transform: rotate(15deg); animation: dice-b 8s ease-in-out infinite; width: 46px; height: 46px; }
.cs-dice--b::before { top: 50%; left: 50%; transform: translate(-50%,-50%); width: 9px; height: 9px; }
.cs-dice--b::after  { display: none; }
@keyframes dice-a {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50%      { transform: rotate(-22deg) translateY(-14px); }
}
@keyframes dice-b {
  0%, 100% { transform: rotate(15deg) translateY(0); }
  50%      { transform: rotate(28deg) translateY(-12px); }
}

/* Sparkles for extra polish */
.cs-spark {
  position: absolute;
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 12px #fff, 0 0 24px var(--gold);
  z-index: 6;
  animation: spark 2.5s ease-in-out infinite;
}
.cs-spark--1 { top: 18%; right: 22%; animation-delay: 0s; }
.cs-spark--2 { bottom: 25%; left: 30%; animation-delay: .8s; }
.cs-spark--3 { top: 55%; right: 14%; animation-delay: 1.5s; width: 4px; height: 4px; }
@keyframes spark {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50%      { opacity: 1; transform: scale(1.4); }
}

/* Hide the floating badges that were on the <img> when scene is used */
.pro-hero-winza__image-wrap.has-css-scene .pro-hero-winza__badge { z-index: 7; }

/* ============================================================
   PREMIUM IMAGE-LED SECTIONS (notout 1–5 specials)
   Cinematic, full-bleed, dark gradient overlays
   ============================================================ */

/* ----------- A. LICENSED & AUDITED (split: image left, license cards right) ----------- */
.spec-licensed {
  background: var(--bg-2);
  padding: 3.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@keyframes spec-zoom { from { transform: scale(1); } to { transform: scale(1.02); } }
.spec-licensed__inner {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 3rem; align-items: center;
}
@media (max-width: 900px) { .spec-licensed__inner { grid-template-columns: 1fr; gap: 2rem; } }
.spec-licensed__photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px var(--line);
}
.spec-licensed__photo img {
  display: block;
  width: 100%; height: auto;
  transition: transform .6s ease;
}
.spec-licensed__photo:hover img { transform: scale(1.02); }
.spec-licensed__photo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 70%, rgba(10,14,31,0.4) 100%);
}

.spec-licensed h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem) !important;
  margin: 1rem 0 1.5rem !important;
}
.spec-licensed .spec-license-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  margin-top: 1.5rem;
}
.spec-license-card {
  background: rgba(20, 26, 56, 0.65);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px; padding: 1.25rem;
  display: flex; gap: .85rem; align-items: center;
}
.spec-license-card i {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--grad-amber); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: .95rem;
}
.spec-license-card strong { color: #fff; display: block; font-family: 'Space Grotesk', sans-serif; }
.spec-license-card small { color: var(--ink-3); font-size: .78rem; }

/* ----------- B. VIP LOUNGE — bento grid v5 ----------- */
.spec-lounge-v5 {
  background:
    radial-gradient(900px 500px at 100% 0%, rgba(255,215,0,0.05), transparent 60%),
    var(--bg);
  padding: 4rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.spec-lounge-v5__inner {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
}

/* Section heading — small intro above the bento */
.spec-lounge-v5__intro {
  display: flex; align-items: end; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.spec-lounge-v5__intro h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem) !important;
  margin: 0 !important;
  color: #fff !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
}
.spec-lounge-v5__intro h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--amber)) !important;
  -webkit-background-clip: text !important; background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.spec-lounge-v5__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--gold);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: .68rem; letter-spacing: 2.5px;
  text-transform: uppercase;
}
.spec-lounge-v5__eyebrow::before { content: "♔"; font-size: .9rem; }

.spec-lounge-v5__intro-right {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .72rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex; align-items: center; gap: .55rem;
}
.spec-lounge-v5__intro-right .live-dot {
  width: 7px; height: 7px; background: #ff3b3b; border-radius: 50%;
  animation: lounge-pulse 1.4s infinite;
}

/* Bento grid */
.spec-lounge-v5__bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 12px;
}
@media (max-width: 900px) { .spec-lounge-v5__bento { grid-template-columns: repeat(6, 1fr); } }
@media (max-width: 600px) { .spec-lounge-v5__bento { grid-template-columns: 1fr; } }

.bento-tile {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.bento-tile:hover { border-color: rgba(255,215,0,0.4); transform: translateY(-3px); }

/* IMAGE tile — biggest, spans 7 cols x 2 rows */
.bento-tile--image {
  grid-column: span 7;
  grid-row: span 2;
  padding: 0;
  background: var(--bg-3);
  min-height: 380px;
  position: relative;
}
@media (max-width: 900px) { .bento-tile--image { grid-column: span 6; grid-row: span 1; min-height: 280px; } }
@media (max-width: 600px) { .bento-tile--image { grid-column: span 1; min-height: 240px; } }
.bento-tile--image img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 1s ease;
}
.bento-tile--image:hover img { transform: scale(1.04); }
.bento-tile--image .bento-img-cap {
  position: absolute; bottom: 1rem; left: 1rem; z-index: 2;
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  padding: .45rem .85rem;
  border-radius: 999px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .7rem; letter-spacing: 1.5px; text-transform: uppercase;
}
.bento-tile--image .bento-img-cap i { color: var(--gold); }

/* BIG STAT tile — 5 cols x 1 row, top-right */
.bento-tile--stat-big {
  grid-column: span 5;
  grid-row: span 1;
  background: linear-gradient(135deg, rgba(255,215,0,0.12), rgba(255,138,0,0.04));
  border: 1px solid rgba(255,215,0,0.3);
  display: flex; flex-direction: column; justify-content: center;
}
@media (max-width: 900px) { .bento-tile--stat-big { grid-column: span 6; } }
@media (max-width: 600px) { .bento-tile--stat-big { grid-column: span 1; } }
.bento-tile--stat-big .num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 3.5rem;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1; margin-bottom: .35rem;
}
.bento-tile--stat-big .lbl {
  color: var(--ink-2); font-family: 'Space Grotesk', sans-serif;
  font-size: .85rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
}
.bento-tile--stat-big .sub {
  color: var(--ink-3); font-size: .82rem; margin-top: .5rem;
}

/* FEATURE tile — 5 cols x 1 row */
.bento-tile--feature {
  grid-column: span 5;
  grid-row: span 1;
}
@media (max-width: 900px) { .bento-tile--feature { grid-column: span 6; } }
@media (max-width: 600px) { .bento-tile--feature { grid-column: span 1; } }
.bento-tile--feature h4 {
  font-size: 1rem !important;
  margin: 0 0 .5rem !important;
  color: #fff !important;
  font-weight: 600 !important;
}
.bento-tile--feature p { color: var(--ink-2); font-size: .88rem; margin: 0; line-height: 1.55; }
.bento-tile--feature i {
  color: var(--gold); font-size: 1.25rem;
  margin-bottom: .65rem; display: block;
}

/* CTA tile — full row 3 (12 cols) */
.bento-tile--cta {
  grid-column: span 12;
  background: linear-gradient(135deg, rgba(255,138,0,0.12), rgba(255,90,0,0.04));
  border: 1px solid rgba(255,138,0,0.35);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  padding: 1.5rem 2rem;
}
@media (max-width: 900px) { .bento-tile--cta { grid-column: span 6; } }
@media (max-width: 600px) { .bento-tile--cta { grid-column: span 1; flex-direction: column; text-align: center; } }
.bento-tile--cta .copy strong {
  display: block; color: #fff; font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 1.05rem; margin-bottom: .15rem;
}
.bento-tile--cta .copy span { color: var(--ink-2); font-size: .85rem; }

/* Mini stats row — 4 cols each at 3 cols */
.bento-tile--mini {
  grid-column: span 3;
  display: flex; flex-direction: column; justify-content: center;
  text-align: left;
  padding: 1.25rem 1.5rem;
}
@media (max-width: 900px) { .bento-tile--mini { grid-column: span 3; } }
/* On mobile: 2 mini stats per row (not full width) */
@media (max-width: 600px) {
  .spec-lounge-v5__bento { grid-template-columns: repeat(2, 1fr); gap: .55rem; }
  .bento-tile--mini { grid-column: span 1 !important; }
  .bento-tile--image, .bento-tile--stat-big, .bento-tile--feature, .bento-tile--cta {
    grid-column: span 2 !important;
  }
  .bento-tile--image { grid-row: span 1 !important; min-height: 220px; }
}
.bento-tile--mini .num {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.5rem;
  color: var(--gold); display: block; line-height: 1;
}
.bento-tile--mini .lbl {
  color: var(--ink-3); font-size: .72rem; letter-spacing: 1.2px; text-transform: uppercase;
  margin-top: .4rem; display: block;
}

/* ----------- B. VIP LOUNGE — editorial magazine spread (legacy v4) ----------- */
.spec-lounge {
  background:
    linear-gradient(180deg, #07091a 0%, #0a0e1f 100%);
  padding: 5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
/* Faint editorial paper grain */
.spec-lounge::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .06;
  background-image:
    radial-gradient(rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 3px 3px;
}

.spec-lounge__inner {
  max-width: 1180px; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 3.5rem; align-items: stretch;
  position: relative;
}
@media (max-width: 900px) { .spec-lounge__inner { grid-template-columns: 1fr; gap: 2rem; } }

/* Tall portrait image (left) */
.spec-lounge__photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-2);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.spec-lounge__photo img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 1s ease;
}
.spec-lounge__photo:hover img { transform: scale(1.04); }
.spec-lounge__photo::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}
/* Image footer caption strip (like magazine photo credit) */
.spec-lounge__photo-cap {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 1rem 1.25rem;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .68rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.spec-lounge__photo-cap .live { color: var(--gold); display: inline-flex; align-items: center; gap: .4rem; }
.spec-lounge__photo-cap .live::before {
  content: ""; width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,215,0,0.6);
  animation: lounge-pulse 1.4s infinite;
}
@keyframes lounge-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,215,0,0.6); }
  50%     { box-shadow: 0 0 0 8px rgba(255,215,0,0); }
}
.spec-lounge__photo-cap .credit { color: rgba(255,255,255,0.6); }

/* Editorial column (right) */
.spec-lounge__editorial {
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 0;
}

/* Top issue header */
.spec-lounge__masthead {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gold);
  font-family: 'Space Grotesk', sans-serif;
  font-size: .68rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
}
.spec-lounge__masthead .right { color: var(--ink-3); }

/* Big editorial headline */
.spec-lounge h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem) !important;
  margin: 1.5rem 0 1.25rem !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;
  letter-spacing: -0.025em !important;
  color: #fff !important;
}
.spec-lounge h2 em {
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* Lead paragraph with gold drop cap */
.spec-lounge__lead {
  color: var(--ink-2); font-size: .98rem; line-height: 1.7;
  margin: 0 0 1.75rem;
  max-width: none;
}
.spec-lounge__lead::first-letter {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 0.9;
  float: left;
  margin: .15rem .75rem 0 0;
  color: var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--amber));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* Numbered feature list */
.spec-lounge__features {
  list-style: none; padding: 0; margin: 0 0 2rem;
  display: grid; gap: 1rem;
}
.spec-lounge__feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.spec-lounge__feature:last-child { border-bottom: 1px solid var(--line); }
.spec-lounge__feature-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  font-feature-settings: "tnum";
}
.spec-lounge__feature-body strong {
  display: block;
  color: #fff; font-weight: 600; font-size: 1rem;
  margin-bottom: .15rem;
  font-family: 'Space Grotesk', sans-serif;
}
.spec-lounge__feature-body span {
  color: var(--ink-2); font-size: .85rem; line-height: 1.55;
}

/* Footer — CTA + signature */
.spec-lounge__foot {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.spec-lounge__signature {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .72rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex; align-items: center; gap: .5rem;
}
.spec-lounge__signature i { color: var(--gold); }
.spec-lounge h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem) !important;
  margin: 1rem 0 1.25rem !important;
  letter-spacing: -0.02em !important;
}
.spec-lounge p { color: var(--ink-2); font-size: .98rem; max-width: 600px; margin: 0 auto 2rem; }
.spec-lounge .spec-lounge__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin: 2.5rem auto 2rem; max-width: 640px;
}
.spec-lounge__stat {
  background: rgba(20, 26, 56, 0.55);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 14px; padding: 1.25rem 1rem;
}
.spec-lounge__stat .num { font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 1.8rem; background: linear-gradient(135deg, var(--gold), var(--amber)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.spec-lounge__stat .lbl { color: var(--ink-3); font-size: .75rem; letter-spacing: 1px; text-transform: uppercase; }

/* ----------- C. REAL PLAYERS testimonial (notout 3) ----------- */
.spec-real {
  background: var(--bg-2);
  padding: 5rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.spec-real__inner {
  max-width: 1320px; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 0.8fr 1fr; gap: 3rem; align-items: center;
}
@media (max-width: 900px) { .spec-real__inner { grid-template-columns: 1fr; } }
.spec-real__photo {
  position: relative; aspect-ratio: 5/6; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--line-2);
}
.spec-real__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.spec-real__photo:hover img { transform: scale(1.04); }
.spec-real__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,14,31,0.85) 100%);
}
.spec-real__photo .spec-real__badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; z-index: 2;
  background: rgba(20, 26, 56, 0.7); backdrop-filter: blur(16px);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 12px; padding: 1rem;
  display: flex; gap: .8rem; align-items: center;
}
.spec-real__badge .pulse { width: 12px; height: 12px; background: var(--green); border-radius: 50%; animation: pulse-g 1.4s infinite; flex-shrink: 0; }
.spec-real__badge strong { color: #fff; display: block; font-size: .95rem; }
.spec-real__badge small { color: var(--ink-3); font-size: .78rem; }
.spec-real h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem) !important; }
.spec-real blockquote {
  font-size: 1rem; line-height: 1.6; color: var(--ink) !important;
  border-left: 4px solid var(--amber); padding: .5rem 0 .5rem 1.5rem;
  margin: 1.5rem 0; font-style: italic;
  background: none !important;
  -webkit-text-fill-color: var(--ink) !important;
}
.spec-real blockquote::before, .spec-real blockquote::after { display: none; }
.spec-real__author { display: flex; gap: 1rem; align-items: center; margin-top: 1.5rem; }
.spec-real__author .avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--grad-amber); color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 800;
}
.spec-real__author strong { color: #fff; display: block; }
.spec-real__author small { color: var(--ink-3); }

/* ----------- D. WINNER — bento grid v6 (social proof + urgency) ----------- */
.spec-winner-v6 {
  background:
    radial-gradient(900px 500px at 0% 100%, rgba(255,138,0,0.06), transparent 60%),
    var(--bg-2);
  padding: 4rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.spec-winner-v6__inner {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
}

/* Intro bar */
.spec-winner-v6__intro {
  display: flex; align-items: end; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.spec-winner-v6__intro h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem) !important;
  margin: 0 !important;
  color: #fff !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
}
.spec-winner-v6__intro h2 em {
  font-style: normal;
  background: var(--grad-amber) !important;
  -webkit-background-clip: text !important; background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.spec-winner-v6__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--amber);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: .68rem; letter-spacing: 2.5px;
  text-transform: uppercase;
}
.spec-winner-v6__eyebrow i { font-size: .85rem; }
.spec-winner-v6__intro-right {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .72rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex; align-items: center; gap: .55rem;
}
.spec-winner-v6__intro-right .live-dot {
  width: 7px; height: 7px; background: #22c55e; border-radius: 50%;
  animation: lounge-pulse 1.4s infinite;
}

/* Bento grid */
.spec-winner-v6__bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(110px, auto);
  gap: 12px;
}
@media (max-width: 900px) { .spec-winner-v6__bento { grid-template-columns: repeat(6, 1fr); } }
@media (max-width: 600px) { .spec-winner-v6__bento { grid-template-columns: 1fr; } }

/* COUNTER tile — big "47 wins" cell, 4 cols x 1 row */
.bento-tile--win-counter {
  grid-column: span 4;
  background: linear-gradient(135deg, rgba(255,138,0,0.18), rgba(255,90,0,0.05));
  border: 1px solid rgba(255,138,0,0.4);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
@media (max-width: 900px) { .bento-tile--win-counter { grid-column: span 6; } }
@media (max-width: 600px) { .bento-tile--win-counter { grid-column: span 1; } }
.bento-tile--win-counter::after {
  content: ""; position: absolute; top: 0; right: 0; width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(255,138,0,0.4), transparent 70%);
  border-radius: 50%; transform: translate(30%, -30%);
}
.bento-tile--win-counter .num {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 3.5rem;
  background: var(--grad-amber);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1; position: relative; z-index: 1;
}
.bento-tile--win-counter .lbl {
  color: #fff; font-family: 'Space Grotesk', sans-serif;
  font-size: .85rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  margin-top: .25rem;
}
.bento-tile--win-counter .sub {
  color: var(--ink-2); font-size: .82rem; margin-top: .55rem;
}

/* IMAGE tile — 8 cols x 2 rows */
.bento-tile--win-image {
  grid-column: span 8;
  grid-row: span 2;
  padding: 0;
  background: var(--bg-3);
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
@media (max-width: 900px) { .bento-tile--win-image { grid-column: span 6; grid-row: span 1; min-height: 240px; } }
@media (max-width: 600px) { .bento-tile--win-image { grid-column: span 1; min-height: 220px; } }
.bento-tile--win-image img {
  display: block; width: 100%; height: 100%;
  object-fit: cover; object-position: 75% center;
  transition: transform 1s ease;
}
.bento-tile--win-image:hover img { transform: scale(1.04); }
.bento-tile--win-image::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.6) 100%);
}
.bento-tile--win-image .img-cap {
  position: absolute; bottom: 1rem; left: 1rem; z-index: 2;
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(10px);
  padding: .5rem 1rem; border-radius: 999px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .72rem; letter-spacing: 1.5px; text-transform: uppercase;
}
.bento-tile--win-image .img-cap i { color: var(--amber); }

/* HEADLINE tile — 4 cols x 1 row */
.bento-tile--win-headline {
  grid-column: span 4;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: center;
}
@media (max-width: 900px) { .bento-tile--win-headline { grid-column: span 6; } }
@media (max-width: 600px) { .bento-tile--win-headline { grid-column: span 1; } }
.bento-tile--win-headline h3 {
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
  color: #fff !important;
  margin: 0 !important;
}
.bento-tile--win-headline h3 em {
  font-style: normal;
  background: var(--grad-amber) !important;
  -webkit-background-clip: text !important; background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.bento-tile--win-headline p { color: var(--ink-2); font-size: .85rem; margin: .65rem 0 0; line-height: 1.55; }

/* MINI STAT tiles — 3 cols each */
.bento-tile--win-mini {
  grid-column: span 4;
  display: flex; flex-direction: column; justify-content: center;
}
@media (max-width: 900px) { .bento-tile--win-mini { grid-column: span 3; } }
@media (max-width: 600px) { .bento-tile--win-mini { grid-column: span 1; } }
.bento-tile--win-mini i {
  font-size: 1.1rem; color: var(--amber);
  margin-bottom: .55rem; display: block;
}
.bento-tile--win-mini .num {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.5rem;
  color: #fff; display: block; line-height: 1;
}
.bento-tile--win-mini .lbl {
  color: var(--ink-3); font-size: .72rem; letter-spacing: 1.2px; text-transform: uppercase;
  margin-top: .35rem; display: block;
}

/* RECENT WINS FEED — 8 cols, vertical list of recent wins */
.bento-tile--win-feed {
  grid-column: span 8;
  padding: 1.25rem 1.5rem;
}
@media (max-width: 900px) { .bento-tile--win-feed { grid-column: span 6; } }
@media (max-width: 600px) { .bento-tile--win-feed { grid-column: span 1; } }
.bento-tile--win-feed h5 {
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .72rem !important; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--amber); margin: 0 0 .85rem;
}
.bento-tile--win-feed h5 .live { color: #22c55e; display: inline-flex; align-items: center; gap: .35rem; }
.bento-tile--win-feed h5 .live::before {
  content: ""; width: 6px; height: 6px; background: #22c55e; border-radius: 50%;
  animation: lounge-pulse 1.4s infinite;
}
.win-feed__list { display: grid; gap: .45rem; }
.win-feed__row {
  display: grid; grid-template-columns: auto 1fr auto auto; gap: .85rem;
  padding: .55rem .8rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  align-items: center;
  font-size: .82rem;
}
.win-feed__row .av {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--grad-amber); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: .7rem;
}
.win-feed__row .name { color: #fff; font-weight: 500; }
.win-feed__row .game { color: var(--ink-3); font-size: .76rem; }
.win-feed__row .amt {
  color: #22c55e; font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: .9rem; white-space: nowrap;
}
.win-feed__row .ago { color: var(--ink-3); font-size: .72rem; white-space: nowrap; }

/* CTA tile — 4 cols */
.bento-tile--win-cta {
  grid-column: span 4;
  background:
    linear-gradient(135deg, rgba(255,138,0,0.22), rgba(255,90,0,0.08));
  border: 1px solid rgba(255,138,0,0.4);
  display: flex; flex-direction: column; justify-content: center;
  text-align: left;
}
@media (max-width: 900px) { .bento-tile--win-cta { grid-column: span 6; } }
@media (max-width: 600px) { .bento-tile--win-cta { grid-column: span 1; } }
.bento-tile--win-cta strong {
  display: block; color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 1.15rem; margin-bottom: .35rem;
  line-height: 1.2;
}
.bento-tile--win-cta span { color: var(--ink-2); font-size: .85rem; margin-bottom: 1.1rem; display: block; }
.bento-tile--win-cta .pro-btn { width: 100%; justify-content: center; }

/* ----------- D. WINNER (split: content left, image right at natural aspect) — legacy ----------- */
.spec-winner {
  background: var(--bg-2);
  padding: 3.5rem 0;
  border-top: 1px solid var(--line);
}
.spec-winner__inner {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: center;
}
@media (max-width: 900px) { .spec-winner__inner { grid-template-columns: 1fr; gap: 2rem; } }
.spec-winner__photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 0 1px var(--line);
}
.spec-winner__photo img {
  display: block;
  width: 100%; height: auto;
  transition: transform .6s ease;
}
.spec-winner__photo:hover img { transform: scale(1.02); }
.spec-winner__photo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(10,14,31,0.45) 0%, transparent 35%);
}
.spec-winner__pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255, 138, 0, 0.18); color: var(--amber);
  border: 1px solid rgba(255, 138, 0, 0.5);
  padding: .55rem 1.1rem; border-radius: 999px;
  font-weight: 800; font-size: .82rem; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.spec-winner h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem) !important;
  margin: 0 0 1.5rem !important;
  letter-spacing: -0.02em !important;
}
.spec-winner h2 em {
  font-style: normal;
  background: var(--grad-amber) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.spec-winner p { color: var(--ink-2); font-size: .98rem; max-width: 480px; margin-bottom: 2rem; }

/* ----------- E. VIP MANAGER (notout 5) ----------- */
.spec-vip {
  background: linear-gradient(180deg, var(--bg) 0%, #0d122a 100%);
  padding: 5rem 0;
  position: relative; overflow: hidden;
}
.spec-vip::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: .4;
  background:
    radial-gradient(800px 600px at 80% 30%, rgba(34, 197, 94, 0.12), transparent 60%),
    radial-gradient(700px 500px at 20% 70%, rgba(255, 138, 0, 0.10), transparent 60%);
}
.spec-vip__inner {
  max-width: 1320px; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1fr 0.8fr; gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
@media (max-width: 900px) {
  .spec-vip__inner { grid-template-columns: 1fr; }
  .spec-vip__photo { order: -1; }
}
.spec-vip h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem) !important; }
.spec-vip__perks {
  display: grid; gap: 1rem; margin: 2rem 0;
}
.spec-vip__perk {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 1.25rem;
  background: rgba(20, 26, 56, 0.45);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: all .25s;
}
.spec-vip__perk:hover { border-color: var(--amber); transform: translateX(4px); }
.spec-vip__perk i {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.18), rgba(255, 90, 0, 0.10));
  border: 1px solid rgba(255, 138, 0, 0.3);
  color: var(--amber);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.spec-vip__perk strong { color: #fff; display: block; margin-bottom: .15rem; }
.spec-vip__perk span { color: var(--ink-2); font-size: .9rem; }

.spec-vip__photo {
  position: relative; aspect-ratio: 5/6; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 215, 0, 0.2);
}
.spec-vip__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s;
}
.spec-vip__photo:hover img { transform: scale(1.04); }
.spec-vip__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,14,31,0.6) 100%);
}
.spec-vip__photo-tag {
  position: absolute; top: 1.5rem; left: 1.5rem; z-index: 2;
  background: rgba(255, 215, 0, 0.95); color: #1a1a1a;
  padding: .45rem .9rem; border-radius: 999px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 800; letter-spacing: 1.5px;
  font-size: .75rem; text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

/* ============================================================
   ABOUT US PAGE
   ============================================================ */
.about-page .pro-section { padding: 4rem 0; }

/* Hero */
.about-hero { padding: 5rem 0 4rem !important; text-align: center; }
.about-hero__inner { max-width: 880px; margin: 0 auto; }
.about-hero__lead { max-width: 680px; margin: 1.25rem auto 2rem; font-size: 1.1rem; color: var(--ink-2); }
.about-hero__metrics {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  max-width: 920px; margin: 2.5rem auto 0;
}
@media (max-width: 720px) { .about-hero__metrics { grid-template-columns: 1fr 1fr; } }

.about-metric {
  position: relative; isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255,138,0,0.06) 0%, transparent 40%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.5rem 1rem 1.25rem;
  display: flex; flex-direction: column; align-items: flex-start;
  text-align: left;
  transition: transform .25s cubic-bezier(.2,.9,.3,1), border-color .25s, box-shadow .25s;
  overflow: hidden;
}
.about-metric::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0; transition: opacity .25s;
}
.about-metric:hover {
  transform: translateY(-3px);
  border-color: rgba(255,138,0,0.4);
  box-shadow: 0 12px 28px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,138,0,0.12);
}
.about-metric:hover::before { opacity: 1; }

.about-metric .num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  background: var(--grad-amber);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1; letter-spacing: -.02em;
}
.about-metric .lbl {
  color: var(--ink-3);
  font-family: 'Space Grotesk', sans-serif;
  font-size: .72rem; letter-spacing: 1.2px;
  text-transform: uppercase; font-weight: 600;
  margin-top: .55rem;
}

/* Story split */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
@media (max-width: 900px) { .about-split { grid-template-columns: 1fr; gap: 2rem; } }
.about-split__image {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  border: 1px solid var(--line);
  /* Lock image-frame aspect ratio so the box hugs the image perfectly */
  aspect-ratio: 16 / 10;
  background: var(--bg-2);
  align-self: center;
  width: 100%;
  /* Reset any inherited line-height that adds phantom space below inline images */
  line-height: 0;
  font-size: 0;
}
.about-split__image img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .8s ease;
}
.about-split__image:hover img { transform: scale(1.04); }
.about-split__image::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4));
  z-index: 1;
}
.about-split__badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,138,0,0.3);
  padding: .45rem .85rem; border-radius: 999px;
  color: var(--amber);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: .72rem; letter-spacing: 1.5px;
  text-transform: uppercase;
}
.about-split__copy h2 { font-size: clamp(1.6rem, 3vw, 2.4rem) !important; margin: .5rem 0 1rem !important; }
.about-split__copy p { color: var(--ink-2); font-size: .98rem; line-height: 1.7; margin-bottom: 1rem; }

/* Timeline */
.about-timeline {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 2rem;
}
@media (max-width: 900px) { .about-timeline { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
@media (max-width: 600px) { .about-timeline { grid-template-columns: 1fr; } }

.about-timeline__line {
  position: absolute; top: 30px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,138,0,0.4), rgba(255,138,0,0.4), transparent);
  z-index: 0;
}
@media (max-width: 900px) { .about-timeline__line { display: none; } }

.about-tl-item {
  position: relative; z-index: 1;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 2.5rem 1.4rem 1.4rem;
  transition: transform .3s, border-color .3s;
}
.about-tl-item:hover { transform: translateY(-4px); border-color: rgba(255,138,0,0.4); }
.about-tl-item__dot {
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--grad-amber);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 0 var(--amber-glow);
  animation: tl-dot-pulse 2.5s ease-out infinite;
}
@keyframes tl-dot-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,138,0,0.55); }
  50%     { box-shadow: 0 0 0 12px rgba(255,138,0,0); }
}
.about-tl-item__year {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--amber);
  font-weight: 700; font-size: .68rem; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: .65rem;
  text-align: center;
}
.about-tl-item h4 { font-size: 1rem !important; margin-bottom: .4rem !important; color: #fff !important; text-align: center; }
.about-tl-item p { color: var(--ink-2); font-size: .82rem; line-height: 1.55; text-align: center; margin: 0; }

/* Stats bento */
.about-stats-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(110px, auto);
  gap: 12px;
}
@media (max-width: 900px) { .about-stats-bento { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .about-stats-bento { grid-template-columns: repeat(2, 1fr); } }

.about-stat-tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.5rem 1.25rem;
  display: flex; flex-direction: column; justify-content: center;
  transition: transform .25s, border-color .25s;
}
.about-stat-tile:hover { transform: translateY(-3px); border-color: rgba(255,138,0,0.35); }
.about-stat-tile .num {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.6rem;
  color: var(--amber); line-height: 1;
}
.about-stat-tile .lbl { color: var(--ink-3); font-size: .72rem; letter-spacing: 1.2px; text-transform: uppercase; margin-top: .45rem; }

.about-stat-tile--big {
  grid-column: span 3; grid-row: span 2;
  background: linear-gradient(135deg, rgba(255,138,0,0.15), rgba(255,90,0,0.04));
  border-color: rgba(255,138,0,0.35);
  padding: 2rem 1.75rem;
  position: relative; overflow: hidden;
}
@media (max-width: 600px) { .about-stat-tile--big { grid-column: span 2; grid-row: span 1; } }
.about-stat-tile--big::after {
  content: ""; position: absolute; top: -30%; right: -10%;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255,138,0,0.35), transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.about-stat-tile--big .big-num {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  background: var(--grad-amber);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1; display: block;
}
.about-stat-tile--big .big-lbl {
  display: block; color: #fff;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1rem;
  margin-top: .55rem;
}
.about-stat-tile--big .big-meta { display: block; color: var(--ink-3); font-size: .85rem; margin-top: .35rem; }

/* About — SEO coverage grid (Markets we cover) */
.seo-coverage-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.25rem !important;
}
@media (max-width: 900px) { .seo-coverage-grid { grid-template-columns: 1fr 1fr !important; } }
@media (max-width: 600px) { .seo-coverage-grid { grid-template-columns: 1fr !important; } }

/* Force visibility — GSAP scroll animation was leaving these stuck at opacity:0 */
.seo-coverage-grid .solid-card,
.about-page .pro-vs-card,
.about-page .pro-faq details {
  opacity: 1 !important;
  transform: none !important;
}

/* About — values: force 4-in-a-row (override .pro-showcase repeat(3)) */
.about-page .pro-showcase {
  grid-template-columns: repeat(4, 1fr) !important;
}
@media (max-width: 1100px) { .about-page .pro-showcase { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 600px)  { .about-page .pro-showcase { grid-template-columns: 1fr !important; } }

/* ============================================================
   ABOUT PAGE — full mobile responsive overrides
   ============================================================ */

/* SEO Block A — "Why Bangladeshi Bettors" 2-col grid (KSES strips display:grid from inline style) */
.about-page .pro-vs-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 1.25rem;
}
@media (max-width: 760px) {
  .about-page .pro-vs-grid { grid-template-columns: 1fr !important; }
}

/* Tablet & mobile breakpoints — tighten everything */
@media (max-width: 900px) {
  .about-page .pro-section { padding: 2.75rem 0; }
  .about-hero { padding: 3rem 0 2.5rem !important; }
  .about-hero__lead { font-size: 1rem; margin: 1rem auto 1.5rem; }
  .about-split { gap: 2rem; }
  .about-split__copy h2 { font-size: clamp(1.4rem, 4vw, 1.85rem) !important; }
  .about-tl-item { padding: 2.25rem 1.1rem 1.1rem; }
  .about-stat-tile { padding: 1.1rem .9rem; }
  .about-stat-tile .num { font-size: 1.4rem; }
  .about-stat-tile--big { padding: 1.5rem 1.25rem; }
}

@media (max-width: 600px) {
  .about-page { font-size: 95%; }
  .about-page .wrap { padding: 0 1rem; }
  .about-page .pro-section { padding: 2.25rem 0; }
  .about-page .pro-section__head { margin-bottom: 1.5rem; }
  .about-page .pro-section__head h2,
  .about-hero h1 { word-break: break-word; }

  .about-hero { padding: 2rem 0 2rem !important; }
  .about-hero h1 { font-size: clamp(2rem, 8vw, 2.6rem) !important; }
  .about-hero__lead { font-size: .92rem; margin: .85rem auto 1.25rem; }
  .about-hero__metrics { gap: .55rem; margin-top: 1.5rem; }
  .about-metric { padding: 1rem .75rem; }
  .about-metric .num { font-size: 1.4rem; }
  .about-metric .lbl { font-size: .65rem; margin-top: .35rem; }

  .about-split__image img { max-height: 280px; object-fit: cover; }
  .about-split__badge { font-size: .65rem; padding: .35rem .65rem; }

  .about-timeline { padding-top: 1rem; gap: .85rem; }
  .about-timeline__line { display: none; }
  .about-tl-item { padding: 2rem 1rem 1rem; }
  .about-tl-item__year { font-size: .65rem; }
  .about-tl-item h4 { font-size: .95rem !important; }
  .about-tl-item p { font-size: .8rem; }

  .about-stats-bento { gap: .55rem; }
  .about-stat-tile { padding: .9rem .85rem; }
  .about-stat-tile .num { font-size: 1.3rem; }
  .about-stat-tile .lbl { font-size: .65rem; }
  .about-stat-tile--big { padding: 1.4rem 1.1rem; }
  .about-stat-tile--big .big-num { font-size: 2.4rem; }
  .about-stat-tile--big .big-lbl { font-size: .92rem; }
  .about-stat-tile--big .big-meta { font-size: .78rem; }

  /* SEO coverage cards */
  .seo-coverage-grid { gap: .85rem; }
  .seo-coverage-grid .solid-card { padding: 1.25rem 1.1rem; }
  .seo-coverage-grid .solid-card h3 { font-size: 1rem; }
  .seo-coverage-grid .solid-card p { font-size: .85rem !important; }

  /* SEO why-Bangladesh cards */
  .about-page .pro-vs-card { padding: 1.1rem 1rem; }
  .about-page .pro-vs-card h3 { font-size: .95rem !important; }
  .about-page .pro-vs-card p { font-size: .82rem !important; }

  /* FAQ */
  .about-page .pro-faq details { padding: 1rem 1.1rem; margin-bottom: .55rem; }
  .about-page .pro-faq summary { font-size: .9rem; }
  .about-page .pro-faq p { font-size: .85rem !important; }

  /* Licenses */
  .about-licenses { gap: .65rem; }
  .spec-license-card { padding: .9rem; gap: .65rem; }
  .spec-license-card strong { font-size: .85rem; }
  .spec-license-card small { font-size: .72rem; }

  /* Final CTA */
  .about-page .pro-urgency { padding: 3rem 1rem; }
  .about-page .pro-urgency h2 { font-size: clamp(1.6rem, 6vw, 2.2rem) !important; }
  .about-page .pro-cta-row .pro-btn { font-size: .85rem; padding: .8rem 1.2rem; }
}

/* Very narrow phones — last-line defense */
@media (max-width: 380px) {
  .about-hero__metrics { grid-template-columns: 1fr 1fr; }
  .about-hero h1 { font-size: 1.85rem !important; }
  .about-page .pro-section h2 { font-size: 1.4rem !important; }
}

/* ============================================================
   HOME PAGE — full mobile responsive + centering
   ============================================================ */

@media (max-width: 900px) {
  .pro-home .pro-section { padding: 2.5rem 0; }
  .pro-home .wrap { padding: 0 1.25rem; }

  /* Hero (Winza) — stack + center */
  .pro-hero-winza { padding: 3rem 0 2rem !important; }
  .pro-hero-winza__grid { grid-template-columns: 1fr !important; gap: 2rem !important; text-align: center; }
  .pro-hero-winza__pill { display: inline-block; }
  .pro-hero-winza h1 { font-size: clamp(2rem, 7vw, 3rem) !important; text-align: center; }
  .pro-hero-winza .pro-btn { display: inline-flex; }
  .pro-hero-winza__trust { justify-content: center; max-width: none; margin-left: auto; margin-right: auto; }

  /* CSS scene smaller */
  .css-scene { max-width: 320px; }
}

@media (max-width: 720px) {
  .pro-home { font-size: 95%; }
  .pro-home .pro-section { padding: 2rem 0; }
  .pro-home .wrap { padding: 0 1rem; }

  /* All section heads centered */
  .pro-home .pro-section__head { text-align: center !important; align-items: center; }
  .pro-home .pro-section__head h2 { text-align: center !important; }
  .pro-home .pro-section__sub { text-align: center !important; }

  /* Hero centering */
  .pro-hero-winza { padding: 2.5rem 0 1.5rem !important; }
  .pro-hero-winza h1 { font-size: clamp(1.9rem, 8vw, 2.6rem) !important; line-height: 1.1 !important; }
  .pro-hero-winza .pro-btn { padding: .9rem 1.5rem; font-size: .9rem; }
  .pro-hero-winza__trust { gap: .75rem 1rem; padding-top: 1rem; margin-top: 1.25rem; }
  .pro-hero-winza__trust-item { font-size: .82rem; }
  .css-scene { max-width: 260px; }

  /* Quickbar marquee — keep going */
  .pro-quickbar a { font-size: .78rem; padding: .5rem .85rem; }

  /* Sport showcase — center */
  .pro-showcase { grid-template-columns: 1fr !important; gap: .85rem; }
  .pro-showcase__card { text-align: center; align-items: center; padding: 1.5rem 1.25rem; }
  .pro-showcase__icon { margin-left: auto; margin-right: auto; }
  .pro-showcase__cta { align-self: center; margin-left: auto; margin-right: auto; }

  /* Featured matches */
  .pro-matches { grid-template-columns: 1fr !important; }

  /* Comparison cards */
  .pro-vs-grid { grid-template-columns: 1fr !important; gap: .85rem; }
  .pro-vs-card { text-align: center; }
  .pro-vs-card__head { justify-content: center; }
  .pro-vs-card__us { justify-content: center; }
  .pro-vs-card__win { align-self: center; margin-left: auto; margin-right: auto; }
  .pro-vs-card__them { justify-content: space-between; }

  /* VIP tier ladder */
  .pro-ladder { grid-template-columns: 1fr !important; gap: 1rem; }
  .pro-tier { text-align: center; padding: 1.75rem 1.25rem 1.25rem; }
  .pro-tier__badge { margin-left: auto; margin-right: auto; }
  .pro-tier h3 { text-align: center; }
  .pro-tier__price { display: block; text-align: center; }
  .pro-tier ul { text-align: left; }
  .pro-tier--diamond { transform: none !important; }

  /* Live winners feed */
  .pro-winners-split { grid-template-columns: 1fr !important; gap: 1.5rem; }
  .pro-winners-split > div:first-child { text-align: center; }
  .pro-winners-split .pro-bullets { text-align: left; }
  .pro-winners-split .pro-btn { align-self: center; margin-left: auto; margin-right: auto; }

  /* Diamond VIP service section — mobile center */
  .spec-vip { padding: 2.5rem 0 !important; }
  .spec-vip__inner { grid-template-columns: 1fr !important; gap: 1.5rem !important; padding: 0 1rem; text-align: center; }
  .spec-vip__inner > div { text-align: center; }
  .spec-vip .pro-section__eyebrow { display: inline-block; margin: 0 auto 1rem; }
  .spec-vip h2 { text-align: center !important; font-size: clamp(1.5rem, 5vw, 2rem) !important; }
  .spec-vip__inner > div > p { text-align: center !important; max-width: 540px; margin: 0 auto 1.25rem !important; }
  .spec-vip__perks { gap: .65rem; max-width: 480px; margin: 0 auto 1.25rem; }
  .spec-vip__perk { padding: .85rem 1rem; flex-direction: row; text-align: left; gap: .85rem; }
  .spec-vip__perk strong { text-align: left; }
  .spec-vip__perk span { text-align: left; }
  .spec-vip__inner .pro-btn { display: inline-flex; align-self: center; margin: .5rem auto 0; }
  .spec-vip__photo { max-width: 380px; margin: 0 auto; }
  .spec-vip__photo-tag { left: 1rem; }

  /* Real-players testimonial — mobile fix */
  .spec-real { padding: 2.5rem 0 !important; }
  .spec-real__inner { grid-template-columns: 1fr !important; gap: 1.5rem; text-align: center; padding: 0 1rem; }
  .spec-real__inner > div { text-align: center; }
  .spec-real .pro-section__eyebrow { display: inline-block; margin: 0 auto .85rem; }
  .spec-real h2 { text-align: center !important; font-size: clamp(1.3rem, 5vw, 1.8rem) !important; line-height: 1.25 !important; }
  .spec-real blockquote {
    text-align: center !important;
    padding: 1.25rem 0 0 !important;
    margin: 1.25rem auto !important;
    max-width: 92%;
    border: none !important;
    border-top: 2px solid var(--amber) !important;
    font-size: .95rem !important;
    font-style: italic;
    line-height: 1.6;
  }
  .spec-real__author { justify-content: center; gap: .75rem; }
  .spec-real__author .avatar { flex-shrink: 0; }
  .spec-real__author > div { text-align: left; }
  .spec-real__inner .pro-btn { display: inline-flex; align-self: center; margin: 1rem auto 0; }

  /* Banking cards already responsive — center text */
  .pro-pay-grid { grid-template-columns: repeat(2, 1fr) !important; gap: .75rem; }
  .pro-pay-card__head { align-items: center; text-align: center; }

  /* Weekly bonus calendar */
  .pro-calendar { grid-template-columns: repeat(2, 1fr) !important; gap: .55rem; }
  .pro-day { padding: 1rem .85rem; }

  /* App section */
  .pro-app { grid-template-columns: 1fr !important; padding: 2rem 1.5rem; text-align: center; }
  .pro-app .pro-bullets { text-align: left; max-width: 360px; margin: 1rem auto; }
  .pro-app-store { justify-content: center; }
  .pro-app-trio { flex-direction: column; align-items: center; gap: 1.25rem; }
  .pro-phone-mockup {
    width: min(280px, 80vw);
    border-width: 7px;
  }
  .pro-phone-mockup__screen { padding: 1.1rem; gap: .55rem; }
  .pro-phone-row { padding: .65rem .85rem; font-size: .8rem; }
  .pro-phone-mockup--center, .pro-phone-mockup--left, .pro-phone-mockup--right { transform: none !important; }

  /* Strategy hub */
  .pro-tabs__nav { max-width: none; }
  .pro-strategy-grid { grid-template-columns: 1fr !important; }
  .pro-strategy-card { text-align: center; }
  .pro-strategy-card__icon { margin-left: auto; margin-right: auto; }

  /* Help center */
  .pro-help { grid-template-columns: 1fr !important; }
  .pro-help-card { text-align: center; }
  .pro-help-card__head { justify-content: center; }
  .pro-help-card ul { text-align: left; }
  .pro-help-card__cta { align-self: center; margin-left: auto; margin-right: auto; display: inline-flex; }
  .pro-help-concierge { grid-template-columns: 1fr; padding: 1.5rem 1.25rem; text-align: center; }
  .pro-help-concierge__copy strong, .pro-help-concierge__copy span { text-align: center; }
  .pro-help-concierge__actions { justify-content: center; }

  /* Spec/Lounge/Winner sections — centered text */
  .spec-licensed__inner { grid-template-columns: 1fr !important; gap: 1.5rem; text-align: center; }
  .spec-licensed__inner > div:last-child { text-align: center; }
  .spec-licensed__inner .pro-section__eyebrow { display: inline-block; }
  .spec-licensed__inner h2 { text-align: center; }
  .spec-licensed__inner p { text-align: center; }
  .spec-licensed__inner .pro-btn { align-self: center; margin-left: auto; margin-right: auto; display: inline-flex; }
  .spec-license-grid { grid-template-columns: 1fr; }
  .spec-license-card { text-align: center; flex-direction: column; gap: .55rem; }

  .spec-lounge__inner { grid-template-columns: 1fr !important; gap: 1.5rem; }
  .spec-lounge__photo { aspect-ratio: 4/5; }
  .spec-lounge__editorial { text-align: center; }
  .spec-lounge__masthead { justify-content: center; gap: .65rem; flex-wrap: wrap; text-align: center; }
  .spec-lounge h2 { text-align: center; }
  .spec-lounge__lead { text-align: center; }
  .spec-lounge__lead::first-letter { float: none; display: inline; margin: 0; font-size: 1.3em; vertical-align: baseline; }
  .spec-lounge__features { text-align: left; max-width: 380px; margin-left: auto; margin-right: auto; }
  .spec-lounge__feature { text-align: left; }
  .spec-lounge__foot { justify-content: center; }
  .spec-lounge__foot .pro-btn { display: inline-flex; }

  .spec-winner-v6__bento { grid-template-columns: 1fr !important; }
  .bento-tile--win-image { grid-column: span 1 !important; grid-row: span 1 !important; min-height: 220px; }
  .bento-tile--win-counter { grid-column: span 1 !important; text-align: center; align-items: center; }
  .bento-tile--win-headline { text-align: center; }
  .bento-tile--win-mini { grid-column: span 1 !important; text-align: center; align-items: center; }
  .bento-tile--win-mini i { margin-left: auto; margin-right: auto; }
  .bento-tile--win-feed { grid-column: span 1 !important; }
  .bento-tile--win-cta { grid-column: span 1 !important; text-align: center; }
  .spec-winner-v6__intro { text-align: center; flex-direction: column; }

  /* Final urgency CTA */
  .pro-urgency { padding: 3rem 1rem; text-align: center; }
  .pro-urgency h2 { font-size: clamp(1.7rem, 6vw, 2.4rem) !important; text-align: center; }
  .pro-urgency .pro-cta-row { flex-direction: column; align-items: center; gap: .65rem; }
  .pro-urgency .pro-btn { width: 100%; max-width: 320px; justify-content: center; }
  .pro-urgency p { text-align: center; }
  .pro-urgency__live { margin-left: auto; margin-right: auto; }

  /* Generic CTA rows centered */
  .pro-home .pro-cta-row { justify-content: center; flex-wrap: wrap; }
  .pro-home .pro-btn { display: inline-flex; }
}

/* Very narrow phones */
@media (max-width: 380px) {
  .pro-home .pro-pay-grid { grid-template-columns: 1fr !important; }
  .pro-home .pro-calendar { grid-template-columns: 1fr !important; }
  .pro-home .pro-section__head h2 { font-size: 1.35rem !important; }
}

/* ============================================================
   ABOUT PAGE — MOBILE: center buttons, titles, subtext
   ============================================================ */
@media (max-width: 720px) {
  /* Story split — center text + button */
  .about-page .about-split__copy {
    text-align: center;
    display: flex; flex-direction: column; align-items: center;
  }
  .about-page .about-split__copy .pro-section__eyebrow { align-self: center; }
  .about-page .about-split__copy h2 { text-align: center; }
  .about-page .about-split__copy p { text-align: center; }

  /* Stats bento tiles */
  .about-page .about-stat-tile {
    text-align: center;
    align-items: center;
  }
  .about-page .about-stat-tile--big { align-items: center; text-align: center; }

  /* Hero metrics */
  .about-page .about-metric { align-items: center; text-align: center; }

  /* Why-Bangladeshi vs cards */
  .about-page .pro-vs-card {
    text-align: center;
  }
  .about-page .pro-vs-card__head { justify-content: center; }
  .about-page .pro-vs-card h3 { text-align: center; }
  .about-page .pro-vs-card p { text-align: center; }

  /* SEO coverage cards */
  .about-page .seo-coverage-grid .solid-card {
    text-align: center;
  }

  /* License cards */
  .about-page .spec-license-card {
    text-align: center;
    flex-direction: column; gap: .55rem;
  }
  .about-page .spec-license-card i { margin-bottom: .25rem; }

  /* FAQ */
  .about-page .pro-faq summary {
    text-align: center; justify-content: center !important; gap: .5rem;
  }
  .about-page .pro-faq summary::after { position: absolute; right: 1.1rem; }
  .about-page .pro-faq details { position: relative; }
  .about-page .pro-faq p { text-align: center; }

  /* Buttons centered */
  .about-page .pro-btn,
  .about-page .pro-cta-row {
    align-self: center;
    justify-content: center;
  }
  .about-page .about-split__copy .pro-btn { align-self: center; }
  .about-page .pro-cta-row { display: flex; flex-direction: column; gap: .65rem; align-items: center; }
  .about-page .pro-cta-row .pro-btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Hero already centered via .about-hero__inner — reinforce */
  .about-hero { text-align: center; }
  .about-hero__inner > * { margin-left: auto; margin-right: auto; }

  /* Section heads always centered */
  .about-page .pro-section__head { text-align: center; align-items: center; }
}

/* Licenses (reuse spec-license-grid for about) */
.about-licenses { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 720px) { .about-licenses { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .about-licenses { grid-template-columns: 1fr; } }

/* ============================================================
   NOTOUT × BANGLADESH SEO content block
   ============================================================ */
.pro-seo-bd {
  background:
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  padding: 4rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.pro-seo-bd::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .35;
  background:
    radial-gradient(800px 500px at 0% 0%, rgba(255,138,0,0.08), transparent 60%),
    radial-gradient(700px 400px at 100% 100%, rgba(0,212,255,0.06), transparent 60%);
}
.pro-seo-bd__inner {
  max-width: 1180px; margin: 0 auto; padding: 0 1.5rem;
  position: relative; z-index: 1;
}

.pro-seo-bd__head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.pro-seo-bd__head .pro-section__eyebrow { margin-bottom: 1rem; }
.pro-seo-bd__head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem) !important;
  margin-bottom: 1rem !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
}
.pro-seo-bd__head h2 em {
  font-style: normal;
  background: var(--grad-amber) !important;
  -webkit-background-clip: text !important; background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.pro-seo-bd__lead {
  color: var(--ink-2);
  font-size: 1.02rem;
  line-height: 1.7;
}
.pro-seo-bd__lead::first-letter {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 3rem; line-height: 0.85;
  float: left; margin: .15rem .65rem 0 0;
  background: var(--grad-amber);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.pro-seo-bd__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 900px) { .pro-seo-bd__cols { grid-template-columns: 1fr; gap: 1rem; } }

.pro-seo-bd__col {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform .25s, border-color .25s;
}
.pro-seo-bd__col::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0; transition: opacity .25s;
}
.pro-seo-bd__col:hover {
  transform: translateY(-3px);
  border-color: rgba(255,138,0,0.4);
}
.pro-seo-bd__col:hover::before { opacity: 1; }

.pro-seo-bd__col-head {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1rem;
}
.pro-seo-bd__col-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,138,0,0.18), rgba(255,138,0,0.05));
  border: 1px solid rgba(255,138,0,0.3);
  color: var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.pro-seo-bd__col h3 {
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  color: #fff !important;
  margin: 0 !important;
  letter-spacing: -0.01em !important;
}
.pro-seo-bd__col p {
  color: var(--ink-2);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: .85rem;
}
.pro-seo-bd__col p:last-child { margin-bottom: 0; }
.pro-seo-bd__col strong { color: #fff; font-weight: 600; }

/* Stat strip across the SEO section */
.pro-seo-bd__strip {
  margin-top: 2.5rem;
  background: rgba(255,138,0,0.06);
  border: 1px solid rgba(255,138,0,0.25);
  border-radius: var(--r-lg);
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 720px) { .pro-seo-bd__strip { grid-template-columns: 1fr 1fr; padding: 1.25rem; } }

.pro-seo-bd__strip-item {
  text-align: center;
  border-right: 1px solid rgba(255,138,0,0.15);
  padding: 0 .75rem;
}
.pro-seo-bd__strip-item:last-child { border-right: none; }
.pro-seo-bd__strip-item .num {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.4rem;
  background: var(--grad-amber);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  display: block; line-height: 1;
}
.pro-seo-bd__strip-item .lbl {
  color: var(--ink-3); font-size: .72rem;
  letter-spacing: 1px; text-transform: uppercase;
  margin-top: .35rem; display: block;
}

@media (max-width: 720px) {
  .pro-seo-bd { padding: 2.5rem 0; }
  .pro-seo-bd__col { padding: 1.5rem 1.25rem; }
  .pro-seo-bd__col-head { justify-content: center; flex-direction: column; text-align: center; }
  .pro-seo-bd__col h3 { text-align: center; }
  .pro-seo-bd__col p { text-align: center; }
  .pro-seo-bd__lead::first-letter { float: none; display: inline; margin: 0; font-size: 1.4em; vertical-align: baseline; }
  .pro-seo-bd__strip-item { border-right: none; }
}

/* Typewriter cursor */
.pro-typer {
  display: inline-block;
  white-space: nowrap;
}
.pro-typer::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 1em;
  margin-left: 4px;
  vertical-align: -.12em;
  background: var(--amber);
  animation: pro-typer-blink 0.8s step-end infinite;
  border-radius: 1px;
}
@keyframes pro-typer-blink {
  50% { opacity: 0; }
}

/* ============================================================
   LIVE BETTING PAGE
   ============================================================ */
.live-page .pro-section { padding: 3.5rem 0; }

/* Hero */
.live-hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding: 4.5rem 0 3rem;
  text-align: center;
  background:
    radial-gradient(900px 600px at 50% 0%, rgba(255,138,0,0.18), transparent 60%),
    radial-gradient(800px 500px at 50% 100%, rgba(255,59,59,0.10), transparent 60%),
    var(--bg);
}
.live-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.live-hero__live {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(255,59,59,0.15); color: #ff3b3b;
  border: 1px solid rgba(255,59,59,0.4);
  padding: .55rem 1.1rem; border-radius: 999px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: .82rem; letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.live-hero__live::before {
  content: ""; width: 8px; height: 8px; background: #ff3b3b; border-radius: 50%;
  animation: lounge-pulse 1.4s infinite;
}
.live-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem) !important;
  font-weight: 900 !important;
  margin: 0 auto 1.25rem !important;
  letter-spacing: -0.03em !important;
  line-height: 1.1 !important;
  max-width: 900px;
}
.live-hero h1 em {
  font-style: normal;
  background: var(--grad-amber) !important;
  -webkit-background-clip: text !important; background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.live-hero p { color: var(--ink-2); font-size: 1.1rem; max-width: 720px; margin: 0 auto 2rem; line-height: 1.6; }
.live-hero__counters {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  max-width: 720px; margin: 2.25rem auto 0;
}
@media (max-width: 720px) { .live-hero__counters { grid-template-columns: 1fr 1fr; } }
.live-counter {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1rem .85rem;
  text-align: center;
}
.live-counter .num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 1.6rem;
  background: var(--grad-amber);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1; display: block;
}
.live-counter .lbl { color: var(--ink-3); font-size: .68rem; letter-spacing: 1.2px; text-transform: uppercase; margin-top: .35rem; display: block; }

/* Sport filter bar */
.live-filters {
  display: flex; gap: .55rem; flex-wrap: wrap; justify-content: center;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .45rem;
  max-width: fit-content;
  margin: 0 auto 2rem;
}
.live-filter {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1rem;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-2);
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: .85rem;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none !important;
  border: none;
}
.live-filter:hover { color: #fff; background: rgba(255,138,0,0.08); }
.live-filter.is-active { background: var(--grad-amber); color: #fff !important; box-shadow: 0 6px 18px var(--amber-glow); }
.live-filter__count {
  background: rgba(0,0,0,0.3);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800; font-size: .65rem;
  padding: .15rem .45rem;
  border-radius: 999px;
}
.live-filter.is-active .live-filter__count { background: rgba(0,0,0,0.4); }
@media (max-width: 720px) { .live-filters { padding: .35rem; } .live-filter { font-size: .8rem; padding: .45rem .8rem; } }

/* Featured live matches grid */
.live-matches {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 1100px) { .live-matches { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .live-matches { grid-template-columns: 1fr; } }
.live-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.25rem;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.live-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,138,0,0.4);
  box-shadow: 0 14px 32px rgba(0,0,0,0.4);
}
.live-card__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: .75rem;
}
.live-card__league {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .65rem; letter-spacing: 1.5px; font-weight: 700;
  color: var(--cyan); text-transform: uppercase;
}
.live-card__live {
  display: inline-flex; align-items: center; gap: .35rem;
  color: #ff3b3b;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .65rem; letter-spacing: 1px; font-weight: 800;
  text-transform: uppercase;
}
.live-card__live::before {
  content: ""; width: 6px; height: 6px; background: #ff3b3b; border-radius: 50%;
  animation: lounge-pulse 1.4s infinite;
}
.live-card__teams { display: grid; gap: .55rem; margin: .75rem 0; }
.live-card__team {
  display: flex; justify-content: space-between; align-items: center;
}
.live-card__team .crest {
  width: 26px; height: 26px; border-radius: 6px; background: var(--bg-3);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--amber); font-family: 'Space Grotesk', sans-serif;
  font-size: .7rem; font-weight: 800; margin-right: .55rem;
}
.live-card__team .name { color: #fff; font-weight: 600; font-size: .9rem; }
.live-card__team .score {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1rem; color: #fff;
}
.live-card__time {
  font-size: .75rem; color: var(--ink-3);
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  padding: .3rem .65rem;
  background: var(--bg-3); border-radius: 6px;
  display: inline-block; margin-bottom: .85rem;
}
.live-card__odds {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .35rem;
}
.live-card__odd {
  background: var(--bg-3);
  padding: .5rem .35rem;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: all .15s;
  border: 1px solid transparent;
}
.live-card__odd:hover {
  background: rgba(255,138,0,0.1);
  border-color: var(--amber);
}
.live-card__odd small { display: block; color: var(--ink-3); font-size: .65rem; }
.live-card__odd b { color: #fff; font-family: 'Space Grotesk', sans-serif; font-size: .92rem; }

/* Cashout showcase */
.live-cashout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
@media (max-width: 900px) { .live-cashout { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; } }
.live-cashout-card {
  background: linear-gradient(135deg, rgba(255,138,0,0.12), rgba(255,90,0,0.04)), var(--surface);
  border: 1px solid rgba(255,138,0,0.3);
  border-radius: var(--r-lg);
  padding: 2rem;
}
.live-cashout-card__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255,138,0,0.15);
}
.live-cashout-card__row:last-child { border-bottom: none; padding-bottom: 0; }
.live-cashout-card__row .lbl { color: var(--ink-2); font-size: .85rem; }
.live-cashout-card__row .val { color: #fff; font-family: 'Space Grotesk', sans-serif; font-weight: 700; }
.live-cashout-card__row .val.amber { color: var(--amber); font-size: 1.2rem; }
.live-cashout-card__cta {
  display: block; width: 100%; text-align: center;
  margin-top: 1rem; padding: .85rem 1rem;
  background: var(--grad-amber); color: #fff;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  border-radius: 10px; cursor: pointer; border: none;
  transition: filter .2s;
}
.live-cashout-card__cta:hover { filter: brightness(1.08); }

/* Sport deep blocks */
.live-deep { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 900px) { .live-deep { grid-template-columns: 1fr; } }
.live-deep__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: border-color .25s, transform .25s;
}
.live-deep__card:hover { border-color: rgba(255,138,0,0.4); transform: translateY(-3px); }
.live-deep__card-head { display: flex; align-items: center; gap: .85rem; margin-bottom: 1rem; }
.live-deep__card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,138,0,0.18), rgba(255,138,0,0.05));
  border: 1px solid rgba(255,138,0,0.3);
  color: var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.live-deep__card h3 { font-size: 1.15rem !important; margin: 0 !important; color: #fff !important; }
.live-deep__card p { color: var(--ink-2); font-size: .9rem; line-height: 1.7; margin-bottom: .85rem; }
.live-deep__card ul { list-style: none; padding: 0; margin: 0 0 1rem; display: flex; flex-wrap: wrap; gap: .35rem; }
.live-deep__card li {
  font-size: .72rem; padding: .25rem .55rem;
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: 999px; color: var(--ink-2);
}
.live-deep__card a {
  color: var(--amber); font-weight: 700; font-size: .85rem;
  display: inline-flex; align-items: center; gap: .4rem;
}

@media (max-width: 720px) {
  .live-page .pro-section { padding: 2rem 0; }
  .live-page .pro-section__head { text-align: center; }
  .live-page .pro-section__head h2 { text-align: center; }
  .live-card { text-align: left; }
  .live-deep__card { text-align: center; }
  .live-deep__card-head { justify-content: center; flex-direction: column; }
  .live-deep__card ul { justify-content: center; }
  .live-cashout-card { padding: 1.5rem; }
}

/* ============ HIDE THEME CHROME ============ */
.home .glass-ticker,
.home .glass-topbar,
.home .entry-header,
.home .post-thumbnail { display: none !important; }

/* Strip wrappers to allow full-width */
.home .site-content { padding: 0 !important; }
.home article.post,
.home article.page,
.home .entry-content {
  background: none !important; border: none !important;
  border-radius: 0 !important; padding: 0 !important;
  margin: 0 !important; box-shadow: none !important;
  backdrop-filter: none !important; -webkit-backdrop-filter: none !important;
  max-width: none !important;
}
.home article.page::before, .home article.post::before { display: none !important; }

/* ============ MOBILE HORIZONTAL-OVERFLOW GUARD ============
   AOS pre-transforms (e.g. data-aos="fade-right" => translateX(-100px))
   and the wide pro-quickbar can leak past the viewport on narrow screens.
   Clip horizontal overflow on the home wrappers so the document never
   gains horizontal scroll. overflow-x: clip is preferred (it keeps
   position:sticky working); fall back to hidden where not supported. */
html, body.home { overflow-x: clip; }
@supports not (overflow: clip) {
  html, body.home { overflow-x: hidden; }
}
body.home .pro-home,
body.home .notout-site,
body.home .notout-site-content,
body.home #page { max-width: 100vw; overflow-x: clip; }
@supports not (overflow: clip) {
  body.home .pro-home,
  body.home .notout-site,
  body.home .notout-site-content,
  body.home #page { overflow-x: hidden; }
}
/* Per-section defence — the three sections whose AOS photos translate
   horizontally before animating in. Section-level clip prevents the
   leak even if an outer wrapper rule is overridden. */
body.home .spec-licensed,
body.home .spec-real,
body.home .spec-winner,
body.home .spec-winner-v6 { overflow-x: clip; }
@supports not (overflow: clip) {
  body.home .spec-licensed,
  body.home .spec-real,
  body.home .spec-winner,
  body.home .spec-winner-v6 { overflow-x: hidden; }
}