/* =========================================================
   IGNITION CASINO - Site 23
   Orange Fire & Dark Carbon Theme (from Ignition brand)
========================================================= */

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

:root {
  /* Core palette - Carbon Dark */
  --ign-bg: #0d0d0d;
  --ign-bg-alt: #1a1a1a;
  --ign-card: #1f1f1f;
  --ign-card-hover: #2a2a2a;

  /* Primary - Orange Fire (from Ignition brand) */
  --ign-orange: #ff6900;
  --ign-orange-dark: #e05a00;
  --ign-orange-light: #ff8533;

  /* Accent - Red Flame (from logo gradient) */
  --ign-red: #D91424;
  --ign-red-dark: #b01020;
  --ign-red-light: #ff2d3d;

  /* Typography */
  --ign-white: #ffffff;
  --ign-text: #a8a8a8;
  --ign-muted: rgba(168, 168, 168, 0.8);
  --ign-dim: rgba(168, 168, 168, 0.5);

  /* Borders */
  --ign-line: rgba(255, 105, 0, 0.12);
  --ign-active: rgba(255, 105, 0, 0.3);
  --ign-glow: rgba(217, 20, 36, 0.15);

  /* Gradients */
  --ign-g-fire: linear-gradient(135deg, #ff6900 0%, #D91424 100%);
  --ign-g-orange: linear-gradient(135deg, #ff6900 0%, #ff8533 100%);
  --ign-g-red: linear-gradient(135deg, #D91424 0%, #ff2d3d 100%);
  --ign-g-card: linear-gradient(180deg, rgba(31, 31, 31, 0.98) 0%, rgba(13, 13, 13, 1) 100%);
  --ign-g-hero: linear-gradient(90deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
  --ign-g-dark: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);

  /* Shadows */
  --ign-sh-fire: 0 4px 24px rgba(255, 105, 0, 0.3);
  --ign-sh-red: 0 4px 24px rgba(217, 20, 36, 0.25);
  --ign-sh-lift: 0 12px 40px rgba(0, 0, 0, 0.5);

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

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

  /* Layout */
  --max-width: 1200px;
  --head-height: 64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--ign-bg);
  background-image:
    radial-gradient(ellipse 50% 35% at 5% -5%, rgba(255, 105, 0, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 45% 25% at 98% 105%, rgba(217, 20, 36, 0.04) 0%, transparent 40%);
  color: var(--ign-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; }

/* ========== IGN-CONTAINER (Wrapper) ========== */
.ign-container {
  width: min(var(--max-width), calc(100% - var(--gap-7)));
  margin-inline: auto;
}

/* ========== TOP-BAR (Promo Strip) ========== */
.top-bar {
  background: var(--ign-g-fire);
  padding: var(--gap-2) 0;
  text-align: center;
}

.top-bar__text {
  font-size: 13px;
  font-weight: 700;
  color: var(--ign-white) !important;
  display: inline-flex;
  align-items: center;
  gap: var(--gap-2);
}

.top-bar__text i { color: rgba(255, 255, 255, 0.85); }

/* ========== SITE-HEAD (Navigation) ========== */
.site-head {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--ign-line);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

.logo-mark__icon {
  height: 36px;
  width: auto;
}

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

.motor-nav__link {
  padding: var(--gap-3) var(--gap-4);
  font-size: 14px;
  font-weight: 600;
  color: var(--ign-muted);
  border-radius: var(--round-sm);
  transition: all 0.2s ease;
}

.motor-nav__link:hover,
.motor-nav__link:focus {
  color: var(--ign-white);
  background: rgba(255, 255, 255, 0.04);
}

.motor-nav__link--active { color: var(--ign-orange); }

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

.dropdown__toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ign-muted);
  padding: var(--gap-3) var(--gap-4);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--round-sm);
  transition: all 0.2s ease;
}

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

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

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

.dropdown__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: rgba(13, 13, 13, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--ign-active);
  border-radius: var(--round-md);
  padding: var(--gap-2) 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  box-shadow: var(--ign-sh-lift);
  z-index: 200;
}

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

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

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

