/* =========================================================
   TEMPLATE B: Modular Blocks + Floating CTA
   Australian Outback Theme - Red/Gold
========================================================= */

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

:root {
  /* Base colors */
  --base-dark: #1A1A2E;
  --base-deeper: #0F0F1A;
  --base-card: #16213E;
  --base-card-hover: #1C2A4A;

  /* Accent colors - Australian theme */
  --accent-primary: #E94560;
  --accent-secondary: #D63850;
  --accent-gold: #F4A020;
  --accent-gold-light: #FFBE45;

  /* Text */
  --text-bright: #FFFFFF;
  --text-main: #F0F0F5;
  --text-muted: rgba(240, 240, 245, 0.7);
  --text-dim: rgba(240, 240, 245, 0.5);

  /* Borders */
  --edge-subtle: rgba(233, 69, 96, 0.15);
  --edge-hover: rgba(233, 69, 96, 0.35);
  --edge-gold: rgba(244, 160, 32, 0.3);

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #E94560 0%, #D63850 100%);
  --grad-gold: linear-gradient(135deg, #F4A020 0%, #E8920A 100%);
  --grad-card: linear-gradient(180deg, rgba(22, 33, 62, 0.9) 0%, rgba(15, 15, 26, 0.95) 100%);

  /* Shadows */
  --glow-primary: rgba(233, 69, 96, 0.4);
  --glow-gold: rgba(244, 160, 32, 0.3);

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

  /* Radius */
  --rad-sm: 8px;
  --rad-md: 16px;
  --rad-lg: 24px;
  --rad-full: 50px;

  /* Layout */
  --max-width: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--base-dark);
  background-image:
    radial-gradient(ellipse 60% 40% at 10% 0%, rgba(233, 69, 96, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 90% 100%, rgba(244, 160, 32, 0.06) 0%, transparent 50%);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
}

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

.wrap {
  width: min(var(--max-width), calc(100% - var(--sp-5)));
  margin: 0 auto;
}

/* ========== PROMO TOP BAR ========== */
.promo-strip {
  background: var(--grad-gold);
  padding: var(--sp-1) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Disabled shimmer effect
.promo-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
  animation: shimmer 3s infinite;
}
*/

/* Disabled shimmer animation
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
*/

.promo-strip__text {
  font-size: 13px;
  font-weight: 700;
  color: var(--base-dark);
  position: relative;
  z-index: 1;
}

.promo-strip__text i {
  margin-right: var(--sp-1);
}

/* ========== SITE HEADER ========== */
.site-head {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--edge-subtle);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-head__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-2) 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.brand__icon {
  height: 36px;
  width: auto;
}

.brand__name {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-bright);
  letter-spacing: -0.02em;
}

/* Desktop nav - horizontal */
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.main-nav__link {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--rad-sm);
  transition: all 0.2s ease;
}

.main-nav__link:hover {
  color: var(--text-bright);
  background: rgba(255,255,255,0.05);
}

.main-nav__link--active {
  color: var(--accent-primary);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--rad-sm);
  border: 1px solid var(--edge-subtle);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
}

.nav-toggle__bar {
  width: 20px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Header CTA */
.head-actions {
  display: flex;
  gap: var(--sp-1);
}

/* Mobile nav items (hidden in nav on mobile) */
.main-nav__mobile-cta {
  display: none;
}

/* ========== NAV DROPDOWN ========== */
.nav-drop {
  position: relative;
}

.nav-drop__toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

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

.nav-drop:hover .nav-drop__arrow {
  transform: rotate(180deg);
}

.nav-drop__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 200px;
  background: rgba(10, 25, 50, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--edge-active);
  border-radius: var(--rad-md);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  z-index: 200;
}

.nav-drop:hover .nav-drop__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-drop__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  transition: all 0.15s ease;
  white-space: nowrap;
}

.nav-drop__item i {
  width: 16px;
  text-align: center;
  color: var(--accent);
  font-size: 12px;
}

.nav-drop__item:hover {
  color: var(--text-main);
  background: rgba(0, 212, 255, 0.1);
}

/* ========== MOBILE NAV ========== */
.mobile-nav {
  display: none;
}

