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

:root {
  /* Cricket brand palette — matches logo */
  --navy-900: #02103a;
  --navy-800: #041650;
  --navy-700: #072070;
  --navy-600: #0b2d96;
  --orange-600: #c94500;
  --orange-500: #e8530a;
  --orange-400: #ff6e28;
  --gold-500:   #f5a800;
  --gold-400:   #ffc233;

  /* Neutral surface */
  --bg:         #ffffff;
  --surface:    #f5f7fc;
  --surface-2:  #edf0f8;
  --border:     #dde2ef;
  --border-strong: #b8c1d9;

  /* Text */
  --text:       #0d1432;
  --text-body:  #2e3556;
  --muted:      #64718f;

  /* Buttons */
  --btn-primary-start: var(--orange-500);
  --btn-primary-end:   var(--orange-600);
  --btn-secondary-start: var(--navy-700);
  --btn-secondary-end:   var(--navy-900);
  --btn-ghost-bg: rgba(4, 22, 80, 0.06);
  --btn-radius:   8px;

  /* Shadows */
  --shadow-sm:   0 1px 4px rgba(4, 22, 80, 0.08);
  --shadow-md:   0 4px 16px rgba(4, 22, 80, 0.1);
  --shadow-lg:   0 8px 32px rgba(4, 22, 80, 0.14);
  --shadow-panel: 0 12px 40px rgba(4, 22, 80, 0.12);

  /* Radius */
  --radius-xl: 16px;
  --radius-lg: 12px;
  --radius-md:  8px;
  --radius-sm:  6px;

  /* Misc */
  --stroke:       var(--border);
  --stroke-strong: var(--border-strong);
  --blur: 14px;
  --transition-fast: 200ms ease;
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--navy-700);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--orange-500);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page__content {
  flex: 1;
}

.container {
  width: min(100% - 2rem, 1380px);
  margin-inline: auto;
}

.section {
  padding: clamp(2.5rem, 4vw, 4rem) 0;
}

.page--responsible-play .section--tight {
  padding-bottom: clamp(0.25rem, 0.6vw, 0.5rem);
}

.page--responsible-play .section + .section {
  padding-top: clamp(0.75rem, 1.2vw, 1.25rem);
}

.page--responsible-play .hero--compact {
  margin-bottom: clamp(0.35rem, 1vw, 0.8rem);
}

.page--responsible-play .hero__intro--wide {
  margin-bottom: clamp(0.2rem, 0.6vw, 0.4rem);
  padding-inline: clamp(0.8rem, 1.5vw, 1.2rem);
}

.page--responsible-play .section--tight + .section {
  padding-top: clamp(0.35rem, 0.8vw, 0.8rem);
}

.page--casino .hero__intro--tight {
  width: 100%;
  margin-inline: 0;
}
/* 
.section + .section {
  padding-top: 0;
} */

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--orange-500);
  margin-bottom: 0.8rem;
}

.section__title {
  margin: 0.1rem 0 0.85rem;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}

.section__description {
  margin: 0 0 2rem;
  color: var(--muted);
  max-width: 65ch;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid--cards {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ── Pill ── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-800);
  border: 1px solid var(--border);
  background: var(--surface);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--btn-radius);
  border: 2px solid transparent;
  font-weight: 700;
  background: transparent;
  color: var(--text);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
  box-shadow: var(--btn-shadow, none);
  min-height: 46px;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--btn-primary-start), var(--btn-primary-end));
  color: #fff;
  border-color: var(--orange-600);
  --btn-shadow: 0 6px 20px rgba(232, 83, 10, 0.35);

}

.btn--primary:hover {
  box-shadow: 0 10px 28px rgba(232, 83, 10, 0.45);
  color: #fff;
}

.btn--secondary {
  background: linear-gradient(135deg, var(--btn-secondary-start), var(--btn-secondary-end));
  color: #fff;
  border-color: var(--navy-700);
  --btn-shadow: 0 6px 20px rgba(4, 22, 80, 0.25);
}

.btn--secondary:hover {
  box-shadow: 0 10px 28px rgba(4, 22, 80, 0.35);
  color: #ffffff;
}

.btn--ghost {
  background: var(--btn-ghost-bg);
  color: var(--navy-800);
  border-color: var(--border);
  --btn-shadow: none;
}

.btn--ghost:hover {
  background: var(--surface-2);
  border-color: var(--border-strong);
}

