/* ==========================================================================
   QueenCasinoWin — Static Casino Landing
   1. Reset & Base
   2. Typography
   3. Buttons
   4. Layout
   5. Sidebar
   6. Header
   7. Hero
   8. Sections
   9. Game Cards
   10. Promo Banners
   11. Live / Providers / Why Us / FAQ / SEO
   12. Footer
   13. Media Queries
   ========================================================================== */

/* --------------------------------------------------------------------------
   ROOT TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Backgrounds */
  --bg-main: #0B0612;
  --bg-panel: #160A24;
  --bg-panel-2: #1F0E33;
  --bg-sidebar: #0F0719;
  --bg-header: rgba(15, 7, 25, 0.92);

  /* Text */
  --color-text: #B6AECC;
  --color-heading: #FFFFFF;
  --color-muted: #6E6588;

  /* Accent — royal gold + queen purple */
  --color-accent: #FFC000;
  --color-accent-2: #FFE082;
  --color-accent-hover: #E5AC00;
  --color-purple: #B565FF;
  --color-pink: #FF4D7E;
  --color-cyan: #00E5FF;

  /* Borders / radii */
  --border-color: rgba(255, 255, 255, 0.07);
  --border-gold: rgba(255, 192, 0, 0.35);
  --border-radius: 10px;
  --border-radius-lg: 18px;

  /* Layout */
  --sidebar-width: 260px;
  --header-height: 72px;

  /* Effects */
  --shadow-gold: 0 8px 28px rgba(255, 192, 0, 0.35);
  --shadow-card: 0 12px 32px rgba(0, 0, 0, 0.45);
  --gradient-gold: linear-gradient(135deg, #FFE082 0%, #FFC000 50%, #A6740B 100%);
  --gradient-royal: linear-gradient(135deg, #3D1659 0%, #1A0A2E 100%);
}

/* --------------------------------------------------------------------------
   1. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--bg-main);
  overflow-x: hidden;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse at top left, rgba(181, 101, 255, 0.06), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(255, 192, 0, 0.04), transparent 50%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-accent); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; }

/* --------------------------------------------------------------------------
   2. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  color: var(--color-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
}
h1 { font-size: clamp(1.75rem, 3.6vw, 3rem); }
h2 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); }
h3 { font-size: 1.15rem; font-family: 'Outfit', sans-serif; font-weight: 600; }
.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent);
}
.text-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --------------------------------------------------------------------------
   3. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gradient-gold);
  color: #1A0A2E;
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255, 192, 0, 0.55);
  color: #1A0A2E;
}
.btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid var(--border-gold);
}
.btn--outline:hover { background: rgba(255, 192, 0, 0.08); color: var(--color-accent); }
.btn--ghost { background: rgba(255, 255, 255, 0.05); color: #fff; }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.1); }
.btn--lg { padding: 16px 32px; font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   4. LAYOUT
   -------------------------------------------------------------------------- */
.app-container { display: flex; min-height: 100vh; }
.main-content {
  margin-left: var(--sidebar-width);
  width: calc(100% - var(--sidebar-width));
  min-height: 100vh;
}
.container {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 32px;
}

/* --------------------------------------------------------------------------
   5. SIDEBAR
   -------------------------------------------------------------------------- */
.sidebar {
  position: fixed;
  top: 0; left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  z-index: 100;
  transition: transform 0.3s ease;
}
.sidebar__brand {
  height: var(--header-height);
  display: flex;
  align-items: center;
  padding: 0 24px;
  border-bottom: 1px solid var(--border-color);
}
.sidebar__brand img { height: 40px; }
.sidebar__nav {
  flex: 1;
  overflow-y: auto;
  padding: 18px 12px;
}
.sidebar__nav::-webkit-scrollbar { width: 4px; }
.sidebar__nav::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.06); border-radius: 4px; }

