/* ============================================================
   Funzone Switzerland: Gaming Restyle
   Palette: warm off-white bg, white cards, Funzone orange accent (#F5761A),
   dark plum footer echoing the logo.
   ============================================================ */

:root {
  --accent:     #F5761A;
  --accent-2:   #E0640F;
  --accent-3:   #B9520C;
  --accent-soft:rgba(245, 118, 26, 0.12);
  --bg:         #F7F4F0;
  --surface:    #FFFFFF;
  --surface-2:  #FBF8F4;
  --fg:         #241A22;
  --muted:      #6F6862;
  --border:     #ECE5DC;
  --green:      #22C55E;
  --footer-bg:  #1B1119;
  --footer-fg:  #E7DED6;
  --footer-mut: #9A8E93;
  --radius:     12px;
  --radius-sm:  8px;
  --radius-pill:999px;
  --shadow:     0 4px 16px rgba(17, 17, 40, 0.06);
  --shadow-hover:0 12px 30px rgba(245, 118, 26, 0.20);
  --type-lg:    clamp(2.4rem, 5.5vw, 4.5rem);
  --type-md:    clamp(1.5rem, 3vw, 2.3rem);
  --type-sm:    clamp(1.1rem, 2vw, 1.3rem);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Layout helpers ── */
.container {
  width: min(1180px, 92vw);
  margin-inline: auto;
}
section { padding-block: clamp(3rem, 7vw, 5.5rem); }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: var(--type-lg); }
h2 { font-size: var(--type-md); margin-bottom: 1.25rem; }
h3 { font-size: var(--type-sm); margin-bottom: 0.5rem; }
p  { max-width: 66ch; }

.accent  { color: var(--accent); }
.muted   { color: var(--muted); font-size: 0.9rem; }
.tag {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35em 0.85em;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

/* ── HEADER ── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-block: 0.85rem;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  margin-right: auto;
}
[dir="rtl"] .wordmark { margin-right: 0; margin-left: auto; }

/* Language switch */
.lang-switch { position: relative; flex-shrink: 0; }
.lang-current {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.7rem;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--fg);
  transition: border-color 0.2s, color 0.2s;
}
.lang-current:hover { border-color: var(--accent); color: var(--accent); }
.lang-current:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.flag {
  width: 22px;
  height: 15px;
  border-radius: 3px;
  overflow: hidden;
  display: inline-flex;
  flex-shrink: 0;
  border: 1px solid var(--border);
  line-height: 0;
}
.flag .flag-svg { width: 100%; height: 100%; display: block; }
.lang-chevron { width: 14px; height: 14px; color: var(--muted); }
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 170px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  list-style: none;
  padding: 0.35rem;
  display: none;
  z-index: 200;
}
[dir="rtl"] .lang-menu { right: auto; left: 0; }
.lang-menu.is-open { display: block; }
.lang-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.55rem 0.6rem;
  border-radius: 7px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg);
  text-align: left;
}
[dir="rtl"] .lang-option { text-align: right; }
.lang-option:hover { background: var(--surface-2); }
.lang-option[aria-selected="true"] { color: var(--accent); }
.wordmark img {
  height: 34px;
  width: auto;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--fg);
  font-size: 1.2rem;
  padding: 0.35em 0.65em;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.nav-toggle:focus-visible { outline: 2px solid var(--accent); }

nav ul {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}
nav ul li a {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
nav ul li a:hover,
nav ul li a:focus-visible { color: var(--accent); text-decoration: none; }

/* ── TRUST STRIP ── */
.trust-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  list-style: none;
  padding-block: 0.75rem;
}
.trust-list li {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
}
.trust-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

/* ── HERO ── */
#hero {
  background: #F3B24A;
  color: #fff;
  padding-block: clamp(3.5rem, 9vw, 7rem);
  min-height: clamp(360px, 42vw, 560px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* Neutral legibility scrim behind the text (not an orange box) */
#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 12, 4, 0.55) 0%, rgba(20, 12, 4, 0) 20%),
    linear-gradient(90deg, rgba(20, 12, 4, 0.66) 0%, rgba(20, 12, 4, 0.44) 36%, rgba(20, 12, 4, 0.12) 62%, rgba(20, 12, 4, 0) 80%);
  z-index: -1;
}
#hero > .container { position: relative; z-index: 1; width: min(1180px, 92vw); }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-copy { max-width: 560px; }
.hero-copy .tag { background: rgba(255,255,255,0.9); color: var(--accent); }
.hero-copy h1 { margin-bottom: 1.25rem; color: #fff; }
.hero-copy h1 em {
  font-style: normal;
  color: #FFE3B0;
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.92);
  margin-bottom: 2rem;
  max-width: 50ch;
}
.cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-block;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 0.85em 2em;
  border-radius: var(--radius-pill);
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(245, 118, 26, 0.35);
}
.btn-primary:hover { background: var(--accent-2); text-decoration: none; transform: translateY(-2px); }
.btn-secondary {
  border: 2px solid rgba(255,255,255,0.85);
  color: #fff;
  background: transparent;
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); text-decoration: none; }

