:root {
  /* SlotSpin Casino — purple / gold lobby */
  --ink: #0A0612;
  --ink-mid: #12081F;
  --ink-light: #1A0F2E;
  --ink-card: #181028;
  --gold: #F5C542;
  --gold-mid: #E0A82A;
  --gold-dark: #C48E14;
  --violet: #A855F7;
  --violet-deep: #7C3AED;
  --violet-soft: #C4B5FD;
  --lime: var(--violet);
  --lime-dim: var(--violet-deep);
  --amber: var(--gold);
  --amber-dim: var(--gold-dark);
  --cyan: var(--violet);
  --cyan-dim: var(--violet-deep);
  --success: #22C55E;
  --text: #FFFFFF;
  --text-muted: #D4C8E8;
  --text-subtle: #9B8BB8;
  --border: rgba(168, 85, 247, 0.22);
  --border-glow: rgba(245, 197, 66, 0.35);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-lift: 0 20px 56px rgba(0, 0, 0, 0.6);
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  padding-bottom: 76px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
  overscroll-behavior-x: none;
  touch-action: pan-y;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--gold-mid); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-inline: 1rem;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--gold); color: var(--ink);
  padding: 0.5rem 1rem; z-index: 9999; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7, 11, 20, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.9rem 0;
}

.logo-link {
  display: flex; align-items: center; flex-shrink: 0;
  line-height: 0;
}
.logo-link img {
  display: block;
  height: 42px;
  width: auto;
  max-width: min(230px, 58vw);
  object-fit: contain;
  object-position: left center;
  filter:
    brightness(1.08)
    contrast(1.12)
    saturate(1.2)
    drop-shadow(0 1px 10px rgba(168, 85, 247, 0.35))
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.25));
}
.footer-brand img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 0.75rem;
  filter:
    brightness(1.08)
    contrast(1.12)
    saturate(1.18)
    drop-shadow(0 1px 8px rgba(168, 85, 247, 0.28));
}
.footer-brand img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.nav-desktop { display: flex; gap: 1.35rem; align-items: center; }
.nav-desktop a {
  position: relative;
  color: var(--text-muted); font-weight: 700; font-size: 0.9rem;
  transition: color 0.2s;
  padding: 0.35rem 0;
}
.nav-desktop a.active,
.nav-desktop a:hover { color: var(--gold); }
.nav-desktop a.active::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -0.15rem;
  height: 2px; border-radius: 2px;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(251, 211, 106, 0.55);
}

.header-cta { display: flex; gap: 0.55rem; align-items: center; }
.cta-disc {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--gold);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.2rem 0.45rem;
  line-height: 1;
}
.gc-disc {
  margin: 0.35rem 0 0;
  font-size: 0.65rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.72rem 1.4rem; border-radius: 999px;
  font-weight: 800; font-size: 0.86rem; font-family: var(--font-body);
  border: none; cursor: pointer; text-align: center;
  letter-spacing: 0.01em;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-demo {
  background: linear-gradient(135deg, var(--violet), var(--violet-deep));
  color: #fff;
  box-shadow: 0 4px 24px rgba(168, 85, 247, 0.4);
}
.btn-demo:hover {
  background: linear-gradient(135deg, #c084fc, var(--violet));
  color: #fff;
  box-shadow: 0 6px 28px rgba(168, 85, 247, 0.55);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}
.btn-secondary:hover {
  background: rgba(17, 28, 48, 0.9);
  border-color: rgba(251, 211, 106, 0.35);
  color: var(--text);
}

.btn-accent {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #070B14;
  box-shadow: 0 4px 22px rgba(251, 211, 106, 0.32);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-lg { padding: 0.9rem 1.75rem; font-size: 1rem; }
.btn-sm { padding: 0.45rem 0.9rem; font-size: 0.78rem; }

/* ── Hero (full-bleed casino visual, mobile-first) ── */
.hero {
  position: relative;
  background: var(--ink);
  padding: 0 0 2.5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-banner {
  position: relative;
  width: 100%;
  min-height: clamp(240px, 58vw, 420px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #05080f;
}

.hero-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
  pointer-events: none;
  user-select: none;
}

.hero-banner-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 15, 0.92) 0%, rgba(5, 8, 15, 0.72) 38%, rgba(5, 8, 15, 0.18) 68%, rgba(5, 8, 15, 0.35) 100%),
    linear-gradient(180deg, rgba(5, 8, 15, 0.15) 0%, rgba(5, 8, 15, 0.55) 100%);
  pointer-events: none;
}

.hero-banner-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.75rem 1rem 1.6rem;
  align-self: center;
  box-sizing: border-box;
}
.hero-banner-copy > * { max-width: 28rem; }

