/* ==========================================================================
   LIVE CASINO INDIA — Dark-red + editorial gold design system
   ========================================================================== */

/* ------------------- 1 · Design tokens ------------------- */
:root {
  /* Dominant dark-red palette */
  --brand:         #1a0508;
  --brand-dark:    #0a0203;
  --brand-light:   #2d0a10;

  /* Signature gold accent */
  --accent:        #d4a547;
  --accent-warm:   #e6b862;
  --accent-soft:   #f0d188;

  /* Surfaces */
  --bg:            #16040a;
  --bg-card:       #210810;
  --bg-elevated:   #2a0c15;
  --bg-panel:      #0e0206;

  /* Text */
  --text:          #f5e6d3;
  --text-muted:    #c9b896;
  --text-dim:      #8b7d65;

  /* Borders */
  --border:        rgba(212, 165, 71, 0.14);
  --border-strong: rgba(212, 165, 71, 0.34);
  --border-soft:   rgba(245, 230, 211, 0.08);

  /* Typography */
  --font-body:    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-heading: 'Fraunces', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;

  /* Scale */
  --fs-xs: 0.78rem;
  --fs-sm: 0.88rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.75rem;
  --fs-4xl: 3.75rem;
  --fs-display: 5rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;
  --space-9: 6rem;
  --space-10: 8rem;

  /* Radius — sharp by design */
  --r-0: 0;
  --r-1: 2px;
  --r-2: 4px;
  --r-card: 2px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-card: 0 1px 0 rgba(212,165,71,0.18), 0 18px 40px -22px rgba(0,0,0,0.85);
  --shadow-elev: 0 28px 70px -28px rgba(0,0,0,0.9), 0 1px 0 rgba(212,165,71,0.22);
  --shadow-hero: 0 30px 90px -30px rgba(0,0,0,0.95);

  --ring: 0 0 0 2px rgba(212, 165, 71, 0.55);
}

/* ------------------- 2 · Reset ------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  padding-top: 4.75rem;            /* clears the floating glass ribbon header */
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-image:
    radial-gradient(ellipse 60% 40% at 85% 10%, rgba(212, 165, 71, 0.11), transparent 60%),
    radial-gradient(ellipse 50% 35% at 10% 100%, rgba(105, 17, 29, 0.55), transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(45, 10, 16, 0.45), transparent 70%);
  background-attachment: fixed;
}
img, svg, video { max-width: 100%; display: block; }
a { color: var(--accent-warm); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent-soft); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1rem; color: var(--text-muted); }
strong { color: var(--text); font-weight: 700; }
em { color: var(--accent-soft); font-style: italic; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 1rem;
}
h1 { font-size: clamp(2.4rem, 5vw + 0.8rem, 4.4rem); font-weight: 400; }
h2 { font-size: clamp(1.75rem, 2.4vw + 1rem, 2.6rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.1rem; letter-spacing: .12em; text-transform: uppercase; font-family: var(--font-body); font-weight: 700; }

::selection { background: var(--accent); color: var(--brand-dark); }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ------------------- 3 · Buttons ------------------- */
.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.75rem;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  transition: transform .25s cubic-bezier(.3,.1,.3,1), box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-warm) 100%);
  color: var(--brand-dark) !important;
  box-shadow: 0 14px 30px -12px rgba(212,165,71,.6), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -12px rgba(212,165,71,.75), inset 0 1px 0 rgba(255,255,255,.3);
  color: var(--brand-dark) !important;
}
.btn-secondary {
  background: rgba(245,230,211,0.04);
  color: var(--text) !important;
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(212,165,71,0.12);
  border-color: var(--accent);
  color: var(--accent-soft) !important;
}
.btn-ghost {
  color: var(--accent-warm) !important;
  padding: .5rem 0;
  text-transform: uppercase;
}
.btn-ghost::after { content: '→'; transition: transform .25s ease; }
.btn-ghost:hover::after { transform: translateX(4px); }

/* ------------------- 4 · Floating glass-ribbon header ------------------- */
.site-header {
  position: fixed;
  top: 1rem; left: 1rem; right: 1rem;
  z-index: 1000;
  padding: 0;
  transition: top .3s ease, transform .3s ease;
}
.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: .7rem 1.4rem;
  background: linear-gradient(120deg, rgba(14, 2, 6, 0.82) 0%, rgba(33, 8, 16, 0.82) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  box-shadow: 0 18px 44px -16px rgba(0,0,0,.75), inset 0 1px 0 rgba(245,230,211,.05);
  transition: padding .3s ease, background .3s ease;
}
.site-header.is-scrolled .header-inner {
  padding: .45rem 1.2rem;
  background: linear-gradient(120deg, rgba(10, 2, 3, 0.92) 0%, rgba(26, 5, 8, 0.92) 100%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}
.brand-mark {
  height: 38px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  transition: height .3s ease;
}
.site-header.is-scrolled .brand-mark { height: 32px; }

.nav {
  display: flex;
  position: relative;
  align-items: center;
  gap: .2rem;
  flex: 1;
  justify-content: center;
}
.nav a {
  position: relative;
  display: inline-block;
  padding: .5rem .95rem;
  color: var(--text-muted) !important;
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .01em;
  z-index: 2;
  transition: color .2s ease;
}
.nav a:hover, .nav a.active { color: var(--accent-soft) !important; }
.nav-indicator {
  position: absolute;
  bottom: .15rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent) 40%, var(--accent-warm) 60%, transparent);
  width: 0; left: 0;
  transition: left .35s cubic-bezier(.3,.1,.3,1), width .35s cubic-bezier(.3,.1,.3,1), opacity .25s ease;
  opacity: 0;
  pointer-events: none;
}
.nav-indicator.visible { opacity: 1; }