.btn--soft {
  background: var(--surface);
  color: var(--navy-800);
  border-color: var(--border);
  --btn-shadow: none;
}

/* ── Logo ── */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
}



/* ── Site Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 3px solid var(--orange-500);
  box-shadow: var(--shadow-sm);
}

.site-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.25rem 0.5rem;
}

.site-header__utility {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.site-header__utility--cta {
  flex-wrap: nowrap;
}

.cta-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--navy-800);
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition-fast), background var(--transition-fast);
  flex: 0 0 auto;
}

.cta-icon:hover {
  transform: translateY(-1px);
  background: var(--surface-2);
}

.cta-icon span {
  pointer-events: none;
}

.btn--cta-pill {
  border-radius: 8px;
  min-height: 42px;
  padding-inline: 1.4rem;
  padding-block: 0.5rem;
  font-size: 0.82rem;
  width: max-content;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--navy-800);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.nav-toggle__icon {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle__icon span {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav-toggle__label {
  font-size: 0.82rem;
}

.nav-toggle--open {
  background: var(--surface-2);
  border-color: var(--border-strong);
}

.nav-toggle--open .nav-toggle__icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle--open .nav-toggle__icon span:nth-child(2) {
  opacity: 0;
}

.nav-toggle--open .nav-toggle__icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Primary Nav ── */
.primary-nav {
  border-top: 1px solid var(--surface-2);
  background: var(--navy-800);
}

.primary-nav > .container {
  width: min(100% - 1rem, 1400px);
}

.primary-nav__rail {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  padding: 0 0.5rem;
  scrollbar-width: none;
  overflow-x: auto;
}

.primary-nav__rail::-webkit-scrollbar {
  display: none;
}

.primary-nav__link {
  padding: 0.75rem 1.1rem;
  border-radius: 0;
  border: none;
  border-bottom: 3px solid transparent;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
  font-size: 0.9rem;
  transition: border-color var(--transition-fast), color var(--transition-fast);
  flex: 0 0 auto;
  white-space: nowrap;
}

.primary-nav__link:hover,
.primary-nav__link:focus-visible {
  color: #fff;
  border-bottom-color: var(--gold-400);
}

.primary-nav__link--active {
  color: #fff;
  font-weight: 700;
  border-bottom-color: var(--orange-500);
}

/* ── Ticker ── */
.ticker {
  overflow: hidden;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.ticker--dense {
  border-top: 1px solid var(--border);
  border-bottom: none;
}

.ticker__track {
  display: flex;
  gap: 2.5rem;
  padding: 0.5rem 0;
  animation: ticker 28s linear infinite;
  width: max-content;
}

.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
  white-space: nowrap;
}

.ticker__item strong {
  color: var(--text);
  font-weight: 600;
}

/* ── Hero ── */
.hero {
  padding-top: 3rem;
}

.page__content > .hero:first-of-type {
  padding-top: clamp(2rem, 3vw, 3rem);
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.hero__grid > * {
  height: 100%;
}

.hero__tile {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.hero__tile::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: linear-gradient(135deg, rgba(4, 22, 80, 0.5), rgba(4, 22, 80, 0.1)), url('../img/back-football.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero__tile > * {
  position: relative;
  z-index: 1;
}

.hero__lead {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero__intro {
  width: 100%;
}

.hero__intro--tight {
  width: min(100%, 860px);
  margin-inline: auto;
  text-align: left;
}

.hero__intro--wide {
  width: min(100%, 1180px);
  margin-inline: auto;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  padding-inline: clamp(1.5rem, 3vw, 2.5rem);
}

.hero__intro--stacked {
  margin-bottom: 1rem;
}

.hero__stories {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  height: 100%;
}

.hero__stories .hero-story-card {
  flex: 1 1 0;
}

.hero-story-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  min-height: 0;
  isolation: isolate;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
}

.hero-story-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(0deg, rgba(4, 22, 80, 0.85) 0%, rgba(4, 22, 80, 0.05) 65%);
  z-index: 1;
  pointer-events: none;
}

.hero-story-card:hover {
  transform: translateY(-3px);
  border-color: var(--orange-500);
  box-shadow: var(--shadow-md);
}

.hero-story-card:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--orange-400);
}

.hero-story-card__overlay,
.hero-story-card__overlay::after {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.5;
}

