/* =========================================================
   OZWIN CASINO - Site 22
   Gold & Emerald Gem Theme (from Ozwin logo)
========================================================= */

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

:root {
  /* Core palette - Dark Base */
  --oz-bg: #0a0e17;
  --oz-bg-alt: #0f1520;
  --oz-card: #141b28;
  --oz-card-hover: #1c2536;

  /* Primary - Gold (from Ozwin logo) */
  --oz-gold: #D4A84B;
  --oz-gold-dark: #b8912e;
  --oz-gold-light: #F5D98A;

  /* Accent - Emerald (from gem) */
  --oz-emerald: #10b981;
  --oz-emerald-dark: #059669;
  --oz-emerald-light: #34d399;

  /* Typography */
  --oz-white: #f8fafc;
  --oz-text: #94a3b8;
  --oz-muted: rgba(148, 163, 184, 0.8);
  --oz-dim: rgba(148, 163, 184, 0.5);

  /* Borders */
  --oz-line: rgba(212, 168, 75, 0.12);
  --oz-active: rgba(212, 168, 75, 0.3);
  --oz-glow: rgba(16, 185, 129, 0.15);

  /* Gradients */
  --oz-g-gold: linear-gradient(135deg, #D4A84B 0%, #F5D98A 50%, #b8912e 100%);
  --oz-g-emerald: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  --oz-g-card: linear-gradient(180deg, rgba(20, 27, 40, 0.98) 0%, rgba(10, 14, 23, 1) 100%);
  --oz-g-hero: linear-gradient(90deg, #0a0e17 0%, #0f1520 50%, #0a0e17 100%);
  --oz-g-dark: linear-gradient(180deg, #0f1520 0%, #0a0e17 100%);

  /* Shadows */
  --oz-sh-gold: 0 4px 24px rgba(212, 168, 75, 0.25);
  --oz-sh-emerald: 0 4px 24px rgba(16, 185, 129, 0.25);
  --oz-sh-lift: 0 12px 40px rgba(0, 0, 0, 0.45);

  /* Spacing */
  --sp-xs: 4px;
  --sp-sm: 8px;
  --sp-md: 12px;
  --sp-lg: 16px;
  --sp-xl: 20px;
  --sp-2x: 24px;
  --sp-3x: 32px;
  --sp-4x: 40px;
  --sp-5x: 48px;
  --sp-6x: 64px;

  /* Radius */
  --rad-xs: 4px;
  --rad-sm: 6px;
  --rad-md: 10px;
  --rad-lg: 14px;
  --rad-xl: 20px;
  --rad-full: 9999px;

  /* Layout */
  --max-w: 1200px;
  --header-h: 68px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--oz-bg);
  background-image:
    radial-gradient(ellipse 60% 40% at 10% -10%, rgba(16, 185, 129, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 95% 110%, rgba(212, 168, 75, 0.03) 0%, transparent 40%);
  color: var(--oz-text);
  line-height: 1.6;
  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; }

/* ========== OZW-WRAP (Container) ========== */
.ozw-wrap {
  width: min(var(--max-w), calc(100% - var(--sp-3x)));
  margin-inline: auto;
}

/* ========== ALERT-STRIP (Promo Bar) ========== */
.alert-strip {
  background: var(--oz-g-gold);
  padding: var(--sp-sm) 0;
  text-align: center;
}

.alert-strip__msg {
  font-size: 13px;
  font-weight: 700;
  color: #0a0e17 !important;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
}

.alert-strip__msg i { color: #1c2536; }

/* ========== MAIN-HEADER (Site Nav) ========== */
.main-header {
  background: rgba(10, 14, 23, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--oz-line);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

/* Logo Badge */
.logo-badge {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.logo-badge__img {
  height: 32px;
  width: auto;
}

/* Nav List */
.nav-list {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
}

.nav-item {
  padding: var(--sp-md) var(--sp-lg);
  font-size: 14px;
  font-weight: 600;
  color: var(--oz-muted);
  border-radius: var(--rad-sm);
  transition: all 0.2s ease;
}

.nav-item:hover,
.nav-item:focus {
  color: var(--oz-white);
  background: rgba(255, 255, 255, 0.04);
}

.nav-item--active { color: var(--oz-gold); }

/* Flyout (Dropdown) */
.flyout { position: relative; }

.flyout__trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--oz-muted);
  padding: var(--sp-md) var(--sp-lg);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--rad-sm);
  transition: all 0.2s ease;
}

.flyout__trigger:hover {
  color: var(--oz-white);
  background: rgba(255, 255, 255, 0.04);
}

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

.flyout:hover .flyout__arrow { transform: rotate(180deg); }

.flyout__panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: rgba(10, 14, 23, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--oz-active);
  border-radius: var(--rad-md);
  padding: var(--sp-sm) 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  box-shadow: var(--oz-sh-lift);
  z-index: 200;
}

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

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

.flyout__link i {
  width: 16px;
  text-align: center;
  color: var(--oz-emerald);
  font-size: 12px;
}

.flyout__link:hover {
  color: var(--oz-white);
  background: rgba(16, 185, 129, 0.08);
}

/* Mobile CTAs in nav */
.nav-list__mobile-cta {
  display: none;
  padding: var(--sp-lg);
  border-top: 1px solid var(--oz-line);
  margin-top: var(--sp-lg);
  gap: var(--sp-md);
}

/* Header Actions */
.main-header__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

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

.mobile-nav.is-active {
  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(--oz-bg-alt);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px 20px 36px;
}

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

.mobile-nav__link {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--rad-full);
  font-size: 15px;
  font-weight: 600;
  color: var(--oz-text);
}

.mobile-nav__link:active {
  color: var(--oz-white);
  background: rgba(16, 185, 129, 0.12);
}

.mobile-nav__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* Hamburger */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--rad-sm);
  border: 1px solid var(--oz-line);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

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

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