.hero-banner-kicker {
  margin: 0 0 0.55rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-banner h1 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.85rem, 7vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 12ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}

.hero-banner h1 .accent { color: var(--gold); }

.hero-banner-line {
  margin: 0 0 1.15rem;
  color: rgba(232, 236, 245, 0.82);
  font-size: 0.95rem;
  font-weight: 600;
  max-width: 28ch;
}

.hero-banner-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.hero-banner-cta .btn-demo {
  box-shadow: 0 8px 28px rgba(251, 211, 106, 0.28);
}

.hero-below {
  position: relative;
  padding-top: 1.15rem;
}

.hero-lead {
  color: var(--text-muted);
  max-width: 580px;
  font-size: 1.02rem;
  margin: 0 0 0.25rem;
}

.eyebrow {
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.hero-search {
  display: flex; gap: 0.5rem;
  margin: 0 0 1.25rem; max-width: 540px;
}

.hero-search input,
.inline-search input {
  flex: 1;
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--ink-mid);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hero-search input:focus,
.inline-search input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(251, 211, 106, 0.16);
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-top: 1.25rem; align-items: center;
}

.hero-stat-row {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  margin-top: 1.5rem; padding-top: 1.35rem;
  border-top: 1px solid var(--border);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--gold);
}
.hero-stat span { font-size: 0.82rem; color: var(--text-muted); }

/* ── Sections ── */
.section { padding: 3.5rem 0; }
.section-alt { background: var(--ink-mid); }

.section-head {
  display: flex; justify-content: space-between; align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: 1.75rem; gap: 0.65rem 1rem;
}
.section-head h2 { margin: 0; font-size: 1.55rem; min-width: 0; }
.section-head a { font-size: 0.9rem; font-weight: 600; color: var(--cyan); white-space: nowrap; }

.page-header {
  padding: 2.75rem 0 1.75rem;
  border-bottom: 1px solid var(--border);
  background: var(--ink-mid);
}
.page-header h1 { margin: 0 0 0.5rem; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.page-header-inline { margin-bottom: 2rem; }
.inline-search { display: flex; gap: 0.5rem; margin-top: 1rem; max-width: 480px; }

/* ── Grids ── */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(168px, 100%), 1fr));
  gap: 1rem;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(210px, 100%), 1fr));
  gap: 1rem;
}