.hero-story-card__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 22, 80, 0.9) 0%, rgba(4, 22, 80, 0.05) 65%);
  filter: blur(4px);
}

.hero-story-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
}

.hero-story-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: auto;
}

.hero-story-card__badge {
  padding: 0.15rem 0.85rem;
  border-radius: 4px;
  background: var(--orange-500);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-story-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.hero-story-card__views {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-story-card h3 {
  margin: 0;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: #fff;
}

.hero-story__meta {
  margin-top: auto;
  display: flex;
  gap: 0.45rem;
}

.hero__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--text);
  font-weight: 700;
}

.hero__description {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.about-hero {
  max-width: 900px;
  margin: 0 auto 2rem;
  text-align: left;
}

.stats-panel {
  margin-top: 1rem;
}

/* ── Article Panel ── */
.article-panel {
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.article-panel__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.article-panel__meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-end;
}

.article-panel__meta-info {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.article-panel__meta-stats {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.article-panel__author .article-byline {
  margin-bottom: 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

/* ── Stats ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.stat-card {
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.stat-card__value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy-800);
}

.stat-card__label {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero__media {
  padding: 0;
  border-radius: var(--radius-lg);
  background: transparent;
  border: none;
  box-shadow: none;
  display: block;
}

.hero-photo {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  margin: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.article-analysis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.analysis-card {
  border-radius: var(--radius-md);
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.analysis-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(4, 22, 80, 0.15);
  pointer-events: none;
  border-radius: inherit;
}

.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(4, 22, 80, 0.8) 0%, rgba(4, 22, 80, 0.2) 65%, rgba(4, 22, 80, 0) 100%);
  pointer-events: none;
  border-radius: inherit;
}

body.page--news .hero-photo::after {
  background: none;
  filter: none;
}

/* ── Panel ── */
.panel-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.panel {
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy-700);
  background: #fff;
  position: relative;
  overflow: hidden;
}

.panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(232, 83, 10, 0.06), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.panel:hover::after {
  opacity: 1;
}

.panel--accent {
  background: linear-gradient(135deg, rgba(232, 83, 10, 0.06), rgba(245, 168, 0, 0.04));
  border-left-color: var(--orange-500);
}

/* ── Live pill ── */
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange-500);
}

.live-pill::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 10px var(--orange-400);
  animation: pulse 1.6s infinite;
}

/* ── Glass Panel ── */
.glass-panel {
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.glass-panel--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* ── Glow / CTA Cards ── */
.glow-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.glow-card--cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--navy-800);
  border-color: var(--navy-700);
  color: #fff;
}

.glow-card__logo {
  width: clamp(48px, 4vw, 56px);
  height: clamp(48px, 4vw, 56px);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glow-card__logo img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.glow-card__btn {
  align-self: flex-start;
  text-transform: none;
  letter-spacing: 0.04em;
}

.glow-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(232, 83, 10, 0.1), transparent 55%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
  z-index: 1;
}

.glow-card:hover::before {
  opacity: 1;
}

.glow-card--cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/back-casinos.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.12;
  z-index: 0;
}

.glow-card--cta > * {
  position: relative;
  z-index: 2;
}

/* ── News Grid ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}

.slots-grid .news-card { gap: 0.65rem; }
.slots-grid .news-card p { margin: 0; }
.slots-grid .news-card a { margin-top: auto; display: inline-flex; align-self: flex-start; }
.slots-grid .news-card h3 { margin: 0 0 0.25rem; }

.news-grid--list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.news-grid--list .news-card {
  width: 100%;
}

/* ── News Card ── */
.news-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --gh-bg: #fff;
  --gh-border: var(--border);
  --gh-br: var(--radius-lg);
}

.news-card[data-card-link] { cursor: pointer; }

.page--news-category .news-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
}

.page--news-category .news-card {
  background: #fff;
  border-color: var(--border);
  box-shadow: var(--shadow-md);
}

.page--news-category .news-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(4, 22, 80, 0.75) 75%, rgba(4, 22, 80, 0.97) 100%);
  opacity: 1;
  z-index: 2;
  pointer-events: none;
}

.page--news-category .news-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 20% 5%, rgba(232, 83, 10, 0.25), transparent 55%);
  opacity: 0.4;
  z-index: 2;
  pointer-events: none;
}