/* Nav dropdown (desktop) */
.nav-item--has-submenu { position: relative; display: inline-block; }
/* Invisible hover-bridge fills the gap between the parent link and the submenu
 * panel so the cursor can reach the dropdown without the :hover state dropping. */
.nav-item--has-submenu::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -.75rem; right: -.75rem;
  height: 1.1rem;
  pointer-events: auto;
  z-index: 1000;
}
.nav-parent {
  display: inline-flex !important;
  align-items: center;
  gap: .3rem;
}
.nav-caret {
  opacity: .7;
  transition: transform .25s ease, opacity .2s ease;
  margin-bottom: -1px;
}
.nav-item--has-submenu:hover .nav-caret,
.nav-item--has-submenu:focus-within .nav-caret,
.nav-item--has-submenu.is-open .nav-caret { transform: rotate(180deg); opacity: 1; }

.nav-submenu {
  position: absolute;
  top: calc(100% + .8rem);
  left: 50%;
  transform: translate(-50%, -4px);
  width: 360px;
  max-width: 92vw;
  background: linear-gradient(180deg, rgba(14,2,6,.96) 0%, rgba(22,5,10,.96) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-card);
  box-shadow: 0 24px 50px -18px rgba(0,0,0,.85), inset 0 1px 0 rgba(245,230,211,.05);
  backdrop-filter: blur(18px) saturate(160%);
  padding: .6rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s cubic-bezier(.3,.1,.3,1), visibility .25s;
  z-index: 1001;
}
.nav-submenu::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: rgba(14,2,6,.96);
  border-top: 1px solid var(--border-strong);
  border-left: 1px solid var(--border-strong);
}
.nav-submenu::after {
  content: '';
  position: absolute;
  top: 0; left: .8rem; right: .8rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: .6;
}
.nav-item--has-submenu:hover .nav-submenu,
.nav-item--has-submenu:focus-within .nav-submenu,
.nav-item--has-submenu.is-open .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-submenu ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .15rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-submenu li { margin: 0; }
.nav-submenu a {
  display: flex !important;
  align-items: center;
  gap: .6rem;
  padding: .55rem .65rem !important;
  border-radius: var(--r-card);
  font-size: .84rem !important;
  font-weight: 500;
  color: var(--text-muted) !important;
  letter-spacing: .01em;
  text-transform: none;
  transition: background .2s ease, color .2s ease;
}
.nav-submenu a:hover,
.nav-submenu a:focus {
  background: rgba(212,165,71,.08);
  color: var(--accent-soft) !important;
}
.nav-submenu__logo {
  width: 28px; height: 28px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #f6ecd8 0%, #ece1c6 100%);
  border: 1px solid rgba(212,165,71,.28);
  border-radius: var(--r-card);
  padding: 2px;
}
.nav-submenu__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.nav-submenu__label { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.header-aside { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.85); }
}

.header-cta {
  padding: .6rem 1.2rem;
  font-size: .78rem;
}

/* Mobile toggle */
.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: relative;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--accent-soft);
  border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------- 5 · Full-bleed hero ------------------- */
.hero {
  position: relative;
  min-height: 92vh;
  margin-top: -4.75rem;        /* cancels body padding, lets hero reach top */
  padding-top: 6rem;
  padding-bottom: 6rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,2,3,0.95) 0%, rgba(22,4,10,0.7) 45%, rgba(26,5,8,0.2) 100%),
    linear-gradient(180deg, rgba(10,2,3,0.55) 0%, transparent 30%, rgba(10,2,3,0.9) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.hero-content { max-width: 720px; }
.hero-content .kicker {
  display: inline-block;
  padding: .4rem 1.1rem;
  background: rgba(212,165,71,0.08);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--accent-soft);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.hero-content h1 {
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--accent-warm);
  font-weight: 300;
}
.hero-content .lead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 580px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ------------------- 6 · Hero bridge stat strip ------------------- */
.hero-bridge {
  position: relative;
  z-index: 3;
  margin-top: -3.25rem;       /* overlap hero without clipping */
  margin-bottom: 4.5rem;
}
.hero-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: linear-gradient(180deg, rgba(33,8,16,.96) 0%, rgba(22,5,10,.96) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-elev);
  overflow: hidden;
}
.hero-stats-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.stat-tile {
  padding: 1.6rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-tile:last-child { border-right: none; }
.stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--accent-soft);
  font-feature-settings: "tnum";
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-label {
  display: block;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}

/* ------------------- 7 · Section fundamentals ------------------- */
section { position: relative; }
.home-section, .inner-section {
  padding: 4.5rem 0;
  position: relative;
}
.home-section-head, .section-head {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.8rem;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 1.2rem; height: 1px;
  background: var(--accent);
  transform: translateY(-50%);
}
.section-heading {
  font-size: clamp(1.85rem, 2.4vw + 1rem, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.section-heading em { color: var(--accent-warm); font-style: italic; font-weight: 300; }
.section-intro {
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ------------------- 8 · Floor-grid (bento & card grid) ------------------- */
.floor-grid {
  display: grid;
  gap: 1.25rem;
}
.floor-grid--cols-1 { grid-template-columns: minmax(0, 1fr); }
.floor-grid--cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.floor-grid--cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.floor-grid--cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.floor-tile {
  position: relative;
  padding: 2rem 1.6rem;
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(22,5,10,0.9) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.3,.1,.3,1), border-color .3s ease, box-shadow .3s ease;
  min-height: 240px;
  display: flex;
  flex-direction: column;
}
.floor-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 40%, var(--accent) 60%, transparent 100%);
  opacity: .5;
  transition: opacity .3s ease;
}
.floor-tile::after {
  content: attr(data-mono);
  position: absolute;
  bottom: -1.2rem; right: -.5rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(6rem, 10vw, 10rem);
  color: var(--accent);
  opacity: .06;
  line-height: 1;
  pointer-events: none;
  transition: opacity .3s ease, transform .4s ease;
}
.floor-tile:hover { transform: translateY(-3px); border-color: var(--border-strong); box-shadow: var(--shadow-card); }
.floor-tile:hover::before { opacity: 1; }
.floor-tile:hover::after { opacity: .1; transform: translate(-.25rem, -.2rem); }