/* ── Game cards (design-system mockup) ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.game-card {
  display: flex;
  flex-direction: column;
  background: var(--ink-card);
  border: 1px solid rgba(251, 211, 106, 0.12);
  border-radius: 16px;
  overflow: hidden;
  animation: fadeUp 0.5s var(--ease) both;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.game-card:nth-child(2) { animation-delay: 0.04s; }
.game-card:nth-child(3) { animation-delay: 0.08s; }
.game-card:nth-child(4) { animation-delay: 0.12s; }
.game-card:nth-child(5) { animation-delay: 0.16s; }
.game-card:nth-child(6) { animation-delay: 0.2s; }

.game-card:hover {
  border-color: rgba(251, 211, 106, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5), 0 0 24px rgba(251, 211, 106, 0.08);
}

.game-card-media {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #070B14;
  color: inherit;
}
.game-card-media:hover { color: inherit; }
.game-card-media img,
.game-card-media .game-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.game-card:hover .game-card-media img,
.game-card:hover .game-card-media .game-thumb {
  transform: scale(1.05);
}

.game-card-foot {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.8rem 0.85rem 0.9rem;
}
.game-card-studio {
  margin: 0;
  color: var(--text-subtle);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-card-title { color: inherit; }
.game-card-title:hover { color: inherit; }
.game-card-title h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4em;
}
.game-card:hover .game-card-title h3 { color: var(--gold); }

.game-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 0.15rem 0 0.35rem;
}
.game-card-rating {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}
.game-card-rtp {
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.game-card-cta {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 0.4rem;
}
.gc-play,
.gc-real,
.gc-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.4rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.15s var(--ease), background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
}
.gc-play,
.gc-demo {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(251, 211, 106, 0.55);
}
.gc-play:hover,
.gc-demo:hover {
  background: rgba(251, 211, 106, 0.12);
  color: var(--gold);
  box-shadow: 0 0 18px rgba(251, 211, 106, 0.2);
  transform: translateY(-1px);
}
.gc-real {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #070B14;
  border: 1px solid transparent;
}
.gc-real:hover {
  background: linear-gradient(135deg, #ffe08a, var(--gold));
  color: #070B14;
  transform: translateY(-1px);
}

.game-card-link { color: inherit; display: block; }
.game-card-body { padding: 0; }
.game-meta { margin: 0; color: var(--text-muted); font-size: 0.78rem; }
.game-card-actions { display: none; }

/* ── Provider / bonus cards ── */
.provider-card, .bonus-card {
  background: var(--ink-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.2s var(--ease);
  animation: fadeUp 0.5s var(--ease) both;
}
.provider-card:hover, .bonus-card:hover {
  border-color: rgba(34, 211, 238, 0.35);
  transform: translateY(-3px);
}
.provider-card-link { color: inherit; display: block; padding: 1.25rem; }
.provider-card h3 { margin: 0 0 0.35rem; font-size: 1rem; }
.provider-card p { margin: 0; color: var(--text-muted); font-size: 0.85rem; }

/* ── Game page ── */
.breadcrumbs { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--lime); }

.game-hero {
  display: grid;
  grid-template-columns: minmax(240px, 300px) 1fr;
  gap: 2.25rem;
  margin-bottom: 2.5rem;
  align-items: start;
}

.game-hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--ink-mid);
  box-shadow: var(--shadow);
}

.game-hero-info h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 0.25rem 0 0.75rem; }

.game-stats {
  list-style: none; padding: 0; margin: 1rem 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem;
}
.game-stats li {
  background: var(--ink-mid);
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  border: 1px solid var(--border);
}
.game-stats strong {
  display: block; color: var(--text-muted);
  font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.05em; margin-bottom: 0.15rem;
}

.game-cta-row {
  display: flex; flex-wrap: wrap; gap: 0.65rem;
  margin: 1.25rem 0 0.5rem;
}
.affiliate-note { font-size: 0.75rem; color: var(--text-muted); margin: 0; }

/* ── Prose / mega content ── */
.prose { max-width: 780px; }
.prose .lead { font-size: 1.12rem; color: var(--text-muted); line-height: 1.7; }
.content-block h2 {
  margin-top: 2.25rem;
  font-size: 1.3rem;
  color: var(--text);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}
.mega-content h2 { margin-top: 2.25rem; font-size: 1.3rem; }
.mega-content p { color: var(--text-muted); }
.mega-content a { color: var(--cyan); }
.mega-content ol, .mega-content ul { color: var(--text-muted); padding-left: 1.25rem; }
.mega-content li { margin-bottom: 0.5rem; }