.page--news-category .news-card > * {
  position: relative;
  z-index: 3;
}

.page--news-category .news-card:hover::after { opacity: 0.65; }

.page--news-category .news-card__bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  transform: scale(1.01);
  opacity: 0.55;
  transition: transform var(--transition-slow), opacity var(--transition-fast);
}

.page--news-category .news-card__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: inherit;
  background-size: inherit;
  background-position: inherit;
  background-repeat: inherit;
  filter: blur(14px);
  opacity: 0.35;
  transform: translateY(8%) scale(1.08);
  pointer-events: none;
  mask-image: linear-gradient(0deg, rgba(0,0,0,0.9) 12%, rgba(0,0,0,0) 65%);
  -webkit-mask-image: linear-gradient(0deg, rgba(0,0,0,0.9) 12%, rgba(0,0,0,0) 65%);
}

.page--news-category .news-card:hover .news-card__bg {
  transform: scale(1.05);
  opacity: 0.55;
}

.hero-story {
  --gh-bg: transparent;
  --hero-story-image: none;
  border-color: transparent;
  background: transparent;
  cursor: pointer;
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.hero-story::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    var(--hero-story-image),
    linear-gradient(0deg, rgba(4, 22, 80, 0.9) 0%, rgba(4, 22, 80, 0) 65%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-story:hover { transform: translateY(-2px); }
.hero-story:focus-visible { box-shadow: 0 0 0 2px var(--orange-400); }
.hero-story > * { position: relative; z-index: 1; }
.hero-story { color: #fff; }

.news-card--media {
  flex-direction: row;
  gap: 1rem;
  align-items: stretch;
}

.news-card__media {
  width: clamp(240px, 32vw, 400px);
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  align-self: stretch;
  min-height: 100px;
}

.news-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.news-card__body h3 {
  margin: 0 0 0.25rem;
  color: var(--text);
}

.news-card__body p {
  margin: 0;
  color: var(--muted);
}

.news-card__category {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.8rem;
  border-radius: 4px;
  border: 1px solid var(--orange-500);
  background: rgba(232, 83, 10, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--orange-500);
  text-decoration: none;
}

.news-card__category:hover {
  background: var(--orange-500);
  color: #fff;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
}

.meta-chip .icon { flex-shrink: 0; }
.card-actions { margin-top: 1rem; }
.card--equal { display: flex; flex-direction: column; }
.card--equal__body { flex: 1; display: flex; flex-direction: column; gap: 0.65rem; }

.card-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.82rem;
  transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.card-btn:hover {
  transform: translateY(-1px);
  border-color: var(--navy-700);
  background: var(--surface-2);
  color: var(--navy-800);
}

.card-btn--accent {
  background: linear-gradient(135deg, var(--btn-primary-start), var(--btn-primary-end));
  color: #fff;
  border-color: var(--orange-600);
}

.card-btn--accent:hover {
  background: linear-gradient(135deg, var(--orange-400), var(--orange-500));
  color: #fff;
  border-color: var(--orange-400);
  box-shadow: 0 8px 20px rgba(232, 83, 10, 0.3);
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange-500);
  box-shadow: var(--shadow-md);
}

.glare-hover {
  width: var(--gh-width, 100%);
  height: var(--gh-height, auto);
  background: var(--gh-bg, #fff);
  border-radius: var(--gh-br, var(--radius-lg));
  border: 1px solid var(--gh-border, var(--border));
  overflow: hidden;
  position: relative;
}

.glare-hover:hover { cursor: pointer; }
.glare-hover > * { position: relative; z-index: 3; }

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.news-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.news-card__top .news-card__meta-item { flex: 1; }

.news-card__info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.5rem;
  text-align: right;
}

.news-card__timestamp {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-story-card__timestamp { color: rgba(255, 255, 255, 0.9); }

.news-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: auto;
}

.news-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.news-card__meta-item time { color: inherit; }
.news-card__meta-item a { color: var(--text); font-weight: 600; }

.icon {
  width: 0.95rem;
  height: 0.95rem;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.news-card__author { color: var(--navy-800); font-weight: 600; }
.news-card__author:hover { color: var(--orange-500); }

/* ── Article ── */
.article-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin: 0.5rem 0 1rem;
}

.article-header__category {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.8rem;
  border-radius: 4px;
  border: 1.5px solid var(--navy-800);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--navy-800);
  text-decoration: none;
}

.article-header__category:hover {
  background: var(--navy-800);
  color: #fff;
}

.article-header__updated {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.article-header__stats {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.article-byline--compact { margin-bottom: 0; gap: 0.6rem; }
.article-byline--compact .avatar--sm { width: 44px; height: 44px; font-size: 0.85rem; flex-shrink: 0; }
.avatar--sm { width: 52px; height: 52px; font-size: 1rem; flex-shrink: 0; }

.article-byline__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  display: block;
}

.article-byline a { color: var(--navy-800); font-weight: 600; }
.article-byline a:hover { color: var(--orange-500); }

/* ── Tables ── */
.review-table,
table {
  width: 100%;
  border-collapse: collapse;
}

.review-table th,
.review-table td,
table th,
table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  color: var(--text-body);
}

.review-table th,
table th {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: var(--surface);
  font-weight: 600;
}

.review-table td:last-child,
table td:last-child { text-align: right; }

.btn--table {
  padding: 0.4rem 1.1rem;
  font-size: 0.8rem;
  text-transform: none;
  letter-spacing: 0.03em;
  min-height: auto;
}

.review-table tr:hover td,
table tr:hover td { background: var(--surface); }

/* ── Accordion ── */
.accordion {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.accordion__item + .accordion__item { border-top: 1px solid var(--border); }

.accordion__button {
  width: 100%;
  background: var(--surface);
  border: none;
  color: var(--text);
  padding: 1.1rem 1.4rem;
  text-align: left;
  font-weight: 600;
  font-family: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.accordion__button:hover { background: var(--surface-2); }

.accordion__button::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--orange-500);
  transition: transform var(--transition-fast);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.4rem;
  color: var(--muted);
  background: #fff;
  transition: max-height 300ms ease;
}

.accordion__content.open { padding-bottom: 1rem; }
.accordion__button[aria-expanded="true"]::after { transform: rotate(45deg); }

/* ── Live board ── */
.live-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* ── Timeline ── */
.timeline {
  border-left: 3px solid var(--orange-500);
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline__item {
  position: relative;
  padding-left: 1rem;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -1.6rem;
  top: 0.45rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 10px rgba(232, 83, 10, 0.6);
}

.table-wrapper { overflow-x: auto; }

/* ── Form ── */
.form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.input {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}

.input:focus {
  outline: none;
  border-color: var(--navy-700);
}

textarea.input { min-height: 140px; resize: vertical; }

/* ── Brand Marquee ── */
.brand-marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
}

.brand-marquee + .brand-marquee { border-top: none; }

.brand-marquee__track {
  display: flex;
  gap: 2.5rem;
  padding: 1rem 0;
  animation: ticker 35s linear infinite;
  width: max-content;
}

.brand-marquee__item {
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #02103a;
}

.brand-marquee__item img {
  max-height: 28px;
  width: auto;
  opacity: 0.85;
  filter: drop-shadow(0 2px 6px rgba(4, 22, 80, 0.1));
}

.brand-marquee__item--ghost {
  border-style: dashed;
  color: var(--muted);
}

/* ── Site Footer ── */
.site-footer {
  border-top: 3px solid var(--navy-800);
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.75);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  padding: 3rem 0;
}

