/* ═══════════════════════════════════════════════════════════
    — De Stijl / Neo-Mondrian
   Palette: Zwart #0D0D0D · Wit #F5F2EC · Oranje #E8500A
            Blauw #1A3FAA · Geel #F5C800 · Rood #CC1F1F
   Fonts: Bebas Neue (display) + DM Sans (body)
═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,700;1,9..40,300&display=swap');

:root {
  --zwart:   #0D0D0D;
  --wit:     #F5F2EC;
  --oranje:  #E8500A;
  --blauw:   #1A3FAA;
  --geel:    #F5C800;
  --rood:    #CC1F1F;
  --grijs:   #888880;
  --lichtgrijs: #E8E5DF;

  --border:  3px solid var(--zwart);
  --border-thick: 6px solid var(--zwart);
  --radius:  0px;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --container: 1240px;
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--wit);
  color: var(--zwart);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: var(--zwart);
}
h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.1rem; }

em { font-style: italic; color: var(--oranje); font-family: var(--font-body); font-weight: 700; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--blauw); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--oranje); }

strong { font-weight: 700; }

/* ── Layout ──────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section--wit { background: var(--wit); }
.section--licht { background: var(--lichtgrijs); }
.section--zwart { background: var(--zwart); color: var(--wit); }
.section--oranje { background: var(--oranje); color: var(--wit); }
.section--blauw { background: var(--blauw); color: var(--wit); }
.section--geel { background: var(--geel); color: var(--zwart); }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--wit);
  border-bottom: var(--border-thick);
  height: var(--nav-h);
}
.nav__inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 0;
}
.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  border-right: var(--border);
  padding-right: 24px;
  margin-right: 0;
  height: 100%;
}
.nav__logo-block {
  width: 44px; height: 44px;
  background: var(--oranje);
  border: var(--border);
  display: grid;
  place-items: center;
  margin-right: 10px;
  flex-shrink: 0;
}
.nav__logo-block span {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--wit);
  line-height: 1;
}
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--zwart);
  letter-spacing: 0.06em;
}
.nav__logo-text strong { color: var(--oranje); }

.nav__links {
  display: flex;
  list-style: none;
  height: 100%;
  flex: 1;
}
.nav__links li {
  height: 100%;
}
.nav__links a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 18px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--zwart);
  text-decoration: none;
  border-right: 2px solid transparent;
  transition: background 0.15s, color 0.15s;
}
.nav__links a:hover {
  background: var(--oranje);
  color: var(--wit);
}
.nav__links a.active {
  background: var(--zwart);
  color: var(--wit);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: var(--border);
  padding: 10px 12px;
  cursor: pointer;
  margin-left: auto;
}
.nav__hamburger span {
  width: 22px; height: 3px;
  background: var(--zwart);
  display: block;
}

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--wit);
  border-bottom: var(--border-thick);
  padding: 0;
  z-index: 99;
  flex-direction: column;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--zwart);
  text-decoration: none;
  padding: 14px 24px;
  border-bottom: 2px solid var(--lichtgrijs);
}
.nav__mobile a:hover { background: var(--oranje); color: var(--wit); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background: var(--zwart);
  color: var(--wit);
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: var(--border-thick);
  position: relative;
  overflow: hidden;
}
.hero__content {
  padding: 80px 60px 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: var(--border-thick);
  position: relative;
  z-index: 2;
}
.hero__content .container-inner {
  max-width: 560px;
  margin-left: auto;
  padding-right: 60px;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--oranje);
  color: var(--wit);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  margin-bottom: 24px;
  border: 2px solid var(--wit);
}
.hero h1 {
  color: var(--wit);
  margin-bottom: 24px;
}
.hero h1 em {
  color: var(--geel);
  font-family: var(--font-display);
  font-style: normal;
}
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 46ch;
  margin-bottom: 36px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__visual {
  position: relative;
  display: grid;
  grid-template-rows: 1fr 1fr;
}
.hero__visual-top {
  border-bottom: var(--border-thick);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blauw);
}
.hero__visual-bot {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero__vis-block {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}
.hero__vis-block:first-child {
  background: var(--geel);
  border-right: var(--border-thick);
  border-top: 0;
}
.hero__vis-block:last-child {
  background: var(--rood);
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  padding: 14px 28px;
  border: var(--border);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.1s;
  position: relative;
}
.btn:hover { transform: translate(-2px, -2px); }
.btn--oranje { background: var(--oranje); color: var(--wit); border-color: var(--oranje); }
.btn--oranje:hover { background: var(--wit); color: var(--oranje); border-color: var(--oranje); }
.btn--zwart { background: var(--zwart); color: var(--wit); }
.btn--zwart:hover { background: var(--oranje); color: var(--wit); border-color: var(--oranje); }
.btn--outline { background: transparent; color: var(--wit); border-color: var(--wit); }
.btn--outline:hover { background: var(--wit); color: var(--zwart); }
.btn--outline-dark { background: transparent; color: var(--zwart); border-color: var(--zwart); }
.btn--outline-dark:hover { background: var(--zwart); color: var(--wit); }
.btn--sm { font-size: 0.9rem; padding: 10px 20px; }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  background: var(--zwart);
  color: var(--wit);
  border-bottom: var(--border-thick);
  overflow: hidden;
}
.page-hero .container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 0;
  align-items: stretch;
  min-height: 360px;
  padding: 0 0 0 24px;
  max-width: var(--container);
}
.page-hero__left {
  padding: 52px 40px 52px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}
.breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; }
.breadcrumb a:hover { color: var(--oranje); }
.breadcrumb .sep { color: rgba(255,255,255,0.2); }
.page-hero__label {
  display: inline-block;
  background: var(--oranje);
  color: var(--wit);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  margin-bottom: 16px;
  border: 2px solid rgba(255,255,255,0.3);
}
.page-hero h1 { color: var(--wit); margin-bottom: 16px; }
.page-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 52ch;
}
.page-hero__img {
  grid-column: 2;
  border-left: var(--border-thick);
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.page-hero__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  min-height: 360px;
}

/* ── MONDRIAN GRID (stat block) ──────────────────────────── */
.mondrian-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: var(--border-thick);
  border-left: var(--border-thick);
}
.mondrian-cell {
  border-right: var(--border-thick);
  border-bottom: var(--border-thick);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.mondrian-cell--oranje { background: var(--oranje); color: var(--wit); }
.mondrian-cell--blauw { background: var(--blauw); color: var(--wit); }
.mondrian-cell--geel { background: var(--geel); color: var(--zwart); }
.mondrian-cell--rood { background: var(--rood); color: var(--wit); }
.mondrian-cell--zwart { background: var(--zwart); color: var(--wit); }
.mondrian-cell__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 6px;
}
.mondrian-cell__label {
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── SECTION HEADER ──────────────────────────────────────── */
.section__header {
  margin-bottom: 48px;
}
.section__header .label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--oranje);
  border-left: 5px solid var(--oranje);
  padding-left: 12px;
  margin-bottom: 10px;
  display: block;
}
.section--zwart .section__header .label { color: var(--geel); border-color: var(--geel); }
.section--blauw .section__header .label { color: var(--geel); border-color: var(--geel); }
.section__header h2 { max-width: 18ch; }

