/* =========================================================
   CASINO POKIES AUSTRALIA - Site 9
   Royal Blue / Crimson Red / Gold — Australian Flag Theme
========================================================= */

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

:root {
  /* Core palette — Deep midnight blue */
  --clr-base: #060b18;
  --clr-deep: #030510;
  --clr-surface: #0d1430;
  --clr-surface-hover: #162044;

  /* Primary — Crimson Red (Australian flag) */
  --clr-primary: #e4002b;
  --clr-primary-dark: #b80023;
  --clr-primary-light: #ff2d55;

  /* Secondary — Royal Blue (Australian flag) */
  --clr-accent: #1e40af;
  --clr-accent-dark: #1e3a8a;
  --clr-accent-light: #3b82f6;

  /* Tertiary — Gold (Southern Cross) */
  --clr-gold: #fbbf24;
  --clr-gold-dark: #d9a21b;
  --clr-gold-light: #fcd34d;

  /* Typography */
  --clr-white: #FFFFFF;
  --clr-text: #b8c4d6;
  --clr-muted: rgba(184, 196, 214, 0.85);
  --clr-faded: rgba(184, 196, 214, 0.55);

  /* Borders */
  --border-dim: rgba(228, 0, 43, 0.12);
  --border-active: rgba(228, 0, 43, 0.30);
  --border-accent: rgba(30, 64, 175, 0.25);

  /* Gradients */
  --grad-main: linear-gradient(135deg, #e4002b 0%, #b80023 100%);
  --grad-accent: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  --grad-gold: linear-gradient(135deg, #fbbf24 0%, #d9a21b 100%);
  --grad-surface: linear-gradient(180deg, rgba(13, 20, 48, 0.97) 0%, rgba(3, 5, 16, 0.99) 100%);

  /* Glows */
  --glow-main: rgba(228, 0, 43, 0.30);
  --glow-accent: rgba(30, 64, 175, 0.25);
  --glow-gold: rgba(251, 191, 36, 0.30);

  /* Spacing (8px scale) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;

  /* Radius */
  --rad-xs: 4px;
  --rad-sm: 8px;
  --rad-md: 12px;
  --rad-lg: 16px;
  --rad-xl: 24px;
  --rad-full: 9999px;

  /* Layout */
  --max-width: 1200px;
  --header-h: 60px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--clr-base);
  background-image:
    radial-gradient(ellipse 60% 45% at 15% -10%, rgba(228, 0, 43, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 110%, rgba(30, 64, 175, 0.05) 0%, transparent 50%);
  color: var(--clr-text);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ========== WRAPPER (Container) ========== */
.wrapper {
  width: min(var(--max-width), calc(100% - var(--sp-8)));
  margin-inline: auto;
}

/* ========== ALERT STRIP ========== */
.alert-strip {
  background: var(--grad-accent);
  padding: var(--sp-2) 0;
  text-align: center;
}

.alert-strip__text {
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-white);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}

.alert-strip__text i {
  color: var(--clr-gold-light);
}

/* ========== HEAD BAR (Header) ========== */
.head-bar {
  background: rgba(8, 13, 28, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-dim);
  position: sticky;
  top: 0;
  z-index: 100;
}

.head-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.brand-logo__img {
  height: 38px;
  width: auto;
}

.brand-logo__text {
  font-size: 16px;
  font-weight: 800;
  color: var(--clr-white);
  letter-spacing: -0.01em;
}

/* Top Nav */
.top-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.top-nav__link {
  padding: var(--sp-3) var(--sp-4);
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-muted);
  border-radius: var(--rad-sm);
  transition: all 0.2s ease;
}

.top-nav__link:hover,
.top-nav__link:focus {
  color: var(--clr-white);
  background: rgba(255, 255, 255, 0.06);
}

.top-nav__link--active {
  color: var(--clr-primary-light);
}

/* Nav Dropdown */
.dropdown {
  position: relative;
}

.dropdown__toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--clr-muted);
}

.dropdown__chevron {
  font-size: 10px;
  transition: transform 0.2s ease;
}