.dropdown__item:hover {
  color: var(--ign-white);
  background: rgba(255, 105, 0, 0.08);
}

/* Mobile CTAs in nav */
.motor-nav__mobile-cta {
  display: none;
  padding: var(--gap-4);
  border-top: 1px solid var(--ign-line);
  margin-top: var(--gap-4);
  gap: var(--gap-3);
}

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

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

.mobile-menu.is-active {
  display: block;
  position: fixed;
  top: var(--head-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--head-height));
  height: calc(100dvh - var(--head-height));
  z-index: 99;
  background: var(--ign-bg-alt);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px 20px 36px;
}

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

.mobile-menu__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(--round-full);
  font-size: 15px;
  font-weight: 600;
  color: var(--ign-text);
}

.mobile-menu__link:active {
  color: var(--ign-white);
  background: rgba(255, 105, 0, 0.12);
}

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

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

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

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

/* ========== REV-BTN (Buttons) ========== */
.rev-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-2);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--round-full);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.rev-btn--fire {
  background: var(--ign-g-fire);
  color: var(--ign-white) !important;
  box-shadow: var(--ign-sh-fire);
}

.rev-btn--fire:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 105, 0, 0.4);
}

.rev-btn--orange {
  background: var(--ign-g-orange);
  color: var(--ign-white) !important;
  box-shadow: var(--ign-sh-fire);
}

.rev-btn--orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 105, 0, 0.4);
}

.rev-btn--outline {
  background: transparent;
  color: var(--ign-orange) !important;
  border: 2px solid var(--ign-orange);
}

.rev-btn--outline:hover {
  background: var(--ign-orange);
  color: var(--ign-white) !important;
}

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

.rev-btn--ghost:hover { border-color: var(--ign-active); }

/* ========== BLAZE-HERO (Intro Section) ========== */
.blaze-hero {
  padding: var(--gap-9) 0 var(--gap-8);
  background: var(--ign-g-hero);
}

.blaze-hero__layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--gap-8);
  align-items: center;
}

.blaze-hero__visual { order: 2; }

.blaze-hero__visual img {
  width: 100%;
  max-width: 380px;
  margin-inline: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

.blaze-hero__body { order: 1; }

.nitro-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-2);
  padding: var(--gap-2) var(--gap-4);
  background: rgba(255, 105, 0, 0.1);
  border: 1px solid rgba(255, 105, 0, 0.2);
  border-radius: var(--round-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--ign-orange-light);
  margin-bottom: var(--gap-5);
}

.nitro-badge i { color: var(--ign-orange); }

.blaze-hero__h1 {
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--ign-white);
  margin-bottom: var(--gap-5);
  letter-spacing: -0.025em;
}

.blaze-hero__h1 em {
  font-style: normal;
  background: var(--ign-g-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blaze-hero__intro {
  font-size: 17px;
  color: var(--ign-muted);
  margin-bottom: var(--gap-7);
  max-width: 500px;
}

.blaze-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-4);
}

/* ========== KPI-BAND (Stats Row) ========== */
.kpi-band {
  padding: var(--gap-6) 0;
  border-top: 1px solid var(--ign-line);
  border-bottom: 1px solid var(--ign-line);
  background: rgba(13, 13, 13, 0.6);
}

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

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

.kpi-item__val {
  font-size: 26px;
  font-weight: 800;
  color: var(--ign-white);
  line-height: 1.2;
  display: block;
}

.kpi-item__val--fire { color: var(--ign-orange); }
.kpi-item__val--red { color: var(--ign-red); }

.kpi-item__desc {
  font-size: 13px;
  color: var(--ign-dim);
  margin-top: var(--gap-1);
  display: block;
}

/* ========== SECTION HEADING ========== */
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--gap-6);
}

.section-heading__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--ign-white);
  display: flex;
  align-items: center;
  gap: var(--gap-3);
}

.section-heading__title i { color: var(--ign-orange); }