/* ── GAME ROW ────────────────────────────────────────────── */
.game-row {
  display: grid;
  grid-template-columns: 380px 1fr;
  border: var(--border-thick);
  margin-bottom: 40px;
  background: var(--wit);
}
.game-row--flip { direction: rtl; }
.game-row--flip > * { direction: ltr; }
.game-row__img {
  border-right: var(--border-thick);
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.game-row--flip .game-row__img { border-right: none; border-left: var(--border-thick); }
.game-row__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.game-row__body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.game-row__title h3 { margin-bottom: 10px; }
.game-row__pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.pill {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border: 2px solid var(--zwart);
}
.pill--oranje { background: var(--oranje); color: var(--wit); border-color: var(--oranje); }
.pill--blauw { background: var(--blauw); color: var(--wit); border-color: var(--blauw); }
.pill--geel { background: var(--geel); color: var(--zwart); border-color: var(--geel); }
.pill--rood { background: var(--rood); color: var(--wit); border-color: var(--rood); }
.game-row__text p { font-size: 0.97rem; }
.game-row__footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 2px solid var(--lichtgrijs);
}
.game-stat { display: flex; flex-direction: column; gap: 2px; }
.game-stat span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--grijs); font-weight: 600; }
.game-stat strong { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.04em; }

/* RTP bar */
.rtp-wrap { margin: 16px 0; }
.rtp-label { display: flex; justify-content: space-between; font-size: 0.82rem; font-weight: 600; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.06em; }
.rtp-track { height: 12px; background: var(--lichtgrijs); border: 2px solid var(--zwart); }
.rtp-fill { height: 100%; background: var(--oranje); transition: width 1s ease; }