/* Hero visual block */
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.genre-chip {
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
}
.genre-chip strong { display: block; color: #fff; font-size: 1rem; margin-bottom: 0.15rem; }

/* Hero game-thumbnail collage */
.hero-shot {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 24px rgba(80, 30, 0, 0.22);
}

/* ── HOW IT WORKS ── */
#how-it-works {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.25rem;
}
.step {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: box-shadow 0.2s, transform 0.15s;
}
.step:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.step-num {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step h3 { color: var(--fg); font-size: 1.05rem; }
.step p  { color: var(--muted); font-size: 0.9rem; margin-top: 0.4rem; max-width: none; }

/* ── FEATURES ── */
#features { border-bottom: 1px solid var(--border); }
.features-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.features-header p { color: var(--muted); max-width: 40ch; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.feature-cell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.15s;
}
.feature-cell:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.feature-icon {
  width: 40px; height: 40px;
  margin-bottom: 1rem;
  color: var(--accent);
}
.feature-cell h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.feature-cell p { color: var(--muted); font-size: 0.9rem; max-width: none; }

/* ── GAMES ── */
#games { background: var(--surface); border-bottom: 1px solid var(--border); }
.games-header { text-align: center; margin-bottom: 2.5rem; }
.games-header p { color: var(--muted); margin: 0.5rem auto 0; }
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.game-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.15s;
}
.game-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.game-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
}
.game-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
}
.game-play {
  margin-top: auto;
  display: block;
  width: 100%;
  border: none;
  font-family: inherit;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  text-align: center;
  padding: 0.7em 1em;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(245, 118, 26, 0.28);
  transition: background 0.2s, transform 0.15s;
}
.game-play:hover { background: var(--accent-2); text-decoration: none; transform: translateY(-2px); }
.game-play:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.games-cta { text-align: center; margin-top: 2.75rem; }
.btn-lg { font-size: 1.02rem; padding: 1em 2.6em; }

/* ── USE CASES ── */
#use-cases { border-bottom: 1px solid var(--border); }
.use-cases-intro { margin-bottom: 2.5rem; }
.use-cases-intro p { color: var(--muted); margin-top: 0.75rem; }
.vignettes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.vignette {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
}
.vignette h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.vignette p { color: var(--muted); font-size: 0.9rem; max-width: none; }

/* ── PRICING ── */
#pricing { background: var(--surface); border-bottom: 1px solid var(--border); }
.pricing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.pricing-copy h2 { margin-bottom: 1rem; }
.pricing-copy p { color: var(--muted); }
.pricing-copy-note { margin-top: 1rem; }
.pricing-card {
  background: linear-gradient(160deg, #ffffff 0%, #FFF6EC 100%);
  border: 1px solid var(--border);
  border-top: 5px solid var(--accent);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-hover);
}
.plan-name {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.price-display { margin-bottom: 1.25rem; }
.price-amount {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--accent);
}
.price-cadence {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.25rem;
}
.price-trial {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35em 0.9em;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}
.billing-note {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  margin-top: 1.25rem;
}

/* ── DISCLAIMER ── */
#disclaimer { border-bottom: 1px solid var(--border); }
.disclaimer-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--muted);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}
.disclaimer-box + .disclaimer-box { margin-top: 1.5rem; }
.disclaimer-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