.floor-tile h3 {
  font-size: 1.35rem;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: .85rem;
  position: relative;
  z-index: 1;
}
.floor-tile p {
  font-size: .97rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ------------------- 9 · Feature check-list (with and without image) ------------------- */
.feature-check-list {
  background: linear-gradient(180deg, rgba(45,10,16,.75) 0%, rgba(22,5,10,.65) 100%);
  border-left: 2px solid var(--accent);
  border-radius: 0 var(--r-card) var(--r-card) 0;
  padding: 2rem 2rem 2rem 1.75rem;
  position: relative;
  overflow: hidden;
}
.feature-check-list::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.feature-check-list ul,
.feature-check-list ol { display: block; margin: 0; padding: 0; }
.feature-check-list li {
  position: relative;
  display: block;
  padding: 0 0 0 2.3rem;
  margin: 0 0 .85rem;
  color: var(--text);
  line-height: 1.6;
  font-size: 1rem;
}
.feature-check-list li:last-child { margin-bottom: 0; }
.feature-check-list li strong { color: var(--accent-soft); }
.feature-check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: .15rem;
  width: 1.4rem; height: 1.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-warm) 100%);
  color: var(--brand-dark);
  display: grid;
  place-items: center;
  font-size: .82rem;
  font-weight: 800;
  box-shadow: 0 4px 10px -4px rgba(212,165,71,.7);
}
.feature-check-list li::after { content: none; }

/* Plain feature-check-list variant — fills container, inner text comfortable */
.feature-check-list--plain {
  background: transparent;
  border-left: none;
  padding: 0;
  width: 100%;
  margin: 0 auto;
}
.feature-check-list--plain::before { content: none; }
.feature-check-list--plain ul,
.feature-check-list--plain ol {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: .7rem;
}
.feature-check-list--plain li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.1rem 1.3rem 1.1rem 3.25rem;
  border-radius: var(--r-card);
  margin: 0;
}
.feature-check-list--plain li::before {
  left: 1.2rem;
  top: 1.25rem;
}

/* ------------------- 10 · Split-layout (image + list) ------------------- */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.split-layout--reverse .split-image { order: 2; }
.split-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--r-card);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-elev);
}
.split-image::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  z-index: 2;
}
.split-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 55%, rgba(26,5,8,0.3) 100%);
  z-index: 1;
  pointer-events: none;
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-content h2 { margin-bottom: 1.2rem; }
.split-content .split-intro { font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.6rem; color: var(--text-muted); }

/* ------------------- 11 · Plain-card (editorial centered) ------------------- */
.plain-card {
  width: 100%;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(33,8,16,.7) 0%, rgba(22,5,10,.4) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.plain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 64px; height: 1px;
  background: var(--accent);
}
.plain-card h2 { margin-bottom: 1.5rem; max-width: 820px; margin-left: auto; margin-right: auto; }
.plain-card p { font-size: 1.05rem; line-height: 1.75; max-width: 720px; margin: 0 auto 1rem; }
.plain-card p:last-child { margin-bottom: 0; }

/* ------------------- 12 · Image divider (same width as container) ------------------- */
.image-divider {
  margin: 1.5rem 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  max-height: 480px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-card);
}
.image-divider::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  z-index: 2;
}
.image-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.image-divider::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,5,10,0.55) 0%, transparent 30%, rgba(22,5,10,0.65) 100%);
  pointer-events: none;
}

/* ------------------- 13 · Intro block (lede leftover paragraphs) ------------------- */
.intro-block {
  padding: 3.5rem 0 1rem;
}
.intro-block .container > * { max-width: 820px; margin-left: auto; margin-right: auto; }
.intro-block__glyph {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
  opacity: .55;
  text-align: center;
  margin-bottom: 1.25rem;
}
.intro-block p {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 1.25rem;
}
.intro-block p strong { color: var(--accent-soft); }

/* ------------------- 14 · Home: intro section ------------------- */
.home-intro {
  padding: 3.5rem 0 2.5rem;
  text-align: center;
}
.home-intro__glyph {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 3.5rem;
  color: var(--accent);
  opacity: .6;
  margin-bottom: .5rem;
}
.home-intro .container > * { max-width: 820px; margin-left: auto; margin-right: auto; }
.home-intro p { font-size: 1.1rem; line-height: 1.75; color: var(--text-muted); margin-bottom: 1.1rem; }
.home-intro .cta-inline { margin-top: 1.5rem; display: inline-flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ------------------- 15 · Home: floor bento (hand-authored) ------------------- */
.home-floor { padding: 4rem 0; }
.home-floor .bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 1.25rem;
}
.home-floor .bento .tile { padding: 1.8rem; }
.home-floor .bento .tile--feature { grid-column: span 4; grid-row: span 2; min-height: 380px; }
.home-floor .bento .tile--wide    { grid-column: span 3; }
.home-floor .bento .tile--narrow  { grid-column: span 2; }
.home-floor .bento .tile--narrow3 { grid-column: span 3; }
.home-floor .bento .tile--full    { grid-column: span 6; }

/* ------------------- 16 · Home: split / live section ------------------- */
.home-live { padding: 4.5rem 0; position: relative; }