.dropdown:hover .dropdown__chevron {
  transform: rotate(180deg);
}

.dropdown__panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 210px;
  background: rgba(13, 20, 48, 0.98);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-active);
  border-radius: var(--rad-md);
  padding: var(--sp-2) 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55);
  z-index: 200;
}

.dropdown:hover .dropdown__panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown__item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-5);
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-muted);
  transition: all 0.15s ease;
  white-space: nowrap;
}

.dropdown__item i {
  width: 16px;
  text-align: center;
  color: var(--clr-primary);
  font-size: 12px;
}

.dropdown__item:hover {
  color: var(--clr-white);
  background: rgba(228, 0, 43, 0.08);
}

/* Mobile CTA inside nav */
.top-nav__cta-group {
  display: none;
  padding: var(--sp-4);
  border-top: 1px solid var(--border-dim);
  margin-top: var(--sp-4);
  gap: var(--sp-3);
}

/* Header Buttons */
.head-bar__cta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

/* ========== MOBILE MENU ========== */
.side-panel {
  display: none;
}

.side-panel.is-open {
  display: block;
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-h));
  height: calc(100dvh - var(--header-h));
  z-index: 99;
  background: var(--clr-deep);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 48px 20px 40px;
}

.side-panel__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.side-panel__link {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: #b8c4d6;
}

.side-panel__link:active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.side-panel__cta {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Menu Button (Burger) */
.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--rad-sm);
  border: 1px solid var(--border-dim);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-btn__line {
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all 0.25s ease;
}

.menu-btn.is-open .menu-btn__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-btn.is-open .menu-btn__line:nth-child(2) {
  opacity: 0;
}
.menu-btn.is-open .menu-btn__line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== ACTION LINK (Buttons) ========== */
.action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--rad-full);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.action-link--royal {
  background: var(--grad-main);
  color: var(--clr-white);
  box-shadow: 0 4px 16px var(--glow-main);
}

.action-link--royal:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--glow-main);
}

.action-link--ghost {
  background: transparent;
  color: var(--clr-primary-light);
  border: 2px solid var(--clr-primary);
}

.action-link--ghost:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
}

.action-link--fill {
  background: var(--grad-main);
  color: var(--clr-white);
  box-shadow: 0 4px 16px var(--glow-main);
}

.action-link--fill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--glow-main);
}

/* ========== INTRO BLOCK (Hero) ========== */
.intro-block {
  padding: var(--sp-12) 0 var(--sp-10);
}

.intro-block__grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--sp-10);
  align-items: center;
}

.intro-block__media {
  order: 2;
}

.intro-block__media img {
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.45));
}

.intro-block__body {
  order: 1;
}

.intro-block__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: rgba(228, 0, 43, 0.10);
  border: 1px solid var(--border-dim);
  border-radius: var(--rad-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-primary-light);
  margin-bottom: var(--sp-5);
}

.intro-block__tag i {
  color: var(--clr-gold);
}

.intro-block__heading {
  font-size: clamp(30px, 4.8vw, 50px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--clr-white);
  margin-bottom: var(--sp-5);
  letter-spacing: -0.02em;
}

.intro-block__heading em {
  font-style: normal;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro-block__summary {
  font-size: 16px;
  color: var(--clr-muted);
  margin-bottom: var(--sp-8);
  max-width: 540px;
}

.intro-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

/* ========== FACTS ROW (Metrics) ========== */
.facts-row {
  padding: var(--sp-6) 0;
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  background: rgba(16, 25, 52, 0.45);
}

.facts-row__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.fact-box {
  text-align: center;
}

.fact-box__number {
  font-size: 28px;
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1.2;
}

.fact-box__number--accent {
  color: var(--clr-gold);
}

.fact-box__desc {
  font-size: 13px;
  color: var(--clr-faded);
  margin-top: var(--sp-1);
}

/* ========== AREA TITLE ========== */
.area-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-6);
}

.area-title__text {
  font-size: 22px;
  font-weight: 800;
  color: var(--clr-white);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.area-title__text i {
  color: var(--clr-gold);
}

.area-title__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-primary-light);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  transition: color 0.2s;
}