.mobile-nav.is-open {
  display: block;
  position: fixed;
  top: 110px;
  left: 0;
  width: 100%;
  height: calc(100vh - 110px);
  height: calc(100dvh - 110px);
  z-index: 99;
  background: var(--bg-base);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 40px 20px;
  box-sizing: border-box;
}

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

.mobile-nav__link {
  display: inline-block;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--edge-subtle);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dim);
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-nav__link:active,
.mobile-nav__link:hover {
  color: var(--text-main);
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--accent);
}

.mobile-nav__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* ========== BUTTONS ========== */
.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--rad-full);
  transition: all 0.25s ease;
  cursor: pointer;
}

.action-btn--main {
  background: var(--grad-primary);
  color: var(--text-bright);
  box-shadow: 0 4px 20px var(--glow-primary);
}

.action-btn--main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--glow-primary);
}

.action-btn--ghost {
  border: 1px solid var(--edge-subtle);
  color: var(--text-main);
  background: transparent;
}

.action-btn--ghost:hover {
  border-color: var(--accent-primary);
  background: rgba(233, 69, 96, 0.1);
}

.action-btn--gold {
  background: var(--grad-gold);
  color: var(--base-dark);
  box-shadow: 0 4px 20px var(--glow-gold);
}

.action-btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--glow-gold);
}

/* ========== SHOWCASE (HERO) ========== */
.showcase {
  padding: var(--sp-6) 0 var(--sp-8);
}

.showcase__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--sp-6);
  align-items: center;
}

.showcase__visual {
  position: relative;
}

.showcase__visual img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--rad-lg);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}

.showcase__body {
  position: relative;
  z-index: 1;
}

.showcase__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: 8px 16px;
  background: rgba(233, 69, 96, 0.15);
  border: 1px solid var(--edge-subtle);
  border-radius: var(--rad-full);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-3);
}

.showcase__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--sp-3);
  color: var(--text-bright);
}

.showcase__title span {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.showcase__desc {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
  max-width: 440px;
  line-height: 1.7;
}

.showcase__cta {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

/* Showcase Compact - for inner pages */
.showcase--compact {
  padding: var(--sp-5) 0 var(--sp-4);
}

.showcase--compact .showcase__grid {
  display: block;
}

.showcase__body--center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.showcase__body--center .showcase__tag {
  margin-left: auto;
  margin-right: auto;
}

.showcase__body--center .showcase__desc {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--sp-4);
}

.showcase__body--center .showcase__cta {
  justify-content: center;
}

/* ========== STAT BADGES (KPIs) ========== */
.stat-row,
.stats-row {
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--edge-subtle);
}

.stat-row__grid,
.stats-row__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.stat-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: var(--base-card);
  border: 2px solid var(--edge-subtle);
  border-radius: 50%;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-badge:hover {
  border-color: var(--accent-gold);
  transform: scale(1.05);
}

.stat-badge__value {
  font-size: 18px;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1.2;
}

.stat-badge__label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ========== SLOTS GRID ========== */
.slots-section {
  padding: var(--sp-6) 0;
}

.section-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-4);
}

.section-bar__title {
  font-size: 26px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.section-bar__title i {
  color: var(--accent-primary);
}

.section-bar__more {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: 10px 20px;
  border: 1px solid var(--edge-subtle);
  border-radius: var(--rad-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.section-bar__more:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

/* Standard Grid (not masonry) */
.slots-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-2);
}

.slot-tile {
  position: relative;
  border-radius: var(--rad-md);
  overflow: hidden;
  background: var(--base-card);
  border: 1px solid var(--edge-subtle);
  transition: all 0.3s ease;
  aspect-ratio: 4 / 3;
}

.slot-tile:hover {
  border-color: var(--accent-primary);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(233, 69, 96, 0.15);
}

/* All tiles same size in standard grid */
.slot-tile--tall,
.slot-tile--wide,
.slot-tile--featured {
  grid-row: span 1;
  grid-column: span 1;
}

.slot-tile__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.slot-tile:hover .slot-tile__img {
  transform: scale(1.08);
}

.slot-tile__hot {
  position: absolute;
  top: var(--sp-1);
  left: var(--sp-1);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-primary);
  border-radius: var(--rad-sm);
  color: var(--text-bright);
  font-size: 12px;
  z-index: 2;
}