/* ------------------- 17 · Security art-deco 4-up ------------------- */
.home-secure { padding: 5rem 0; background: linear-gradient(180deg, transparent 0%, rgba(14,2,6,.55) 50%, transparent 100%); }
.security-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}
.security-card {
  position: relative;
  padding: 2.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  text-align: center;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.security-card:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.security-card::after {
  content: '';
  position: absolute;
  top: -60%; left: -60%;
  width: 80%; height: 200%;
  background: linear-gradient(110deg, transparent 40%, rgba(212,165,71,.08) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform .8s ease;
}
.security-card:hover::after { transform: translateX(120%); }
.security-card h3 {
  font-size: 1.1rem;
  margin-top: .6rem;
  margin-bottom: .5rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  font-size: .85rem;
  color: var(--accent-soft);
}
.security-card p { font-size: .9rem; margin: 0; line-height: 1.55; }
.security-icon {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 2.6rem;
  color: var(--accent);
  line-height: 1;
}
/* L-shaped corner flourishes */
.accred-corner {
  position: absolute;
  width: 18px; height: 18px;
  pointer-events: none;
  transition: width .3s ease, height .3s ease;
}
.accred-corner--tl { top: .65rem; left: .65rem; border-top: 1.5px solid var(--accent); border-left: 1.5px solid var(--accent); }
.accred-corner--tr { top: .65rem; right: .65rem; border-top: 1.5px solid var(--accent); border-right: 1.5px solid var(--accent); }
.accred-corner--bl { bottom: .65rem; left: .65rem; border-bottom: 1.5px solid var(--accent); border-left: 1.5px solid var(--accent); }
.accred-corner--br { bottom: .65rem; right: .65rem; border-bottom: 1.5px solid var(--accent); border-right: 1.5px solid var(--accent); }
.security-card:hover .accred-corner { width: 26px; height: 26px; }

/* ------------------- 18 · Rewards bento ------------------- */
.home-rewards { padding: 4.5rem 0; }
.rewards-bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(160px, auto);
  gap: 1.25rem;
}
.rewards-bento .welcome-card {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, rgba(45,10,16,.95) 0%, rgba(22,5,10,.8) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-card);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.rewards-bento .welcome-card::before {
  content: '₹';
  position: absolute;
  right: -1rem; bottom: -4rem;
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 18rem;
  line-height: 1;
  color: var(--accent);
  opacity: .07;
  pointer-events: none;
}
.rewards-bento .reward-tile {
  padding: 1.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  position: relative;
  overflow: hidden;
}
.rewards-bento .reward-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: .6;
}
.rewards-bento .reward-tile h3 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 700; margin-bottom: .5rem; letter-spacing: -.01em; }
.rewards-bento .reward-tile p { font-size: .92rem; margin: 0; }
.rewards-bento .vip-strip {
  grid-column: span 4;
  background: linear-gradient(90deg, rgba(33,8,16,.95) 0%, rgba(45,10,16,.95) 100%);
  border: 1px solid var(--border-strong);
  padding: 1.75rem 2rem;
  border-radius: var(--r-card);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.rewards-bento .vip-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.rewards-bento .vip-strip h3 {
  font-size: 1.6rem;
  font-family: var(--font-heading);
  font-weight: 400;
  margin: 0;
}
.rewards-bento .vip-strip h3 em { color: var(--accent-warm); font-style: italic; }
.rewards-bento .vip-strip p { color: var(--text-muted); font-size: .95rem; margin: 0; max-width: 540px; }

/* ------------------- 19 · Support card ------------------- */
.home-support { padding: 5rem 0; }
.support-card {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 3.5rem 2.5rem;
  background: linear-gradient(180deg, rgba(33,8,16,.7) 0%, rgba(22,5,10,.3) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  text-align: center;
  overflow: hidden;
}
.support-card::before {
  content: '24/7';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: 16rem;
  color: var(--accent);
  opacity: .05;
  pointer-events: none;
  line-height: 1;
}
.support-card h2 { position: relative; z-index: 2; margin-bottom: 1.2rem; max-width: 820px; margin-left: auto; margin-right: auto; }
.support-card p { position: relative; z-index: 2; font-size: 1.06rem; line-height: 1.75; max-width: 720px; margin: 0 auto 1.1rem; }
.support-card .cta-inline { position: relative; z-index: 2; margin-top: 1.5rem; display: inline-flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ------------------- 20 · Page hero (inner pages) ------------------- */
.page-hero {
  position: relative;
  padding: 7rem 0 3rem;
  min-height: 460px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: -4.75rem;
  padding-top: 10rem;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--page-hero-bg, none);
  background-size: cover;
  background-position: center 35%;
  z-index: 0;
  opacity: .8;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,2,3,0.65) 0%, rgba(22,5,10,0.7) 70%, rgba(22,5,10,1) 100%),
    linear-gradient(90deg, rgba(10,2,3,0.65) 0%, transparent 60%);
  z-index: 1;
}
.page-hero .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
}
.breadcrumb {
  margin-bottom: 1.5rem;
  font-size: .82rem;
  color: var(--text-dim);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.breadcrumb a { color: var(--text-muted) !important; }
.breadcrumb a:hover { color: var(--accent-soft) !important; }
.breadcrumb .sep { margin: 0 .6rem; color: var(--accent); opacity: .6; }
.page-hero h1 {
  font-size: clamp(2.2rem, 4vw + 0.8rem, 3.8rem);
  font-weight: 400;
  max-width: 960px;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.page-hero h1 em { color: var(--accent-warm); font-style: italic; font-weight: 300; }
.page-hero .subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0;
}

/* ------------------- 21 · 404 ------------------- */
.err-404 {
  min-height: 80vh;
  display: grid;
  place-items: center;
  padding: 6rem 0;
  text-align: center;
}
.err-inner { max-width: 680px; padding: 0 1.5rem; }
.err-kicker {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.err-glyph {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(6rem, 15vw, 11rem);
  line-height: 1;
  color: var(--accent);
  margin-bottom: .5rem;
  letter-spacing: -.02em;
}
.err-title {
  font-size: clamp(1.6rem, 3vw + 0.8rem, 2.4rem);
  font-weight: 400;
  margin-bottom: 1rem;
}
.err-title em { color: var(--accent-warm); font-style: italic; }
.err-lead { font-size: 1.05rem; line-height: 1.7; margin-bottom: 2rem; color: var(--text-muted); }
.err-actions { display: inline-flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ------------------- 22 · Footer — Casino Counter ------------------- */
.site-footer {
  margin-top: 5rem;
  position: relative;
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
}
.footer-fret {
  height: 28px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 28' width='40' height='28'><path d='M0 20 L10 8 L20 20 L30 8 L40 20' fill='none' stroke='%23d4a547' stroke-width='1' stroke-opacity='.55'/></svg>");
  background-repeat: repeat-x;
  background-size: 40px 28px;
  opacity: .7;
  border-bottom: 1px solid var(--border);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr 1.35fr;
  gap: 3rem;
  padding: 4rem 0 2.5rem;
}
.footer-pedestal { max-width: 320px; }
.footer-pedestal .brand-mark { height: 40px; margin-bottom: 1rem; }
.footer-pedestal p {
  font-size: .92rem;
  line-height: 1.65;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: grid; gap: .7rem; }
.footer-col a {
  color: var(--text-muted) !important;
  font-size: .94rem;
}
.footer-col a:hover { color: var(--accent-soft) !important; }
.footer-vip {
  position: relative;
  padding-left: 2.5rem;
  border-left: 1px solid var(--border-strong);
}
.footer-vip .vip-inner {
  background: linear-gradient(180deg, rgba(33,8,16,.7) 0%, rgba(22,5,10,.4) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-card);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.footer-vip .vip-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.footer-vip .vip-kicker {
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: .5rem;
  display: inline-block;
}
.footer-vip h3 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: .7rem;
  color: var(--text);
}
.footer-vip p {
  font-size: .88rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.footer-vip .btn-ghost { color: var(--accent) !important; }

/* Accreditation badges */
.footer-accreditations {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.accred-badge {
  position: relative;
  padding: 1.25rem 1rem;
  background: rgba(245,230,211,.02);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  text-align: center;
  overflow: hidden;
  transition: border-color .3s ease;
}
.accred-badge:hover { border-color: var(--border-strong); }
.accred-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: .25rem;
  font-style: italic;
}
.accred-badge span {
  display: block;
  font-size: .72rem;
  color: var(--text-dim);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.accred-badge:hover .accred-corner { width: 26px; height: 26px; }

/* Copyright bar */
.footer-bottom {
  position: relative;
  padding: 2rem 0 2.5rem;
  text-align: center;
  font-family: var(--font-heading);
  font-size: .9rem;
  letter-spacing: .04em;
  color: var(--text-dim);
}
.footer-bottom::before {
  content: '§';
  position: absolute;
  top: -.55rem; left: 50%;
  transform: translateX(-50%);
  background: var(--bg-panel);
  padding: 0 .85rem;
  color: var(--accent);
  font-size: 1.15rem;
}
.footer-bottom p { margin: 0 0 .4rem; color: inherit; }
.footer-bottom p:last-child { margin: 0; }
.footer-bottom em {
  display: block;
  font-style: italic;
  font-size: .82rem;
  color: var(--text-dim);
  margin-top: .6rem;
}

/* ------------------- 23 · Responsive ------------------- */
@media (max-width: 1100px) {
  .nav a { padding: .5rem .7rem; font-size: .88rem; }
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    background: rgba(10,2,3,0.96);
    backdrop-filter: blur(28px) saturate(180%);
    transform: translateY(-100%);
    transition: transform .4s cubic-bezier(.3,.1,.3,1);
    padding: 2rem;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text) !important;
    padding: .5rem 0;
  }
  .nav-indicator { display: none; }
  .menu-toggle { display: flex; }
  .header-cta { display: none; }

  /* Mobile: submenu becomes inline accordion */
  .nav-item--has-submenu { display: block; width: 100%; text-align: center; }
  .nav-submenu {
    position: static;
    transform: none;
    width: 100%;
    max-width: none;
    visibility: visible;
    opacity: 0;
    pointer-events: none;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, opacity .25s ease, padding .25s ease;
    backdrop-filter: none;
  }
  .nav-submenu::before, .nav-submenu::after { display: none; }
  .nav-submenu ul {
    grid-template-columns: 1fr;
    gap: .1rem;
    padding: .5rem 0 1rem;
  }
  .nav-submenu a {
    justify-content: center;
    font-family: var(--font-body) !important;
    font-size: 1rem !important;
    padding: .5rem 1rem !important;
  }
  .nav-submenu__logo { width: 22px; height: 22px; }
  .nav-submenu__label { font-weight: 500; }
  .nav-item--has-submenu.is-open .nav-submenu {
    opacity: 1;
    pointer-events: auto;
    max-height: 600px;
  }
  /* Prevent the parent link from navigating when tapped — JS handles the toggle */
  .nav-parent .nav-caret { margin-left: .15rem; }

  .hero-stats-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-tile { border-right: none; }
  .stat-tile:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-tile:nth-child(-n+2) { border-bottom: 1px solid var(--border); }

  .split-layout { grid-template-columns: 1fr; gap: 2rem; }
  .split-layout--reverse .split-image { order: 0; }
  .split-image { aspect-ratio: 16 / 10; max-height: 420px; }

  .floor-grid--cols-3, .floor-grid--cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .security-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    padding: 3rem 0 2rem;
  }
  .footer-pedestal { grid-column: span 2; max-width: none; }
  .footer-vip {
    grid-column: span 2;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--border-strong);
    padding-top: 2rem;
    margin-top: .5rem;
  }
  .footer-accreditations { grid-template-columns: repeat(2, 1fr); }

  .home-floor .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(180px, auto);
  }
  .home-floor .bento .tile--feature  { grid-column: span 2; grid-row: span 1; min-height: 280px; }
  .home-floor .bento .tile--wide,
  .home-floor .bento .tile--narrow,
  .home-floor .bento .tile--narrow3,
  .home-floor .bento .tile--full     { grid-column: span 2; }

  .rewards-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .rewards-bento .welcome-card { grid-column: span 2; grid-row: span 1; min-height: 260px; }
  .rewards-bento .vip-strip { grid-column: span 2; }
}