.sidebar__group-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-muted);
  padding: 14px 14px 8px;
}
.sidebar__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 8px;
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  transition: background 0.2s, color 0.2s;
}
.sidebar__link i { width: 18px; font-size: 1rem; color: var(--color-muted); transition: color 0.2s; }
.sidebar__link:hover { background: rgba(255, 192, 0, 0.06); color: #fff; }
.sidebar__link:hover i { color: var(--color-accent); }
.sidebar__link.is-active {
  background: linear-gradient(90deg, rgba(255, 192, 0, 0.14), transparent);
  color: var(--color-accent);
}
.sidebar__link.is-active i { color: var(--color-accent); }
.sidebar__link.is-active::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 3px;
  background: var(--gradient-gold);
  border-radius: 0 3px 3px 0;
}
.sidebar__badge {
  margin-left: auto;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.sidebar__badge--new { background: #00E700; color: #000; }
.sidebar__badge--hot { background: #FF4500; color: #fff; }

.sidebar__footer {
  padding: 18px;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  font-size: 0.85rem;
  cursor: pointer;
}
.lang-switcher i { color: var(--color-accent); }

/* --------------------------------------------------------------------------
   6. HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: var(--bg-header);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
}
.header__inner {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 32px;
}
.burger {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
}
.burger span {
  width: 18px; height: 2px;
  background: #fff;
  position: relative;
  transition: 0.3s;
}
.burger span::before, .burger span::after {
  content: '';
  position: absolute;
  left: 0; width: 18px; height: 2px;
  background: #fff;
  transition: 0.3s;
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger.is-open span { background: transparent; }
.burger.is-open span::before { top: 0; transform: rotate(45deg); }
.burger.is-open span::after { top: 0; transform: rotate(-45deg); }

.header__search {
  position: relative;
  flex: 1;
  max-width: 380px;
}
.header__search i {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--color-muted);
  font-size: 0.9rem;
}
.header__search input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-color);
  border-radius: 999px;
  padding: 10px 18px 10px 40px;
  color: #fff;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.header__search input::placeholder { color: var(--color-muted); }
.header__search input:focus {
  border-color: var(--border-gold);
  background: rgba(255,255,255,0.06);
}

.header__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  transition: background 0.2s;
  position: relative;
}
.header__icon-btn:hover { background: rgba(255, 192, 0, 0.12); color: var(--color-accent); }
.header__icon-btn .dot {
  position: absolute;
  top: 8px; right: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-pink);
  border: 2px solid var(--bg-header);
}

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 460px;
  margin: 24px 32px 0;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 6, 18, 0.92) 0%, rgba(11, 6, 18, 0.6) 55%, rgba(11, 6, 18, 0.2) 100%);
  z-index: 0;
}
.hero__content {
  padding: 64px 48px;
  max-width: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255, 192, 0, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}
.hero__eyebrow i { font-size: 0.7rem; }
.hero h1 {
  max-width: 900px;
  margin-bottom: 14px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.hero h1 strong {
  display: block;
  font-size: 1.15em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
.hero__sub {
  font-size: 1rem;
  color: #D8D2E8;
  margin-bottom: 28px;
  max-width: 560px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__pay {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__pay-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-muted);
}
.pay-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pay-icon {
  height: 28px;
  padding: 0 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #D8D2E8;
}
.pay-icon i { font-size: 0.95rem; color: var(--color-accent); }

/* --------------------------------------------------------------------------
   8. SECTIONS
   -------------------------------------------------------------------------- */
.section { padding: 48px 0 8px; }
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.section-header h2 {
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-header h2 i {
  font-size: 0.9em;
  color: var(--color-accent);
  filter: drop-shadow(0 0 10px rgba(255, 192, 0, 0.5));
}
.section-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.slider-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background 0.2s, color 0.2s;
}
.slider-btn:hover { background: var(--color-accent); color: #1A0A2E; }
.section-header__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.section-header__link:hover { color: var(--color-accent); }

/* --------------------------------------------------------------------------
   9. GAME CARDS — horizontal slider grid
   -------------------------------------------------------------------------- */
.games-row { position: relative; }
.games-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 12px;
}
.games-grid::-webkit-scrollbar { display: none; }

.game-card {
  flex: 0 0 calc(16.666% - 14px);
  min-width: 168px;
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  isolation: isolate;
}
.game-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.game-card__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.game-card__img i {
  font-size: 42px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}
.game-card__img h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  padding: 0 12px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}
.game-card__img span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.75;
}
.game-card__badge {
  position: absolute;
  top: 8px; left: 8px;
  padding: 3px 8px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  border-radius: 4px;
  z-index: 2;
}
.badge--new { background: #00E700; color: #000; }
.badge--top { background: #00E5FF; color: #000; }
.badge--exclusive { background: #B565FF; color: #fff; }
.badge--hot { background: #FF4500; color: #fff; }
.game-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}
.game-card:hover .game-card__overlay { opacity: 1; }
.play-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: #1A0A2E;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  transition: transform 0.2s;
}
.play-btn:hover { transform: scale(1.1); }

/* Card colour variants (CSS gradient placeholders) */
.gc-1 { background: linear-gradient(160deg, #2B113D, #752A46); }
.gc-2 { background: linear-gradient(160deg, #1A0E3D, #3D1F87); }
.gc-3 { background: linear-gradient(160deg, #0F2B5C, #1A6B9E); }
.gc-4 { background: linear-gradient(160deg, #5C0F2C, #B83258); }
.gc-5 { background: linear-gradient(160deg, #401066, #8C2DBE); }
.gc-6 { background: linear-gradient(160deg, #1F2D0F, #5C8C2D); }
.gc-7 { background: linear-gradient(160deg, #66400F, #CC8B3F); }
.gc-8 { background: linear-gradient(160deg, #0F4D5C, #28A0B8); }
.gc-9 { background: linear-gradient(160deg, #4D0F3D, #B8288F); }
.gc-10 { background: linear-gradient(160deg, #3D1A0F, #99462A); }
.gc-11 { background: linear-gradient(160deg, #0F1A3D, #2A4699); }
.gc-12 { background: linear-gradient(160deg, #2D5C0F, #5FB828); }

/* --------------------------------------------------------------------------
   10. PROMO BANNERS
   -------------------------------------------------------------------------- */
.promo-banner {
  margin: 56px 0 24px;
  background: linear-gradient(135deg, #1F0E33 0%, #3D1659 50%, #6B1B5C 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  min-height: 220px;
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  isolation: isolate;
}
.promo-banner::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background:
    radial-gradient(circle at 70% 50%, rgba(255, 192, 0, 0.25), transparent 60%);
  z-index: -1;
}
.promo-banner__content {
  padding: 36px 44px;
}
.promo-banner h2 {
  margin-bottom: 10px;
  font-style: italic;
}
.promo-banner h2 strong {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
}
.promo-banner p { color: #D8D2E8; margin-bottom: 18px; max-width: 380px; }
.promo-banner__visual {
  position: relative;
  height: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  color: var(--color-accent);
  opacity: 0.18;
  text-shadow: 0 0 60px rgba(255, 192, 0, 0.6);
}

/* Promo grid (4 cards) */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.promo-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}
.promo-card::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 192, 0, 0.2), transparent 70%);
}
.promo-card:hover { transform: translateY(-4px); border-color: var(--border-gold); }
.promo-card__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255, 192, 0, 0.12);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.promo-card h3 { color: #fff; margin-bottom: 6px; font-size: 1.05rem; }
.promo-card p { font-size: 0.85rem; color: var(--color-text); margin-bottom: 14px; }
.promo-card a { font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--color-accent); }

/* --------------------------------------------------------------------------
   11. LIVE / PROVIDERS / WHY US / FAQ / SEO
   -------------------------------------------------------------------------- */

/* Live Casino — wider cards */
.live-grid .game-card { flex: 0 0 calc(25% - 12px); min-width: 240px; }
.live-grid .game-card__img { aspect-ratio: 4 / 3; }
.live-tag {
  position: absolute;
  bottom: 12px; left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 0, 0, 0.85);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  z-index: 2;
}
.live-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.5s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* Providers */
.providers {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
}
.provider {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.5px;
  transition: all 0.2s;
}
.provider:hover {
  border-color: var(--border-gold);
  color: var(--color-accent);
  transform: translateY(-2px);
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.why-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.why-card__icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--gradient-royal);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-accent);
}
.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #fff;
}
.why-card p { font-size: 0.88rem; }

/* FAQ */
.faq { max-width: 880px; margin: 0 auto; }
.faq__item {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq__item.is-open { border-color: var(--border-gold); }
.faq__q {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.98rem;
  font-weight: 600;
  color: #fff;
  text-align: left;
}
.faq__q i {
  flex: 0 0 auto;
  font-size: 0.85rem;
  color: var(--color-accent);
  transition: transform 0.3s;
}
.faq__item.is-open .faq__q i { transform: rotate(180deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
  color: var(--color-text);
  font-size: 0.92rem;
  line-height: 1.65;
}
.faq__item.is-open .faq__a {
  max-height: 320px;
  padding: 0 22px 20px;
}

/* SEO content */
.seo-content {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 36px 44px;
  margin: 32px 0;
}
.seo-content h2, .seo-content h3 { color: #fff; margin: 18px 0 10px; }
.seo-content h2:first-child, .seo-content h3:first-child { margin-top: 0; }
.seo-content p { margin-bottom: 14px; }
.seo-content a { color: var(--color-accent); }
.seo-content ul { margin: 0 0 14px 22px; list-style: disc; }
.seo-content li { margin-bottom: 6px; }

/* --------------------------------------------------------------------------
   12. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  margin-top: 64px;
  background: var(--bg-sidebar);
  border-top: 1px solid var(--border-color);
  padding: 56px 0 0;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
}
.footer__brand img { height: 48px; margin-bottom: 16px; }
.footer__brand p { font-size: 0.88rem; max-width: 320px; margin-bottom: 18px; }
.app-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.app-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: border-color 0.2s;
}
.app-button:hover { border-color: var(--border-gold); }
.app-button i { font-size: 1.4rem; color: var(--color-accent); }
.app-button div { display: flex; flex-direction: column; line-height: 1.1; }
.app-button .small { font-size: 0.65rem; color: var(--color-muted); text-transform: uppercase; letter-spacing: 1px; }
.app-button .big { font-size: 0.88rem; font-weight: 600; color: #fff; }

.footer__col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}
.footer__col li { margin-bottom: 10px; }
.footer__col a { font-size: 0.88rem; color: var(--color-text); }
.footer__col a:hover { color: #fff; }

.footer__middle {
  padding: 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  border-bottom: 1px solid var(--border-color);
}
.licenses {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.license-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text);
}
.license-badge.age {
  background: rgba(255, 77, 126, 0.12);
  border-color: rgba(255, 77, 126, 0.35);
  color: #FF4D7E;
  font-weight: 800;
}
.socials { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  transition: background 0.2s, color 0.2s;
}
.social-link:hover { background: var(--color-accent); color: #1A0A2E; }

.footer__bottom {
  padding: 22px 0 28px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--color-muted);
}
.footer__bottom p { margin-bottom: 8px; }

/* --------------------------------------------------------------------------
   13. MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 1440px) {
  .game-card { flex: 0 0 calc(20% - 13px); }
  .live-grid .game-card { flex: 0 0 calc(33.333% - 11px); }
  .providers { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 1200px) {
  .game-card { flex: 0 0 calc(25% - 12px); }
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__col:nth-child(4), .footer__col:nth-child(5) { grid-column: span 1; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  :root { --sidebar-width: 0px; }
  .sidebar {
    transform: translateX(-100%);
    width: 280px;
    box-shadow: 12px 0 40px rgba(0,0,0,0.6);
  }
  .sidebar.is-open { transform: translateX(0); }
  .main-content { margin-left: 0; width: 100%; }
  .burger { display: flex; }
  .hero { margin: 16px; min-height: 380px; }
  .hero__content { padding: 40px 28px; }
  .container { padding: 0 16px; }
  .game-card { flex: 0 0 calc(33.333% - 11px); min-width: 150px; }
  .live-grid .game-card { flex: 0 0 calc(50% - 8px); }
  .providers { grid-template-columns: repeat(4, 1fr); }
  .promo-banner { grid-template-columns: 1fr; }
  .promo-banner__visual { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .header__search { max-width: none; }
  .header__icon-btn:nth-child(1) { display: none; }
  .hero h1 { font-size: 2rem; }
  .hero__sub { font-size: 0.92rem; }
  .game-card { flex: 0 0 calc(50% - 8px); }
  .live-grid .game-card { flex: 0 0 80%; }
  .promo-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .seo-content { padding: 24px 20px; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .header__inner { padding: 0 16px; gap: 10px; }
  .header__search { display: none; }
  .hero { margin: 12px; min-height: 340px; }
  .hero__content { padding: 28px 20px; }
  .hero h1 { font-size: 1.65rem; }
  .hero__actions .btn { flex: 1; padding: 12px 14px; font-size: 0.8rem; }
  .game-card { flex: 0 0 75%; }
  .why-grid { grid-template-columns: 1fr; }
  .providers { grid-template-columns: repeat(3, 1fr); }
  .section { padding: 32px 0 4px; }
  .section-header h2 { font-size: 1.4rem; }
  .promo-banner__content { padding: 28px 22px; }
}

/* Sidebar overlay (mobile) */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s;
}
.sidebar-overlay.is-active { display: block; opacity: 1; }

/* Subtle entrance animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__content > * { animation: fadeUp 0.7s ease both; }
.hero__eyebrow { animation-delay: 0.05s; }
.hero h1 { animation-delay: 0.15s; }
.hero__sub { animation-delay: 0.25s; }
.hero__actions { animation-delay: 0.35s; }
.hero__pay { animation-delay: 0.45s; }