.section-heading__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--ign-orange);
  display: flex;
  align-items: center;
  gap: var(--gap-2);
  transition: color 0.2s;
}

.section-heading__link:hover { color: var(--ign-orange-light); }

/* ========== GAMES-ZONE (Slots Showcase) ========== */
.games-zone { padding: var(--gap-9) 0; }

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

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

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

.spark-tile__cover { position: relative; overflow: hidden; }

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

.spark-tile__badge {
  position: absolute;
  top: var(--gap-2);
  left: var(--gap-2);
  padding: 4px 10px;
  background: var(--ign-g-fire);
  border-radius: var(--round-xs);
  font-size: 10px;
  font-weight: 700;
  color: var(--ign-white) !important;
  text-transform: uppercase;
}

.spark-tile__hover {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-2);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.spark-tile:hover .spark-tile__hover { opacity: 1; }

.spark-tile__actions { display: flex; gap: var(--gap-2); }

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

.spark-tile__btn--play {
  background: var(--ign-g-fire);
  color: var(--ign-white) !important;
}

.spark-tile__btn--demo {
  background: transparent;
  border: 1px solid var(--ign-orange);
  color: var(--ign-orange);
}

.spark-tile__meta { padding: var(--gap-3); }

.spark-tile__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ign-white);
  margin-bottom: var(--gap-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

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

/* ========== MAKER-STRIP (Providers Band) ========== */
.maker-strip {
  padding: var(--gap-8) 0;
  background: var(--ign-card);
}

.maker-strip__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap-7);
  align-items: center;
}

.maker-logo {
  height: 30px;
  display: flex;
  align-items: center;
}

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

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

/* ========== CONTENT ZONE (Article Area) ========== */
.content-zone { padding: var(--gap-9) 0; }

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

/* ========== TEXT-BLOCK (Article Card) ========== */
.text-block {
  background: var(--ign-card);
  border: 1px solid var(--ign-line);
  border-radius: var(--round-lg);
  padding: var(--gap-7);
}

.text-block__heading {
  font-size: 24px;
  font-weight: 800;
  color: var(--ign-white);
  margin-bottom: var(--gap-6);
  line-height: 1.3;
}

.text-block__content {
  color: var(--ign-text);
  line-height: 1.75;
}

.text-block__content h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ign-white);
  margin: var(--gap-7) 0 var(--gap-4);
}

.text-block__content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ign-white);
  margin: var(--gap-6) 0 var(--gap-3);
}

.text-block__content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ign-white);
  margin: var(--gap-5) 0 var(--gap-3);
}

.text-block__content p { margin-bottom: var(--gap-4); }

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

.text-block__content ul { list-style: disc; }
.text-block__content ol { list-style: decimal; }

.text-block__content li { margin-bottom: var(--gap-2); }

.text-block__content a {
  color: var(--ign-orange);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.text-block__content a:hover { border-color: var(--ign-orange); }

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

.text-block__content table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--gap-6) 0;
}

.text-block__content th,
.text-block__content td {
  padding: var(--gap-3) var(--gap-4);
  text-align: left;
  border-bottom: 1px solid var(--ign-line);
}

.text-block__content th {
  background: rgba(255, 105, 0, 0.06);
  color: var(--ign-white);
  font-weight: 700;
  font-size: 13px;
}

.text-block__content td { font-size: 14px; }

/* ========== FUEL-BOX (Promo Box) ========== */
.fuel-box {
  position: relative;
  background: var(--ign-card);
  border: 1px solid var(--ign-line);
  border-radius: var(--round-lg);
  padding: var(--gap-6);
  padding-top: var(--gap-7);
  margin: var(--gap-7) 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--gap-5);
  align-items: center;
}

.fuel-box__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-2);
  padding: var(--gap-1) var(--gap-3);
  background: var(--ign-g-fire);
  border-radius: var(--round-sm);
  font-size: 11px;
  font-weight: 700;
  color: var(--ign-white) !important;
  text-transform: uppercase;
  position: absolute;
  top: calc(-1 * var(--gap-3));
  left: var(--gap-5);
}