@media (max-width: 560px) {
  body { padding-top: 4.25rem; font-size: .96rem; }
  .site-header { top: .5rem; left: .5rem; right: .5rem; }
  .site-header .header-inner { padding: .5rem .85rem; }

  .hero { min-height: 80vh; padding-bottom: 3rem; }
  .hero-content h1 { font-size: 2.25rem; }
  .hero-content .lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { justify-content: center; width: 100%; }

  .hero-bridge { margin-top: -2rem; margin-bottom: 2.5rem; }
  .hero-stats-strip { grid-template-columns: 1fr; }
  .stat-tile { border-right: none !important; border-bottom: 1px solid var(--border); padding: 1.2rem 1.5rem; }
  .stat-tile:last-child { border-bottom: none; }
  .stat-value { font-size: 1.8rem; }

  .floor-grid, .security-grid, .rewards-bento,
  .floor-grid--cols-2, .floor-grid--cols-3, .floor-grid--cols-4 {
    grid-template-columns: 1fr !important;
  }
  .rewards-bento .welcome-card, .rewards-bento .vip-strip { grid-column: span 1; }

  .footer-main, .footer-accreditations { grid-template-columns: 1fr; }
  .footer-pedestal, .footer-vip { grid-column: span 1; }

  .home-floor .bento { grid-template-columns: 1fr; }
  .home-floor .bento .tile, .home-floor .bento .tile--feature { grid-column: span 1; grid-row: auto; }

  .plain-card, .support-card, .feature-check-list { padding: 1.75rem 1.25rem; }
  .support-card::before { font-size: 9rem; }

  .image-divider { aspect-ratio: 16 / 10; }
}