.site-footer__meta {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
}

.site-footer a { color: rgba(255, 255, 255, 0.7); }
.site-footer a:hover { color: var(--gold-400); }

/* ── Author ── */
.author-highlight { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.author-posts { display: flex; flex-direction: column; gap: 1.25rem; }

.author-posts__item {
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  background: var(--surface);
}

.author-posts__item small { color: var(--muted); }
.mobile-stack { display: grid; gap: 1rem; }

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* ── Avatar ── */
.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  background-size: cover;
  background-position: center;
  border: none;
  box-shadow: none;
  overflow: hidden;
  mask-image: radial-gradient(circle, #fff 99%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle, #fff 99%, transparent 100%);
}

.avatar--dilshod { background-image: url('../img/avatars/avatar-1.jpg'); }
.avatar--shukhrat { background-image: url('../img/avatars/avatar-2.jpg'); }
.avatar--harsh    { background-image: url('../img/avatars/avatar-3.jpg'); }
.avatar--malika   { background-image: url('../img/avatars/avatar-4.jpg'); }

/* ── Review Layout ── */
.review-hero { padding-bottom: 1rem; }

.review-hero__card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  background-image: linear-gradient(135deg, rgba(4, 22, 80, 0.95), rgba(7, 32, 112, 0.88)), url('../img/back-casinos.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: var(--shadow-lg);
  color: #fff;
}

.review-hero__logo {
  width: 96px;
  height: 96px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.75rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.review-hero__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #fff;
}

.review-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--gold-400);
}