.slot-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 15, 26, 0.95) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slot-tile:hover .slot-tile__overlay {
  opacity: 1;
}

.slot-tile__name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: var(--sp-1);
  color: var(--text-bright);
}

.slot-tile__actions {
  display: flex;
  gap: var(--sp-1);
}

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

.slot-tile__btn--play {
  background: var(--grad-primary);
  color: var(--text-bright);
}

.slot-tile__btn--demo {
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--edge-subtle);
  color: var(--text-main);
}

/* Load More */
.load-more {
  text-align: center;
  margin-top: var(--sp-4);
}

/* ========== INFO BLOCKS (SEO Content) ========== */
.info-block {
  padding: var(--sp-6) 0;
}

.info-block--alt {
  background: rgba(22, 33, 62, 0.3);
}

.info-card {
  background: rgba(30, 42, 70, 0.6);
  border: 1px solid rgba(233, 69, 96, 0.2);
  border-radius: var(--rad-lg);
  padding: var(--sp-5);
  position: relative;
}

.info-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: var(--sp-4);
  bottom: var(--sp-4);
  width: 4px;
  background: var(--grad-primary);
  border-radius: 2px;
}

.info-card__heading {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 800;
  margin-bottom: var(--sp-3);
  padding-left: var(--sp-3);
  color: var(--text-bright);
}

.info-card__text {
  padding-left: var(--sp-3);
}

.info-card__text p {
  color: var(--text-muted);
  margin-bottom: var(--sp-2);
  line-height: 1.8;
}

.info-card__text h2,
.info-card__text h3 {
  color: var(--text-bright);
  margin: var(--sp-4) 0 var(--sp-2);
  font-weight: 700;
}

.info-card__text h2 { font-size: 22px; }
.info-card__text h3 { font-size: 18px; }

.info-card__text ul {
  margin: var(--sp-2) 0;
  padding-left: var(--sp-3);
}

.info-card__text li {
  color: var(--text-muted);
  margin-bottom: var(--sp-1);
  position: relative;
  padding-left: var(--sp-3);
}

.info-card__text li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
}

.info-card__text a {
  color: var(--accent-primary);
  text-decoration: underline;
  text-decoration-color: rgba(233, 69, 96, 0.4);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}

.info-card__text a:hover {
  text-decoration-color: var(--accent-primary);
}

/* Tables in info blocks */
.info-card__text table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-3) 0;
  font-size: 14px;
}

.info-card__text th,
.info-card__text td {
  padding: var(--sp-2);
  text-align: left;
  border-bottom: 1px solid var(--edge-subtle);
}