/* ------------------- 24 · Utilities & motion ------------------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s cubic-bezier(.3,.1,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }

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

/* small print */
.disclaimer {
  display: inline-block;
  padding: .35rem .9rem;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
}

/* ==========================================================================
 * 25 · Top-rated podium section
 * ========================================================================== */

.top-rated { padding: 4.5rem 0 5rem; position: relative; }

/* heading + hand-drawn annotation */
.top-rated__head {
  position: relative;
  margin-bottom: 3.5rem;
  padding-right: 14rem;
}
.top-rated__title {
  font-size: clamp(1.85rem, 2.4vw + 1rem, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
  max-width: 640px;
}
.top-rated__title em { color: var(--accent-warm); font-style: italic; font-weight: 300; }

.top-rated__scribble {
  position: absolute;
  top: -.35rem; right: 1rem;
  color: var(--accent-warm);
  opacity: .88;
  display: flex;
  align-items: flex-start;
  gap: .25rem;
  transform: rotate(-4deg);
  pointer-events: none;
}
.scribble-text {
  font-family: 'Caveat', 'Kalam', 'Brush Script MT', cursive;
  font-size: 1.55rem;
  line-height: 1.1;
  max-width: 10rem;
  color: var(--accent-soft);
  text-shadow: 0 1px 0 rgba(0,0,0,.3);
}
.scribble-arrow { width: 90px; height: 46px; margin-top: .3rem; color: var(--accent); }

/* podium grid: #2 | #1 featured | #3 */
.podium {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  gap: 1.25rem;
  align-items: end;
  margin-bottom: 1.25rem;
}

.podium-card {
  position: relative;
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(22,5,10,.9) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 2.75rem 1.5rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.3,.1,.3,1), border-color .3s ease, box-shadow .3s ease;
}
.podium-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent) 40%, var(--accent) 60%, transparent);
  opacity: .55;
  transition: opacity .3s ease;
}
.podium-card:hover { transform: translateY(-3px); border-color: var(--border-strong); box-shadow: var(--shadow-card); }
.podium-card:hover::before { opacity: 1; }

.podium-card--featured {
  padding-top: 3.75rem;
  background: linear-gradient(180deg, rgba(45,10,16,.95) 0%, rgba(22,5,10,.9) 100%);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-elev);
  transform: translateY(-1rem);
}
.podium-card--featured::before {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-warm), var(--accent), transparent);
  opacity: 1;
}

/* #1 ribbon (replaces the screenshot's top bar) */
.podium-ribbon {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-warm) 100%);
  color: var(--brand-dark);
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: .55rem .75rem;
  text-align: center;
  box-shadow: 0 2px 12px -4px rgba(212,165,71,.5);
}

/* rank badge */
.rank-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  width: 2rem; height: 2rem;
  display: inline-grid;
  place-items: center;
  background: rgba(212,165,71,.14);
  color: var(--accent-soft);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-card);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  font-feature-settings: "tnum";
}
.podium-card--featured .rank-badge { top: 3.25rem; }