.area-title__link:hover {
  color: var(--clr-primary);
}

/* ========== FEATURED AREA (Slots) ========== */
.featured-area {
  padding: var(--sp-12) 0;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-4);
}

.slot-card {
  border-radius: var(--rad-md);
  overflow: hidden;
  background: var(--clr-surface);
  border: 1px solid var(--border-dim);
  transition: all 0.25s ease;
}

.slot-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-active);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.slot-card__media {
  position: relative;
  overflow: hidden;
}

.slot-card__pic {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.slot-card__hover {
  position: absolute;
  inset: 0;
  background: rgba(6, 11, 24, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.slot-card__media:hover .slot-card__hover {
  opacity: 1;
}

.slot-card__btns {
  display: flex;
  gap: var(--sp-2);
}

.slot-card__btn {
  flex: 1;
  padding: var(--sp-2) var(--sp-3);
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--rad-sm);
  text-align: center;
  transition: all 0.2s;
}

.slot-card__btn--go,
.slot-card__btn--try {
  flex: 1;
  padding: var(--sp-2) var(--sp-3);
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--rad-sm);
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
}

.slot-card__btn--go {
  background: var(--grad-main);
  color: var(--clr-white);
}

.slot-card__btn--try {
  background: rgba(255, 255, 255, 0.1);
  color: var(--clr-text);
  border: 1px solid var(--border-dim);
}

.slot-card__btn:hover {
  transform: scale(1.05);
}

.slot-card__details {
  padding: var(--sp-3) var(--sp-3) var(--sp-2);
}

.slot-card__name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 2px;
}

.slot-card__rtp {
  display: block;
  font-size: 11px;
  color: var(--clr-gold);
}

/* ========== MAKER STRIP (Providers) ========== */
.maker-strip {
  padding: var(--sp-10) 0;
  border-top: 1px solid var(--border-dim);
}

.maker-strip__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-6);
}

.maker-icon {
  opacity: 0.6;
  transition: opacity 0.2s;
}

.maker-icon:hover {
  opacity: 1;
}

.maker-icon img {
  height: 32px;
  width: auto;
}

/* ========== ARTICLE AREA (Content) ========== */
.article-area {
  padding: var(--sp-12) 0;
}

/* Content with Sidebar */
.content-with-side {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--sp-8);
  align-items: start;
}

.content-with-side .live-wins {
  position: sticky;
  top: calc(var(--header-h) + var(--sp-6));
}

@media (max-width: 1024px) {
  .content-with-side {
    grid-template-columns: 1fr;
  }
  .content-with-side .live-wins {
    display: none;
  }
}

.text-panel {
  background: var(--clr-surface);
  border: 1px solid var(--border-dim);
  border-radius: var(--rad-lg);
  padding: var(--sp-10);
}

.text-panel__title {
  font-size: 26px;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: var(--sp-6);
}

.text-panel__body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--clr-muted);
}

.text-panel__body h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--clr-white);
  margin: var(--sp-8) 0 var(--sp-4);
}

.text-panel__body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-white);
  margin: var(--sp-6) 0 var(--sp-3);
}

.text-panel__body p {
  margin-bottom: var(--sp-4);
}

.text-panel__body a {
  color: var(--clr-primary-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.text-panel__body a:hover {
  color: var(--clr-primary);
}

.text-panel__body strong {
  color: var(--clr-white);
  font-weight: 600;
}

.text-panel__body ul,
.text-panel__body ol {
  margin: var(--sp-4) 0;
  padding-left: var(--sp-6);
}

.text-panel__body ul {
  list-style: disc;
}

.text-panel__body ol {
  list-style: decimal;
}

.text-panel__body li {
  margin-bottom: var(--sp-2);
}

.text-panel__body table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-6) 0;
  background: rgba(6, 11, 24, 0.5);
  border-radius: var(--rad-md);
  overflow: hidden;
}

.text-panel__body th,
.text-panel__body td {
  padding: var(--sp-4);
  text-align: left;
  border-bottom: 1px solid var(--border-dim);
}