.review-rating__stars { display: inline-flex; gap: 0.2rem; }

.review-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.25rem;
}

.review-hero__cta-code {
  padding: 0.35rem 0.9rem;
  border-radius: 4px;
  border: 1.5px dashed rgba(255, 255, 255, 0.5);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
}

.review-toc .toc__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.toc__link {
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-body);
  transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}

.toc__link:hover {
  border-color: var(--navy-700);
  color: var(--navy-800);
  background: var(--surface-2);
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(260px, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.review-main,
.review-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-block {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
}

.review-block h2 { margin-top: 0; margin-bottom: 0.9rem; color: var(--text); }
.review-block p { color: var(--muted); }
.review-block ul,
.review-block ol { color: var(--text-body); padding-left: 1.25rem; margin-bottom: 0; }

/* ── Data Table ── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
  margin-top: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-sizing: border-box;
  table-layout: fixed;
  min-width: 0;
}

.data-table th,
.data-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
  min-width: 0;
  word-break: break-word;
}

.data-table thead,
thead {
  background: var(--navy-800);
}

.data-table thead th,
thead th {
  color: #000;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.data-table tbody tr:nth-child(odd) { background: var(--surface); }
.data-table tbody tr:last-child td  { border-bottom: none; }

/* ── Info Cards ── */
.info-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy-800);
  box-shadow: var(--shadow-sm);
}

.info-card h3 { margin-top: 0; color: var(--text); }

.info-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  color: var(--text-body);
}

.info-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.65rem;
  border-radius: 4px;
  background: rgba(4, 22, 80, 0.08);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--navy-800);
}

/* ── Bonus Card ── */
.bonus-card {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold-500);
  background: #fffbf0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.bonus-card__value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--orange-500);
}

/* ── Review Grid ── */
.review-grid--payments {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

/* ── Slot Page ── */
.slot-page { background: var(--bg); }

.slot-hero__grid {
  display: grid;
  gap: clamp(1rem, 3vw, 2.5rem);
  grid-template-columns: minmax(0, 3fr) minmax(280px, 1.2fr);
  align-items: flex-start;
}

.slot-page .section:first-of-type {
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
}

.slot-hero__card {
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 2.2vw, 1.8rem) clamp(1.25rem, 2.5vw, 2rem);
  background-image: linear-gradient(135deg, rgba(4, 22, 80, 0.96), rgba(7, 32, 112, 0.88)), url('../img/back-casinos.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  color: #fff;
}

.slot-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.slot-hero__sidebar { display: flex; flex-direction: column; gap: 1rem; }

.slot-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--gold-400);
}

.slot-hero__actions {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-bottom: 0;
}

.slot-hero__actions .btn { width: 100%; justify-content: center; }

.slot-preview {
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.slot-preview img { width: 100%; display: block; }

.slot-preview__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  gap: 0.6rem;
  border-top: 1px solid var(--border);
}

.slot-preview__footnote { font-size: 0.8rem; color: var(--muted); }

.slot-data {
  margin-top: 1rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.slot-data table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }

.slot-data th,
.slot-data td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
}

.slot-data tbody tr:last-child td { border-bottom: none; }

.slot-data th {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  background: var(--surface);
}

.slot-layout {
  display: grid;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  grid-template-columns: minmax(0, 2.7fr) minmax(260px, 1fr);
}

.slot-main,
.slot-aside { display: flex; flex-direction: column; gap: 1.2rem; }

.slot-block {
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
}

.slot-block h2 { margin-top: 0; color: var(--text); }

.slot-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.8rem;
}

.slot-stat {
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-body);
}

.slot-pros-cons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.slot-pros-cons ul { list-style: none; margin: 0; padding-left: 1rem; color: var(--text-body); }

.slot-info-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange-500);
  padding: 1.2rem;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.slot-info-card h3 { margin-top: 0; color: var(--text); }
.slot-info-card ul { list-style: none; margin: 0; padding: 0; color: var(--text-body); display: grid; gap: 0.4rem; }