/* brand plate — light cream background so any logo reads */
.brand-plate {
  height: 100px;
  display: grid;
  place-items: center;
  margin: 0 auto 1.75rem;
  padding: .85rem;
  width: 100%;
  max-width: 220px;
  background: linear-gradient(180deg, #f6ecd8 0%, #ece1c6 100%);
  border-radius: var(--r-card);
  border: 1px solid rgba(212,165,71,.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 6px 16px -8px rgba(0,0,0,.4);
}
.brand-plate img {
  max-height: 70px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* bonus headline + label */
.bonus-headline {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 400;
  color: var(--accent-soft);
  margin: 0 auto .35rem;
  max-width: 22rem;
}
.podium-card--featured .bonus-headline { font-size: 1.55rem; }
.bonus-label {
  display: block;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

/* play-now button centered */
.play-btn {
  align-self: center;
  width: auto;
  min-width: 10.5rem;
  margin-bottom: 1.25rem;
  justify-content: center;
}

/* stat row */
.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 0 0 1.25rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-cell { text-align: center; }
.stat-cell dt {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: .35rem;
  font-weight: 600;
}
.stat-cell dt svg { color: var(--accent); }
.stat-cell dd {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text);
  font-feature-settings: "tnum";
}
.stat-cell .stat-win { color: var(--accent-warm); font-style: italic; }

/* read review */
.read-review {
  display: inline-block;
  color: var(--accent-warm) !important;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .4rem .6rem;
  transition: color .2s ease;
}
.read-review:hover { color: var(--accent-soft) !important; }

/* runner rows (#4 – #11) */
.runners {
  display: grid;
  gap: .85rem;
}
.runner-card {
  display: grid;
  grid-template-columns: 3rem 200px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  position: relative;
  transition: border-color .3s ease, transform .2s ease;
}
.runner-card:hover { border-color: var(--border-strong); transform: translateX(2px); }
.runner-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--accent), transparent);
  opacity: .55;
}

.runner-rank {
  position: static;
  width: 2.4rem; height: 2.4rem;
  font-size: 1.05rem;
}
.runner-brand {
  height: 70px;
  display: grid;
  place-items: center;
  padding: .5rem .75rem;
  background: linear-gradient(180deg, #f6ecd8 0%, #ece1c6 100%);
  border-radius: var(--r-card);
  border: 1px solid rgba(212,165,71,.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}
.runner-brand img { max-height: 50px; max-width: 160px; object-fit: contain; }

.runner-body { min-width: 0; }
.runner-bonus {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--accent-soft);
  margin: 0 0 .2rem;
  line-height: 1.35;
}
.runner-body .bonus-label { margin-bottom: 0; }

.runner-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}
.runner-actions .play-btn { margin-bottom: 0; min-width: 9.5rem; }
.runner-actions .read-review { font-size: .78rem; padding: .2rem .4rem; }

/* responsive */
@media (max-width: 900px) {
  .top-rated__head { padding-right: 0; }
  .top-rated__scribble { position: static; transform: none; margin-top: 1rem; opacity: .75; }
  .scribble-arrow { display: none; }

  .podium {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .podium-card--featured { transform: none; order: -1; }

  .runner-card {
    grid-template-columns: 2.5rem 140px 1fr;
    grid-template-areas:
      "rank brand body"
      "actions actions actions";
    row-gap: 1rem;
  }
  .runner-rank   { grid-area: rank; }
  .runner-brand  { grid-area: brand; height: 56px; }
  .runner-brand img { max-height: 40px; max-width: 120px; }
  .runner-body   { grid-area: body; }
  .runner-actions{ grid-area: actions; flex-direction: row; justify-content: space-between; }
}

@media (max-width: 560px) {
  .top-rated { padding: 3rem 0 3.5rem; }
  .podium { gap: 1rem; }
  .podium-card { padding: 2.25rem 1.25rem 1.5rem; }
  .brand-plate { height: 80px; padding: .6rem; }
  .brand-plate img { max-height: 56px; }
  .podium-ribbon { font-size: .66rem; letter-spacing: .18em; }

  .runner-card {
    grid-template-columns: 2.2rem 1fr;
    grid-template-areas:
      "rank brand"
      "body body"
      "actions actions";
    gap: .75rem;
  }
  .runner-brand { width: 100%; justify-self: stretch; }
}

/* ==========================================================================
 * 26 · Review hero (inner pages)
 * ========================================================================== */

.review-hero {
  position: relative;
  margin-top: -4.75rem;
  padding: 7rem 0 3.5rem;
  overflow: hidden;
}
.review-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--page-hero-bg, none);
  background-size: cover;
  background-position: center 35%;
  opacity: .55;
  z-index: 0;
}
.review-hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,2,3,.82) 0%, rgba(22,5,10,.88) 50%, rgba(22,5,10,.98) 100%),
    linear-gradient(90deg,  rgba(10,2,3,.7) 0%, transparent 55%);
  z-index: 1;
}
.review-hero .container { position: relative; z-index: 2; }

.review-hero__top { margin-bottom: 2.25rem; }

.review-hero h1 {
  font-size: clamp(2.1rem, 3.6vw + 0.8rem, 3.4rem);
  font-weight: 400;
  max-width: 960px;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.review-hero h1 em { color: var(--accent-warm); font-style: italic; font-weight: 300; }

/* Rating badge inline with H1 */
.rating-badge {
  display: inline-flex;
  align-items: baseline;
  gap: .35rem;
  margin-left: 1rem;
  padding: .35rem 1rem .4rem;
  background: rgba(212,165,71,.12);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--accent-soft);
  vertical-align: middle;
  line-height: 1;
}
.rating-badge__star { color: var(--accent); font-size: 1rem; }
.rating-badge__out  { color: var(--text-dim); font-size: .82rem; font-weight: 400; }

/* Byline */
.review-byline {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .4rem .9rem .4rem .4rem;
  background: rgba(245,230,211,.04);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.byline-avatar {
  position: relative;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-warm) 100%);
  display: inline-grid;
  place-items: center;
  color: var(--brand-dark);
  flex-shrink: 0;
}
.byline-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.byline-verified {
  position: absolute;
  right: -2px; bottom: -2px;
  width: 14px; height: 14px;
  background: var(--accent-warm);
  border: 2px solid var(--bg);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
}
.byline-name { font-weight: 700; color: var(--text); }
.byline-role { color: var(--text-dim); font-size: .82rem; }

