/* =========================================================
   RICHARD CASINO - Site 18
   Royal Navy & Gold Theme - Official Richard Casino colors
========================================================= */

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

:root {
  /* Core palette - Dark Green (Richard Casino official) */
  --clr-base: #004736;
  --clr-deep: #002f23;
  --clr-surface: #005c45;
  --clr-surface-hover: #00704f;

  /* Primary accent - Gold (Richard Casino brand #dda052) */
  --clr-primary: #dda052;
  --clr-primary-dark: #C58B2C;
  --clr-primary-light: #F0E096;

  /* Secondary accent - Rich Gold gradient */
  --clr-accent: #C99336;
  --clr-accent-dark: #C58B2C;
  --clr-accent-light: #F0E096;

  /* Tertiary - Logo Gold */
  --clr-gold: #dda052;
  --clr-gold-dark: #C58B2C;
  --clr-gold-light: #F0E096;

  /* Typography */
  --clr-white: #f8fafc;
  --clr-text: #b8c5dc;
  --clr-muted: rgba(184, 197, 220, 0.85);
  --clr-faded: rgba(184, 197, 220, 0.55);

  /* Borders */
  --border-subtle: rgba(221, 160, 82, 0.15);
  --border-active: rgba(221, 160, 82, 0.4);
  --border-accent: rgba(0, 71, 54, 0.5);

  /* Gradients - Green & Gold style (Richard Casino official) */
  --grad-primary: linear-gradient(135deg, #C58B2C 0%, #F0E096 50%, #C99336 100%);
  --grad-accent: linear-gradient(135deg, #dda052 0%, #C99336 100%);
  --grad-surface: linear-gradient(180deg, rgba(0, 92, 69, 0.97) 0%, rgba(0, 71, 54, 0.99) 100%);
  --grad-hero: linear-gradient(90deg, #002f23 0%, #004736 20%, #004736 80%, #002f23 100%);
  --grad-dark: linear-gradient(90deg, #002f23 0%, #004736 50%, #002f23 100%);

  /* Glows */
  --glow-primary: rgba(221, 160, 82, 0.4);
  --glow-accent: rgba(0, 71, 54, 0.5);

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

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

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--clr-base);
  background-image:
    radial-gradient(ellipse 55% 40% at 20% -5%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 45% 30% at 85% 105%, rgba(40, 57, 177, 0.05) 0%, transparent 40%);
  color: var(--clr-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; }

/* ========== CONTAINER ========== */
.container {
  width: min(var(--max-width), calc(100% - var(--sp-3xl)));
  margin-inline: auto;
}

/* ========== TOP RIBBON ========== */
.top-ribbon {
  background: var(--grad-primary);
  padding: var(--sp-sm) 0;
  text-align: center;
}

.top-ribbon__msg {
  font-size: 13px;
  font-weight: 700;
  color: #002f23 !important;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
}

.top-ribbon__msg i {
  color: #003d2e;
}

/* ========== SITE HEADER ========== */
.site-header {
  background: rgba(7, 10, 21, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

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

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

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

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

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

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

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

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

.dropdown__trigger:hover {
  color: var(--clr-white);
  background: rgba(255, 255, 255, 0.05);
}

.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(6px);
  min-width: 210px;
  background: rgba(10, 14, 26, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-active);
  border-radius: var(--rad-md);
  padding: var(--sp-sm) 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  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(--sp-md);
  padding: var(--sp-md) var(--sp-xl);
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-muted);
  transition: all 0.15s ease;
  white-space: nowrap;
}

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

.dropdown__item:hover {
  color: var(--clr-white);
  background: rgba(212, 175, 55, 0.08);
}

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

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

/* ========== MOBILE DRAWER ========== */
.mobile-drawer {
  display: none;
}

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

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

.mobile-drawer__link {
  display: inline-block;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--rad-pill);
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-text);
}

.mobile-drawer__link:active {
  color: var(--clr-white);
  background: rgba(212, 175, 55, 0.15);
}

.mobile-drawer__btns {
  display: flex;
  justify-content: center;
  gap: 14px;
}

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

.burger-btn__bar {
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all 0.25s ease;
}

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

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

.btn--gold {
  background: var(--grad-primary);
  color: #002f23 !important;
  box-shadow: 0 4px 20px var(--glow-primary);
}

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

.btn--outline {
  background: transparent;
  color: #D4AF37 !important;
  border: 2px solid var(--clr-primary);
}

.btn--outline:hover {
  background: var(--clr-primary);
  color: #002f23 !important;
}

.btn--royal {
  background: var(--grad-accent);
  color: #f8fafc !important;
  box-shadow: 0 4px 20px var(--glow-accent);
}

.btn--royal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--glow-accent);
}

.btn--dark {
  background: var(--grad-dark);
  color: #f8fafc !important;
  border: 1px solid var(--border-subtle);
}