.info-card__text th {
  background: rgba(244, 160, 32, 0.1);
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.info-card__text td {
  color: var(--text-muted);
}

.info-card__text tr:hover td {
  background: rgba(255,255,255,0.02);
}

/* Inline CTA blocks */
.promo-card {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  margin: var(--sp-4) 0;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  border: 2px solid #FBBF24;
  border-radius: var(--rad-md);
  transition: all 0.3s ease;
  text-decoration: none !important;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

a.promo-card,
a.promo-card:hover,
.info-card__text a.promo-card,
.info-card__text a.promo-card:hover,
.article__body a.promo-card,
.article__body a.promo-card:hover {
  text-decoration: none !important;
}

.promo-card:hover {
  border-color: #FCD34D;
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

.promo-card__badge {
  padding: 6px 12px;
  background: #1A1A2E;
  border-radius: var(--rad-sm);
  font-size: 11px;
  font-weight: 700;
  color: #FBBF24;
  text-transform: uppercase;
  white-space: nowrap;
}

.promo-card__badge--gold {
  background: var(--grad-gold);
  color: var(--base-dark);
}

.promo-card__icon {
  font-size: 32px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.promo-card__body {
  flex: 1;
}

.promo-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 4px;
}

.promo-card__desc {
  font-size: 13px;
  color: #422006;
}

.promo-card__action,
.promo-card__btn {
  padding: 12px 24px;
  background: #1A1A2E;
  border-radius: var(--rad-full);
  font-size: 14px;
  font-weight: 700;
  color: #FBBF24;
  white-space: nowrap;
  transition: all 0.2s ease;
  border: 2px solid #1A1A2E;
}

.promo-card:hover .promo-card__action,
.promo-card:hover .promo-card__btn {
  background: #0F0F1A;
  color: #FCD34D;
}

/* Green variant */
.promo-card--green {
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  border-color: #4ADE80;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
}

.promo-card--green:hover {
  background: linear-gradient(135deg, #4ADE80 0%, #22C55E 100%);
  border-color: #86EFAC;
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.5);
}

.promo-card--green .promo-card__title {
  color: #052E16;
}

.promo-card--green .promo-card__desc {
  color: #14532D;
}

.promo-card--green .promo-card__badge {
  background: #052E16;
  color: #4ADE80;
}

.promo-card--green .promo-card__action,
.promo-card--green .promo-card__btn {
  background: #052E16;
  color: #4ADE80;
  border-color: #052E16;
}

/* Alt/Yellow variant */
.promo-card--alt {
  background: linear-gradient(135deg, #EAB308 0%, #CA8A04 100%);
  border-color: #FACC15;
  box-shadow: 0 4px 20px rgba(234, 179, 8, 0.4);
}

.promo-card--alt:hover {
  background: linear-gradient(135deg, #FACC15 0%, #EAB308 100%);
  border-color: #FDE047;
  box-shadow: 0 8px 30px rgba(234, 179, 8, 0.5);
}

.promo-card--alt .promo-card__title {
  color: #422006;
}

.promo-card--alt .promo-card__desc {
  color: #713F12;
}

.promo-card--alt .promo-card__badge {
  background: #422006;
  color: #FACC15;
}

.promo-card--alt .promo-card__action,
.promo-card--alt .promo-card__btn {
  background: #422006;
  color: #FACC15;
  border-color: #422006;
}

/* ========== PROVIDERS GRID ========== */
.vendors-section {
  padding: var(--sp-6) 0;
}

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

.vendor-tile {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--base-card);
  border: 1px solid var(--edge-subtle);
  border-radius: var(--rad-md);
  padding: var(--sp-2);
  transition: all 0.2s ease;
}

.vendor-tile:hover {
  border-color: var(--accent-gold);
  background: var(--base-card-hover);
}

.vendor-tile img {
  max-height: 36px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.2s ease;
}

.vendor-tile:hover img {
  filter: grayscale(0%);
}

/* ========== QA SECTION (FAQ) ========== */
.qa-section {
  padding: var(--sp-6) 0;
}

.qa-list {
  max-width: 800px;
  margin: 0 auto;
}

.qa-row {
  border-bottom: 1px solid var(--edge-subtle);
}

.qa-row:first-child {
  border-top: 1px solid var(--edge-subtle);
}

.qa-row__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  padding: var(--sp-3) 0;
  text-align: left;
  color: var(--text-main);
  font-size: 16px;
  font-weight: 600;
  background: transparent;
  transition: color 0.2s ease;
}

.qa-row__question:hover {
  color: var(--accent-primary);
}

.qa-row__question h3 {
  font-size: inherit;
  font-weight: inherit;
}

.qa-row__icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(233, 69, 96, 0.1);
  border-radius: 50%;
  color: var(--accent-primary);
  font-size: 14px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.qa-row.is-open .qa-row__icon {
  transform: rotate(45deg);
  background: var(--accent-primary);
  color: var(--text-bright);
}

.qa-row__answer {
  display: none;
  padding: 0 0 var(--sp-3) 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.qa-row.is-open .qa-row__answer {
  display: block;
}

/* ========== SITE FOOTER ========== */
.site-foot {
  margin-top: var(--sp-8);
  border-top: 1px solid var(--edge-subtle);
  background: var(--base-deeper);
}

.site-foot__main {
  padding: var(--sp-4) 0;
}

.site-foot__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.site-foot__payments {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  justify-content: center;
  width: 100%;
}

.pay-icon {
  height: 48px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--rad-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pay-icon img {
  height: 100%;
  width: auto;
  object-fit: contain;
  max-height: 32px;
}

.site-foot__copy {
  text-align: center;
  padding: var(--sp-3) 0;
  border-top: 1px solid var(--edge-subtle);
  font-size: 12px;
  color: var(--text-dim);
}

/* ========== FLOATING CTA ========== */
.floating-cta {
  position: fixed;
  bottom: var(--sp-3);
  right: var(--sp-3);
  z-index: 90;
  box-shadow: 0 4px 20px var(--glow-primary);
}

.floating-cta .action-btn {
  padding: 14px 28px;
  font-size: 15px;
}

/* Hide on mobile when scrolled to bottom */
.floating-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

/* ========== WINNERS SECTION (Horizontal Bar) ========== */
.winners-section {
  padding: var(--sp-4) 0;
}

.winners-section .winners-panel {
  position: relative;
  top: auto;
}

.winners-section .winners-feed {
  display: flex;
  flex-direction: row;
  gap: var(--sp-2);
  max-height: none;
  overflow-x: auto;
  padding-bottom: var(--sp-1);
}

.winners-section .winner-row {
  flex-shrink: 0;
  min-width: 200px;
}

@media (max-width: 768px) {
  .winners-section .winners-feed {
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}

/* ========== WINNERS SIDEBAR (Legacy) ========== */
.winners-panel {
  background: var(--base-card);
  border: 1px solid var(--edge-subtle);
  border-radius: var(--rad-lg);
  padding: var(--sp-3);
  position: sticky;
  top: 100px;
}

.winners-panel__head {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  margin-bottom: var(--sp-2);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--edge-subtle);
}

.winners-panel__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-bright);
}

.winners-panel__live {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
}

.winners-feed {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  max-height: 300px;
  overflow: hidden;
}

.winner-row {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-1);
  background: rgba(255,255,255,0.02);
  border-radius: var(--rad-sm);
  transition: all 0.3s ease;
}

.winner-row--new {
  background: rgba(233, 69, 96, 0.1);
}

.winner-row__avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--rad-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.winner-row__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.winner-row__name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.winner-row__game {
  font-size: 11px;
  color: var(--text-muted);
}

.winner-row__amount {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-gold);
  white-space: nowrap;
}

/* Layout with sidebar */
.dual-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--sp-4);
  align-items: start;
}