/* ── FOOTER ── */
#site-footer {
  background: var(--footer-bg);
  color: var(--footer-mut);
  padding-block: 4rem 2rem;
  font-size: 0.9rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 2.5rem 2.5rem;
  align-items: start;
}
.footer-col h3,
.footer-col h4 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
}
.footer-inner--3 { grid-template-columns: 2fr 1fr 1fr; }
.footer-logo {
  display: block;
  height: 34px;
  width: auto;
  margin-bottom: 1.5rem;
}
.footer-support-title {
  color: var(--footer-mut);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-badge {
  display: inline-block;
  margin-top: 1.6rem;
  margin-bottom: 1.1rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F7B27A;
  background: rgba(245, 118, 26, 0.22);
  padding: 0.4em 0.85em;
  border-radius: var(--radius-pill);
}
.footer-brand p {
  color: var(--footer-mut);
  max-width: 44ch;
  line-height: 1.75;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.footer-links a { color: var(--footer-mut); font-size: 0.9rem; font-weight: 500; }
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.footer-contact li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.footer-contact svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact strong { color: #fff; font-weight: 700; }
.footer-contact a { color: #fff; font-weight: 400; }
.footer-contact a:hover { color: var(--accent); text-decoration: none; }
.footer-contact address { font-style: normal; color: var(--footer-mut); line-height: 1.65; }
.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 3rem;
  padding-top: 1.75rem;
}
.footer-disclaimer p {
  color: var(--footer-mut);
  font-size: 0.8rem;
  line-height: 1.65;
  max-width: 92ch;
  margin: 0 auto;
  text-align: center;
}
.footer-disclaimer a { color: var(--footer-fg); text-decoration: underline; }
.footer-disclaimer a:hover { color: #fff; }
.footer-bottom {
  margin-top: 1.5rem;
  text-align: center;
}
.footer-copyright {
  color: var(--footer-fg);
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 auto;
  max-width: none;
}
.footer-legal {
  color: var(--footer-mut);
  font-size: 0.78rem;
  line-height: 1.6;
  margin: 0.45rem auto 0;
  max-width: none;
}

/* ── SUB-PAGE STYLES ── */
.subpage-wrap { padding-block: clamp(3rem, 6vw, 5rem); }
.back-link {
  display: inline-block;
  margin-top: 3rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 0.55em 1.3em;
  border-radius: var(--radius-pill);
  background: var(--surface);
}
.back-link:hover { color: #fff; background: var(--accent); border-color: var(--accent); text-decoration: none; }

.subpage-wrap h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.subpage-wrap h2 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.subpage-wrap h3 {
  font-size: 1rem;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--accent);
}
.subpage-wrap p { color: var(--muted); margin-bottom: 1rem; max-width: 72ch; }
.subpage-wrap ul,
.subpage-wrap ol {
  color: var(--muted);
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  max-width: 72ch;
}
.subpage-wrap li { margin-bottom: 0.4rem; }
.subpage-wrap a { color: var(--accent); }
.entity-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
.disclaimer-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ── GAME MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 10, 20, 0.62);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem) 1rem;
  overflow-y: auto;
}
.modal-overlay[hidden] { display: none; }
.modal {
  position: relative;
  background: var(--surface);
  border-radius: 20px;
  width: min(980px, 100%);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 30px 80px rgba(10, 10, 30, 0.45);
  margin: auto;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--surface-2);
  color: var(--fg);
  font-size: 1.6rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.modal-close:hover { background: var(--accent); color: #fff; }
.modal-close:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.modal-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-right: 2.5rem;
}
.modal-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--surface-2);
}
.modal-title { font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 0; }
.modal-tagline { color: var(--muted); font-size: 0.95rem; margin: 0.2rem 0 0; }
.modal-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.modal-gallery { min-width: 0; }
.modal-main-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.modal-thumbs {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.85rem;
  flex-wrap: wrap;
}
.modal-thumb {
  width: 72px;
  height: 56px;
  padding: 0;
  border: 2px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: var(--surface-2);
  transition: border-color 0.2s;
}
.modal-thumb img { width: 100%; height: 100%; object-fit: cover; }
.modal-thumb.is-active { border-color: var(--accent); }
.modal-thumb:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.modal-info h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.modal-description { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; max-width: none; }
.modal-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
}
.modal-cta svg { width: 18px; height: 18px; }
.modal-price {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
  max-width: none;
}