.slot-highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.slot-highlight__card {
  padding: 0.9rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
  color: var(--text-body);
}

/* ── Review Steps ── */
.review-steps {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.review-steps figure {
  margin: 0;
  background: var(--surface);
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
}

.review-steps img { width: 100%; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.review-steps figcaption { margin-top: 0.75rem; color: var(--muted); font-size: 0.9rem; }

/* ── Pros Cons ── */
.pros-cons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.pros-cons ul { list-style: none; margin: 0; padding-left: 1rem; color: var(--text-body); }

/* ── FAQ ── */
.faq { display: flex; flex-direction: column; gap: 0.65rem; }

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #fff;
  padding: 0.6rem 1rem;
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
}

.faq-item summary::marker              { display: none; }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item[open] {
  border-color: var(--navy-700);
  background: var(--surface);
}

.faq-item p { margin-bottom: 0; color: var(--muted); }
.review-hero__card .badge {
color: #fff;
}
/* ── Badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.65rem;
  border-radius: 4px;
  background: rgba(4, 22, 80, 0.08);
  color: var(--navy-800);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ══════════════════════
   RESPONSIVE
══════════════════════ */
@media (max-width: 1080px) {
  .slot-hero__grid    { grid-template-columns: 1fr; }
  .slot-hero__actions { grid-template-columns: 1fr; }
  .slot-layout        { grid-template-columns: 1fr; }
  .review-hero__card  { grid-template-columns: 1fr; text-align: center; }
  .review-hero__meta,
  .review-hero__cta   { justify-content: center; }
}

@media (max-width: 960px) {
  .review-layout { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .hero__grid  { grid-template-columns: 1fr; }
  .hero__tile  { grid-template-columns: 1fr; }
  .hero__stories { height: auto; }
  .hero__stories .hero-story-card { flex: 0 0 auto; }
  .site-header__top {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .brand-marquee__item { min-width: 100px; font-size: 0.8rem; }
}

@media (max-width: 1180px) and (min-width: 901px) {
  .primary-nav__rail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    justify-content: center;
    overflow: visible;
    padding-block: 0;
    gap: 0;
  }
  .primary-nav__link { width: 100%; text-align: center; }
}

@media (max-width: 900px) {
  .logo__text { display: none; }
  .site-header__top {
    position: relative;
    width: 100%;
    padding-top: 0.85rem;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
  }
  .nav-toggle {
    display: inline-flex;
    width: auto;
    justify-content: center;
    position: static;
    margin-left: auto;
    order: 1;
  }
  .primary-nav       { display: none; }
  .primary-nav--open { display: block; }
  .primary-nav__rail {
    flex-direction: column;
    overflow: visible;
    padding: 0.5rem;
  }
  .primary-nav__link {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.85rem 1.1rem;
  }
  .hero__stories { height: auto; }
  .site-header__utility--meta { display: none; }
  .site-header__utility--cta {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.3rem;
    order: 2;
  }
  .site-header__utility--cta .btn { flex: 1 1 0; width: auto; }
  .news-card--media { flex-direction: column; }
  .news-card__media { width: 100%; height: clamp(200px, 45vw, 280px); }
  .news-card__body  { padding-top: 1rem; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 1.25rem, 560px); }
  .hero__actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .site-header__utility--cta .btn { width: auto; }
  .news-card__meta  { flex-direction: column; gap: 0.35rem; }
  .news-card__top   { flex-direction: row; align-items: center; gap: 0.75rem; }
  .news-card__info  { flex-direction: column; align-items: flex-end; justify-content: flex-end; text-align: right; margin-left: auto; }
  .hero__tile       { grid-template-columns: 1fr; }
  .hero__lead       { order: 1; }
  .hero__stories    { order: 2; height: auto; }
  .hero__stories .hero-story-card { flex: 0 0 auto; }
  .hero-story-card  { flex-direction: column; }
  .article-header   { flex-direction: column; align-items: flex-start; }
  .article-panel__meta,
  .article-panel__meta-info,
  .article-panel__meta-stats { align-items: flex-start; justify-content: flex-start; }
  .news-card--media { flex-direction: column; }
  .news-card__media { width: 100%; min-height: 180px; }
}

@media (max-width: 520px) {
  .brand-marquee__track { gap: 1.5rem; }
  .brand-marquee__item  { min-width: 90px; padding: 0.5rem 0.8rem; }
}

/* ══════════════════════
   ANIMATIONS
══════════════════════ */
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes pulse {
  0%   { opacity: 0.3; transform: scale(0.9); }
  50%  { opacity: 1;   transform: scale(1.25); }
  100% { opacity: 0.3; transform: scale(0.9); }
}

/* ══════════════════════
   MISC
══════════════════════ */
.hero__media ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

.hero--stacked {
  display: grid;
  gap: 1.5rem;
}

.review-aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

header .logo img {
width: 100%;
    max-width: 60px;
    height: auto;

}

/* ══════════════════════════════════════════════
   CRICKET HOME PAGE — SPECIFIC COMPONENTS
══════════════════════════════════════════════ */

/* ── Section header row ── */
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.section-header-row .section__title,
.section-header-row + .section__title {
  margin-bottom: 0;
}

/* ── Cricket Hero Featured ── */
.hero--cricket {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);

}