.btn--dark:hover {
  border-color: var(--border-active);
}

/* ========== SHOWCASE (Hero) ========== */
.showcase {
  padding: var(--sp-5xl) 0 var(--sp-4xl);
  background: var(--grad-hero);
}

.showcase__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--sp-4xl);
  align-items: center;
}

.showcase__media {
  order: 2;
}

.showcase__media img {
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
}

.showcase__info {
  order: 1;
}

.showcase__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: var(--sp-sm) var(--sp-lg);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--rad-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-primary);
  margin-bottom: var(--sp-xl);
}

.showcase__tag i {
  color: var(--clr-accent-light);
}

.showcase__headline {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--clr-white);
  margin-bottom: var(--sp-xl);
  letter-spacing: -0.025em;
}

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

.showcase__text {
  font-size: 17px;
  color: var(--clr-muted);
  margin-bottom: var(--sp-3xl);
  max-width: 540px;
}

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

/* ========== METRICS STRIP ========== */
.metrics-strip {
  padding: var(--sp-2xl) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(10, 14, 26, 0.5);
}

.metrics-strip__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-2xl);
}

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

.metric-item__num {
  font-size: 30px;
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1.2;
  display: block;
}

.metric-item__num--gold {
  color: var(--clr-gold);
}

.metric-item__label {
  font-size: 13px;
  color: var(--clr-faded);
  margin-top: var(--sp-xs);
  display: block;
}

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

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

.section-head__title i {
  color: var(--clr-gold);
}

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

.section-head__link:hover {
  color: var(--clr-primary-light);
}

/* ========== GAMES GALLERY ========== */
.games-gallery {
  padding: var(--sp-5xl) 0;
}

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

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

.game-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-active);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.game-card__visual {
  position: relative;
  overflow: hidden;
}

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

.game-card__badge {
  position: absolute;
  top: var(--sp-sm);
  left: var(--sp-sm);
  padding: 4px 10px;
  background: var(--grad-primary);
  border-radius: var(--rad-xs);
  font-size: 10px;
  font-weight: 700;
  color: #002f23 !important;
  text-transform: uppercase;
}

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

.game-card:hover .game-card__hover {
  opacity: 1;
}

.game-card__btns {
  display: flex;
  gap: var(--sp-sm);
}

.game-card__btn {
  padding: 10px 18px;
  border-radius: var(--rad-sm);
  font-size: 12px;
  font-weight: 700;
}

.game-card__btn--play {
  background: var(--grad-primary);
  color: #002f23 !important;
}

.game-card__btn--demo {
  background: transparent;
  border: 1px solid var(--clr-primary);
  color: var(--clr-primary);
}

.game-card__details {
  padding: var(--sp-md);
}

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

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

/* ========== PROVIDERS BAND ========== */
.providers-band {
  padding: var(--sp-4xl) 0;
  background: var(--clr-surface);
}

.providers-band__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3xl);
  align-items: center;
}

.provider-logo {
  height: 32px;
  display: flex;
  align-items: center;
}

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

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

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

.split-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--sp-3xl);
  align-items: start;
}

/* ========== ARTICLE BOX ========== */
.article-box {
  background: var(--clr-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--rad-lg);
  padding: var(--sp-3xl);
}

.article-box__title {
  font-size: 26px;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: var(--sp-2xl);
  line-height: 1.25;
}

.article-box__body {
  color: var(--clr-text);
  line-height: 1.75;
}

.article-box__body h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--clr-white);
  margin: var(--sp-3xl) 0 var(--sp-lg);
}

.article-box__body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-white);
  margin: var(--sp-2xl) 0 var(--sp-md);
}

.article-box__body h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-white);
  margin: var(--sp-xl) 0 var(--sp-md);
}

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

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

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

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

.article-box__body a {
  color: var(--clr-primary);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.article-box__body a:hover {
  border-color: var(--clr-primary);
}

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

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

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

.article-box__body th {
  background: rgba(212, 175, 55, 0.08);
  color: var(--clr-white);
  font-weight: 700;
  font-size: 13px;
}

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

/* ========== PROMO BOX ========== */
.promo-box {
  position: relative;
  background: var(--clr-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--rad-lg);
  padding: var(--sp-2xl);
  padding-top: var(--sp-3xl);
  margin: var(--sp-3xl) 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--sp-xl);
  align-items: center;
}

.promo-box__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: var(--sp-xs) var(--sp-md);
  background: var(--grad-primary);
  border-radius: var(--rad-sm);
  font-size: 11px;
  font-weight: 700;
  color: #002f23 !important;
  text-transform: uppercase;
  position: absolute;
  top: calc(-1 * var(--sp-md));
  left: var(--sp-xl);
}

.promo-box__icon {
  width: 56px;
  height: 56px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: var(--rad-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--clr-gold);
}

.promo-box__content {
  flex: 1;
}