/* ── CARRIER PAGE ── */
.carrier-intro { color: var(--muted); margin-bottom: 2.5rem; max-width: 60ch; }
.carrier-group {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}
.carrier-group h2 {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
}
.carrier-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.carrier-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
}
.carrier-check {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.14);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.carrier-check svg { width: 18px; height: 18px; }
.carrier-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
  min-width: 0;
}
.carrier-name { font-weight: 700; color: var(--fg); }
.carrier-sub { color: var(--muted); font-size: 0.88rem; }
.carrier-status {
  flex-shrink: 0;
  background: var(--green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0.4em 0.95em;
  border-radius: var(--radius-pill);
}
.carrier-row.is-unsupported .carrier-check {
  background: rgba(107, 114, 128, 0.14);
  color: var(--muted);
}
.carrier-status.is-off { background: var(--border); color: var(--muted); }

@media (max-width: 520px) {
  .carrier-row { flex-wrap: wrap; }
  .carrier-status { order: 3; margin-left: calc(34px + 1rem); }
}

/* ── REGIONAL SUPPORT PAGE ── */
.region-intro { color: var(--muted); margin-bottom: 2.5rem; max-width: 60ch; }
.region-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 720px;
}
.region-card + .region-card { margin-top: 1.5rem; }
.region-card-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.75rem;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-3) 100%);
  color: #fff;
}
.region-flag {
  font-size: 1.5rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.18);
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}
.region-name { font-size: 1.25rem; font-weight: 800; flex: 1; min-width: 0; }
.region-badge {
  background: var(--green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0.4em 0.95em;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}
.region-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1.75rem;
}
.region-fact { display: flex; gap: 0.8rem; align-items: flex-start; }
.region-fact-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.region-fact-icon svg { width: 19px; height: 19px; }
.region-fact > div { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; }
.region-fact-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.region-fact-value { font-weight: 600; color: var(--fg); font-size: 0.95rem; }

@media (max-width: 640px) {
  .region-facts { grid-template-columns: 1fr; gap: 1.1rem; }
  .region-card-head { flex-wrap: wrap; }
  .region-name { flex-basis: 60%; }
}