.text-panel__body th {
  background: rgba(228, 0, 43, 0.12);
  color: var(--clr-white);
  font-weight: 700;
}

.text-panel__body tr:last-child td {
  border-bottom: none;
}

/* ========== DEAL CARD (Offer CTA) ========== */
.deal-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  padding: var(--sp-5);
  background: linear-gradient(135deg, rgba(228, 0, 43, 0.15) 0%, rgba(228, 0, 43, 0.05) 100%);
  border: 1px solid var(--border-active);
  border-radius: var(--rad-lg);
  margin: var(--sp-8) 0;
  transition: all 0.25s ease;
}

.deal-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(228, 0, 43, 0.15);
}

.deal-card__badge {
  position: absolute;
  top: -10px;
  left: var(--sp-5);
  padding: 4px 12px;
  background: var(--grad-main);
  border-radius: var(--rad-full);
  font-size: 11px;
  font-weight: 700;
  color: var(--clr-white);
}

.deal-card__icon {
  font-size: 36px;
  flex-shrink: 0;
  color: var(--clr-white);
}

.deal-card__content {
  flex: 1;
}

.deal-card__name {
  font-size: 18px;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: var(--sp-1);
}

.deal-card__desc {
  font-size: 14px;
  color: var(--clr-white);
  opacity: 0.9;
}

.deal-card,
.deal-card *,
.text-panel__body .deal-card,
.text-panel__body .deal-card *,
.editorial__body .deal-card,
.editorial__body .deal-card * {
  text-decoration: none !important;
}

.deal-card__action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: var(--sp-3) var(--sp-6);
  background: var(--grad-main);
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.3px;
  border-radius: var(--rad-full);
  white-space: nowrap;
  transition: all 0.2s;
  flex-shrink: 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.35);
}

.deal-card__action:hover {
  transform: scale(1.05);
}

/* Deal card variants */
.deal-card--success {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.15) 0%, rgba(30, 64, 175, 0.05) 100%);
  border-color: var(--border-accent);
}

.deal-card--warning {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.12) 0%, rgba(251, 191, 36, 0.04) 100%);
  border-color: rgba(251, 191, 36, 0.25);
}

/* ========== QA SECTION (FAQ) ========== */
.qa-section {
  padding: var(--sp-16) 0;
  background: linear-gradient(180deg, rgba(13, 20, 48, 0.55) 0%, rgba(6, 11, 24, 0.9) 100%);
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
}

.qa-section__heading {
  font-size: 28px;
  font-weight: 800;
  color: var(--clr-white);
  text-align: center;
  margin-bottom: var(--sp-10);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
}

.qa-section__heading::before {
  content: '\f059';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--clr-primary);
  font-size: 26px;
}

.qa-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}

.qa-block {
  background: linear-gradient(135deg, rgba(13, 20, 48, 0.95) 0%, rgba(18, 28, 55, 0.9) 100%);
  border: 1px solid var(--border-active);
  border-radius: var(--rad-lg);
  overflow: hidden;
  transition: all 0.25s ease;
}

.qa-block:hover {
  border-color: var(--clr-primary);
  box-shadow: 0 4px 20px rgba(228, 0, 43, 0.10);
}

.qa-block__trigger {
  width: 100%;
  padding: var(--sp-5) var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: none;
  transition: background 0.2s ease;
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-white);
}

.qa-block__trigger:hover {
  background: rgba(228, 0, 43, 0.05);
}

.qa-block__trigger h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-white);
  margin: 0;
  padding-right: var(--sp-4);
  line-height: 1.5;
}