/* ========== ACT (Buttons) ========== */
.act {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--rad-full);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.act--gold {
  background: var(--oz-g-gold);
  color: #0a0e17 !important;
  box-shadow: var(--oz-sh-gold);
}

.act--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 168, 75, 0.35);
}

.act--emerald {
  background: var(--oz-g-emerald);
  color: #0a0e17 !important;
  box-shadow: var(--oz-sh-emerald);
}

.act--emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.35);
}

.act--outline {
  background: transparent;
  color: var(--oz-gold) !important;
  border: 2px solid var(--oz-gold);
}

.act--outline:hover {
  background: var(--oz-gold);
  color: #0a0e17 !important;
}

.act--ghost {
  background: var(--oz-g-dark);
  color: var(--oz-white) !important;
  border: 1px solid var(--oz-line);
}

.act--ghost:hover { border-color: var(--oz-active); }

/* ========== HERO-ZONE (Intro Section) ========== */
.hero-zone {
  padding: var(--sp-5x) 0 var(--sp-4x);
  background: var(--oz-g-hero);
}

.hero-zone__grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--sp-4x);
  align-items: center;
}

.hero-zone__visual { order: 2; }

.hero-zone__visual img {
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.hero-zone__content { order: 1; }

.hero-zone__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: var(--sp-sm) var(--sp-lg);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--rad-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--oz-emerald-light);
  margin-bottom: var(--sp-xl);
}

.hero-zone__badge i { color: var(--oz-emerald); }

.hero-zone__h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--oz-white);
  margin-bottom: var(--sp-xl);
  letter-spacing: -0.025em;
}

.hero-zone__h1 em {
  font-style: normal;
  background: var(--oz-g-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-zone__desc {
  font-size: 17px;
  color: var(--oz-muted);
  margin-bottom: var(--sp-3x);
  max-width: 520px;
}

.hero-zone__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-lg);
}

/* ========== STATS-BAR (Metrics Row) ========== */
.stats-bar {
  padding: var(--sp-2x) 0;
  border-top: 1px solid var(--oz-line);
  border-bottom: 1px solid var(--oz-line);
  background: rgba(10, 14, 23, 0.6);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-2x);
}

.stat-item { text-align: center; }

.stat-item__num {
  font-size: 28px;
  font-weight: 800;
  color: var(--oz-white);
  line-height: 1.2;
  display: block;
}

.stat-item__num--gold { color: var(--oz-gold); }
.stat-item__num--emerald { color: var(--oz-emerald); }