.kw-cloud {
  font-size: 0.82rem;
  line-height: 1.9;
  color: var(--text-muted);
  background: var(--ink-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.glossary dt {
  font-weight: 700;
  color: var(--lime);
  margin-top: 0.75rem;
}
.glossary dd {
  margin: 0.25rem 0 0;
  color: var(--text-muted);
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
  padding: 0.6rem 0.9rem;
  background: var(--ink-mid);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--text);
}
.faq-item p { margin: 0.5rem 0 0; color: var(--text-muted); font-size: 0.92rem; }

.related-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* ── Bonus ── */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
.bonus-card { padding: 1.5rem; }
.bonus-card-head { display: flex; justify-content: space-between; align-items: start; gap: 0.5rem; }
.bonus-tag {
  background: rgba(255, 183, 3, 0.12);
  color: var(--amber);
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}
.bonus-offer { font-size: 1.12rem; font-weight: 700; color: var(--lime); }
.bonus-features { padding-left: 1.2rem; color: var(--text-muted); font-size: 0.9rem; }

/* ── CTA banner ── */
/* ── Affiliate promo banner (EN home) ── */
.promo-affiliate {
  padding: 0.5rem 0 1.25rem;
}
.promo-affiliate-link {
  display: block;
  max-width: 920px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-glow);
  box-shadow: var(--shadow);
  background: var(--ink-mid);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.promo-affiliate-link:hover {
  transform: translateY(-3px);
  border-color: rgba(251, 211, 106, 0.55);
  box-shadow: var(--shadow-lift);
  color: inherit;
}
.promo-affiliate-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1024 / 436;
  object-fit: cover;
  object-position: center;
  display: block;
}
.promo-affiliate.is-ar .promo-affiliate-img {
  aspect-ratio: 1024 / 512;
}
.promo-affiliate-note {
  text-align: center;
  margin: 0.65rem 0 0;
  font-size: 0.75rem;
  color: var(--text-subtle);
}
.promo-affiliate-note a { color: var(--text-muted); font-weight: 600; }

/* ── Thin promo strip (home / game / provider / guide) ── */
.section-promo-strip { padding: 0.75rem 0 0.25rem; }
.promo-strip {
  margin: 1.25rem 0 1.75rem;
}
.section-promo-strip .promo-strip { margin: 0; }
@media (max-width: 768px) {
  /* Fewer heavy promo images on mobile (esp. AR) — prevents jank/freeze */
  .home-strip-desktop { display: none !important; }
}
.promo-strip-link {
  display: block;
  max-width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--ink-mid);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.promo-strip-link:hover {
  border-color: var(--border-glow);
  transform: translateY(-2px);
  color: inherit;
}
.promo-strip-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1024 / 280;
  object-fit: cover;
  display: block;
}
.promo-strip.is-ar .promo-strip-img { aspect-ratio: 1024 / 293; }
.promo-strip-note {
  margin: 0.45rem 0 0;
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-subtle);
}
.promo-strip-note a { color: var(--text-muted); font-weight: 600; }

/* ── Square affiliate popup (EN + AR) ── */
.promo-popup[hidden] { display: none !important; }
.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  padding: 1rem;
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
  pointer-events: none;
}
.promo-popup.is-open { pointer-events: auto; }
.promo-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 12, 0.78);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.promo-popup.is-open .promo-popup-backdrop { opacity: 1; }
.promo-popup-panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  transform: translateY(18px) scale(0.96);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.promo-popup.is-open .promo-popup-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.promo-popup.is-ar .promo-popup-panel { width: min(640px, 100%); }
.promo-popup-link {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(251, 211, 106, 0.4);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.6);
  background: #070b14;
}
.promo-popup-link:hover { color: inherit; border-color: rgba(251, 211, 106, 0.65); }
.promo-popup-link img {
  width: 100%;
  height: auto;
  aspect-ratio: 1024 / 768;
  object-fit: cover;
  display: block;
}
.promo-popup.is-ar .promo-popup-link img { aspect-ratio: 1024 / 512; }
.promo-popup-close {
  position: absolute;
  top: 0.55rem;
  inset-inline-end: 0.55rem;
  z-index: 5;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(7, 11, 20, 0.88);
  color: #fff;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  display: grid;
  place-items: center;
  padding: 0;
}
.promo-popup-close:hover,
.promo-popup-close:focus {
  color: var(--gold);
  border-color: var(--gold);
  outline: none;
}
body.promo-popup-open { overscroll-behavior: none; }
.promo-popup-note {
  margin: 0.55rem 0 0;
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-subtle);
}
.promo-popup-note a { color: var(--text-muted); font-weight: 600; }
@media (max-width: 768px) {
  .promo-popup {
    place-items: center;
    align-content: center;
    padding: 1rem;
    padding-top: max(1rem, env(safe-area-inset-top));
    padding-bottom: max(1rem, env(safe-area-inset-bottom));
  }
  .promo-popup-panel {
    width: min(100%, 360px);
    margin: 0 auto;
    max-height: min(88dvh, 88vh);
  }
  .promo-popup-link img {
    max-height: min(70dvh, 70vh);
    width: 100%;
    height: auto;
    object-fit: contain;
    aspect-ratio: auto;
  }
  .promo-popup-close {
    top: 0.4rem;
    inset-inline-end: 0.4rem;
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(7, 11, 20, 0.94);
  }
}