.qa-block__arrow {
  width: 32px;
  height: 32px;
  border-radius: var(--rad-full);
  background: rgba(228, 0, 43, 0.15);
  color: var(--clr-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.qa-block.is-open .qa-block__arrow {
  background: var(--grad-main);
  color: var(--clr-white);
  transform: rotate(180deg);
}

.qa-block.is-open {
  border-color: var(--clr-primary);
  box-shadow: 0 4px 24px rgba(228, 0, 43, 0.12);
}

.qa-block__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.qa-block__answer p {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: 14px;
  color: var(--clr-text);
  line-height: 1.8;
}

.qa-block.is-open .qa-block__answer {
  max-height: 400px;
}

/* ========== BOTTOM BAR (Footer) ========== */
.bottom-bar {
  padding: var(--sp-10) 0 var(--sp-6);
  background: var(--clr-deep);
  border-top: 1px solid var(--border-dim);
}

.bottom-bar__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-8);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid var(--border-dim);
}

.bottom-bar__brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.bottom-bar__brand img {
  height: 36px;
}

.bottom-bar__brand span {
  font-size: 16px;
  font-weight: 800;
  color: var(--clr-white);
}

.bottom-bar__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-8);
}

.bottom-bar__col h4,
.bottom-bar__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--sp-4);
  display: block;
}

.bottom-bar__col a {
  display: block;
  font-size: 14px;
  color: var(--clr-faded);
  padding: var(--sp-1) 0;
  transition: color 0.2s;
}

.bottom-bar__col a:hover {
  color: var(--clr-primary-light);
}

.bottom-bar__payments {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.bottom-bar__payments img {
  height: 28px;
  opacity: 0.7;
}

.bottom-bar__bottom {
  padding-top: var(--sp-6);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
}

.bottom-bar__copy {
  font-size: 13px;
  color: var(--clr-faded);
}

.bottom-bar__legal {
  font-size: 12px;
  color: var(--clr-faded);
  max-width: 600px;
  line-height: 1.6;
}

/* ========== STICKY ACTION (Float CTA) ========== */
.sticky-action {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: 90;
}

.sticky-action.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

/* ========== LIVE WINS (Winners Sidebar) ========== */
.live-wins {
  background: var(--clr-surface);
  border: 1px solid var(--border-dim);
  border-radius: var(--rad-lg);
  padding: var(--sp-5);
}

.live-wins__header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--border-dim);
}

.live-wins__dot {
  width: 10px;
  height: 10px;
  background: var(--clr-primary);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.live-wins__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-white);
}

.win-feed {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--clr-primary) var(--clr-surface);
}

.win-feed::-webkit-scrollbar {
  width: 6px;
}

.win-feed::-webkit-scrollbar-track {
  background: var(--clr-surface);
  border-radius: 3px;
}

.win-feed::-webkit-scrollbar-thumb {
  background: var(--clr-primary);
  border-radius: 3px;
}

.win-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3);
  background: rgba(6, 11, 24, 0.5);
  border-radius: var(--rad-sm);
  transition: all 0.3s ease;
}

.win-row.is-new {
  animation: slide-in 0.4s ease;
}

@keyframes slide-in {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.win-row__pic {
  width: 44px;
  height: 44px;
  border-radius: var(--rad-sm);
  object-fit: cover;
}

.win-row__info {
  flex: 1;
  min-width: 0;
}

.win-row__player {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.win-row__game {
  font-size: 12px;
  color: var(--clr-faded);
}

.win-row__sum {
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-gold);
  white-space: nowrap;
}

/* ========== MAIN AREA (Page Body) ========== */
.main-area {
  padding: var(--sp-12) 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--sp-8);
  align-items: start;
}

.two-col__main {
  min-width: 0;
}

.two-col__side,
.two-col > aside {
  position: sticky;
  top: calc(var(--header-h) + var(--sp-6));
  align-self: start;
}

.two-col > .live-wins,
.main-area .two-col > .live-wins {
  position: sticky;
  top: calc(var(--header-h) + var(--sp-6));
  align-self: start;
}

/* Editorial (Write-up) */
.editorial {
  background: var(--clr-surface);
  border: 1px solid var(--border-dim);
  border-radius: var(--rad-lg);
  padding: var(--sp-8);
}

.editorial__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: var(--sp-6);
}

.editorial__body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--clr-text);
}

.editorial__body h2,
.editorial h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--clr-white);
  margin: var(--sp-8) 0 var(--sp-4);
}

.editorial__body h3,
.editorial h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--clr-white);
  margin: var(--sp-6) 0 var(--sp-3);
}