.review-hero__lead {
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 820px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* CTA strip — white card styled for dark theme (light cream for logo readability) */
.review-cta-strip {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 1.5rem 2rem;
  background: linear-gradient(180deg, #f6ecd8 0%, #e6d6b5 100%);
  border: 1px solid var(--accent);
  border-radius: var(--r-card);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-elev);
  position: relative;
  overflow: hidden;
}
.review-cta-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-warm), var(--accent));
}

.review-cta__brand {
  display: grid;
  place-items: center;
  min-height: 70px;
  padding: .25rem;
}
.review-cta__brand img {
  max-height: 70px;
  max-width: 100%;
  object-fit: contain;
}
.review-cta__brand--fallback {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--brand);
  font-style: italic;
  font-weight: 500;
}

.review-cta__offer { text-align: center; }
.review-cta__label {
  display: block;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: .35rem;
}
.review-cta__bonus {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--brand);
  line-height: 1.2;
  font-style: normal;
}

.review-cta__action { justify-self: end; }
.review-cta__action .play-btn { min-width: 11rem; }

/* Visitor bar spans full row under the strip */
.visitor-bar {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  justify-content: center;
  padding: .7rem 1rem;
  margin: 0 -1.75rem -1.5rem;
  background: rgba(26,5,8,.08);
  border-top: 1px dashed rgba(26,5,8,.18);
  color: var(--brand-dark);
  font-size: .86rem;
}
.visitor-bar .visitor-count { color: var(--accent-warm); font-weight: 800; }
.visitor-bar .visitor-count { color: #c78a1a; }
.visitor-dot {
  width: .55rem; height: .55rem;
  border-radius: 50%;
  background: #c78a1a;
  box-shadow: 0 0 0 4px rgba(199,138,26,.18);
  animation: pulse 1.6s ease-in-out infinite;
}

/* ==========================================================================
 * 27 · Editor’s Verdict — rating breakdown card
 * ========================================================================== */

.editor-verdict { padding: 3rem 0; }

.verdict-card {
  background: linear-gradient(180deg, rgba(33,8,16,.75) 0%, rgba(22,5,10,.5) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 2.5rem 2.25rem;
  position: relative;
  overflow: hidden;
}
.verdict-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.verdict-head { margin-bottom: 2rem; }
.verdict-head h2 {
  font-size: clamp(1.6rem, 2vw + 0.9rem, 2.1rem);
  margin: .35rem 0 0;
  font-weight: 400;
}
.verdict-head h2 em { color: var(--accent-warm); font-style: italic; font-weight: 300; }

.verdict-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 3rem;
  align-items: start;
}

.rating-list { margin: 0; }
.rating-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
}
.rating-row:last-child { border-bottom: none; }
.rating-row dt {
  font-size: .98rem;
  color: var(--text-muted);
  letter-spacing: .01em;
}
.rating-row dd {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin: 0;
}
.rating-number {
  font-family: var(--font-heading);
  font-feature-settings: "tnum";
  font-size: 1.05rem;
  color: var(--text);
  min-width: 2.6rem;
  text-align: right;
}

.rating-row--overall {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border-strong);
  margin-bottom: .5rem;
}
.rating-row--overall dt {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--text);
  font-weight: 400;
}
.rating-row--overall .rating-number {
  font-size: 1.6rem;
  color: var(--accent-soft);
}

/* stars */
.stars {
  display: inline-flex;
  gap: 2px;
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: .02em;
}
.rating-row--overall .stars { font-size: 1.3rem; }
.star--full  { color: var(--accent); }
.star--empty { color: rgba(212,165,71,.22); }
.star--half {
  position: relative;
  color: rgba(212,165,71,.22);
}
.star--half::before {
  content: '★';
  position: absolute;
  left: 0; top: 0;
  width: 50%;
  overflow: hidden;
  color: var(--accent);
}

.verdict-note {
  background: rgba(212,165,71,.06);
  border: 1px solid var(--border);
  border-left: 2px solid var(--accent);
  border-radius: var(--r-card);
  padding: 1.5rem 1.5rem;
}
.verdict-note .section-label { margin-bottom: .7rem; }
.verdict-note p {
  color: var(--text);
  font-size: .98rem;
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}

/* Responsive — review hero + verdict */
@media (max-width: 900px) {
  .review-hero { padding-top: 6rem; }
  .review-hero h1 { font-size: 2rem; }
  .rating-badge { display: inline-flex; margin-left: .5rem; font-size: 1rem; padding: .25rem .75rem .3rem; }

  .review-cta-strip {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }
  .review-cta__brand { min-height: 64px; }
  .review-cta__brand img { max-height: 60px; }
  .review-cta__action { justify-self: center; }
  .review-cta__action .play-btn { width: 100%; max-width: 280px; }
  .visitor-bar { margin: .5rem -1.75rem -1.5rem; }

  .verdict-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 560px) {
  .review-hero h1 { display: block; font-size: 1.75rem; }
  .rating-badge { display: inline-flex; margin-left: 0; margin-top: .5rem; }
  .review-byline { flex-wrap: wrap; padding: .4rem .8rem .4rem .4rem; }
  .byline-role { width: 100%; padding-left: 2.5rem; margin-top: -.2rem; }

  .verdict-card { padding: 1.75rem 1.25rem; }
  .rating-row { grid-template-columns: 1fr; gap: .35rem; padding: .85rem 0; }
  .rating-row dd { justify-content: flex-start; }
  .rating-row--overall { padding: 1rem 0; }
  .rating-row--overall dt { font-size: 1.15rem; }
}