.fuel-box__icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 105, 0, 0.1);
  border-radius: var(--round-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--ign-orange);
}

.fuel-box__body { flex: 1; }

.fuel-box__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ign-white);
  margin-bottom: var(--gap-1);
}

.fuel-box__desc {
  font-size: 14px;
  color: var(--ign-muted);
}

.fuel-box__btn {
  padding: 12px 22px;
  background: var(--ign-g-fire);
  border-radius: var(--round-full);
  font-size: 14px;
  font-weight: 700;
  color: var(--ign-white) !important;
  display: inline-flex;
  align-items: center;
  gap: var(--gap-2);
  transition: all 0.2s ease;
}

.fuel-box__btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--ign-sh-fire);
}

.fuel-box--hot {
  border-color: var(--ign-orange);
  background: linear-gradient(135deg, rgba(255, 105, 0, 0.04) 0%, var(--ign-card) 100%);
}

.fuel-box--hot .fuel-box__icon {
  background: rgba(255, 105, 0, 0.15);
  color: var(--ign-orange-light);
}

.fuel-box--red {
  border-color: var(--ign-red);
  background: linear-gradient(135deg, rgba(217, 20, 36, 0.04) 0%, var(--ign-card) 100%);
}

.fuel-box--red .fuel-box__tag { background: var(--ign-g-red); }
.fuel-box--red .fuel-box__icon {
  background: rgba(217, 20, 36, 0.1);
  color: var(--ign-red);
}

/* ========== DUAL-COL (Two Column) ========== */
.dual-col {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--gap-6);
  align-items: start;
}

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

.dual-col__secondary {
  position: sticky;
  top: calc(var(--head-height) + var(--gap-5));
}

/* ========== FLAME-FEED (Winners Stream) ========== */
.flame-feed {
  background: var(--ign-card);
  border: 1px solid var(--ign-line);
  border-radius: var(--round-lg);
  padding: var(--gap-5);
  position: sticky;
  top: calc(var(--head-height) + var(--gap-5));
}

.flame-feed__head {
  display: flex;
  align-items: center;
  gap: var(--gap-2);
  margin-bottom: var(--gap-5);
  padding-bottom: var(--gap-4);
  border-bottom: 1px solid var(--ign-line);
}

.flame-feed__dot {
  width: 8px;
  height: 8px;
  background: var(--ign-orange);
  border-radius: 50%;
  animation: ignition-pulse 1.5s infinite;
}

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

.flame-feed__label {
  font-size: 15px;
  font-weight: 700;
  color: var(--ign-white);
}

.flame-feed__list {
  display: flex;
  flex-direction: column;
  gap: var(--gap-3);
}

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

.flame-row.is-new {
  animation: ignition-row 0.4s ease;
  background: rgba(255, 105, 0, 0.08);
}

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

.flame-row__img {
  width: 42px;
  height: 42px;
  border-radius: var(--round-sm);
  object-fit: cover;
}

.flame-row__player {
  font-size: 13px;
  font-weight: 600;
  color: var(--ign-white);
}

.flame-row__game {
  font-size: 11px;
  color: var(--ign-dim);
}

.flame-row__win {
  font-size: 14px;
  font-weight: 700;
  color: var(--ign-orange);
}

/* ========== HEAT-FAQ (FAQ Section) ========== */
.heat-faq {
  padding: var(--gap-9) 0;
  background: var(--ign-card);
}

.heat-faq__title {
  font-size: 26px;
  font-weight: 800;
  color: var(--ign-white);
  text-align: center;
  margin-bottom: var(--gap-8);
}

.heat-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-4);
  align-items: start;
}

.hot-item {
  background: var(--ign-bg);
  border: 1px solid var(--ign-line);
  border-radius: var(--round-md);
  overflow: hidden;
}

.hot-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--gap-5);
  text-align: left;
  cursor: pointer;
}

.hot-item__trigger h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ign-white);
  padding-right: var(--gap-4);
}