.cta-banner { padding: 2rem 0 3.5rem; }
.cta-banner-inner {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 1.25rem; padding: 2rem 2.25rem;
  background: linear-gradient(135deg, var(--ink-light), var(--ink-mid));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.cta-banner-inner::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 40%; height: 100%;
  background: radial-gradient(circle at 100% 50%, rgba(200, 245, 66, 0.08), transparent 70%);
  pointer-events: none;
}
.cta-banner-inner h2 { margin: 0 0 0.35rem; font-size: 1.35rem; }
.cta-banner-inner p { margin: 0; color: var(--text-muted); }

/* ── SEO content ── */
.seo-content .prose { max-width: 920px; }
.seo-content h2 {
  font-size: 1.4rem; margin-top: 2.5rem;
  color: var(--lime);
}
.seo-content h3 { font-size: 1.1rem; margin-top: 1.5rem; color: var(--text); }
.seo-content p, .seo-content li { color: var(--text-muted); }
.seo-content a { color: var(--cyan); }

/* ── Pagination ── */
.pagination { display: flex; gap: 0.35rem; margin-top: 2rem; flex-wrap: wrap; }
.page-link {
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: background 0.2s, color 0.2s;
}
.page-link.is-active,
.page-link:hover {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}

.empty-state { color: var(--text-muted); padding: 2rem 0; }

/* ── Footer ── */
.site-footer {
  background: var(--ink-mid);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1rem;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; max-width: 280px; }
.site-footer h3 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-family: var(--font-body);
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.4rem; }
.site-footer a { color: var(--text-muted); font-size: 0.88rem; }
.site-footer a:hover { color: var(--lime); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1rem; }
.footer-bottom p { margin: 0; font-size: 0.78rem; color: var(--text-muted); }