.cricket-hero-featured {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: clamp(320px, 45vw, 520px);
  display: flex;
  align-items: flex-end;
  background-color: var(--navy-800);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.cricket-hero-featured__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 22, 80, 0.1) 0%,
    rgba(4, 22, 80, 0.45) 65%,
    rgba(4, 22, 80, 0.92) 100%
  );
  z-index: 1;
}

.cricket-hero-featured__content {
  position: relative;
  z-index: 2;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  width: 100%;
  max-width: 720px;
}

.cricket-hero-featured__top {
  margin-bottom: 0.85rem;
}

.cricket-hero-featured__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.cricket-hero-featured__desc {
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 56ch;
}

.cricket-hero-featured__foot {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ── Secondary story cards row ── */
.cricket-hero-secondaries {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.cricket-story-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.cricket-story-card:hover {
  transform: translateY(-3px);
  border-color: var(--orange-500);
  box-shadow: var(--shadow-md);
}

.cricket-story-card__thumb {
  width: 110px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--surface-2);
}

.cricket-story-card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.cricket-story-card__title {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cricket-story-card__meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: auto;
}

/* ── News thumb (used in news-grid--2col) ── */
.news-card__thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  background-color: var(--surface-2);
  position: relative;
  overflow: hidden;
}

.news-card__thumb .news-card__category {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
}

/* ── 2-col news grid ── */
.news-grid--2col {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4rem;
}

/* ── Section bookmakers accent ── */
.section--bookmakers {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section--bookmakers .section__title {
  margin-bottom: 1.25rem;
}

/* ── Live section dark strip ── */
.section--live {
  background: var(--navy-800);
  margin-top: 0;
}

.section--live + .section {
  padding: clamp(2.5rem, 4vw, 4rem) 0;
}

.glow-card--live {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.glow-card--live:hover::before {
  opacity: 1;
}

/* ── Casino list ── */
.cricket-casino-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cricket-casino-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.cricket-casino-item:hover {
  transform: translateY(-2px);
  border-color: var(--orange-500);
  box-shadow: var(--shadow-md);
}

.cricket-casino-item__rank {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy-800);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cricket-casino-item:first-child .cricket-casino-item__rank {
  background: var(--gold-500);
  color: var(--navy-900);
}

.cricket-casino-item:nth-child(2) .cricket-casino-item__rank {
  background: var(--border-strong);
  color: var(--navy-800);
}

.cricket-casino-item__logo {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.cricket-casino-item__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cricket-casino-item__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.cricket-casino-item__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.cricket-casino-item__meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cricket-casino-item__summary {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.cricket-casino-item__cta {
  flex-shrink: 0;
  width: auto;
  padding-inline: 1.4rem;
  min-height: 42px;
  font-size: 0.82rem;
}

/* ── Responsive overrides for new components ── */
@media (max-width: 720px) {
  .cricket-hero-secondaries {
    grid-template-columns: 1fr;
  }

  .cricket-story-card__thumb {
    width: 90px;
  }

  .cricket-casino-item {
    flex-wrap: wrap;
    gap: 0.85rem;
  }

  .cricket-casino-item__cta {
    width: 100%;
    justify-content: center;
  }

  .news-grid--2col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .cricket-story-card {
    flex-direction: column;
  }

  .cricket-story-card__thumb {
    width: 100%;
    height: 140px;
  }
}
