@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&display=swap');

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

:root {
  --clr-bg: #101624;
  --clr-header: #1e2434;
  --clr-btn-primary: #6bdb5b;
  --clr-btn-secondary: #6da9eb;
  --clr-text: #e4e8f0;
  --clr-text-muted: #9aa3b8;
  --clr-border: #2a3148;
  --clr-card: #161d30;
  --clr-card2: #1a2236;
  --clr-green: #6bdb5b;
  --clr-blue: #6da9eb;
  --clr-gold: #f0c040;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow: 0 4px 24px rgba(0,0,0,.45);
  --trans: all .25s ease;
  --font: 'Oswald', sans-serif;
}

html { background: var(--clr-bg); scroll-behavior: smooth; overflow-x: hidden; }
/* Grid-/flexkinderen mogen niet breder worden dan hun cel, anders scrollt de pagina zijwaarts */
.container, .block-card { max-width: 100%; min-width: 0; }
.games-grid > *, .footer-cols > *, .footer-top > *, .reviews-grid > *,
.advantages-grid > *, .pros-cons-grid > *, .toc-grid > *, .header-inner > *,
.author-box > *, .app-block-inner > * { min-width: 0; }
h1, h2, h3, h4, p, li, td, th, a, .btn { overflow-wrap: anywhere; }
body { font-family: var(--font); background: var(--clr-bg); color: var(--clr-text); font-size: 16px; line-height: 1.6; min-height: 100vh; overflow-x: hidden; }