/* ── CONTACT PAGE ── */
.contact-intro { color: var(--muted); max-width: 68ch; margin-bottom: 1rem; }
.contact-intro + .contact-address { margin-top: 2rem; }
.contact-address {
  color: var(--muted);
  line-height: 1.9;
  font-size: 1rem;
  margin-bottom: 2.5rem;
}
.contact-address strong {
  display: block;
  color: var(--fg);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.15rem;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 780px;
  margin-top: 1.5rem;
}
.support-card {
  background: #F3ECE3;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.support-card h3 {
  font-size: 1.05rem;
  color: var(--fg);
  margin-bottom: 1.1rem;
}
.support-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.support-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}
.support-icon svg { width: 20px; height: 20px; color: var(--accent); }
.support-value { color: var(--fg); font-weight: 600; }
.support-value a { color: var(--fg); }
.support-value a:hover { color: var(--accent); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { grid-template-columns: repeat(4, 1fr); }
  .pricing-inner { grid-template-columns: 1fr; gap: 2rem; }
  .features-header { flex-direction: column; align-items: flex-start; }
  .features-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

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

@media (max-width: 640px) {
  .nav-toggle { display: block; }
  nav ul {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow);
  }
  nav ul.is-open { display: flex; }
  nav ul li a { padding-block: 0.6rem; display: block; }
  #site-header { position: relative; }
  .hero-visual { grid-template-columns: 1fr 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .support-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   EDITORIAL HOMEPAGE LAYOUT (v2) - distinct from the grid layout
   ═══════════════════════════════════════════════════════════ */

/* Transparent header overlaying the hero (index only) */
.header--overlay {
  position: absolute; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent; border-bottom: none;
}
.header--overlay .nav ul li a { color: rgba(255,255,255,0.9); }
.header--overlay .nav ul li a:hover { color: #fff; }
.header--overlay .nav-toggle { color: #fff; border-color: rgba(255,255,255,0.55); }
.header--overlay .lang-current { color: #fff; border-color: rgba(255,255,255,0.55); background: rgba(0,0,0,0.18); }
.header--overlay .lang-current:hover { color: #fff; border-color: #fff; }

/* Shared eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent);
}
.eyebrow .num { font-variant-numeric: tabular-nums; opacity: 0.9; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; display: inline-block; }

/* Hero (editorial, content bottom-left) */
#hero.hero2 { align-items: flex-end; min-height: min(92vh, 780px); padding-block: 0; }
.hero2-inner { width: min(1180px, 92vw); margin: 0 auto; padding: 0 0 clamp(2.5rem, 6vw, 5rem); position: relative; z-index: 1; }
.hero2 .eyebrow { color: #fff; margin-bottom: 1.4rem; }
.hero2 .eyebrow::before { background: #fff; }
.hero2 h1 { color: #fff; font-size: clamp(2.9rem, 8.5vw, 6.2rem); line-height: 0.96; letter-spacing: -0.035em; max-width: 15ch; margin-bottom: 1.3rem; }
.hero2 .lede { color: rgba(255,255,255,0.93); font-size: clamp(1.05rem, 1.9vw, 1.35rem); max-width: 46ch; margin-bottom: 2.1rem; }
.hero2 .hero-meta { display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; margin-top: 1.9rem; }
.hero2 .hero-meta span { color: rgba(255,255,255,0.92); font-size: 0.82rem; font-weight: 700; display: inline-flex; align-items: center; gap: 0.5rem; }
.hero2 .hero-meta span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #fff; }

/* Editorial section scaffold */
.ed { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.ed--line { border-top: 1px solid var(--border); }
.ed-head { width: min(1180px, 92vw); margin: 0 auto 2.6rem; }
.ed-head .eyebrow { margin-bottom: 1.1rem; }
.ed-head h2 { font-size: clamp(1.9rem, 4.8vw, 3.3rem); letter-spacing: -0.025em; line-height: 1.03; max-width: 20ch; }
.ed-head p { color: var(--muted); margin-top: 1.1rem; max-width: 54ch; font-size: 1.02rem; }

/* Games filmstrip (horizontal scroll) */
.filmstrip {
  display: flex; gap: 1.1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0.4rem max(4vw, calc((100vw - 1180px) / 2)) 1.4rem;
  scrollbar-width: thin;
}
.filmstrip::-webkit-scrollbar { height: 8px; }
.filmstrip::-webkit-scrollbar-thumb { background: rgba(80,40,10,0.22); border-radius: 99px; }
.filmstrip .game-card { scroll-snap-align: start; flex: 0 0 clamp(224px, 26vw, 300px); margin: 0; }
.filmstrip .game-thumb { aspect-ratio: 3 / 2; }
.film-hint { width: min(1180px, 92vw); margin: 0.6rem auto 0; color: var(--muted); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; }

/* How it works - numbered editorial row */
.steps-ed { width: min(1180px, 92vw); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.steps-ed .st { padding: 1.3rem 1.4rem 0 0; border-top: 3px solid var(--ink); }
.steps-ed .st .n { font-size: 1.6rem; font-weight: 900; color: var(--accent); font-variant-numeric: tabular-nums; }
.steps-ed .st h3 { margin: 0.6rem 0 0.4rem; font-size: 1.08rem; }
.steps-ed .st p { color: var(--muted); font-size: 0.92rem; max-width: none; }
@media (max-width: 760px) { .steps-ed { grid-template-columns: 1fr 1fr; gap: 1.5rem 1.2rem; } }
@media (max-width: 460px) { .steps-ed { grid-template-columns: 1fr; } }

/* Why Funzone - two-column feature list */
.feat-ed { width: min(1180px, 92vw); margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 3.5rem; }
.feat-ed .fi { display: flex; gap: 1.1rem; padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.feat-ed .fi:nth-last-child(-n+1) { border-bottom: none; }
.feat-ed .fi svg { width: 27px; height: 27px; color: var(--accent); flex: 0 0 auto; margin-top: 0.15rem; }
.feat-ed .fi h3 { font-size: 1.06rem; margin-bottom: 0.3rem; }
.feat-ed .fi p { color: var(--muted); font-size: 0.92rem; max-width: none; }
@media (max-width: 680px) { .feat-ed { grid-template-columns: 1fr; } .feat-ed .fi:nth-last-child(2) { border-bottom: 1px solid var(--border); } }

/* Categories - big typographic pill row */
.cats-ed { width: min(1180px, 92vw); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 0.7rem; }
.cats-ed span {
  font-size: clamp(1.05rem, 2.6vw, 1.7rem); font-weight: 800; letter-spacing: -0.01em;
  color: var(--ink); padding: 0.35rem 1.1rem; border: 1.5px solid var(--ink); border-radius: 99px;
  transition: background 0.15s, color 0.15s;
}
.cats-ed span:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Who plays - editorial 4-up */
.uses-ed { width: min(1180px, 92vw); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.2rem 2rem; }
.uses-ed .u h3 { font-size: 1.02rem; margin-bottom: 0.5rem; padding-bottom: 0.6rem; border-bottom: 2px solid var(--accent); display: inline-block; }
.uses-ed .u p { color: var(--muted); font-size: 0.92rem; max-width: none; }
@media (max-width: 860px) { .uses-ed { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .uses-ed { grid-template-columns: 1fr; } }

/* Pricing split (text + card) */
.split { width: min(1180px, 92vw); margin: 0 auto; display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.split .split-copy h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 1.1rem; }
.split .split-copy p { color: var(--muted); margin-bottom: 1rem; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

/* Disclosure band */
.disclosure-ed { width: min(1180px, 92vw); margin: 0 auto; }

/* ── 03 Platform - playful feature cards ── */
.feat-play { width: min(1180px, 92vw); margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.feat-play .fc { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 1.9rem; box-shadow: var(--shadow); transition: transform 0.16s ease, box-shadow 0.2s; }
.feat-play .fc:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.feat-play .fc .ic { width: 56px; height: 56px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(150deg, var(--accent), var(--accent-3)); color: #fff; margin-bottom: 1rem; box-shadow: 0 8px 18px rgba(245,118,26,0.30); }
.feat-play .fc .ic svg { width: 28px; height: 28px; }
.feat-play .fc h3 { font-size: 1.12rem; margin-bottom: 0.35rem; }
.feat-play .fc p { color: var(--muted); font-size: 0.93rem; max-width: none; }
@media (max-width: 680px) { .feat-play { grid-template-columns: 1fr; } }

/* ── 04 Categories - colourful tiles ── */
.cat-tiles { width: min(1180px, 92vw); margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.cat-tile { min-height: 120px; border-radius: 18px; padding: 1.1rem 1.2rem; display: flex; align-items: flex-end; color: #fff; position: relative; overflow: hidden; box-shadow: 0 8px 20px rgba(60,30,0,0.12); transition: transform 0.16s ease, box-shadow 0.2s; }
.cat-tile::after { content: ""; position: absolute; top: -34%; right: -18%; width: 118px; height: 118px; border-radius: 50%; background: rgba(255,255,255,0.16); }
.cat-tile:hover { transform: translateY(-5px) rotate(-1.5deg); box-shadow: 0 14px 30px rgba(60,30,0,0.24); }
.cat-tile .cat-name { font-size: clamp(1.1rem, 2.2vw, 1.4rem); font-weight: 800; letter-spacing: -0.01em; line-height: 1.1; position: relative; z-index: 1; }
.cat-tile.c1 { background: linear-gradient(150deg, #F5761A, #E0640F); }
.cat-tile.c2 { background: linear-gradient(150deg, #FB5B47, #E23B2C); }
.cat-tile.c3 { background: linear-gradient(150deg, #F6A609, #E08A00); }
.cat-tile.c4 { background: linear-gradient(150deg, #17A398, #0E7E75); }
.cat-tile.c5 { background: linear-gradient(150deg, #7C5CFC, #6A46E8); }
.cat-tile.c6 { background: linear-gradient(150deg, #F0509A, #D63A82); }
.cat-tile.c7 { background: linear-gradient(150deg, #6FBF3A, #56A128); }
.cat-tile.c8 { background: linear-gradient(150deg, #2E9BE6, #1F7FC4); }
.cat-tile.c9 { background: linear-gradient(150deg, #E8531B, #C63E0E); }
.cat-tile.c10 { background: linear-gradient(150deg, #9A5CC6, #7E44AC); }
@media (max-width: 900px) { .cat-tiles { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .cat-tiles { grid-template-columns: repeat(2, 1fr); } }

/* ── 05 Who Plays - number-badge persona cards ── */
.uses-play { width: min(1180px, 92vw); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.uses-play .u2 { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 1.7rem; transition: transform 0.16s ease, box-shadow 0.2s; }
.uses-play .u2:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.uses-play .u2 .badge { width: 50px; height: 50px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-weight: 900; font-size: 1.15rem; font-variant-numeric: tabular-nums; margin-bottom: 1rem; box-shadow: 0 6px 14px rgba(0,0,0,0.16); }
.uses-play .u2 h3 { font-size: 1.06rem; margin-bottom: 0.5rem; }
.uses-play .u2 p { color: var(--muted); font-size: 0.92rem; max-width: none; }
.badge.b1 { background: linear-gradient(150deg, #F5761A, #E0640F); }
.badge.b2 { background: linear-gradient(150deg, #17A398, #0E7E75); }
.badge.b3 { background: linear-gradient(150deg, #F0509A, #D63A82); }
.badge.b4 { background: linear-gradient(150deg, #7C5CFC, #6A46E8); }
@media (max-width: 860px) { .uses-play { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .uses-play { grid-template-columns: 1fr; } }

/* ── 04 Categories - interactive browser ── */
.cat-tile { cursor: pointer; border: none; font: inherit; text-align: left; width: 100%; }
.cat-tile:focus-visible { outline: 3px solid var(--fg); outline-offset: 2px; }
.cat-tile.is-active { outline: 3px solid var(--fg); outline-offset: 2px; }
.cat-panels { width: min(1180px, 92vw); margin: 1.5rem auto 0; }
.cat-panel[hidden] { display: none; }
.cat-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.cg { display: flex; flex-direction: column; gap: 0.55rem; text-decoration: none; color: var(--fg); }
.cg:hover { text-decoration: none; }
.cg-img { display: block; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); aspect-ratio: 16 / 10; background: var(--surface-2); }
.cg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.25s ease; }
.cg:hover .cg-img img { transform: scale(1.06); }
.cg-t { font-weight: 700; font-size: 0.9rem; line-height: 1.25; }
@media (max-width: 900px) { .cat-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .cat-strip { grid-template-columns: repeat(2, 1fr); } }

/* ── Pricing card - solid orange block with white + black text (variation) ── */
.pricing-card {
  background: var(--accent);
  border: none;
  box-shadow: 0 16px 36px rgba(245, 118, 26, 0.34);
  color: #fff;
}
.pricing-card .plan-name { color: #160c03; }
.pricing-card .price-amount { color: #ffffff; }
.pricing-card .price-cadence { color: rgba(18, 9, 2, 0.82); }
.pricing-card .price-trial { background: #160c03; color: #ffffff; }
.pricing-card .billing-note { color: rgba(255, 255, 255, 0.94); border-top-color: rgba(20, 10, 2, 0.28); }

/* ═══════════════════════════════════════════════════════════
   FUNZONE SLOVENIA LAYOUT (v3) - distinct structure
   ═══════════════════════════════════════════════════════════ */
/* Split hero (text + featured games), not a full-bleed background */
#hero-si { background: var(--surface); border-bottom: 1px solid var(--border); padding-block: clamp(2.5rem, 6vw, 5rem); }
.hero-si-inner { width: min(1180px, 92vw); margin: 0 auto; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-si-copy .eyebrow { color: var(--accent); margin-bottom: 1.2rem; }
.hero-si-copy h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); line-height: 0.98; letter-spacing: -0.03em; margin-bottom: 1.2rem; color: var(--fg); }
.hero-si-copy .lede { color: var(--muted); font-size: clamp(1.05rem, 1.9vw, 1.28rem); max-width: 46ch; margin-bottom: 1.9rem; }
.hero-si-copy .hero-meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1.3rem; margin-top: 1.7rem; }
.hero-si-copy .hero-meta span { color: var(--muted); font-size: 0.82rem; font-weight: 700; display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-si-copy .hero-meta span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero-si-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.hero-si-visual .hs-big { grid-column: 1 / -1; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow-hover); border: 1px solid var(--border); }
.hero-si-visual .hs-sm { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 14px; box-shadow: var(--shadow); border: 1px solid var(--border); }
@media (max-width: 820px) { .hero-si-inner { grid-template-columns: 1fr; } .hero-si-visual { order: -1; } }

/* Prominent pricing band placed high on the page */
.price-band { background: linear-gradient(120deg, var(--accent-3), var(--accent)); color: #fff; padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.price-band-inner { width: min(1180px, 92vw); margin: 0 auto; display: grid; grid-template-columns: 1fr 380px; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.eyebrow--light { color: #fff; }
.eyebrow--light::before { background: #fff; }
.price-band .pb-copy h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -0.02em; margin-bottom: 1rem; }
.price-band .pb-copy p { color: rgba(255,255,255,0.9); max-width: 48ch; }
.price-band .pricing-card { background: #fff; border: 1px solid var(--border); box-shadow: 0 18px 40px rgba(0,0,0,0.22); color: var(--fg); }
.price-band .pricing-card .plan-name { color: var(--muted); }
.price-band .pricing-card .price-amount { color: var(--accent); }
.price-band .pricing-card .price-cadence { color: var(--muted); }
.price-band .pricing-card .price-trial { background: var(--accent); color: #fff; }
.price-band .pricing-card .billing-note { color: var(--muted); border-top-color: var(--border); }
@media (max-width: 820px) { .price-band-inner { grid-template-columns: 1fr; } }

/* Uniform games grid (tiles link to subscribe; no modal) */
.games-grid-si { width: min(1180px, 92vw); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.gt { display: flex; flex-direction: column; gap: 0.55rem; text-decoration: none; color: var(--fg); }
.gt:hover { text-decoration: none; }
.gt-img { display: block; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); aspect-ratio: 16 / 10; background: var(--surface-2); }
.gt-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.25s ease; }
.gt:hover .gt-img img { transform: scale(1.06); }
.gt-t { font-weight: 700; font-size: 0.9rem; line-height: 1.25; }
@media (max-width: 900px) { .games-grid-si { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .games-grid-si { grid-template-columns: repeat(2, 1fr); } }

/* categories: colourful non-interactive tiles */
.cat-tiles .cat-tile { cursor: default; }

/* game tile as button */
.games-grid-si .gt { border: none; background: none; font: inherit; text-align: left; cursor: pointer; padding: 0; width: 100%; }
.games-grid-si .gt:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 14px; }

/* pricing band checklist */
.pb-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 1.2rem; }
.pb-list li { color: #fff; font-weight: 600; font-size: 0.95rem; display: flex; align-items: center; gap: 0.55rem; }
.pb-list li::before { content: "✓"; font-weight: 900; color: #fff; background: rgba(255,255,255,0.22); width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 0.8rem; flex-shrink: 0; }
@media (max-width: 520px) { .pb-list { grid-template-columns: 1fr; } }

/* Insights / blog cards */
.blog-grid { width: min(1180px, 92vw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.blog-card { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform 0.16s ease, box-shadow 0.2s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.blog-img { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--surface-2); }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-tag { display: inline-block; margin: 1.3rem 1.4rem 0; align-self: flex-start; background: var(--accent-soft); color: var(--accent); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.35em 0.85em; border-radius: 999px; }
.blog-card h3 { font-size: 1.15rem; letter-spacing: -0.01em; margin: 0.8rem 1.4rem 0.5rem; }
.blog-card p { color: var(--muted); font-size: 0.93rem; margin: 0 1.4rem 1.5rem; max-width: none; }
@media (max-width: 860px) { .blog-grid { grid-template-columns: 1fr; max-width: 560px; } }

/* Game unlock modal */
.gmodal { position: fixed; inset: 0; z-index: 1000; background: rgba(15,8,2,0.6); backdrop-filter: blur(3px); display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
.gmodal[hidden] { display: none; }
.gmodal-box { position: relative; background: var(--surface); border-radius: 20px; width: min(420px, 100%); padding: 1.6rem; text-align: center; box-shadow: 0 30px 80px rgba(10,10,30,0.45); }
.gmodal-close { position: absolute; top: 0.8rem; right: 0.9rem; width: 36px; height: 36px; border: none; background: var(--surface-2); color: var(--fg); font-size: 1.5rem; line-height: 1; border-radius: 50%; cursor: pointer; }
.gmodal-close:hover { background: var(--accent); color: #fff; }
.gmodal-img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 14px; border: 1px solid var(--border); }
.gmodal-title { font-size: 1.3rem; margin: 1.1rem 0 0.3rem; }
.gmodal-sub { color: var(--muted); font-size: 0.9rem; margin: 0 0 1.2rem; }
.gmodal-cta { display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem; width: 100%; }
.gmodal-cta svg { width: 18px; height: 18px; }

/* Category genre cards (image + name overlay) */
.genre-grid { width: min(1180px, 92vw); margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.genre-card { position: relative; display: block; aspect-ratio: 1 / 1; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.16s ease, box-shadow 0.2s; }
.genre-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.genre-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,10,2,0.05) 38%, rgba(20,10,2,0.8) 100%); }
.genre-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.genre-card:hover img { transform: scale(1.08); }
.genre-name { position: absolute; left: 0.9rem; bottom: 0.8rem; z-index: 1; color: #fff; font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em; text-shadow: 0 1px 6px rgba(0,0,0,0.45); }
@media (max-width: 900px) { .genre-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .genre-grid { grid-template-columns: repeat(2, 1fr); } }

/* Pricing band - getting-started steps */
.pb-steps { margin-top: 1.7rem; display: flex; flex-direction: column; gap: 1rem; }
.pb-step { display: flex; gap: 0.9rem; align-items: flex-start; }
.pb-step-n { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.22); color: #fff; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; font-size: 0.9rem; }
.pb-step > div { display: flex; flex-direction: column; }
.pb-step strong { color: #fff; font-size: 0.98rem; }
.pb-step span { color: rgba(255,255,255,0.85); font-size: 0.88rem; }

/* Ensure the orange pricing band beats the legacy #pricing rule (ID specificity) */
#pricing.price-band { background: linear-gradient(120deg, var(--accent-3), var(--accent)); border-bottom: none; }

/* ── Commercial promoter disclosure ── */
.entity-section .promoter{margin:0 0 1rem;padding-bottom:1rem;border-bottom:1px solid var(--accent-soft);}
.promoter-band{padding:1rem 0 3rem;}
.promoter-box{max-width:880px;margin:0 auto;padding:1.15rem 1.5rem;background:var(--accent-soft);border:1px solid rgba(245,118,26,.22);border-radius:12px;font-size:.9em;line-height:1.65;color:#5f5f5f;text-align:center;}
.promoter-box p{margin:0;}
.promoter-box a{color:var(--accent);font-weight:600;text-decoration:none;white-space:nowrap;}
.promoter-box a:hover{text-decoration:underline;}