.stat-item__label {
  font-size: 13px;
  color: var(--oz-dim);
  margin-top: var(--sp-xs);
  display: block;
}

/* ========== SECTION TITLE ========== */
.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-2x);
}

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

.section-title__text i { color: var(--oz-emerald); }

.section-title__more {
  font-size: 14px;
  font-weight: 600;
  color: var(--oz-gold);
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  transition: color 0.2s;
}

.section-title__more:hover { color: var(--oz-gold-light); }

/* ========== SLOTS AREA (Games Showcase) ========== */
.slots-area { padding: var(--sp-5x) 0; }

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

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

.slot-tile:hover {
  transform: translateY(-4px);
  border-color: var(--oz-active);
  box-shadow: var(--oz-sh-lift);
}

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

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

.slot-tile__tag {
  position: absolute;
  top: var(--sp-sm);
  left: var(--sp-sm);
  padding: 4px 10px;
  background: var(--oz-g-emerald);
  border-radius: var(--rad-xs);
  font-size: 10px;
  font-weight: 700;
  color: #0a0e17 !important;
  text-transform: uppercase;
}

.slot-tile__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.slot-tile__btns { display: flex; gap: var(--sp-sm); }

.slot-tile__btn {
  padding: 10px 16px;
  border-radius: var(--rad-sm);
  font-size: 12px;
  font-weight: 700;
}

.slot-tile__btn--play {
  background: var(--oz-g-gold);
  color: #0a0e17 !important;
}

.slot-tile__btn--demo {
  background: transparent;
  border: 1px solid var(--oz-gold);
  color: var(--oz-gold);
}

.slot-tile__info { padding: var(--sp-md); }

.slot-tile__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--oz-white);
  margin-bottom: var(--sp-xs);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.slot-tile__rtp {
  font-size: 11px;
  color: var(--oz-dim);
  display: block;
}

/* ========== VENDORS STRIP (Providers Band) ========== */
.vendors-strip {
  padding: var(--sp-4x) 0;
  background: var(--oz-card);
}

.vendors-strip__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3x);
  align-items: center;
}

.vendor-icon {
  height: 30px;
  display: flex;
  align-items: center;
}

.vendor-icon img {
  height: 30px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: all 0.25s ease;
}

.vendor-icon:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

/* ========== CONTENT AREA (Article Section) ========== */
.content-area { padding: var(--sp-5x) 0; }

.content-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--sp-3x);
  align-items: start;
}

/* ========== ARTICLE-CARD (Text Block) ========== */
.article-card {
  background: var(--oz-card);
  border: 1px solid var(--oz-line);
  border-radius: var(--rad-lg);
  padding: var(--sp-3x);
}

.article-card__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--oz-white);
  margin-bottom: var(--sp-2x);
  line-height: 1.3;
}

.article-card__body {
  color: var(--oz-text);
  line-height: 1.75;
}

.article-card__body h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--oz-white);
  margin: var(--sp-3x) 0 var(--sp-lg);
}

.article-card__body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--oz-white);
  margin: var(--sp-2x) 0 var(--sp-md);
}

.article-card__body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--oz-white);
  margin: var(--sp-xl) 0 var(--sp-md);
}

.article-card__body p { margin-bottom: var(--sp-lg); }

.article-card__body ul,
.article-card__body ol {
  margin: var(--sp-lg) 0;
  padding-left: var(--sp-2x);
}

.article-card__body ul { list-style: disc; }
.article-card__body ol { list-style: decimal; }

.article-card__body li { margin-bottom: var(--sp-sm); }

.article-card__body a {
  color: var(--oz-emerald);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.article-card__body a:hover { border-color: var(--oz-emerald); }

.article-card__body strong {
  color: var(--oz-white);
  font-weight: 600;
}

.article-card__body table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-2x) 0;
}

.article-card__body th,
.article-card__body td {
  padding: var(--sp-md) var(--sp-lg);
  text-align: left;
  border-bottom: 1px solid var(--oz-line);
}

.article-card__body th {
  background: rgba(16, 185, 129, 0.06);
  color: var(--oz-white);
  font-weight: 700;
  font-size: 13px;
}

.article-card__body td { font-size: 14px; }