/* ── CARD GRID ───────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: var(--border-thick);
}
.card {
  padding: 36px 32px;
  border-right: var(--border-thick);
  position: relative;
}
.card:last-child { border-right: none; }
.card__icon { font-size: 2rem; display: block; margin-bottom: 16px; }
.card h4 { margin-bottom: 12px; }
.card p { font-size: 0.93rem; color: #444; }
.section--zwart .card p { color: rgba(255,255,255,0.6); }
.section--zwart .card h4 { color: var(--wit); }
.card__accent {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 5px;
  background: var(--oranje);
}
.card__accent--geel { background: var(--geel); }
.card__accent--blauw { background: var(--blauw); }
.card__accent--rood { background: var(--rood); }

/* ── GAME CARDS (homepage grid) ─────────────────────────── */
.game-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: var(--border-thick);
  border-left: var(--border-thick);
}
.game-card {
  border-right: var(--border-thick);
  border-bottom: var(--border-thick);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.game-card__img {
  height: 220px;
  overflow: hidden;
  border-bottom: var(--border-thick);
  display: flex;
  align-items: stretch;
}
.game-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.game-card__body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.game-card__body h4 { margin-bottom: 4px; }
.game-card__body p { font-size: 0.88rem; color: #555; flex: 1; }

/* ── ARTICLE LAYOUT ──────────────────────────────────────── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 0;
  border: var(--border-thick);
}
.article-content {
  padding: 48px 52px;
  border-right: var(--border-thick);
}
.article-content h2 { margin: 36px 0 14px; font-size: 2rem; }
.article-content h2:first-child { margin-top: 0; }
.article-content h3 { margin: 28px 0 10px; }
.article-content p { font-size: 0.97rem; }
.article-content figure {
  margin: 28px 0;
  border: var(--border);
}
.article-content figure img { width: 100%; display: block; }
.article-content figcaption {
  padding: 8px 12px;
  font-size: 0.78rem;
  color: var(--grijs);
  border-top: 2px solid var(--lichtgrijs);
  background: var(--lichtgrijs);
}
.highlight {
  background: var(--geel);
  border-left: 6px solid var(--zwart);
  padding: 18px 22px;
  margin: 24px 0;
}
.highlight p { font-size: 0.93rem; font-weight: 500; }
.highlight--rood { background: #fde8e8; border-color: var(--rood); }
.highlight--blauw { background: #e0e8ff; border-color: var(--blauw); }

.sidebar {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.sidebar-box {
  border: var(--border);
  padding: 20px 22px;
}
.sidebar-box h5 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--zwart);
}
.sidebar-box ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.sidebar-box ul li::before { content: "→ "; color: var(--oranje); font-weight: 700; }
.sidebar-box--oranje { background: var(--oranje); color: var(--wit); border-color: var(--oranje); }
.sidebar-box--oranje h5 { color: var(--wit); border-color: var(--wit); }
.sidebar-box--oranje p { color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.sidebar-box--geel { background: var(--geel); border-color: var(--zwart); }

/* ── COMPARISON TABLE ────────────────────────────────────── */
.comp-table {
  width: 100%;
  border-collapse: collapse;
  border: var(--border-thick);
  font-size: 0.93rem;
}
.comp-table th {
  background: var(--zwart);
  color: var(--wit);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  padding: 14px 18px;
  text-align: left;
  border-right: 2px solid rgba(255,255,255,0.15);
}
.comp-table td {
  padding: 12px 18px;
  border-right: 2px solid var(--lichtgrijs);
  border-bottom: 2px solid var(--lichtgrijs);
}
.comp-table tr:nth-child(even) td { background: var(--lichtgrijs); }
.comp-table tr:hover td { background: #fff3e0; }
.rtp-num { font-family: var(--font-display); font-size: 1.1rem; color: var(--oranje); letter-spacing: 0.04em; }

/* ── STEPS ───────────────────────────────────────────────── */
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: var(--border-thick);
}
.step {
  counter-increment: step;
  padding: 36px 32px;
  border-right: var(--border-thick);
  position: relative;
}
.step:last-child { border-right: none; }
.step:nth-child(3n) { border-right: none; }
.step::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--oranje);
  line-height: 1;
  margin-bottom: 12px;
}
.step h4 { margin-bottom: 10px; }
.step p { font-size: 0.9rem; color: #555; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-section { padding: 80px 0; background: var(--lichtgrijs); }
.faq-item {
  border: var(--border-thick);
  margin-bottom: -3px;
  background: var(--wit);
}
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-align: left;
  transition: background 0.15s;
}
.faq-btn:hover { background: var(--geel); }
.faq-icon {
  width: 32px; height: 32px;
  border: var(--border);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  flex-shrink: 0;
  background: var(--zwart);
  color: var(--wit);
  transition: background 0.15s;
}
.faq-item.open .faq-icon { background: var(--oranje); }
.faq-answer {
  display: none;
  padding: 0 28px 20px;
  font-size: 0.95rem;
  border-top: 2px solid var(--lichtgrijs);
}
.faq-item.open .faq-answer { display: block; }