/* ── Mobile dock ── */
.mobile-dock {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  display: none;
  background: rgba(7, 11, 20, 0.94);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(16px);
  padding: 0.4rem 0.6rem calc(0.4rem + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
}
.mobile-dock a {
  flex: 1;
  display: flex; flex-direction: column; align-items: center;
  gap: 0.15rem; padding: 0.45rem 0.25rem;
  color: var(--text-muted);
  font-size: 0.62rem; font-weight: 600;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.mobile-dock a:hover { color: var(--gold); }
.mobile-dock .dock-icon {
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1; height: 22px;
}
.mobile-dock a.active { color: var(--gold); }
.mobile-dock .dock-demo {
  color: #070B14;
  background: linear-gradient(135deg, var(--gold), var(--gold-mid));
  border-radius: 14px;
  margin: 0 0.15rem;
  box-shadow: 0 4px 16px rgba(251, 211, 106, 0.28);
}
.mobile-dock .dock-demo .dock-icon { filter: none; color: #070B14; }
.mobile-dock .dock-cta { color: var(--gold); }

@media (max-width: 768px) {
  .nav-desktop, .header-cta { display: none; }
  .mobile-dock { display: flex; }
  .game-hero { grid-template-columns: 1fr; }
  .game-hero-media { max-width: 280px; }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0.75rem 0;
  }
  .logo-link {
    grid-column: 2;
    justify-self: center;
    justify-content: center;
  }
  .lang-switch {
    grid-column: 3;
    justify-self: end;
    font-size: 0.78rem;
    padding: 0.3rem 0.5rem;
    z-index: 2;
  }
  .logo-link img {
    max-width: min(200px, 58vw);
    height: 36px;
    object-position: center;
    margin-inline: auto;
  }

  .hero { padding-bottom: 1.5rem; }
  .hero-banner {
    min-height: min(72vw, 320px);
    border-radius: 0 0 18px 18px;
  }
  .hero-banner-img { object-position: 82% 42%; }
  .hero-banner-shade {
    background:
      linear-gradient(105deg, rgba(5, 8, 15, 0.94) 0%, rgba(5, 8, 15, 0.78) 42%, rgba(5, 8, 15, 0.2) 72%, rgba(5, 8, 15, 0.45) 100%),
      linear-gradient(180deg, transparent 35%, rgba(5, 8, 15, 0.7) 100%);
  }
  .hero-banner-copy {
    padding: 1.35rem 1rem 1.25rem;
    align-self: flex-end;
  }
  .hero-banner-copy > * { max-width: none; }
  .hero-banner h1 { max-width: none; font-size: clamp(1.7rem, 8vw, 2.15rem); }
  .hero-banner-cta .btn-lg { padding: 0.85rem 1.35rem; width: 100%; justify-content: center; }
  .hero-banner-cta .btn-ghost { width: 100%; justify-content: center; }
  .hero-lead,
  .hero-stat-row { display: none; }
  .hero-search { max-width: none; margin-bottom: 0.25rem; }
  .hero-search input { border-radius: 12px; padding: 0.8rem 1rem; min-width: 0; }
  .hero-search .btn { border-radius: 12px; padding-inline: 1rem; flex-shrink: 0; }

  .hero-stat-row { gap: 1rem; }
  .game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
  .blurb-grid {
    grid-template-columns: 1fr;
  }
  .section-head h2 { font-size: 1.25rem; }
  .game-card-title h3 { font-size: 0.86rem; min-height: 2.2em; }
  .gc-play, .gc-real, .gc-demo { font-size: 0.68rem; padding: 0.45rem 0.3rem; }
  .tag-cloud,
  .kw-cloud-mega {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (min-width: 900px) {
  .hero-banner { min-height: 420px; }
  .hero-banner-img { object-position: 70% center; }
  .hero-banner-copy {
    align-self: center;
    padding: 3rem 1rem;
  }
  .hero-banner-copy > * { max-width: 32rem; }
  .hero { padding-bottom: 3rem; }
  .hero-below { padding-top: 1.75rem; }
}

/* Hub SEO feed blocks (child pages → homepage) */
.hub-feed {
  margin: 2.5rem 0 1rem;
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(251, 211, 106, 0.07), rgba(17, 28, 48, 0.4));
}
.hub-feed h2 { margin-top: 0; font-size: 1.35rem; }
.hub-feed-anchors { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; }
.hub-feed-anchors a { font-weight: 600; }
.hub-feed-pillars { margin: 1rem 0 0; padding-left: 1.2rem; }
.hub-feed-pillars li { margin: 0.35rem 0; }
.hub-inline { margin: 1.25rem 0; padding: 0.85rem 1rem; border-left: 3px solid var(--gold); background: rgba(251, 211, 106, 0.06); }

.section-pillars { padding-top: 2rem; }
.pillars-lead { color: var(--text-muted); max-width: 720px; margin: 0 0 1.25rem; }
.pillar-cloud {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.pillar-chip {
  display: inline-flex; align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--ink-card);
  color: var(--text);
  font-size: 0.85rem; font-weight: 600;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.pillar-chip:hover {
  border-color: var(--lime);
  color: var(--lime);
  transform: translateY(-1px);
}

/* FreeSlotsGlobal-style SEO tag clouds */
.section-seo-intro h2 { font-size: clamp(1.35rem, 2.5vw, 1.85rem); margin-bottom: 0.85rem; }
.section-seo-intro p { color: var(--text-muted); max-width: 920px; margin-bottom: 0.9rem; }
.section-seo-intro strong { color: var(--text); font-weight: 700; }
.tag-cloud {
  display: flex; flex-wrap: wrap; gap: 0.45rem;
  margin: 1.25rem 0 0.75rem;
  max-height: 420px;
  overflow: auto;
  padding-right: 0.25rem;
}
.tag-pill {
  display: inline-flex; align-items: center;
  padding: 0.38rem 0.78rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--ink-card);
  color: var(--text-muted);
  font-size: 0.8rem; font-weight: 600;
  line-height: 1.2;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.tag-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(251, 211, 106, 0.08);
}
.tag-cloud-note { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.5rem; }

.home-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}
.home-more-btn {
  min-width: min(280px, 100%);
  justify-content: center;
  box-shadow: 0 8px 28px rgba(251, 211, 106, 0.28);
}

.blurb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  gap: 1rem;
}
.blurb-card {
  background: var(--ink-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}
.blurb-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: baseline;
}
.blurb-card h3 a { color: var(--amber, #f5b942); }
.blurb-studio {
  font-size: 0.75rem; font-weight: 600;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em;
}
.blurb-card p { margin: 0 0 0.85rem; color: var(--text-muted); font-size: 0.9rem; line-height: 1.55; }
.blurb-actions { display: flex; gap: 0.45rem; flex-wrap: wrap; }
.btn-sm { padding: 0.45rem 0.85rem; font-size: 0.8rem; }

.provider-hub-list {
  list-style: none; padding: 0; margin: 0.5rem 0 0;
  display: grid; gap: 0.65rem;
}
.provider-hub-list li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
}
.provider-hub-list strong { color: var(--amber, #f5b942); font-weight: 700; }
.provider-hub-list a:hover strong { color: var(--lime); }

.kw-cloud-mega {
  max-height: 480px;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 0.78rem;
  line-height: 1.85;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.responsible-snip h2 { margin-top: 0; }
.section-tag-footer .tag-cloud { max-height: 360px; }

.footer-hub-links { margin-top: 0.75rem; font-size: 0.9rem; line-height: 1.7; }
.footer-hub-links a { font-weight: 700; color: var(--lime); }
.footer-bottom a { color: var(--cyan); font-weight: 600; }

@media (min-width: 769px) {
  body { padding-bottom: 0; }
}

/* ── Language switcher ── */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(17, 28, 48, 0.85);
}
.lang-switch a { color: var(--text-muted); }
.lang-switch a.is-active,
.lang-switch a:hover { color: var(--gold); }
.lang-switch span { color: var(--text-subtle); opacity: 0.5; }

/* ── RTL (Arabic) ── */
html[dir=rtl] {
  --font-body: "Noto Sans Arabic", "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Noto Sans Arabic", "Plus Jakarta Sans", system-ui, sans-serif;
}
html[dir=rtl] body { font-family: var(--font-body); }
html[dir=rtl] h1,
html[dir=rtl] h2,
html[dir=rtl] h3,
html[dir=rtl] h4 {
  font-family: var(--font-display);
  letter-spacing: 0;
}
html[dir=rtl] .hero-banner-shade {
  background:
    linear-gradient(255deg, rgba(5, 8, 15, 0.94) 0%, rgba(5, 8, 15, 0.78) 42%, rgba(5, 8, 15, 0.2) 72%, rgba(5, 8, 15, 0.45) 100%),
    linear-gradient(180deg, transparent 35%, rgba(5, 8, 15, 0.7) 100%);
}
html[dir=rtl] .hero-banner-copy,
html[dir=rtl] .breadcrumbs,
html[dir=rtl] .footer-grid { text-align: start; }
@media (max-width: 768px) {
  html[dir=rtl] .logo-link {
    justify-content: center;
    margin-inline: auto;
  }
  html[dir=rtl] .lang-switch {
    justify-self: start;
  }
}

/* ── SlotSpin lobby extras ── */
.lobby-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 1.25rem;
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 1rem;
}
.lobby-side {
  position: sticky;
  top: 5.5rem;
  align-self: start;
  background: var(--ink-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 0.85rem;
}
.lobby-side h2 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--violet-soft);
  margin: 0 0 0.75rem;
}
.lobby-side-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.lobby-side-nav a {
  display: block;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  color: var(--text-muted);
  font-weight: 650;
  font-size: 0.9rem;
}
.lobby-side-nav a:hover,
.lobby-side-nav a.active {
  background: rgba(168, 85, 247, 0.16);
  color: #fff;
}
.cat-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
}
.cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.85rem;
  border-radius: 12px;
  background: var(--ink-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.cat-chip:hover,
.cat-chip.active {
  border-color: var(--violet);
  color: #fff;
  background: rgba(168, 85, 247, 0.18);
}
.quick-cats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1.25rem 0 0.5rem;
}
.quick-cat {
  position: relative;
  min-height: 118px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, #1f1235, #12081f);
  padding: 0.95rem 1rem;
  display: flex;
  align-items: flex-end;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.quick-cat-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  z-index: 0;
  transform: scale(1.02);
  transition: transform 0.35s var(--ease);
}
.quick-cat::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 6, 18, 0.92) 0%, rgba(10, 6, 18, 0.72) 42%, rgba(10, 6, 18, 0.22) 72%, rgba(10, 6, 18, 0.45) 100%),
    linear-gradient(180deg, transparent 35%, rgba(10, 6, 18, 0.55) 100%);
  pointer-events: none;
}
.quick-cat-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  max-width: 58%;
}
.quick-cat-copy span {
  font-size: 0.72rem;
  font-weight: 650;
  color: var(--violet-soft);
  text-transform: uppercase;
}
.quick-cat-copy strong {
  font-size: 1.08rem;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}