.dual-layout__main {
  min-width: 0;
}

.dual-layout__side {
  position: sticky;
  top: 100px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .showcase__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  .showcase__visual {
    order: -1;
    text-align: center;
  }

  .showcase__visual img {
    max-width: 380px;
    margin: 0 auto;
  }

  .slots-masonry {
    grid-template-columns: repeat(3, 1fr);
  }

  .vendors-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .dual-layout {
    grid-template-columns: 1fr;
  }

  .dual-layout__side {
    display: none;
  }
}

@media (max-width: 768px) {
  .site-head__inner {
    padding: var(--sp-1) 0;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--base-dark);
    border-top: 1px solid var(--edge-subtle);
    border-bottom: 1px solid var(--edge-subtle);
    padding: var(--sp-2);
    flex-direction: column;
    gap: var(--sp-1);
    z-index: 100;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav__link {
    padding: var(--sp-2);
    text-align: center;
    background: rgba(255,255,255,0.03);
    border-radius: var(--rad-sm);
  }

  .main-nav__mobile-cta {
    display: flex;
    gap: var(--sp-1);
    padding-top: var(--sp-2);
    margin-top: var(--sp-1);
    border-top: 1px solid var(--edge-subtle);
    justify-content: center;
  }

  .head-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-drop__menu {
    display: none;
  }

  .showcase {
    padding: var(--sp-4) 0 var(--sp-5);
  }

  .showcase__title {
    font-size: 28px;
  }

  .stat-row__grid {
    gap: var(--sp-2);
  }

  .stat-badge {
    width: 80px;
    height: 80px;
  }

  .stat-badge__value {
    font-size: 15px;
  }

  .stat-badge__label {
    font-size: 10px;
  }

  .slots-masonry {
    grid-template-columns: repeat(2, 1fr);
  }

  .vendors-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .info-card {
    padding: var(--sp-3);
  }

  .info-card__heading {
    font-size: 22px;
  }

  .promo-card {
    flex-direction: column;
    text-align: center;
  }

  .site-foot__row {
    flex-direction: column;
    text-align: center;
  }

  .floating-cta {
    bottom: var(--sp-2);
    right: var(--sp-2);
    left: var(--sp-2);
  }

  .floating-cta .action-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .slots-masonry {
    grid-template-columns: 1fr 1fr;
  }

  .vendors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-badge {
    width: 70px;
    height: 70px;
  }
}

