/* ============================================================
   GEENCRUKS.NL — Site Stylesheet
   Design: Dark Luxury · Gold Accents · Modern Editorial
   ============================================================ */

   @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

   /* ── CSS Variables ───────────────────────────────────────── */
   :root {
     --clr-bg:          #0a0b0e;
     --clr-surface:     #111318;
     --clr-surface-2:   #1a1d24;
     --clr-surface-3:   #22262f;
     --clr-border:      rgba(255,255,255,0.07);
     --clr-gold:        #c9a84c;
     --clr-gold-light:  #e8c96a;
     --clr-gold-dim:    rgba(201,168,76,0.15);
     --clr-green:       #22c55e;
     --clr-green-dim:   rgba(34,197,94,0.12);
     --clr-text:        #f0f0ef;
     --clr-text-muted:  #8a8d96;
     --clr-text-dim:    #555860;
     --ff-display:      'Playfair Display', Georgia, serif;
     --ff-body:         'DM Sans', system-ui, sans-serif;
     --radius-sm:       6px;
     --radius-md:       12px;
     --radius-lg:       20px;
     --radius-xl:       32px;
     --shadow-card:     0 4px 32px rgba(0,0,0,0.6), 0 1px 0 rgba(255,255,255,0.04) inset;
     --shadow-gold:     0 0 40px rgba(201,168,76,0.18);
     --transition:      0.22s cubic-bezier(0.4,0,0.2,1);
     --max-w:           1280px;
     --gutter:          clamp(1rem, 4vw, 2.5rem);
   }
   
   /* ── Reset & Base ────────────────────────────────────────── */
   *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
   
   html {
     scroll-behavior: smooth;
     -webkit-font-smoothing: antialiased;
     text-rendering: optimizeLegibility;
   }
   
   body {
     background-color: var(--clr-bg);
     color: var(--clr-text);
     font-family: var(--ff-body);
     font-size: clamp(15px, 1.1vw, 17px);
     line-height: 1.7;
     overflow-x: hidden;
   }
   
   img { display: block; max-width: 100%; height: auto; }
   a { color: inherit; text-decoration: none; }
   ul { list-style: none; }
   /* .hamburger krijgt eigen styling (zie Geen Cruks header) */
   button:not(.hamburger) {
     cursor: pointer;
     border: none;
     background: none;
     font-family: inherit;
   }
   
   /* ── Typography ──────────────────────────────────────────── */
   h1, h2, h3, h4 {
     font-family: var(--ff-display);
     line-height: 1.15;
     font-weight: 700;
     letter-spacing: -0.02em;
   }
   
   h1 { font-size: clamp(2.4rem, 5.5vw, 5rem); font-weight: 900; }
   h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
   h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); }
   h4 { font-size: 1.1rem; }
   
   .text-gold  { color: var(--clr-gold); }
   .text-muted { color: var(--clr-text-muted); }
   .text-green { color: var(--clr-green); }
   
   .eyebrow {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     font-size: 0.72rem;
     font-weight: 600;
     letter-spacing: 0.14em;
     text-transform: uppercase;
     color: var(--clr-gold);
   }
   .eyebrow::before {
     content: '';
     display: block;
     width: 20px;
     height: 2px;
     background: var(--clr-gold);
     border-radius: 2px;
   }
   
   /* ── Layout Utilities ────────────────────────────────────── */
   .container {
     max-width: var(--max-w);
     margin: 0 auto;
     padding: 0 var(--gutter);
   }
   
   .section {
     padding: clamp(4rem, 8vw, 8rem) 0;
   }
   
   .section-header {
     margin-bottom: clamp(2.5rem, 5vw, 4rem);
   }
   
   .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
   .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
   .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
   
   /* ── Buttons ─────────────────────────────────────────────── */
   .btn {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 0.8em 1.8em;
     border-radius: var(--radius-sm);
     font-weight: 600;
     font-size: 0.9rem;
     letter-spacing: 0.02em;
     transition: var(--transition);
     white-space: nowrap;
   }
   
   .btn-gold {
     background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-light) 50%, var(--clr-gold) 100%);
     background-size: 200% 100%;
     color: #0a0800;
     font-weight: 700;
     box-shadow: 0 2px 20px rgba(201,168,76,0.35);
   }
   .btn-gold:hover {
     background-position: 100% 0;
     box-shadow: 0 4px 32px rgba(201,168,76,0.55);
     transform: translateY(-1px);
   }
   
   .btn-outline {
     border: 1.5px solid var(--clr-border);
     color: var(--clr-text);
     background: transparent;
   }
   .btn-outline:hover {
     border-color: var(--clr-gold);
     color: var(--clr-gold);
   }
   
   .btn-ghost {
     color: var(--clr-gold);
     padding: 0;
   }
   .btn-ghost:hover { opacity: 0.75; }
   .btn-ghost svg { transition: transform var(--transition); }
   .btn-ghost:hover svg { transform: translateX(4px); }
   
   /* ── Header / Nav ────────────────────────────────────────── */
   .site-header {
     position: sticky;
     top: 0;
     z-index: 100;
     width: 100%;
     max-width: none;
     margin: 0;
     padding: 0;
     background: rgba(10,11,14,0.85);
     backdrop-filter: blur(18px) saturate(180%);
     -webkit-backdrop-filter: blur(18px) saturate(180%);
     border-bottom: 1px solid var(--clr-border);
   }

   /* Volledige breedte: bar is 100%; .container in de row begrenst alleen de inhoud */
   .geencruks-header__bar {
     width: 100%;
     max-width: none;
     margin: 0;
     padding: 0;
     box-sizing: border-box;
   }

   .nav-inner {
     display: flex;
     align-items: center;
     justify-content: space-between;
     height: 68px;
   }
   
   .nav-logo {
     display: flex;
     align-items: center;
     gap: 10px;
     font-family: var(--ff-display);
     font-size: 1.4rem;
     font-weight: 900;
     letter-spacing: -0.03em;
   }
   .nav-logo-icon {
     width: 36px;
     height: 36px;
     background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.2rem;
   }
   .nav-logo span { color: var(--clr-gold); }
   
   .nav-links {
     display: flex;
     align-items: center;
     gap: clamp(1rem, 2.5vw, 2rem);
   }
   .nav-links a {
     font-size: 0.88rem;
     font-weight: 500;
     color: var(--clr-text-muted);
     transition: color var(--transition);
     position: relative;
   }
   .nav-links a:hover,
   .nav-links a.active { color: var(--clr-text); }
   .nav-links a.active::after {
     content: '';
     position: absolute;
     bottom: -4px;
     left: 0; right: 0;
     height: 2px;
     background: var(--clr-gold);
     border-radius: 2px;
   }
   
   .nav-cta { display: flex; align-items: center; gap: 0.75rem; }

   /* Hamburger: expliciet — globale button-reset goldt niet voor .hamburger */
   .geencruks-header .hamburger.geencruks-header__toggle {
     -webkit-appearance: none;
     appearance: none;
     display: none;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 5px;
     width: 44px;
     height: 44px;
     min-width: 44px;
     min-height: 44px;
     padding: 0;
     margin: 0;
     border: 1px solid var(--clr-border);
     border-radius: var(--radius-sm);
     background: rgba(255, 255, 255, 0.06);
     box-shadow: none;
     cursor: pointer;
     flex-shrink: 0;
     color: var(--clr-text);
     font-family: inherit;
     line-height: 0;
     vertical-align: middle;
     transition:
       border-color var(--transition),
       background-color var(--transition);
   }
   .geencruks-header .hamburger:hover {
     border-color: rgba(201, 168, 76, 0.45);
     background: rgba(201, 168, 76, 0.1);
   }
   .geencruks-header .hamburger:focus-visible {
     outline: 2px solid var(--clr-gold);
     outline-offset: 3px;
   }
   .geencruks-header .hamburger span {
     display: block;
     width: 22px;
     height: 2px;
     flex-shrink: 0;
     background: var(--clr-text);
     border-radius: 2px;
     transition:
       transform 0.25s ease,
       opacity var(--transition);
     transform-origin: center;
   }

   /* ── Geen Cruks header / nav (child template) ────────────── */
   .geencruks-header__inner {
     gap: 1rem;
   }
   .geencruks-header__nav.nav-primary {
     display: flex;
     align-items: center;
     justify-content: center;
     flex: 1;
     min-width: 0;
   }
   .geencruks-header__nav .nav-links {
     list-style: none;
     margin: 0;
     padding: 0;
   }
   .geencruks-header__nav .nav-links > li > a {
     display: inline-block;
     padding: 0.35rem 0;
   }
   .geencruks-header__nav .nav-links .current-menu-item > a,
   .geencruks-header__nav .nav-links .current-menu-ancestor > a {
     color: var(--clr-text);
   }
   .geencruks-header__nav .nav-links .current-menu-item > a::after,
   .geencruks-header__nav .nav-links .current-menu-ancestor > a::after {
     content: '';
     position: absolute;
     bottom: -4px;
     left: 0;
     right: 0;
     height: 2px;
     background: var(--clr-gold);
     border-radius: 2px;
   }
   .geencruks-header__nav .nav-links li {
     position: relative;
   }
   .geencruks-header__nav .nav-links .sub-menu {
     position: absolute;
     top: calc(100% + 6px);
     left: 0;
     min-width: 220px;
     margin: 0;
     padding: 0.4rem 0;
     list-style: none;
     background: var(--clr-surface-2);
     border: 1px solid var(--clr-border);
     border-radius: var(--radius-sm);
     box-shadow: var(--shadow-card);
     opacity: 0;
     visibility: hidden;
     transform: translateY(6px);
     transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
     z-index: 120;
   }
   .geencruks-header__nav .nav-links .sub-menu .sub-menu {
     top: 0;
     left: 100%;
     margin-left: 4px;
   }
   .geencruks-header__nav .nav-links li:hover > .sub-menu,
   .geencruks-header__nav .nav-links li:focus-within > .sub-menu {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
   }
   .geencruks-header__nav .nav-links .sub-menu a {
     display: block;
     padding: 0.45rem 1rem;
     font-size: 0.85rem;
   }
   .nav-logo--custom .nav-logo-img,
   .nav-logo--custom img {
     display: block;
     max-height: 42px;
     width: auto;
     height: auto;
   }
   .nav-logo--custom img.geencruks-brand-logo {
     max-height: 48px;
     max-width: min(260px, 52vw);
     object-fit: contain;
   }
   .geencruks-footer .nav-logo--custom img.geencruks-brand-logo {
     max-height: 64px;
     max-width: min(280px, 70vw);
   }
   .geencruks-header.is-open .hamburger span:nth-child(1) {
     transform: translateY(7px) rotate(45deg);
   }
   .geencruks-header.is-open .hamburger span:nth-child(2) {
     opacity: 0;
   }
   .geencruks-header.is-open .hamburger span:nth-child(3) {
     transform: translateY(-7px) rotate(-45deg);
   }
   body.geencruks-nav-open {
     overflow: hidden;
   }
   .footer-col__note {
     font-size: 0.88rem;
     color: var(--clr-text-muted);
     line-height: 1.55;
   }
   
   /* ── Hero ────────────────────────────────────────────────── */
   .hero {
     position: relative;
     min-height: 92vh;
     display: flex;
     align-items: center;
     overflow: hidden;
   }
   
   .hero-bg {
     position: absolute;
     inset: 0;
     background:
       radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,168,76,0.08) 0%, transparent 60%),
       radial-gradient(ellipse 50% 80% at 10% 80%, rgba(34,197,94,0.04) 0%, transparent 50%),
       linear-gradient(180deg, var(--clr-bg) 0%, #0d0e12 100%);
     z-index: 0;
   }
   
   .hero-grid-lines {
     position: absolute;
     inset: 0;
     background-image:
       linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
       linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
     background-size: 80px 80px;
     mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black 20%, transparent 80%);
     z-index: 0;
   }
   
   .hero-noise {
     position: absolute;
     inset: 0;
     opacity: 0.025;
     background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
     background-size: 200px;
     z-index: 0;
   }
   
   .hero-content {
     position: relative;
     z-index: 1;
     max-width: 780px;
   }
   
   .hero-badge {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 6px 14px;
     background: var(--clr-gold-dim);
     border: 1px solid rgba(201,168,76,0.25);
     border-radius: 99px;
     font-size: 0.78rem;
     font-weight: 600;
     color: var(--clr-gold);
     margin-bottom: 1.5rem;
     letter-spacing: 0.05em;
   }
   .hero-badge-dot {
     width: 7px;
     height: 7px;
     background: var(--clr-green);
     border-radius: 50%;
     animation: pulse-dot 2s infinite;
   }
   @keyframes pulse-dot {
     0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
     50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(34,197,94,0); }
   }
   
   .hero h1 {
     margin-bottom: 1.5rem;
     line-height: 1.08;
   }
   .hero h1 em {
     font-style: italic;
     background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
   }
   
   .hero-desc {
     font-size: clamp(1rem, 1.4vw, 1.2rem);
     color: var(--clr-text-muted);
     max-width: 560px;
     margin-bottom: 2.5rem;
     line-height: 1.75;
   }
   
   .hero-actions {
     display: flex;
     align-items: center;
     gap: 1rem;
     flex-wrap: wrap;
     margin-bottom: 3.5rem;
   }
   
   .hero-stats {
     display: flex;
     gap: clamp(1.5rem, 4vw, 3rem);
     padding-top: 2rem;
     border-top: 1px solid var(--clr-border);
   }
   .hero-stat-val {
     font-family: var(--ff-display);
     font-size: clamp(1.6rem, 2.5vw, 2.2rem);
     font-weight: 900;
     color: var(--clr-text);
     line-height: 1;
     margin-bottom: 4px;
   }
   .hero-stat-val span { color: var(--clr-gold); }
   .hero-stat-label {
     font-size: 0.78rem;
     font-weight: 500;
     color: var(--clr-text-dim);
     letter-spacing: 0.06em;
     text-transform: uppercase;
   }
   
   .hero-visual {
     position: absolute;
     right: -60px;
     top: 50%;
     transform: translateY(-50%);
     width: min(500px, 45vw);
     z-index: 1;
     pointer-events: none;
   }
   
   .hero-cards-stack {
     position: relative;
     height: 420px;
   }
   .hero-card-float {
     position: absolute;
     background: var(--clr-surface);
     border: 1px solid var(--clr-border);
     border-radius: var(--radius-lg);
     padding: 1.5rem;
     box-shadow: var(--shadow-card);
     backdrop-filter: blur(12px);
   }
   .hero-card-float:nth-child(1) {
     top: 0; right: 20px;
     width: 240px;
     animation: float1 6s ease-in-out infinite;
   }
   .hero-card-float:nth-child(2) {
     top: 120px; right: 0;
     width: 200px;
     animation: float2 7s ease-in-out infinite 0.5s;
   }
   .hero-card-float:nth-child(3) {
     top: 260px; right: 60px;
     width: 220px;
     animation: float1 8s ease-in-out infinite 1s;
   }
   @keyframes float1 {
     0%, 100% { transform: translateY(0); }
     50% { transform: translateY(-12px); }
   }
   @keyframes float2 {
     0%, 100% { transform: translateY(0) rotate(2deg); }
     50% { transform: translateY(-10px) rotate(2deg); }
   }
   
   /* ── Trust Bar ───────────────────────────────────────────── */
   .trust-bar {
     border-top: 1px solid var(--clr-border);
     border-bottom: 1px solid var(--clr-border);
     background: var(--clr-surface);
     padding: 1.25rem 0;
   }
   .trust-bar-inner {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 2rem;
     flex-wrap: wrap;
   }
   .trust-item {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 0.82rem;
     font-weight: 500;
     color: var(--clr-text-muted);
     white-space: nowrap;
   }
   .trust-item svg { color: var(--clr-gold); flex-shrink: 0; }
   
   /* ── Casino Cards ────────────────────────────────────────── */
   .casino-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(min(100%, 360px), 1fr));
     gap: 1.5rem;
   }
   
   .casino-card {
     background: var(--clr-surface);
     border: 1px solid var(--clr-border);
     border-radius: var(--radius-lg);
     overflow: hidden;
     transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
     box-shadow: var(--shadow-card);
     position: relative;
   }
   .casino-card:hover {
     transform: translateY(-4px);
     box-shadow: var(--shadow-card), var(--shadow-gold);
     border-color: rgba(201,168,76,0.2);
   }
   
   .casino-card-header {
     background: var(--clr-surface-2);
     padding: 1.25rem 1.5rem;
     display: flex;
     align-items: center;
     justify-content: space-between;
     border-bottom: 1px solid var(--clr-border);
   }
   
   .casino-logo {
     display: flex;
     align-items: center;
     gap: 12px;
   }
   .casino-logo-img {
     width: 48px;
     height: 48px;
     border-radius: var(--radius-sm);
     background: var(--clr-surface-3);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     overflow: hidden;
   }
   .casino-logo-img img { width: 100%; height: 100%; object-fit: contain; }
   .casino-name {
     font-family: var(--ff-display);
     font-size: 1.05rem;
     font-weight: 700;
   }
   .casino-license {
     font-size: 0.73rem;
     color: var(--clr-text-muted);
     margin-top: 2px;
   }
   
   .casino-rating {
     display: flex;
     flex-direction: column;
     align-items: flex-end;
     gap: 2px;
   }
   .casino-score {
     font-family: var(--ff-display);
     font-size: 1.5rem;
     font-weight: 900;
     color: var(--clr-gold);
     line-height: 1;
   }
   .casino-stars {
     display: flex;
     gap: 2px;
     color: var(--clr-gold);
     font-size: 0.72rem;
   }
   
   .casino-card-body {
     padding: 1.25rem 1.5rem;
   }
   
   .casino-bonus {
     background: var(--clr-gold-dim);
     border: 1px solid rgba(201,168,76,0.2);
     border-radius: var(--radius-sm);
     padding: 0.85rem 1rem;
     margin-bottom: 1.25rem;
   }
   .casino-bonus-label {
     font-size: 0.72rem;
     font-weight: 600;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     color: var(--clr-gold);
     margin-bottom: 4px;
   }
   .casino-bonus-value {
     font-family: var(--ff-display);
     font-size: 1.3rem;
     font-weight: 700;
     color: var(--clr-text);
     line-height: 1.2;
   }
   .casino-bonus-sub {
     font-size: 0.78rem;
     color: var(--clr-text-muted);
     margin-top: 2px;
   }
   
   .casino-features {
     display: flex;
     flex-wrap: wrap;
     gap: 6px;
     margin-bottom: 1.25rem;
   }
   .casino-tag {
     padding: 4px 10px;
     background: var(--clr-surface-3);
     border: 1px solid var(--clr-border);
     border-radius: 99px;
     font-size: 0.73rem;
     font-weight: 500;
     color: var(--clr-text-muted);
   }
   
   .casino-geen-cruks {
     display: flex;
     align-items: center;
     gap: 8px;
     padding: 8px 12px;
     background: var(--clr-green-dim);
     border: 1px solid rgba(34,197,94,0.2);
     border-radius: var(--radius-sm);
     font-size: 0.8rem;
     font-weight: 600;
     color: var(--clr-green);
     margin-bottom: 1.25rem;
   }
   
   .casino-card-footer {
     padding: 1rem 1.5rem;
     border-top: 1px solid var(--clr-border);
     display: flex;
     gap: 0.75rem;
     align-items: center;
   }
   .casino-card-footer .btn-gold { flex: 1; justify-content: center; }
   
   .casino-ribbon {
     position: absolute;
     top: 14px;
     left: -4px;
     background: var(--clr-gold);
     color: #0a0800;
     font-size: 0.7rem;
     font-weight: 700;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     padding: 4px 12px 4px 16px;
     clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%);
     z-index: 2;
   }
   
   /* ── Top-10 Table ────────────────────────────────────────── */
   .top-table {
     width: 100%;
     border-collapse: separate;
     border-spacing: 0 8px;
   }
   .top-table thead th {
     font-size: 0.72rem;
     font-weight: 600;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     color: var(--clr-text-dim);
     padding: 0 1.5rem 0.5rem;
     text-align: left;
   }
   .top-table thead th:last-child { text-align: right; }
   .top-table tbody tr {
     background: var(--clr-surface);
     border: 1px solid var(--clr-border);
     transition: var(--transition);
   }
   .top-table tbody tr:hover {
     background: var(--clr-surface-2);
     border-color: rgba(201,168,76,0.15);
   }
   .top-table td {
     padding: 1.1rem 1.5rem;
     vertical-align: middle;
   }
   .top-table td:first-child { border-radius: var(--radius-md) 0 0 var(--radius-md); }
   .top-table td:last-child  { border-radius: 0 var(--radius-md) var(--radius-md) 0; text-align: right; }
   
   .rank-number {
     width: 32px;
     height: 32px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 8px;
     font-family: var(--ff-display);
     font-weight: 900;
     font-size: 0.95rem;
   }
   .rank-1 { background: linear-gradient(135deg, #c9a84c, #e8c96a); color: #0a0800; }
   .rank-2 { background: linear-gradient(135deg, #9ca3af, #d1d5db); color: #0a0800; }
   .rank-3 { background: linear-gradient(135deg, #cd7c38, #e8a96a); color: #0a0800; }
   .rank-other { background: var(--clr-surface-3); color: var(--clr-text-muted); }
   
   /* ── Info/SEO Sections ───────────────────────────────────── */
   .info-block {
     background: var(--clr-surface);
     border: 1px solid var(--clr-border);
     border-radius: var(--radius-xl);
     padding: clamp(2rem, 4vw, 3.5rem);
   }
   
   .info-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 2rem;
     align-items: start;
   }
   
   .faq-list { display: flex; flex-direction: column; gap: 0; }
   .faq-item {
     border-bottom: 1px solid var(--clr-border);
   }
   .faq-item:last-child { border-bottom: none; }
   .faq-question {
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 1.25rem 0;
     text-align: left;
     font-weight: 600;
     font-size: 0.95rem;
     color: var(--clr-text);
     gap: 1rem;
     cursor: pointer;
     transition: color var(--transition);
   }
   .faq-question:hover { color: var(--clr-gold); }
   .faq-icon {
     width: 22px;
     height: 22px;
     flex-shrink: 0;
     border: 1.5px solid var(--clr-border);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1rem;
     transition: var(--transition);
     line-height: 1;
   }
   .faq-item.open .faq-icon {
     background: var(--clr-gold);
     border-color: var(--clr-gold);
     color: #0a0800;
     transform: rotate(45deg);
   }
   .faq-answer {
     display: none;
     padding-bottom: 1.25rem;
     color: var(--clr-text-muted);
     font-size: 0.92rem;
     line-height: 1.8;
   }
   .faq-item.open .faq-answer { display: block; }
   
   /* ── Feature Blocks ──────────────────────────────────────── */
   .feature-card {
     background: var(--clr-surface);
     border: 1px solid var(--clr-border);
     border-radius: var(--radius-lg);
     padding: 2rem;
     transition: var(--transition);
   }
   .feature-card:hover {
     border-color: rgba(201,168,76,0.2);
     background: var(--clr-surface-2);
   }
   .feature-icon {
     width: 48px;
     height: 48px;
     background: var(--clr-gold-dim);
     border: 1px solid rgba(201,168,76,0.2);
     border-radius: var(--radius-md);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.4rem;
     margin-bottom: 1.25rem;
   }
   .feature-card h4 {
     font-family: var(--ff-display);
     margin-bottom: 0.5rem;
   }
   .feature-card p {
     font-size: 0.88rem;
     color: var(--clr-text-muted);
     line-height: 1.7;
   }
   
   /* ── Breadcrumb ──────────────────────────────────────────── */
   .breadcrumb {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 0.8rem;
     color: var(--clr-text-muted);
     padding: 1rem 0;
   }
   .breadcrumb a:hover { color: var(--clr-gold); }
   .breadcrumb-sep { color: var(--clr-text-dim); }
   
   /* ── Footer ──────────────────────────────────────────────── */
   .site-footer {
     background: var(--clr-surface);
     border-top: 1px solid var(--clr-border);
     margin-top: clamp(4rem, 8vw, 8rem);
   }
   .site-footer.geencruks-footer,
   .geencruks-footer__wide {
     width: 100%;
     max-width: none;
     margin-left: 0;
     margin-right: 0;
     box-sizing: border-box;
   }
   
   .footer-top {
     padding: clamp(3rem, 6vw, 5rem) 0;
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr;
     gap: 3rem;
   }
   .footer-brand p {
     font-size: 0.88rem;
     color: var(--clr-text-muted);
     line-height: 1.75;
     margin: 1rem 0 1.5rem;
     max-width: 300px;
   }
   .footer-col h5 {
     font-size: 0.78rem;
     font-weight: 700;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     color: var(--clr-text-dim);
     margin-bottom: 1rem;
   }
   .footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
   .footer-col a {
     font-size: 0.88rem;
     color: var(--clr-text-muted);
     transition: color var(--transition);
   }
   .footer-col a:hover { color: var(--clr-gold); }
   
   .footer-bottom {
     border-top: 1px solid var(--clr-border);
     padding: 1.5rem 0;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 1rem;
     flex-wrap: wrap;
   }
   .footer-legal {
     font-size: 0.78rem;
     color: var(--clr-text-dim);
     line-height: 1.6;
     max-width: 700px;
   }
   .footer-18 {
     width: 36px;
     height: 36px;
     border: 2px solid var(--clr-text-dim);
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 900;
     font-size: 0.85rem;
     color: var(--clr-text-dim);
     flex-shrink: 0;
   }
   
   /* ── Cookie Banner ───────────────────────────────────────── */
   .cookie-banner {
     position: fixed;
     bottom: 1.5rem;
     left: 50%;
     transform: translateX(-50%);
     z-index: 999;
     background: var(--clr-surface-2);
     border: 1px solid var(--clr-border);
     border-radius: var(--radius-lg);
     padding: 1.25rem 1.75rem;
     display: flex;
     align-items: center;
     gap: 1.5rem;
     box-shadow: 0 8px 48px rgba(0,0,0,0.6);
     max-width: 680px;
     width: calc(100vw - 3rem);
     backdrop-filter: blur(12px);
   }
   .cookie-banner p {
     font-size: 0.84rem;
     color: var(--clr-text-muted);
     line-height: 1.6;
     flex: 1;
   }
   .cookie-banner a { color: var(--clr-gold); text-decoration: underline; }
   .cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
   .cookie-banner.hidden { display: none; }
   
   /* ── Scroll animations ───────────────────────────────────── */
   [data-animate] {
     opacity: 0;
     transform: translateY(24px);
     transition: opacity 0.6s ease, transform 0.6s ease;
   }
   [data-animate].visible {
     opacity: 1;
     transform: none;
   }
   [data-animate-delay="1"] { transition-delay: 0.1s; }
   [data-animate-delay="2"] { transition-delay: 0.2s; }
   [data-animate-delay="3"] { transition-delay: 0.3s; }
   [data-animate-delay="4"] { transition-delay: 0.4s; }
   
   /* ── Responsive ──────────────────────────────────────────── */
   @media (max-width: 1024px) {
     .hero-visual { display: none; }
     .footer-top { grid-template-columns: 1fr 1fr; }
     .grid-4 { grid-template-columns: repeat(2, 1fr); }
     .info-grid { grid-template-columns: 1fr; }
   }
   
   @media (max-width: 768px) {
     .geencruks-header .geencruks-header__nav.nav-primary {
       display: none;
       position: fixed;
       left: 0;
       right: 0;
       top: 68px;
       max-height: calc(100vh - 68px);
       overflow-y: auto;
       padding: 1rem var(--gutter) 1.5rem;
       margin: 0;
       background: rgba(10, 11, 14, 0.97);
       backdrop-filter: blur(16px);
       -webkit-backdrop-filter: blur(16px);
       border-bottom: 1px solid var(--clr-border);
       justify-content: flex-start;
       align-items: stretch;
       z-index: 110;
     }
     .geencruks-header.is-open .geencruks-header__nav.nav-primary {
       display: flex;
     }
     .geencruks-header .geencruks-header__nav .nav-links {
       flex-direction: column;
       align-items: flex-start;
       gap: 0;
       width: 100%;
     }
     .geencruks-header .geencruks-header__nav .nav-links > li {
       width: 100%;
       border-bottom: 1px solid var(--clr-border);
     }
     .geencruks-header .geencruks-header__nav .nav-links > li > a {
       padding: 0.85rem 0;
       width: 100%;
     }
     .geencruks-header .geencruks-header__nav .nav-links .sub-menu {
       position: static;
       opacity: 1;
       visibility: visible;
       transform: none;
       display: block;
       box-shadow: none;
       border: none;
       background: rgba(0, 0, 0, 0.2);
       margin: 0 0 0.5rem;
       padding: 0.25rem 0 0.5rem 0.75rem;
       border-radius: 0;
     }
     .geencruks-header .nav-cta .btn-outline { display: none; }
     .geencruks-header .hamburger { display: inline-flex; }
     .grid-3 { grid-template-columns: 1fr; }
     .grid-2 { grid-template-columns: 1fr; }
     .footer-top { grid-template-columns: 1fr; gap: 2rem; }
     .hero-stats { flex-wrap: wrap; gap: 1.25rem; }
     .trust-bar-inner { justify-content: center; gap: 1rem; }
     .top-table { font-size: 0.85rem; }
     .top-table th:nth-child(4),
     .top-table td:nth-child(4) { display: none; }
     .cookie-banner { flex-direction: column; align-items: flex-start; }
     .cookie-actions { width: 100%; }
     .cookie-actions .btn { flex: 1; justify-content: center; }
   }
   
   @media (max-width: 480px) {
     .hero-actions { flex-direction: column; align-items: flex-start; }
     .hero-actions .btn { width: 100%; justify-content: center; }
   }
   
   /* ── Utility ─────────────────────────────────────────────── */
   .sr-only {
     position: absolute; width: 1px; height: 1px;
     padding: 0; margin: -1px; overflow: hidden;
     clip: rect(0,0,0,0); white-space: nowrap; border: 0;
   }
   .divider {
     height: 1px;
     background: var(--clr-border);
     margin: clamp(3rem, 6vw, 5rem) 0;
   }
   .text-center { text-align: center; }
   .mb-1 { margin-bottom: 0.5rem; }
   .mb-2 { margin-bottom: 1rem; }
   .mb-3 { margin-bottom: 1.5rem; }
   .mt-auto { margin-top: auto; }
   .flex { display: flex; }
   .items-center { align-items: center; }
   .gap-2 { gap: 0.5rem; }

   /* ============================================================
      Hello Elementor / Elementor Site Kit overrides
      (hoge specificiteit + !important waar de kit anders wint)
      ============================================================ */

   /* Basis: body-tekst niet door grijs kitkleur laten verdringen */
   body:not(.elementor-editor-active) {
     background-color: var(--clr-bg) !important;
     color: var(--clr-text) !important;
   }

   /* Hero: H1-regel wit/licht; <em> blijft goud-gradient */
   body:not(.elementor-editor-active) .hero h1,
   body:not(.elementor-editor-active) .hero h1.elementor-heading-title {
     color: #f5f5f4 !important;
   }
   body:not(.elementor-editor-active) .hero h1 em {
     font-style: italic !important;
     color: transparent !important;
     -webkit-text-fill-color: transparent !important;
     background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light)) !important;
     -webkit-background-clip: text !important;
     background-clip: text !important;
   }

   body:not(.elementor-editor-active) .hero-desc {
     color: var(--clr-text-muted) !important;
   }

   /* Sectiekoppen (PHP-template + gemixt met Elementor) */
   body:not(.elementor-editor-active) .section h2,
   body:not(.elementor-editor-active) .info-block h2 {
     color: var(--clr-text) !important;
   }

   /* FAQ: zichtbare randen (Elementor reset vaak border: 0 op buttons/divs) */
   body:not(.elementor-editor-active) .faq-list {
     border: 1px solid var(--clr-border) !important;
     border-radius: var(--radius-md);
     overflow: hidden;
     background: rgba(0, 0, 0, 0.15);
   }
   body:not(.elementor-editor-active) .faq-item {
     border-bottom: 1px solid var(--clr-border) !important;
   }
   body:not(.elementor-editor-active) .faq-item:last-child {
     border-bottom: none !important;
   }
   body:not(.elementor-editor-active) .faq-question {
     width: 100% !important;
     display: flex !important;
     align-items: center !important;
     justify-content: space-between !important;
     gap: 1rem !important;
     padding: 1.25rem 1rem !important;
     margin: 0 !important;
     text-align: left !important;
     font: inherit !important;
     font-weight: 600 !important;
     font-size: 0.95rem !important;
     color: var(--clr-text) !important;
     background: transparent !important;
     border: none !important;
     border-radius: 0 !important;
     box-shadow: none !important;
     cursor: pointer !important;
   }
   body:not(.elementor-editor-active) .faq-question:hover,
   body:not(.elementor-editor-active) .faq-question:focus-visible {
     color: var(--clr-gold) !important;
   }
   body:not(.elementor-editor-active) .faq-icon {
     border: 1.5px solid var(--clr-border) !important;
     box-sizing: border-box !important;
   }
   body:not(.elementor-editor-active) .faq-answer {
     padding: 0 1rem 1.25rem !important;
     color: var(--clr-text-muted) !important;
   }

   /* Knoppen in hero/secties tegen theme button-reset */
   body:not(.elementor-editor-active) .hero .btn,
   body:not(.elementor-editor-active) .section .btn {
     text-decoration: none !important;
   }
   body:not(.elementor-editor-active) .hero .btn-outline,
   body:not(.elementor-editor-active) .section .btn-outline {
     border: 1.5px solid rgba(255, 255, 255, 0.22) !important;
     color: var(--clr-text) !important;
     background: transparent !important;
   }

   /* Header/footer volle breedte + hamburger zichtbaar (Elementor kit) */
   body:not(.elementor-editor-active) .site-header.geencruks-header,
   body:not(.elementor-editor-active) footer.site-footer.geencruks-footer {
     width: 100% !important;
     max-width: none !important;
   }
   body:not(.elementor-editor-active) .geencruks-header__bar,
   body:not(.elementor-editor-active) .geencruks-footer__wide {
     width: 100% !important;
     max-width: none !important;
   }
   body:not(.elementor-editor-active) .geencruks-header .hamburger.geencruks-header__toggle {
     border: 1px solid var(--clr-border) !important;
     background-image: none !important;
     background-color: rgba(255, 255, 255, 0.06) !important;
   }

   /* ── Optioneel licht thema: zet op <body class="… geencruks-light">
      (bijv. via Elementor > Site Settings > Custom CSS / attributes) ── */
   body.geencruks-light:not(.elementor-editor-active) {
     --clr-bg: #f6f5f2;
     --clr-surface: #ffffff;
     --clr-surface-2: #eeede8;
     --clr-surface-3: #e2e1db;
     --clr-border: rgba(0, 0, 0, 0.1);
     --clr-text: #16171c;
     --clr-text-muted: #4b4e5a;
     --clr-text-dim: #717584;
   }
   body.geencruks-light:not(.elementor-editor-active) .site-header {
     background: rgba(246, 245, 242, 0.92) !important;
   }
   body.geencruks-light:not(.elementor-editor-active) .hero-bg {
     background:
       radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201, 168, 76, 0.12) 0%, transparent 60%),
       radial-gradient(ellipse 50% 80% at 10% 80%, rgba(34, 197, 94, 0.06) 0%, transparent 50%),
       linear-gradient(180deg, var(--clr-bg) 0%, #eae9e4 100%) !important;
   }
   body.geencruks-light:not(.elementor-editor-active) .hero h1,
   body.geencruks-light:not(.elementor-editor-active) .hero h1.elementor-heading-title {
     color: var(--clr-text) !important;
   }
   body.geencruks-light:not(.elementor-editor-active) .hero .btn-outline,
   body.geencruks-light:not(.elementor-editor-active) .section .btn-outline {
     border: 1.5px solid rgba(0, 0, 0, 0.18) !important;
     color: var(--clr-text) !important;
   }
   body.geencruks-light:not(.elementor-editor-active) .faq-list {
     background: rgba(0, 0, 0, 0.03);
   }

   /* ── Verantwoord spelen — centrale blok (homepage) ───────── */
   .gc-responsible-section {
     background: linear-gradient(180deg, rgba(201, 168, 76, 0.04) 0%, transparent 45%);
     border-top: 1px solid var(--clr-border);
     border-bottom: 1px solid var(--clr-border);
     padding-top: clamp(3rem, 6vw, 5rem);
     padding-bottom: clamp(3rem, 6vw, 5rem);
   }
   .gc-responsible {
     background: var(--clr-surface);
     border: 1px solid var(--clr-border);
     border-radius: var(--radius-xl);
     padding: clamp(1.75rem, 4vw, 2.75rem);
     box-shadow: var(--shadow-card);
   }
   .gc-responsible__head {
     text-align: center;
     max-width: 52rem;
     margin: 0 auto 2rem;
   }
   .gc-responsible__age {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     min-width: 52px;
     min-height: 52px;
     padding: 0 14px;
     margin-bottom: 1rem;
     font-family: var(--ff-display);
     font-weight: 900;
     font-size: 1.1rem;
     color: var(--clr-text-muted);
     border: 2px solid var(--clr-text-dim);
     border-radius: 12px;
   }
   .gc-responsible__head h2 {
     font-size: clamp(1.5rem, 3vw, 2rem);
     margin-bottom: 0.85rem;
     line-height: 1.2;
   }
   .gc-responsible__intro {
     font-size: 0.95rem;
     color: var(--clr-text-muted);
     line-height: 1.8;
     text-align: left;
   }
   .gc-responsible__grid {
     display: grid;
     grid-template-columns: repeat(3, minmax(0, 1fr));
     gap: 1.75rem;
     margin-bottom: 1.75rem;
   }
   .gc-responsible__col h3 {
     font-family: var(--ff-body);
     font-size: 0.85rem;
     font-weight: 700;
     letter-spacing: 0.06em;
     text-transform: uppercase;
     color: var(--clr-gold);
     margin-bottom: 0.85rem;
   }
   .gc-responsible__list {
     margin: 0;
     padding-left: 1.15rem;
     color: var(--clr-text-muted);
     font-size: 0.9rem;
     line-height: 1.75;
   }
   .gc-responsible__list li {
     margin-bottom: 0.45rem;
     list-style: disc;
   }
   .gc-responsible__links-lead {
     font-size: 0.86rem;
     color: var(--clr-text-muted);
     margin-bottom: 0.75rem;
     line-height: 1.55;
   }
   .gc-help-links--prominent {
     display: flex;
     flex-direction: column;
     gap: 0;
   }
   .gc-help-links--prominent li {
     border-bottom: 1px solid var(--clr-border);
   }
   .gc-help-links--prominent li:last-child {
     border-bottom: none;
   }
   .gc-help-links--prominent a {
     display: block;
     padding: 0.55rem 0;
     font-size: 0.84rem;
     color: var(--clr-text-muted);
     transition: color var(--transition);
   }
   .gc-help-links--prominent a:hover {
     color: var(--clr-gold);
   }
   .gc-responsible__footnote {
     font-size: 0.8rem;
     color: var(--clr-text-dim);
     line-height: 1.65;
     padding-top: 1rem;
     border-top: 1px solid var(--clr-border);
     margin: 0;
     text-align: center;
   }
   .gc-footer-responsible__lead {
     margin-bottom: 0.75rem;
   }
   .gc-help-links--footer {
     margin-top: 0.5rem;
   }
   .gc-help-links--footer a {
     font-size: 0.82rem;
     color: var(--clr-text-muted);
     text-decoration: underline;
     text-underline-offset: 2px;
   }
   .gc-help-links--footer a:hover {
     color: var(--clr-gold);
   }
   .gc-footer-responsible p.footer-col__note a {
     color: var(--clr-gold);
     text-decoration: none;
   }
   .gc-footer-responsible p.footer-col__note a:hover {
     text-decoration: underline;
   }
   @media (max-width: 1024px) {
     .gc-responsible__grid {
       grid-template-columns: 1fr;
     }
   }

   /* ── Pagina: Wat is CRUKS ─────────────────────────────────── */
   .gc-cruks-page__hero {
     padding-bottom: clamp(1rem, 4vw, 2rem);
   }
   .gc-cruks-page__breadcrumb ol {
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     gap: 0.35rem 0.65rem;
     margin: 0 0 1.25rem;
     padding: 0;
     list-style: none;
     font-size: 0.82rem;
     color: var(--clr-text-muted);
   }
   .gc-cruks-page__breadcrumb li:not(:last-child)::after {
     content: "/";
     margin-left: 0.65rem;
     color: var(--clr-text-dim);
   }
   .gc-cruks-page__breadcrumb a {
     color: var(--clr-text-muted);
     text-decoration: underline;
     text-underline-offset: 2px;
   }
   .gc-cruks-page__breadcrumb a:hover {
     color: var(--clr-gold);
   }
   .gc-cruks-page__hero h1 {
     font-size: clamp(2rem, 4vw, 3.25rem);
     margin-bottom: 0.85rem;
   }
   .gc-cruks-page__lead {
     max-width: 52ch;
     color: var(--clr-text-muted);
     line-height: 1.75;
     font-size: 1.02rem;
   }
   .gc-cruks-page__narrow {
     max-width: 46rem;
   }
   .gc-cruks-page__article {
     color: var(--clr-text-muted);
     line-height: 1.85;
     font-size: 0.95rem;
   }
   .gc-cruks-page__article h2 {
     margin-top: 1.75rem;
     margin-bottom: 0.75rem;
     font-size: clamp(1.35rem, 2.2vw, 1.65rem);
     color: var(--clr-text);
   }
   .gc-cruks-page__article p {
     margin-bottom: 1rem;
   }
   .gc-cruks-page__article a {
     color: var(--clr-gold);
     text-decoration: underline;
     text-underline-offset: 2px;
   }
   .gc-cruks-page__article a:hover {
     color: var(--clr-gold-light);
   }
   .gc-cruks-page__back {
     margin-top: 2rem;
   }
   .gc-cruks-page__help h2 {
     font-size: clamp(1.45rem, 2.5vw, 1.85rem);
     margin-bottom: 0.65rem;
   }
   .gc-cruks-page__help-lead {
     font-size: 0.9rem;
     color: var(--clr-text-muted);
     margin-bottom: 0.75rem;
   }
   .gc-cruks-page__help-more {
     margin-top: 1.25rem;
     font-size: 0.88rem;
   }
   .gc-cruks-page__help-more a {
     color: var(--clr-gold);
   }
   .gc-cruks-page__help-more a:hover {
     text-decoration: underline;
   }
   body:not(.elementor-editor-active) .gc-cruks-page__hero h1 {
     color: var(--clr-text) !important;
   }

   /* ── Single: casino ──────────────────────────────────────── */
   .gc-single-casino__breadcrumb ol {
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     gap: 0.35rem 0.65rem;
     margin: 0 0 1.25rem;
     padding: 0;
     list-style: none;
     font-size: 0.82rem;
     color: var(--clr-text-muted);
   }
   .gc-single-casino__breadcrumb li:not(:last-child)::after {
     content: "/";
     margin-left: 0.65rem;
     color: var(--clr-text-dim);
   }
   .gc-single-casino__breadcrumb a {
     color: var(--clr-text-muted);
     text-decoration: underline;
     text-underline-offset: 2px;
   }
   .gc-single-casino__breadcrumb a:hover {
     color: var(--clr-gold);
   }
   .gc-single-casino__hero {
     padding-bottom: clamp(1rem, 3vw, 1.75rem);
   }
   .gc-single-casino__hero-row {
     display: grid;
     gap: clamp(1.25rem, 4vw, 2rem);
     grid-template-columns: 1fr;
     align-items: start;
   }
   @media (min-width: 840px) {
     .gc-single-casino__hero-row {
       grid-template-columns: 1fr minmax(240px, 300px);
       align-items: center;
     }
   }
   .gc-single-casino__brand {
     display: flex;
     gap: 1.25rem;
     align-items: center;
   }
   .gc-single-casino__logo-wrap {
     flex-shrink: 0;
     width: 120px;
     height: 120px;
     border-radius: var(--radius-lg);
     background: var(--clr-surface-2);
     border: 1px solid var(--clr-border);
     overflow: hidden;
     box-shadow: var(--shadow-card);
   }
   .gc-single-casino__logo {
     width: 100%;
     height: 100%;
     object-fit: contain;
   }
   .gc-single-casino__logo-placeholder {
     width: 120px;
     height: 120px;
     display: grid;
     place-items: center;
     font-size: 3rem;
     border-radius: var(--radius-lg);
     background: var(--clr-surface-2);
     border: 1px solid var(--clr-border);
   }
   .gc-single-casino__title-block h1 {
     font-size: clamp(1.85rem, 4vw, 2.75rem);
     margin-bottom: 0.4rem;
   }
   .gc-single-casino__license {
     font-size: 0.9rem;
     color: var(--clr-text-muted);
   }
   .gc-single-casino__score-panel {
     padding: 1.1rem 1.25rem;
     border-radius: var(--radius-md);
     background: var(--clr-surface);
     border: 1px solid var(--clr-border);
     text-align: center;
     box-shadow: var(--shadow-card);
   }
   .gc-single-casino__score-num {
     font-family: var(--ff-display);
     font-weight: 700;
     line-height: 1.1;
     margin-bottom: 0.35rem;
   }
   .gc-single-casino__score-val {
     font-size: clamp(2.2rem, 5vw, 2.85rem);
     color: var(--clr-gold);
   }
   .gc-single-casino__score-max {
     font-size: 1rem;
     color: var(--clr-text-muted);
   }
   .gc-single-casino__stars {
     font-size: 1.15rem;
     letter-spacing: 0.08em;
     color: var(--clr-gold);
     margin-bottom: 0.65rem;
   }
   .gc-single-casino__geen-tag {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 0.45rem;
     font-size: 0.78rem;
     color: var(--clr-green);
     text-transform: uppercase;
     letter-spacing: 0.06em;
   }
   .gc-single-casino__geen-dot {
     width: 7px;
     height: 7px;
     border-radius: 50%;
     background: var(--clr-green);
     box-shadow: 0 0 10px var(--clr-green-dim);
   }
   .gc-single-casino__lead {
     margin-top: 1.25rem;
     max-width: 55ch;
     color: var(--clr-text-muted);
     line-height: 1.75;
     font-size: 0.98rem;
   }
   .gc-single-casino__actions {
     display: flex;
     flex-wrap: wrap;
     gap: 0.75rem;
     margin-top: 1.35rem;
   }
   .gc-single-casino__narrow {
     max-width: 46rem;
   }
   .gc-single-casino__facts {
     padding-top: 0;
   }
   .gc-single-casino__facts-grid {
     display: grid;
     gap: 1rem;
     grid-template-columns: 1fr;
   }
   @media (min-width: 640px) {
     .gc-single-casino__facts-grid {
       grid-template-columns: 1fr 1fr;
     }
     .gc-single-casino__facts-grid--3 {
       grid-template-columns: 1fr 1fr 1fr;
     }
   }
   .gc-single-casino__fact-card {
     padding: 1.1rem 1.2rem;
     border-radius: var(--radius-md);
     background: var(--clr-surface-2);
     border: 1px solid var(--clr-border);
   }
   .gc-single-casino__fact-heading {
     font-size: 0.78rem;
     text-transform: uppercase;
     letter-spacing: 0.08em;
     color: var(--clr-gold);
     margin-bottom: 0.55rem;
     font-family: var(--ff-body);
     font-weight: 600;
   }
   .gc-single-casino__fact-strong {
     font-size: 1.05rem;
     color: var(--clr-text);
     line-height: 1.45;
   }
   .gc-single-casino__fact-muted {
     font-size: 0.88rem;
     color: var(--clr-text-muted);
     margin-top: 0.35rem;
     line-height: 1.55;
   }
   .gc-single-casino__fact-list {
     margin: 0;
     padding-left: 1.1rem;
     color: var(--clr-text-muted);
     font-size: 0.9rem;
     line-height: 1.7;
   }
   .gc-single-casino__fact-list li {
     list-style: disc;
   }
   .gc-single-casino__tags {
     display: flex;
     flex-wrap: wrap;
     gap: 0.45rem;
     margin-top: 1.25rem;
   }
   .gc-single-casino__cons {
     margin-top: 1.35rem;
     padding: 1.1rem 1.2rem;
     border-radius: var(--radius-md);
     background: rgba(255, 80, 80, 0.06);
     border: 1px solid rgba(255, 100, 100, 0.15);
   }
   .gc-single-casino__cons .gc-single-casino__fact-heading {
     color: #f87171;
   }
   .gc-single-casino__cons-body {
     font-size: 0.9rem;
     color: var(--clr-text-muted);
     line-height: 1.7;
   }
   .gc-single-casino__article-wrap {
     padding-top: clamp(0.5rem, 2vw, 1.5rem);
   }
   .gc-single-casino__body {
     color: var(--clr-text-muted);
     line-height: 1.85;
     font-size: 0.95rem;
   }
   .gc-single-casino__body > *:first-child {
     margin-top: 0;
   }
   .gc-single-casino__body h2,
   .gc-single-casino__body h3 {
     color: var(--clr-text);
     margin-top: 1.5rem;
     margin-bottom: 0.65rem;
   }
   .gc-single-casino__help h2 {
     font-size: clamp(1.35rem, 2.5vw, 1.65rem);
     margin-bottom: 0.5rem;
   }
   .gc-single-casino__help-lead {
     font-size: 0.9rem;
     color: var(--clr-text-muted);
     margin-bottom: 0.75rem;
   }
   .gc-single-casino__help-more {
     margin-top: 1rem;
     font-size: 0.88rem;
   }
   .gc-single-casino__help-more a {
     color: var(--clr-gold);
   }
   .gc-single-casino__help-more a:hover {
     text-decoration: underline;
   }
   body:not(.elementor-editor-active) .gc-single-casino__title-block h1 {
     color: var(--clr-text) !important;
   }