/* ── DISCLAIMER ──────────────────────────────────────────── */
.disclaimer {
  background: var(--zwart);
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  padding: 20px 0;
  border-top: var(--border-thick);
  border-bottom: var(--border-thick);
}
.disclaimer__inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.disclaimer__badge {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--rood);
  border: 2px solid rgba(255,255,255,0.3);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--wit);
}
.disclaimer p { margin: 0; line-height: 1.5; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--zwart);
  color: var(--wit);
  border-top: var(--border-thick);
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 0;
  border-bottom: var(--border-thick);
}
.footer__brand {
  padding: 48px 40px 48px 0;
  border-right: var(--border-thick);
}
.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  text-decoration: none;
}
.footer__tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  max-width: 34ch;
  margin-bottom: 0;
}
.footer__col {
  padding: 48px 32px;
  border-right: var(--border-thick);
}
.footer__col:last-child { border-right: none; }
.footer__col h5 {
  color: var(--oranje);
  margin-bottom: 18px;
  font-size: 1.1rem;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,255,255,0.1);
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__col a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.15s;
}
.footer__col a:hover { color: var(--oranje); }
.footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer__18 {
  width: 40px; height: 40px;
  background: var(--rood);
  border: 2px solid rgba(255,255,255,0.3);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--wit);
  flex-shrink: 0;
}
.footer__legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ── LICENCE GRID ────────────────────────────────────────── */
.licence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: var(--border-thick);
  margin-top: 32px;
}
.licence-card {
  padding: 32px 28px;
  border-right: var(--border-thick);
  border-bottom: var(--border-thick);
}
.licence-card:nth-child(3n) { border-right: none; }
.licence-card__type {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--oranje);
  margin-bottom: 8px;
}
.licence-card h4 { margin-bottom: 10px; font-size: 1.2rem; }
.licence-card p { font-size: 0.87rem; color: #555; }

/* ── REVEAL animations ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__content { padding: 60px 0; border-right: none; border-bottom: var(--border-thick); }
  .hero__content .container-inner { max-width: 100%; padding: 0 24px; margin: 0; }
  .hero__visual { display: none; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .card-grid .card:nth-child(2) { border-right: none; }
  .card-grid .card:nth-child(3) { border-right: none; grid-column: 1 / -1; border-right: none; }
  .game-row { grid-template-columns: 1fr; }
  .game-row__img { height: 260px; border-right: none; border-bottom: var(--border-thick); }
  .game-row--flip .game-row__img { border-left: none; border-bottom: var(--border-thick); }
  .article-layout { grid-template-columns: 1fr; }
  .article-content { border-right: none; border-bottom: var(--border-thick); }
  .mondrian-grid { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__col:nth-child(2) { border-right: none; }
  .page-hero .container { grid-template-columns: 1fr; padding: 0 24px; min-height: auto; }
  .page-hero__left { padding: 48px 0 40px; }
  .page-hero__img { display: none; border-left: none; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(3n) { border-right: var(--border-thick); }
  .step:nth-child(2n) { border-right: none; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .game-cards { grid-template-columns: 1fr 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .card { border-right: none; border-bottom: var(--border-thick); }
  .card:last-child { border-bottom: none; }
  .mondrian-grid { grid-template-columns: 1fr 1fr; }
  .licence-grid { grid-template-columns: 1fr; }
  .licence-card { border-right: none; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: var(--border-thick); }
  .step:last-child { border-bottom: none; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__col { border-right: none; border-bottom: var(--border-thick); }
  .footer__brand { padding: 36px 24px; border-right: none; border-bottom: var(--border-thick); }
  .footer__col:last-child { border-bottom: none; }
}
@media (max-width: 540px) {
  .game-cards { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .mondrian-grid { grid-template-columns: 1fr; }
}