a { color: var(--clr-blue); text-decoration: none; transition: var(--trans); }
a:hover { color: var(--clr-green); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font); font-weight: 600; line-height: 1.25; color: #fff; }
h1 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h2 { font-size: clamp(1.3rem, 2.8vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
p { margin-bottom: 1em; line-height: 1.65; }

.wrapper { display: flex; flex-direction: column; min-height: 100vh; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 10px 22px; border-radius: var(--radius-sm); font-family: var(--font); font-size: .9rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; border: none; cursor: pointer; transition: var(--trans); white-space: nowrap; text-decoration: none; line-height: 1; }
.btn--primary { background: var(--clr-btn-primary); color: #0a1209; }
.btn--primary:hover { background: #7cf069; color: #0a1209; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(107,219,91,.35); }
.btn--secondary { background: var(--clr-btn-secondary); color: #05111f; }
.btn--secondary:hover { background: #8ec0f5; color: #05111f; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(109,169,235,.35); }
.btn--lg { padding: 14px 32px; font-size: 1.05rem; }
.btn--sm { padding: 7px 16px; font-size: .8rem; }

.xk8f2a { display: none !important; }
.wp-block-group { display: block; }
.entry-content { display: block; }
.elementor-section { position: relative; }
.has-background { background-size: cover; }

header.site-header { background: var(--clr-header); position: sticky; top: 0; z-index: 900; box-shadow: 0 2px 16px rgba(0,0,0,.5); border-bottom: 1px solid var(--clr-border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 16px; height: 68px; max-width: 1200px; margin: 0 auto; }
.header-logo { flex-shrink: 0; }
.header-logo img { height: 44px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a { display: flex; align-items: center; gap: 5px; color: var(--clr-text); font-size: .82rem; font-weight: 500; letter-spacing: .03em; text-transform: uppercase; padding: 6px 10px; border-radius: var(--radius-sm); white-space: nowrap; }
.header-nav a:hover { color: #fff; background: rgba(109,169,235,.15); }
.header-nav a svg { width: 14px; height: 14px; flex-shrink: 0; }
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-online { display: flex; align-items: center; gap: 6px; font-size: .78rem; color: var(--clr-text-muted); white-space: nowrap; margin-right: 8px; }
.header-online-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--clr-green); box-shadow: 0 0 6px var(--clr-green); animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .5; } }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.burger span { display: block; width: 24px; height: 2px; background: var(--clr-text); border-radius: 2px; transition: var(--trans); }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero-section { position: relative; min-height: 480px; display: flex; align-items: center; overflow: hidden; background: linear-gradient(135deg, #0d1320 0%, #1a2236 50%, #0e1827 100%); }
.hero-bg { position: absolute; inset: 0; background-image: url('/hero-banner.png'); background-size: cover; background-position: center; opacity: .35; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,22,36,.95) 0%, rgba(16,22,36,.6) 60%, rgba(16,22,36,.2) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 60px 16px; width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(107,219,91,.15); border: 1px solid rgba(107,219,91,.3); color: var(--clr-green); font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; margin-bottom: 16px; }
.hero-title { font-size: clamp(1.8rem, 4.5vw, 3.2rem); font-weight: 700; color: #fff; margin-bottom: 14px; max-width: 640px; text-shadow: 0 2px 12px rgba(0,0,0,.6); }
.hero-title span { color: var(--clr-green); }
.hero-sub { font-size: clamp(.95rem, 2vw, 1.15rem); color: var(--clr-text-muted); max-width: 520px; margin-bottom: 28px; line-height: 1.6; }
.hero-bonus-box { display: inline-flex; align-items: center; gap: 12px; background: rgba(107,219,91,.1); border: 1px solid rgba(107,219,91,.25); border-radius: var(--radius-md); padding: 12px 20px; margin-bottom: 28px; }
.hero-bonus-val { font-size: 1.6rem; font-weight: 700; color: var(--clr-green); }
.hero-bonus-lbl { font-size: .85rem; color: var(--clr-text-muted); }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-disclaimer { margin-top: 12px; font-size: .72rem; color: var(--clr-text-muted); opacity: .7; }

.breadcrumbs-wrap { background: var(--clr-header); border-bottom: 1px solid var(--clr-border); }
.breadcrumbs { display: flex; align-items: center; gap: 6px; padding: 10px 16px; max-width: 1200px; margin: 0 auto; font-size: .78rem; color: var(--clr-text-muted); flex-wrap: wrap; }
.breadcrumbs a { color: var(--clr-text-muted); }
.breadcrumbs a:hover { color: var(--clr-blue); }
.breadcrumbs svg { width: 12px; height: 12px; flex-shrink: 0; }
.breadcrumbs .bc-sep { color: var(--clr-border); margin: 0 2px; }
.breadcrumbs .bc-current { color: var(--clr-text); }

.main-content { padding: 40px 0 60px; }

.section-label { display: inline-flex; align-items: center; gap: 7px; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--clr-green); margin-bottom: 8px; }
.section-title { font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 700; color: #fff; margin-bottom: 6px; }
.section-sub { font-size: .9rem; color: var(--clr-text-muted); margin-bottom: 24px; }
.section-hdr { margin-bottom: 28px; }

.block-card { background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: 28px 24px; margin-bottom: 24px; }
.block-card--alt { background: var(--clr-card2); }

.toc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; }
.toc-item { display: flex; align-items: center; gap: 10px; background: var(--clr-card2); border: 1px solid var(--clr-border); border-radius: var(--radius-sm); padding: 10px 14px; transition: var(--trans); }
.toc-item:hover { border-color: var(--clr-blue); background: rgba(109,169,235,.1); transform: translateY(-2px); }
.toc-item svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--clr-blue); }
.toc-item a { font-size: .85rem; font-weight: 500; color: var(--clr-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.toc-item a:hover { color: var(--clr-blue); }

.info-table { width: 100%; border-collapse: collapse; }
.info-table tr:nth-child(odd) { background: rgba(255,255,255,.03); }
.info-table tr:hover { background: rgba(109,169,235,.07); }
.info-table td { padding: 11px 16px; border-bottom: 1px solid var(--clr-border); font-size: .9rem; vertical-align: middle; }
.info-table td:first-child { color: var(--clr-text-muted); white-space: nowrap; width: 38%; display: flex; align-items: center; gap: 8px; }
.info-table td svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--clr-blue); }
.info-table td:last-child { color: var(--clr-text); font-weight: 500; }
.tbl-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pros-col, .cons-col { border-radius: var(--radius-md); padding: 20px; }
.pros-col { background: rgba(107,219,91,.08); border: 1px solid rgba(107,219,91,.25); }
.cons-col { background: rgba(235,82,82,.08); border: 1px solid rgba(235,82,82,.25); }
.pc-title { display: flex; align-items: center; gap: 8px; font-size: 1rem; font-weight: 700; margin-bottom: 14px; }
.pros-col .pc-title { color: var(--clr-green); }
.cons-col .pc-title svg { color: #eb5252; }
.cons-col .pc-title { color: #eb5252; }
.pc-list li { display: flex; align-items: flex-start; gap: 8px; font-size: .88rem; color: var(--clr-text); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.05); line-height: 1.5; }
.pc-list li:last-child { border-bottom: none; }
.pc-list li svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; }
.pros-col .pc-list li svg { color: var(--clr-green); }
.cons-col .pc-list li svg { color: #eb5252; }

.advantages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.adv-card { background: var(--clr-card2); border: 1px solid var(--clr-border); border-radius: var(--radius-md); padding: 20px 16px; text-align: center; transition: var(--trans); }
.adv-card:hover { border-color: var(--clr-blue); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(109,169,235,.15); }
.adv-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(109,169,235,.12); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.adv-icon svg { width: 22px; height: 22px; color: var(--clr-blue); }
.adv-title { font-size: .88rem; font-weight: 600; color: #fff; margin-bottom: 6px; }
.adv-text { font-size: .78rem; color: var(--clr-text-muted); line-height: 1.5; }

.app-block-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.app-info-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.app-info-table tr:nth-child(odd) { background: rgba(255,255,255,.03); }
.app-info-table td { padding: 9px 14px; border-bottom: 1px solid var(--clr-border); font-size: .87rem; vertical-align: middle; }
.app-info-table td:first-child { color: var(--clr-text-muted); width: 45%; }
.app-info-table td:last-child { color: var(--clr-text); font-weight: 500; }
.app-dl-btns { display: flex; flex-direction: column; gap: 10px; }
.app-dl-btn { display: flex; align-items: center; gap: 12px; background: var(--clr-card2); border: 1px solid var(--clr-border); border-radius: var(--radius-md); padding: 12px 18px; transition: var(--trans); }
.app-dl-btn:hover { border-color: var(--clr-green); transform: translateY(-2px); }
.app-dl-btn svg { width: 28px; height: 28px; flex-shrink: 0; color: var(--clr-text); }
.app-dl-lbl { font-size: .7rem; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: .06em; }
.app-dl-name { font-size: .95rem; font-weight: 700; color: #fff; }
.app-visual { display: flex; justify-content: center; align-items: center; }
.app-mockup { width: 200px; background: var(--clr-card2); border: 1px solid var(--clr-border); border-radius: 24px; padding: 24px 16px; text-align: center; }
.app-mockup-icon { width: 60px; height: 60px; border-radius: 16px; background: linear-gradient(135deg, #1a2a40, #0d1a2e); margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--clr-border); }
.app-mockup-icon svg { width: 32px; height: 32px; color: var(--clr-green); }
.app-mockup-title { font-size: .9rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.app-mockup-sub { font-size: .72rem; color: var(--clr-text-muted); }
.app-rating { display: flex; gap: 2px; justify-content: center; margin-top: 10px; }
.app-rating svg { width: 14px; height: 14px; color: var(--clr-gold); }

.games-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.game-card { background: var(--clr-card2); border: 1px solid var(--clr-border); border-radius: var(--radius-md); overflow: hidden; transition: var(--trans); }
.game-card:hover { border-color: var(--clr-blue); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,.4); }
.game-thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, #141f35, #0d1624); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.game-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.game-card:hover .game-thumb img { transform: scale(1.06); }
.game-thumb-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(109,169,235,.1); border: 1px solid rgba(109,169,235,.2); display: flex; align-items: center; justify-content: center; }
.game-thumb-icon svg { width: 28px; height: 28px; color: var(--clr-blue); }
.game-provider-badge { position: absolute; top: 8px; left: 8px; background: rgba(16,22,36,.85); border: 1px solid var(--clr-border); border-radius: 4px; padding: 2px 7px; font-size: .68rem; font-weight: 600; color: var(--clr-text-muted); letter-spacing: .04em; text-transform: uppercase; }
.game-info { padding: 14px 14px 12px; }
.game-name { font-size: .92rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.game-meta { display: flex; gap: 6px; margin-bottom: 10px; }
.game-tag { font-size: .68rem; background: rgba(109,169,235,.1); color: var(--clr-blue); border-radius: 4px; padding: 2px 7px; font-weight: 500; }
.game-rtp { font-size: .7rem; color: var(--clr-text-muted); }

.slider-wrap { display: none; position: relative; width: 100%; max-width: 100%; }
.slider-track {
  display: grid; grid-auto-flow: column; grid-auto-columns: 100%; gap: 16px;
  width: 100%; overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.slider-track::-webkit-scrollbar { display: none; }
.slider-track > .game-card { min-width: 0; scroll-snap-align: center; }
.slider-nav { display: none; align-items: center; justify-content: center; gap: 12px; margin-top: 16px; }
.slider-btn { width: 36px; height: 36px; border-radius: 50%; background: var(--clr-card2); border: 1px solid var(--clr-border); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--trans); }
.slider-btn:hover { border-color: var(--clr-blue); background: rgba(109,169,235,.1); }
.slider-btn svg { width: 16px; height: 16px; color: var(--clr-text); }
.slider-dots { display: flex; gap: 6px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--clr-border); transition: var(--trans); cursor: pointer; }
.slider-dot.active { background: var(--clr-blue); }

.review-content { line-height: 1.75; }
.review-content h2 { font-size: clamp(1.1rem,2.2vw,1.55rem); margin: 28px 0 12px; color: #fff; }
.review-content h3 { font-size: clamp(1rem,1.8vw,1.25rem); margin: 22px 0 10px; color: #e4e8f0; }
.review-content h4 { font-size: 1rem; margin: 16px 0 8px; color: #c8cfe0; }
.review-content p { margin-bottom: 1em; color: var(--clr-text); }
.review-content ul { list-style: disc; padding-left: 1.5em; margin-bottom: 1em; }
.review-content ul li { margin-bottom: .4em; color: var(--clr-text); }
.review-content ol { list-style: decimal; padding-left: 1.5em; margin-bottom: 1em; }
.review-content ol li { margin-bottom: .4em; color: var(--clr-text); }
.review-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.5em; overflow-x: auto; display: block; }
.review-content table th { background: var(--clr-header); color: var(--clr-text); padding: 10px 14px; text-align: left; border: 1px solid var(--clr-border); font-weight: 600; font-size: .87rem; }
.review-content table td { padding: 9px 14px; border: 1px solid var(--clr-border); font-size: .87rem; color: var(--clr-text); }
.review-content table tr:nth-child(odd) td { background: rgba(255,255,255,.02); }
.review-content a { color: var(--clr-blue); }
.review-content strong, .review-content b { color: #fff; font-weight: 600; }
.review-content blockquote { border-left: 3px solid var(--clr-blue); padding: 12px 20px; background: rgba(109,169,235,.07); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 1.5em 0; color: var(--clr-text-muted); font-style: italic; }

.author-box { display: flex; gap: 20px; align-items: flex-start; background: var(--clr-card2); border: 1px solid var(--clr-border); border-radius: var(--radius-md); padding: 20px 22px; margin-top: 28px; }
.author-avatar { width: 68px; height: 68px; border-radius: 50%; background: linear-gradient(135deg, #1a2a40, var(--clr-header)); border: 2px solid var(--clr-border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.author-avatar svg { width: 36px; height: 36px; color: var(--clr-text-muted); }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.author-info { flex: 1; }
.author-name { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.author-title { font-size: .78rem; color: var(--clr-blue); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .06em; }
.author-bio { font-size: .83rem; color: var(--clr-text-muted); line-height: 1.6; margin-bottom: 10px; }
.author-links { display: flex; gap: 8px; flex-wrap: wrap; }
.author-link { font-size: .78rem; color: var(--clr-blue); display: flex; align-items: center; gap: 4px; border: 1px solid rgba(109,169,235,.3); border-radius: var(--radius-sm); padding: 3px 10px; transition: var(--trans); }
.author-link:hover { background: rgba(109,169,235,.1); }
.author-link svg { width: 12px; height: 12px; }

.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--clr-card2); border: 1px solid var(--clr-border); border-radius: var(--radius-md); overflow: hidden; transition: border-color .25s; }
.faq-item.open { border-color: var(--clr-blue); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; cursor: pointer; user-select: none; font-size: .95rem; font-weight: 600; color: #fff; gap: 12px; }
.faq-q svg.faq-ico { width: 20px; height: 20px; flex-shrink: 0; color: var(--clr-blue); transition: transform .3s ease; }
.faq-item.open .faq-ico { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s ease; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner { padding: 0 20px 16px; font-size: .88rem; color: var(--clr-text-muted); line-height: 1.7; }
.faq-a-inner a { color: var(--clr-blue); }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 28px; }
.review-card { background: var(--clr-card2); border: 1px solid var(--clr-border); border-radius: var(--radius-md); padding: 20px 18px; transition: var(--trans); }
.review-card:hover { border-color: var(--clr-blue); transform: translateY(-3px); }
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #1e3050, #0d1a2e); border: 2px solid var(--clr-border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 700; color: var(--clr-blue); }
.review-meta { flex: 1; }
.review-name { font-size: .9rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.review-stars { display: flex; gap: 2px; }
.review-stars svg { width: 14px; height: 14px; color: var(--clr-gold); }
.review-text { font-size: .83rem; color: var(--clr-text-muted); line-height: 1.65; }
.review-date { font-size: .7rem; color: var(--clr-border); margin-top: 8px; }

.review-form-wrap { background: var(--clr-card2); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: 28px 24px; }
.review-form-title { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 20px; }
.form-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.form-field label { font-size: .8rem; font-weight: 600; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: .06em; }
.form-field input, .form-field textarea { background: var(--clr-bg); border: 1px solid var(--clr-border); border-radius: var(--radius-sm); padding: 10px 14px; color: var(--clr-text); font-family: var(--font); font-size: .9rem; transition: border-color .25s; resize: vertical; }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--clr-blue); background: rgba(109,169,235,.05); }
.form-field textarea { min-height: 110px; }
.form-msg { margin-top: 12px; padding: 10px 16px; border-radius: var(--radius-sm); font-size: .85rem; display: none; }
.form-msg.success { background: rgba(107,219,91,.12); border: 1px solid rgba(107,219,91,.3); color: var(--clr-green); display: block; }
.form-msg.error { background: rgba(235,82,82,.12); border: 1px solid rgba(235,82,82,.3); color: #eb5252; display: block; }
.form-note { font-size: .75rem; color: var(--clr-text-muted); margin-top: 12px; }

footer { background: var(--clr-header); border-top: 1px solid var(--clr-border); padding: 48px 0 0; margin-top: auto; }
.footer-top { display: grid; grid-template-columns: 240px 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid var(--clr-border); }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo img { height: 40px; width: auto; }
.footer-tagline { font-size: .82rem; color: var(--clr-text-muted); line-height: 1.6; }
.footer-flag { display: flex; align-items: center; gap: 7px; font-size: .8rem; color: var(--clr-text-muted); }
.footer-flag svg { width: 22px; height: 15px; border-radius: 2px; }
.footer-socials { display: flex; gap: 8px; margin-top: 4px; }
.footer-social { width: 34px; height: 34px; border-radius: var(--radius-sm); background: rgba(255,255,255,.05); border: 1px solid var(--clr-border); display: flex; align-items: center; justify-content: center; transition: var(--trans); }
.footer-social:hover { background: rgba(109,169,235,.15); border-color: var(--clr-blue); }
.footer-social svg { width: 15px; height: 15px; color: var(--clr-text-muted); }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col-title { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--clr-text-muted); margin-bottom: 14px; }
.footer-nav { display: flex; flex-direction: column; gap: 6px; }
.footer-nav a { font-size: .83rem; color: var(--clr-text-muted); transition: var(--trans); }
.footer-nav a:hover { color: var(--clr-text); padding-left: 4px; }
.footer-logos { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.footer-logo-item { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-sm); padding: 6px 12px; font-size: .72rem; font-weight: 700; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: .05em; display: flex; align-items: center; gap: 5px; }
.footer-logo-item svg { width: 16px; height: 16px; }
.footer-bottom { padding: 20px 0 24px; }
.footer-bottom-inner { display: flex; flex-direction: column; gap: 12px; }
.footer-legal { font-size: .72rem; color: var(--clr-text-muted); opacity: .65; line-height: 1.7; }
.footer-copyright { font-size: .75rem; color: var(--clr-text-muted); opacity: .5; }
.footer-age { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--clr-text-muted); font-size: .72rem; font-weight: 700; color: var(--clr-text-muted); flex-shrink: 0; }
.footer-trust { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.cta-widget { position: fixed; bottom: 0; left: 0; right: 0; z-index: 800; background: linear-gradient(90deg, #1a2744 0%, #111e38 100%); border-top: 1px solid var(--clr-border); box-shadow: 0 -4px 20px rgba(0,0,0,.5); }
.cta-widget-inner { max-width: 1200px; margin: 0 auto; padding: 10px 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cta-widget-text { display: flex; flex-direction: column; gap: 1px; }
.cta-widget-title { font-size: .9rem; font-weight: 700; color: #fff; }
.cta-widget-sub { font-size: .75rem; color: var(--clr-text-muted); }
.cta-widget-bonus { font-size: 1.1rem; font-weight: 700; color: var(--clr-green); }
.cta-widget-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.cta-close { background: none; border: none; cursor: pointer; color: var(--clr-text-muted); padding: 4px; display: flex; }
.cta-close svg { width: 18px; height: 18px; }
.cta-close:hover { color: #fff; }

.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 800; }
.mobile-overlay.active { display: block; }
.mobile-menu { display: none; position: fixed; top: 0; left: 0; bottom: 0; width: min(320px, 90vw); background: var(--clr-header); z-index: 850; flex-direction: column; padding: 0; box-shadow: 4px 0 24px rgba(0,0,0,.5); transform: translateX(-100%); transition: transform .3s ease; }
.mobile-menu.active { transform: translateX(0); }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--clr-border); }
.mobile-close { background: none; border: none; cursor: pointer; color: var(--clr-text-muted); }
.mobile-close svg { width: 22px; height: 22px; }
.mobile-nav { display: flex; flex-direction: column; padding: 12px 0; overflow-y: auto; flex: 1; }
.mobile-nav a { display: flex; align-items: center; gap: 10px; padding: 12px 20px; color: var(--clr-text); font-size: .9rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.04); transition: var(--trans); }
.mobile-nav a:hover { background: rgba(109,169,235,.1); color: #fff; }
.mobile-nav a svg { width: 16px; height: 16px; color: var(--clr-blue); flex-shrink: 0; }
.mobile-menu-btns { padding: 16px 20px; border-top: 1px solid var(--clr-border); display: flex; gap: 8px; flex-direction: column; }
.mobile-menu-btns .btn { width: 100%; justify-content: center; text-align: center; }
.mobile-menu-online { margin: 0 0 4px; }

.animate-fade-in { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.animate-fade-in.visible { opacity: 1; transform: translateY(0); }

.divider { height: 1px; background: var(--clr-border); margin: 8px 0; }

.badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 9px; border-radius: 20px; font-size: .7rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.badge--green { background: rgba(107,219,91,.12); color: var(--clr-green); border: 1px solid rgba(107,219,91,.25); }
.badge--blue { background: rgba(109,169,235,.12); color: var(--clr-blue); border: 1px solid rgba(109,169,235,.25); }
.badge--gold { background: rgba(240,192,64,.12); color: var(--clr-gold); border: 1px solid rgba(240,192,64,.25); }

.yoast-seo-meta { display: none; }
.wpseo-schema-graph { display: none; }
.elementor-hidden { display: none; }
.wp-post-image { display: block; }

.info-page-content { padding: 48px 0 80px; }
.info-page-content h1 { margin-bottom: 24px; }
.info-page-content h2 { font-size: 1.25rem; margin: 28px 0 10px; }
.info-page-content p { color: var(--clr-text); line-height: 1.75; }
.info-page-content ul { list-style: disc; padding-left: 1.5em; margin-bottom: 1em; }
.info-page-content ul li { color: var(--clr-text); margin-bottom: .5em; }
.info-page-content a { color: var(--clr-blue); }

.section-divider { display: flex; align-items: center; gap: 14px; margin: 0 0 28px; }
.section-divider::before, .section-divider::after { content: ''; flex: 1; height: 1px; background: var(--clr-border); }
.section-divider span { font-size: .72rem; font-weight: 700; letter-spacing: .12em; color: var(--clr-text-muted); text-transform: uppercase; white-space: nowrap; }

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .app-block-inner { grid-template-columns: 1fr; }
  .app-visual { display: none; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  /* CTA's en online-teller staan op mobiel in het burgermenu */
  .header-online { display: none; }
  .header-actions { display: none; }
  .mobile-menu-online { display: flex; }
  .burger { display: flex; }
  .mobile-menu { display: flex; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .games-grid { display: none; }
  .slider-wrap { display: block; }
  .slider-nav { display: flex; }
  .footer-cols { grid-template-columns: 1fr; }
  .cta-widget-inner { flex-wrap: wrap; }
  .toc-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .info-table td:first-child { width: 44%; font-size: .82rem; }
  .hero-content { padding: 40px 16px; }
  .hero-bonus-box { flex-direction: column; gap: 4px; }
  .author-box { flex-direction: column; align-items: center; text-align: center; }
  .author-links { justify-content: center; }
}

@media (max-width: 480px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .cta-widget-bonus { font-size: .9rem; }
}

.wp-content { display: none; }
.site-branding { display: block; }
.navigation-top { display: block; }
.site-footer { margin-top: 0; }
.widget-area { display: block; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute; height: 1px; width: 1px; overflow: hidden; }