.quick-cat:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  transition: 0.2s var(--ease);
  color: #fff;
}
.quick-cat:hover .quick-cat-art { transform: scale(1.07); }
@media (max-width: 980px) {
  .lobby-shell { grid-template-columns: 1fr; }
  .lobby-side { display: none; }
  .quick-cats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .quick-cats { grid-template-columns: 1fr 1fr; }
  .cat-chip { font-size: 0.72rem; padding: 0.45rem 0.65rem; }
}

/* ── Sports hub ── */
.sports-home { padding-block: 1.5rem; }
.sports-home-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  border: 1px solid rgba(196, 30, 58, 0.35);
  box-shadow: var(--shadow);
}
.sports-home-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-height: 420px;
  object-fit: cover;
  object-position: 72% center;
}
.sports-home-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 6, 18, 0.92) 0%, rgba(10, 6, 18, 0.7) 42%, rgba(10, 6, 18, 0.2) 72%),
    linear-gradient(180deg, transparent 40%, rgba(10, 6, 18, 0.65) 100%);
}
.sports-home-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 1.75rem;
  max-width: 34rem;
  z-index: 1;
}
.sports-home-copy h2 {
  margin: 0.2rem 0 0.55rem;
  font-size: clamp(1.45rem, 3.5vw, 2rem);
}
.sports-home-copy p { color: var(--text-muted); margin: 0 0 1rem; }
.sports-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}
.sports-pillar {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 1rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, #2a1020, #12081f);
  border: 1px solid rgba(196, 30, 58, 0.28);
  color: #fff;
  min-height: 140px;
  overflow: hidden;
  justify-content: flex-end;
  transition: transform 0.2s var(--ease), border-color 0.2s;
}
.sports-pillar.has-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,6,18,0.92) 0%, rgba(10,6,18,0.55) 55%, rgba(10,6,18,0.35) 100%);
  z-index: 1;
  pointer-events: none;
}
.sports-pillar-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  z-index: 0;
}
.sports-pillar:hover {
  transform: translateY(-2px);
  border-color: #e11d48;
  color: #fff;
}
.sports-pillar strong {
  position: relative;
  z-index: 2;
  font-size: 1.05rem;
  font-family: var(--font-display);
}
.sports-pillar span {
  position: relative;
  z-index: 2;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.45;
  font-weight: 500;
}
.sports-hero .hero-banner-shade {
  background:
    linear-gradient(90deg, rgba(10, 6, 18, 0.93) 0%, rgba(10, 6, 18, 0.72) 40%, rgba(10, 6, 18, 0.2) 70%),
    linear-gradient(180deg, rgba(10, 6, 18, 0.15) 0%, rgba(10, 6, 18, 0.55) 100%);
}
@media (max-width: 900px) {
  .sports-pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .sports-pillars { grid-template-columns: 1fr; }
  .sports-home-img { object-position: 80% center; min-height: 320px; }
  .sports-home-copy { padding: 1.15rem; max-width: none; }
}