.editorial__body h4,
.editorial h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-white);
  margin: var(--sp-5) 0 var(--sp-2);
}

.editorial__body p,
.editorial p {
  margin-bottom: var(--sp-4);
  font-size: 15px;
  line-height: 1.75;
  color: var(--clr-text);
}

.editorial__body a,
.editorial a {
  color: var(--clr-primary-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.editorial__body a:hover,
.editorial a:hover {
  color: var(--clr-primary);
}

.editorial__body strong,
.editorial strong { color: var(--clr-white); font-weight: 600; }

.editorial__body ul,
.editorial__body ol,
.editorial ul,
.editorial ol {
  margin: var(--sp-4) 0;
  padding-left: var(--sp-6);
}

.editorial__body ul,
.editorial ul { list-style: disc; }
.editorial__body ol,
.editorial ol { list-style: decimal; }
.editorial__body li,
.editorial li { margin-bottom: var(--sp-2); }

.editorial__body table,
.editorial table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: var(--sp-6) 0;
  background: rgba(6, 11, 24, 0.6);
  border: 1px solid var(--border-dim);
  border-radius: var(--rad-md);
  overflow: hidden;
}

.editorial__body table thead,
.editorial table thead {
  background: linear-gradient(135deg, rgba(228, 0, 43, 0.15) 0%, rgba(228, 0, 43, 0.06) 100%);
}

.editorial__body th,
.editorial__body td,
.editorial th,
.editorial td {
  padding: var(--sp-4);
  text-align: left;
  border-bottom: 1px solid var(--border-dim);
}

.editorial__body th,
.editorial th {
  background: rgba(228, 0, 43, 0.10);
  color: var(--clr-white);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.editorial__body td,
.editorial td {
  font-size: 14px;
  color: var(--clr-text);
}

.editorial__body tr:last-child td,
.editorial tr:last-child td { border-bottom: none; }

.editorial__body tr:hover td,
.editorial tr:hover td {
  background: rgba(228, 0, 43, 0.03);
}

/* ========== ERROR VIEW (404) ========== */
.lost-screen {
  min-height: calc(100vh - var(--header-h) - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-12) 0;
}

.lost-box {
  max-width: 480px;
}

.lost-box__code {
  font-size: 120px;
  font-weight: 900;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--sp-4);
}

.lost-box__title {
  font-size: 28px;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: var(--sp-4);
}

.lost-box__desc {
  color: var(--clr-muted);
  margin-bottom: var(--sp-8);
}

.lost-box__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .two-col {
    grid-template-columns: 1fr;
  }
  .two-col__side,
  .two-col > aside,
  .two-col > .live-wins {
    display: none;
  }
  .qa-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .intro-block__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .intro-block__media {
    order: 1;
  }
  .intro-block__body {
    order: 2;
  }
  .intro-block__summary {
    margin-inline: auto;
  }
  .intro-block__actions {
    justify-content: center;
  }
  .facts-row__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-nav {
    display: none;
  }
  .head-bar__cta {
    display: none;
  }
  .menu-btn {
    display: flex;
  }
  .wrapper {
    overflow-x: hidden;
  }
  .editorial,
  .editorial__body,
  .text-panel,
  .text-panel__body {
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .editorial__body table,
  .editorial table,
  .text-panel__body table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
  .deal-card {
    flex-direction: column;
    text-align: center;
    gap: var(--sp-4);
  }
  .deal-card__action {
    width: 100%;
    justify-content: center;
  }
  .slot-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-3);
  }
  .sticky-action {
    bottom: var(--sp-4);
    right: var(--sp-4);
  }
  .sticky-action .action-link {
    padding: 12px 20px;
    font-size: 13px;
  }
  .bottom-bar__top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .bottom-bar__nav {
    justify-content: center;
  }
  .bottom-bar__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .facts-row__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-4);
  }
  .fact-box__number {
    font-size: 22px;
  }
  .slot-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-3);
  }
  .text-panel,
  .editorial {
    padding: var(--sp-5);
  }
}