.hot-item__icon {
  color: var(--ign-orange);
  font-size: 14px;
  transition: transform 0.25s ease;
}

.hot-item.is-open .hot-item__icon { transform: rotate(180deg); }

.hot-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.hot-item.is-open .hot-item__panel { max-height: 400px; }

.hot-item__panel p {
  padding: 0 var(--gap-5) var(--gap-5);
  font-size: 14px;
  color: var(--ign-muted);
  line-height: 1.7;
}

/* ========== SITE-FOOT (Footer) ========== */
.site-foot {
  background: var(--ign-bg-alt);
  padding: var(--gap-9) 0 var(--gap-7);
  border-top: 1px solid var(--ign-line);
}

.site-foot__top {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: var(--gap-8);
  margin-bottom: var(--gap-8);
  padding-bottom: var(--gap-7);
  border-bottom: 1px solid var(--ign-line);
}

.site-foot__brand {
  display: flex;
  flex-direction: column;
  gap: var(--gap-3);
}

.site-foot__brand img {
  height: 32px;
  width: auto;
}

.site-foot__brand span {
  font-size: 14px;
  font-weight: 700;
  color: var(--ign-white);
}

.site-foot__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-7);
}

.site-foot__col {
  display: flex;
  flex-direction: column;
  gap: var(--gap-3);
}

.site-foot__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ign-orange);
  margin-bottom: var(--gap-2);
}

.site-foot__col a {
  font-size: 13px;
  color: var(--ign-muted);
  transition: color 0.2s;
}

.site-foot__col a:hover { color: var(--ign-orange); }

.site-foot__pay {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-3);
  align-items: center;
}

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

.site-foot__pay img:hover { opacity: 1; }

.site-foot__bottom { text-align: center; }

.site-foot__copy {
  font-size: 13px;
  color: var(--ign-dim);
  margin-bottom: var(--gap-2);
}

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

.site-foot__legal a { color: var(--ign-orange); }

/* ========== STICK-CTA (Floating Button) ========== */
.stick-cta {
  position: fixed;
  bottom: var(--gap-5);
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  transition: all 0.3s ease;
}

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

/* ========== LOST-VIEW (404) ========== */
.lost-view {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gap-9) 0;
}

.lost-view__inner { text-align: center; }

.lost-view__num {
  font-size: clamp(80px, 15vw, 130px);
  font-weight: 900;
  background: var(--ign-g-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--gap-4);
}

.lost-view__title {
  font-size: 26px;
  font-weight: 800;
  color: var(--ign-white);
  margin-bottom: var(--gap-3);
}

.lost-view__text {
  font-size: 16px;
  color: var(--ign-muted);
  margin-bottom: var(--gap-7);
  max-width: 380px;
  margin-inline: auto;
}

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

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

  .blaze-hero__layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .blaze-hero__visual { order: 1; }
  .blaze-hero__body { order: 2; }
  .blaze-hero__intro { margin-inline: auto; }
  .blaze-hero__ctas { justify-content: center; }

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

  .content-layout { grid-template-columns: 1fr; }
  .flame-feed { position: static; }

  .site-foot__top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-foot__nav { grid-template-columns: repeat(2, 1fr); }
  .site-foot__pay { justify-content: center; }
}

@media (max-width: 768px) {
  .motor-nav,
  .site-head__btns { display: none; }

  .burger { display: flex; }

  .kpi-band__row { grid-template-columns: repeat(2, 1fr); }
  .games-zone__grid { grid-template-columns: repeat(3, 1fr); }
  .heat-faq__grid { grid-template-columns: 1fr; }

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

  .fuel-box__btn {
    width: 100%;
    justify-content: center;
  }

  .site-foot__nav {
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-5);
  }
}

@media (max-width: 480px) {
  .games-zone__grid { grid-template-columns: repeat(2, 1fr); }
  .blaze-hero__h1 { font-size: 26px; }
  .text-block { padding: var(--gap-5); }
  .text-block__heading { font-size: 20px; }
}