/* ========== DEAL-BOX (Promo Box) ========== */
.deal-box {
  position: relative;
  background: var(--oz-card);
  border: 1px solid var(--oz-line);
  border-radius: var(--rad-lg);
  padding: var(--sp-2x);
  padding-top: var(--sp-3x);
  margin: var(--sp-3x) 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--sp-xl);
  align-items: center;
}

.deal-box__label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: var(--sp-xs) var(--sp-md);
  background: var(--oz-g-emerald);
  border-radius: var(--rad-sm);
  font-size: 11px;
  font-weight: 700;
  color: #0a0e17 !important;
  text-transform: uppercase;
  position: absolute;
  top: calc(-1 * var(--sp-md));
  left: var(--sp-xl);
}

.deal-box__icon {
  width: 52px;
  height: 52px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--rad-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--oz-emerald);
}

.deal-box__content { flex: 1; }

.deal-box__heading {
  font-size: 17px;
  font-weight: 700;
  color: var(--oz-white);
  margin-bottom: var(--sp-xs);
}

.deal-box__text {
  font-size: 14px;
  color: var(--oz-muted);
}

.deal-box__action {
  padding: 12px 22px;
  background: var(--oz-g-gold);
  border-radius: var(--rad-full);
  font-size: 14px;
  font-weight: 700;
  color: #0a0e17 !important;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  transition: all 0.2s ease;
}

.deal-box__action:hover {
  transform: translateY(-2px);
  box-shadow: var(--oz-sh-gold);
}

.deal-box--highlight {
  border-color: var(--oz-emerald);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.04) 0%, var(--oz-card) 100%);
}

.deal-box--highlight .deal-box__icon {
  background: rgba(16, 185, 129, 0.15);
  color: var(--oz-emerald-light);
}

.deal-box--gold {
  border-color: var(--oz-gold);
  background: linear-gradient(135deg, rgba(212, 168, 75, 0.04) 0%, var(--oz-card) 100%);
}

.deal-box--gold .deal-box__label { background: var(--oz-g-gold); }
.deal-box--gold .deal-box__icon {
  background: rgba(212, 168, 75, 0.1);
  color: var(--oz-gold);
}

/* ========== DUAL-LAYOUT (Two Col) ========== */
.dual-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--sp-2x);
  align-items: start;
}

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

.dual-layout__aside {
  position: sticky;
  top: calc(var(--header-h) + var(--sp-xl));
}

/* ========== WIN-STREAM (Winners Feed) ========== */
.win-stream {
  background: var(--oz-card);
  border: 1px solid var(--oz-line);
  border-radius: var(--rad-lg);
  padding: var(--sp-xl);
  position: sticky;
  top: calc(var(--header-h) + var(--sp-xl));
}

.win-stream__header {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-xl);
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid var(--oz-line);
}

.win-stream__pulse {
  width: 8px;
  height: 8px;
  background: var(--oz-emerald);
  border-radius: 50%;
  animation: ozwin-pulse 1.5s infinite;
}

@keyframes ozwin-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.win-stream__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--oz-white);
}

.win-stream__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.win-entry {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: var(--sp-md);
  align-items: center;
  padding: var(--sp-md);
  background: rgba(255, 255, 255, 0.015);
  border-radius: var(--rad-sm);
  transition: all 0.3s ease;
}

.win-entry.is-fresh {
  animation: ozwin-entry 0.4s ease;
  background: rgba(16, 185, 129, 0.08);
}

@keyframes ozwin-entry {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.win-entry__player {
  font-size: 13px;
  font-weight: 600;
  color: var(--oz-white);
}

.win-entry__game {
  font-size: 11px;
  color: var(--oz-dim);
}

.win-entry__amount {
  font-size: 14px;
  font-weight: 700;
  color: var(--oz-emerald);
}

/* ========== QA-SECTION (FAQ) ========== */
.qa-section {
  padding: var(--sp-5x) 0;
  background: var(--oz-card);
}

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

.qa-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-lg);
  align-items: start;
}

.qa-toggle {
  background: var(--oz-bg);
  border: 1px solid var(--oz-line);
  border-radius: var(--rad-md);
  overflow: hidden;
}

.qa-toggle__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-xl);
  text-align: left;
  cursor: pointer;
}

.qa-toggle__head h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--oz-white);
  padding-right: var(--sp-lg);
}