/* ========== INNER PAGE CONTENT AREA ========== */
.content-area {
  padding: var(--sp-6) 0;
}

.content-area__grid {
  display: block;
}

.article {
  max-width: 100%;
  background: rgba(30, 42, 70, 0.6);
  border: 1px solid rgba(233, 69, 96, 0.2);
  border-radius: var(--rad-lg);
  padding: var(--sp-5);
  position: relative;
}

.article::before {
  content: '';
  position: absolute;
  left: 0;
  top: var(--sp-4);
  bottom: var(--sp-4);
  width: 4px;
  background: var(--grad-primary);
  border-radius: 2px;
}

.article__title {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: var(--sp-4);
  padding-left: var(--sp-3);
}

.article__body {
  color: var(--text-muted);
  line-height: 1.8;
  padding-left: var(--sp-3);
}

.article__body p {
  margin-bottom: var(--sp-3);
}

@media (max-width: 768px) {
  .article {
    padding: var(--sp-3);
  }

  .article__title,
  .article__body {
    padding-left: var(--sp-2);
  }
}

.article__body h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-bright);
  margin: var(--sp-5) 0 var(--sp-2);
}

.article__body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-bright);
  margin: var(--sp-4) 0 var(--sp-2);
}

.article__body a {
  color: var(--accent-primary);
  text-decoration: underline;
  text-decoration-color: rgba(233, 69, 96, 0.4);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}

.article__body a:hover {
  text-decoration-color: var(--accent-primary);
}

.article__body a.promo-card,
.article__body a.promo-card:hover {
  text-decoration: none !important;
}

.article__body ul,
.article__body ol {
  margin: var(--sp-2) 0 var(--sp-3);
  padding-left: var(--sp-4);
}

.article__body li {
  margin-bottom: var(--sp-1);
  position: relative;
}

.article__body ul li::marker {
  color: var(--accent-gold);
}

.article__body ol li::marker {
  color: var(--accent-gold);
  font-weight: 700;
}

.article__body table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-3) 0;
  font-size: 14px;
}

.article__body th,
.article__body td {
  padding: var(--sp-2);
  text-align: left;
  border-bottom: 1px solid var(--edge-subtle);
}

.article__body th {
  background: rgba(244, 160, 32, 0.1);
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.article__body td {
  color: var(--text-muted);
}

.article__body tr:hover td {
  background: rgba(255,255,255,0.02);
}

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

.callout {
  padding: var(--sp-3);
  background: rgba(244, 160, 32, 0.1);
  border-left: 4px solid var(--accent-gold);
  border-radius: 0 var(--rad-sm) var(--rad-sm) 0;
  margin: var(--sp-3) 0;
}

.callout p {
  margin: 0;
  color: var(--text-main);
}

/* Showcase variants for inner pages */
.showcase__media {
  text-align: center;
}

.showcase__media img {
  max-width: 400px;
  width: 100%;
  border-radius: var(--rad-lg);
}

.showcase__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: 8px 16px;
  background: rgba(233, 69, 96, 0.15);
  border: 1px solid var(--edge-subtle);
  border-radius: var(--rad-full);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-3);
}

.showcase__heading {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--sp-3);
  color: var(--text-bright);
}

.showcase__lead {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
  max-width: 500px;
  line-height: 1.7;
}