.promo-box__headline {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--sp-xs);
}

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

.promo-box__btn {
  padding: 12px 24px;
  background: var(--grad-primary);
  border-radius: var(--rad-pill);
  font-size: 14px;
  font-weight: 700;
  color: #002f23 !important;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  transition: all 0.2s ease;
}

.promo-box__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--glow-primary);
}

.promo-box--royal {
  border-color: var(--clr-accent);
  background: linear-gradient(135deg, rgba(40, 57, 177, 0.08) 0%, var(--clr-surface) 100%);
}

.promo-box--royal .promo-box__icon {
  background: rgba(40, 57, 177, 0.12);
  color: var(--clr-accent-light);
}

.promo-box--crown {
  border-color: var(--border-active);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06) 0%, var(--clr-surface) 100%);
}

/* ========== WINNERS FEED ========== */
.winners-feed {
  background: var(--clr-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--rad-lg);
  padding: var(--sp-xl);
  position: sticky;
  top: calc(var(--header-h) + var(--sp-xl));
}

.winners-feed__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(--border-subtle);
}

.winners-feed__dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

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

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

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

.winner-item.is-fresh {
  animation: slide-in 0.4s ease;
  background: rgba(212, 175, 55, 0.08);
}

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

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

.winner-item__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-white);
}

.winner-item__game {
  font-size: 11px;
  color: var(--clr-faded);
}

.winner-item__win {
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-gold);
}

/* ========== FAQ AREA ========== */
.faq-area {
  padding: var(--sp-5xl) 0;
  background: var(--clr-surface);
}

.faq-area__title {
  font-size: 28px;
  font-weight: 800;
  color: var(--clr-white);
  text-align: center;
  margin-bottom: var(--sp-4xl);
}

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

.faq-card {
  background: var(--clr-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--rad-md);
  overflow: hidden;
}

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

.faq-card__question h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-white);
  padding-right: var(--sp-lg);
}

.faq-card__arrow {
  color: var(--clr-gold);
  font-size: 14px;
  transition: transform 0.25s ease;
}

.faq-card.is-expanded .faq-card__arrow {
  transform: rotate(180deg);
}

.faq-card__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-card.is-expanded .faq-card__answer {
  max-height: 400px;
}

.faq-card__answer p {
  padding: 0 var(--sp-xl) var(--sp-xl);
  font-size: 14px;
  color: var(--clr-muted);
  line-height: 1.7;
}

/* ========== SITE FOOTER ========== */
.site-footer {
  background: var(--clr-deep);
  padding: var(--sp-5xl) 0 var(--sp-3xl);
  border-top: 1px solid var(--border-subtle);
}

.site-footer__upper {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: var(--sp-4xl);
  margin-bottom: var(--sp-4xl);
  padding-bottom: var(--sp-3xl);
  border-bottom: 1px solid var(--border-subtle);
}

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

.site-footer__brand img {
  height: 40px;
  width: auto;
}

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

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3xl);
}

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

.site-footer__heading {
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-gold);
  margin-bottom: var(--sp-sm);
}

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

.site-footer__col a:hover {
  color: var(--clr-primary);
}

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

.site-footer__payments img {
  height: 28px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.2s;
}

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

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

.site-footer__copy {
  font-size: 13px;
  color: var(--clr-faded);
  margin-bottom: var(--sp-sm);
}

.site-footer__legal {
  font-size: 12px;
  color: var(--clr-faded);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.site-footer__legal a {
  color: var(--clr-primary);
}

/* ========== STICKY CTA ========== */
.sticky-cta {
  position: fixed;
  bottom: var(--sp-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  transition: all 0.3s ease;
}

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

/* ========== NOT FOUND (404) ========== */
.not-found {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-5xl) 0;
}

.not-found__content {
  text-align: center;
}

.not-found__code {
  font-size: clamp(80px, 15vw, 140px);
  font-weight: 900;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--sp-lg);
}

.not-found__title {
  font-size: 28px;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: var(--sp-md);
}

.not-found__text {
  font-size: 16px;
  color: var(--clr-muted);
  margin-bottom: var(--sp-3xl);
  max-width: 400px;
  margin-inline: auto;
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .showcase__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .showcase__media {
    order: 1;
  }

  .showcase__info {
    order: 2;
  }

  .showcase__text {
    margin-inline: auto;
  }

  .showcase__actions {
    justify-content: center;
  }

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

  .split-grid {
    grid-template-columns: 1fr;
  }

  .winners-feed {
    position: static;
  }

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

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

  .site-footer__payments {
    justify-content: center;
  }
}

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

  .burger-btn {
    display: flex;
  }

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

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

  .faq-grid {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 480px) {
  .games-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase__headline {
    font-size: 28px;
  }

  .article-box {
    padding: var(--sp-xl);
  }

  .article-box__title {
    font-size: 22px;
  }
}