.qa-toggle__chevron {
  color: var(--oz-emerald);
  font-size: 14px;
  transition: transform 0.25s ease;
}

.qa-toggle.is-open .qa-toggle__chevron { transform: rotate(180deg); }

.qa-toggle__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.qa-toggle.is-open .qa-toggle__body { max-height: 400px; }

.qa-toggle__body p {
  padding: 0 var(--sp-xl) var(--sp-xl);
  font-size: 14px;
  color: var(--oz-muted);
  line-height: 1.7;
}

/* ========== PAGE-BOTTOM (Site Footer) ========== */
.page-bottom {
  background: var(--oz-bg-alt);
  padding: var(--sp-5x) 0 var(--sp-3x);
  border-top: 1px solid var(--oz-line);
}

.page-bottom__upper {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: var(--sp-4x);
  margin-bottom: var(--sp-4x);
  padding-bottom: var(--sp-3x);
  border-bottom: 1px solid var(--oz-line);
}

.page-bottom__brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.page-bottom__brand img {
  height: 28px;
  width: auto;
}

.page-bottom__brand span {
  font-size: 14px;
  font-weight: 700;
  color: var(--oz-white);
}

.page-bottom__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3x);
}

.page-bottom__col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.page-bottom__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--oz-emerald);
  margin-bottom: var(--sp-sm);
}

.page-bottom__col a {
  font-size: 13px;
  color: var(--oz-muted);
  transition: color 0.2s;
}

.page-bottom__col a:hover { color: var(--oz-gold); }

.page-bottom__pay {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-md);
  align-items: center;
}

.page-bottom__pay img {
  height: 26px;
  width: auto;
  opacity: 0.55;
  transition: opacity 0.2s;
}

.page-bottom__pay img:hover { opacity: 1; }

.page-bottom__lower { text-align: center; }

.page-bottom__copy {
  font-size: 13px;
  color: var(--oz-dim);
  margin-bottom: var(--sp-sm);
}

.page-bottom__legal {
  font-size: 12px;
  color: var(--oz-dim);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

.page-bottom__legal a { color: var(--oz-emerald); }

/* ========== FLOAT-ACTION (Sticky CTA) ========== */
.float-action {
  position: fixed;
  bottom: var(--sp-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  transition: all 0.3s ease;
}

.float-action.is-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(16px);
  pointer-events: none;
}

/* ========== ERROR VIEW (404) ========== */
.error-view {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-5x) 0;
}

.error-view__content { text-align: center; }

.error-view__code {
  font-size: clamp(80px, 15vw, 130px);
  font-weight: 900;
  background: var(--oz-g-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--sp-lg);
}

.error-view__heading {
  font-size: 26px;
  font-weight: 800;
  color: var(--oz-white);
  margin-bottom: var(--sp-md);
}

.error-view__msg {
  font-size: 16px;
  color: var(--oz-muted);
  margin-bottom: var(--sp-3x);
  max-width: 380px;
  margin-inline: auto;
}

.error-view__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-md);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .dual-layout { grid-template-columns: 1fr; }
  .dual-layout__aside { position: static; }

  .hero-zone__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-zone__visual { order: 1; }
  .hero-zone__content { order: 2; }
  .hero-zone__desc { margin-inline: auto; }
  .hero-zone__actions { justify-content: center; }

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

  .content-layout { grid-template-columns: 1fr; }
  .win-stream { position: static; }

  .page-bottom__upper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .page-bottom__links { grid-template-columns: repeat(2, 1fr); }
  .page-bottom__pay { justify-content: center; }
}

@media (max-width: 768px) {
  .nav-list,
  .main-header__actions { display: none; }

  .hamburger { display: flex; }

  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .slots-area__grid { grid-template-columns: repeat(3, 1fr); }
  .qa-section__grid { grid-template-columns: 1fr; }

  .deal-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .deal-box__action {
    width: 100%;
    justify-content: center;
  }

  .page-bottom__links {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-xl);
  }
}

@media (max-width: 480px) {
  .slots-area__grid { grid-template-columns: repeat(2, 1fr); }
  .hero-zone__h1 { font-size: 26px; }
  .article-card { padding: var(--sp-xl); }
  .article-card__title { font-size: 20px; }
}