.showcase__btns {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

/* QA Section Title */
.qa-section__title {
  font-size: 26px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.qa-section__title i {
  color: var(--accent-primary);
}

@media (max-width: 768px) {
  .showcase__media img {
    max-width: 300px;
  }
}

/* ========== CONTENT ZONE (Inner Pages) ========== */
.content-zone {
  padding: var(--sp-6) 0;
}

.article-box {
  background: rgba(30, 42, 70, 0.6);
  border: 1px solid rgba(233, 69, 96, 0.2);
  border-radius: var(--rad-lg);
  padding: var(--sp-5);
  position: relative;
  color: var(--text-muted);
  line-height: 1.8;
}

.article-box::before {
  content: '';
  position: absolute;
  left: 0;
  top: var(--sp-4);
  bottom: var(--sp-4);
  width: 4px;
  background: var(--grad-primary);
  border-radius: 2px;
}

.article-box h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-bright);
  margin: var(--sp-5) 0 var(--sp-2);
  padding-left: var(--sp-3);
}

.article-box h2:first-child {
  margin-top: 0;
}

.article-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-bright);
  margin: var(--sp-4) 0 var(--sp-2);
  padding-left: var(--sp-3);
}

.article-box p {
  margin-bottom: var(--sp-3);
  padding-left: var(--sp-3);
}

.article-box a {
  color: var(--accent-primary);
  text-decoration: underline;
  text-decoration-color: rgba(233, 69, 96, 0.4);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}

.article-box a:hover {
  text-decoration-color: var(--accent-primary);
}

.article-box ul,
.article-box ol {
  margin: var(--sp-2) 0 var(--sp-3);
  padding-left: calc(var(--sp-3) + var(--sp-4));
}

.article-box li {
  margin-bottom: var(--sp-1);
}

.article-box ul li::marker {
  color: var(--accent-gold);
}

.article-box ol li::marker {
  color: var(--accent-gold);
  font-weight: 700;
}

.article-box strong {
  color: var(--text-bright);
  font-weight: 600;
}

.article-box table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-3) 0;
  font-size: 14px;
}

.article-box th,
.article-box td {
  padding: var(--sp-2);
  text-align: left;
  border-bottom: 1px solid var(--edge-subtle);
}

.article-box th {
  background: rgba(244, 160, 32, 0.1);
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.article-box td {
  color: var(--text-muted);
}

.article-box tr:hover td {
  background: rgba(255,255,255,0.02);
}

@media (max-width: 768px) {
  .article-box {
    padding: var(--sp-3);
  }

  .article-box h2,
  .article-box h3,
  .article-box p {
    padding-left: var(--sp-2);
  }

  .article-box ul,
  .article-box ol {
    padding-left: calc(var(--sp-2) + var(--sp-3));
  }
}

/* ========== QA ZONE (FAQ for Inner Pages) ========== */
.qa-zone {
  padding: var(--sp-6) 0;
}

.qa-zone__title {
  font-size: 26px;
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--sp-4);
  color: var(--text-bright);
}

.qa-grid {
  max-width: 800px;
  margin: 0 auto;
}

/* ========== PROMO CARD VARIANTS ========== */
.promo-card__content {
  flex: 1;
}

.promo-card__text {
  font-size: 13px;
  color: #422006;
}

/* Cyan variant */
.promo-card--cyan {
  background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
  border-color: #22D3EE;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.4);
}

.promo-card--cyan:hover {
  background: linear-gradient(135deg, #22D3EE 0%, #06B6D4 100%);
  border-color: #67E8F9;
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.5);
}

.promo-card--cyan .promo-card__title {
  color: #042F2E;
}

.promo-card--cyan .promo-card__text {
  color: #134E4A;
}

.promo-card--cyan .promo-card__action,
.promo-card--cyan .promo-card__btn,
.promo-card--cyan .action-btn {
  background: #042F2E;
  color: #22D3EE;
  border-color: #042F2E;
}

/* Gold variant */
.promo-card--gold {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  border-color: #FBBF24;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.promo-card--gold:hover {
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
  border-color: #FCD34D;
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

.promo-card--gold .promo-card__title {
  color: #1A1A2E;
}

.promo-card--gold .promo-card__text {
  color: #422006;
}

.promo-card--gold .promo-card__action,
.promo-card--gold .promo-card__btn,
.promo-card--gold .action-btn {
  background: #1A1A2E;
  color: #FBBF24;
  border-color: #1A1A2E;
}
