/* =========================================
   WVES.NL — Beste Online Casino's Nederland
   Design: Dark Gold Premium
   ========================================= */

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

/* =========================================
   CSS VARIABLES
   ========================================= */
:root {
  --gold: #FFD700;
  --gold-light: #FFE866;
  --gold-dark: #C9A800;
  --red: #C0392B;
  --red-dark: #A93226;
  --bg-dark: #0A0A0F;
  --bg-card: #12121A;
  --bg-card2: #1A1A26;
  --bg-section: #0F0F18;
  --border: rgba(255, 215, 0, 0.15);
  --border-hover: rgba(255, 215, 0, 0.4);
  --text-primary: #F0F0F0;
  --text-secondary: #A8A8B8;
  --text-muted: #6B6B80;
  --white: #FFFFFF;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--gold-light); }

ul { list-style: none; }

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--white);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

.gold-text { color: var(--gold); }
.red-text { color: var(--red); }

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

section { padding: 80px 0; }

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.reveal-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.reveal-on-scroll:nth-child(4) { transition-delay: 0.3s; }

/* =========================================
   HEADER / NAV
   ========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white) !important;
  text-decoration: none;
}

.logo span { color: var(--gold); }

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all var(--transition);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
  background: rgba(255, 215, 0, 0.08);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: #000 !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3) !important;
  background: var(--gold-light) !important;
  color: #000 !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/24643924/pexels-photo-24643924.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200');
  background-size: cover;
  background-position: center;
  filter: brightness(0.25);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 15, 0.95) 0%,
    rgba(10, 10, 15, 0.6) 50%,
    rgba(192, 57, 43, 0.1) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero h1 {
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.stat-box {
  background: rgba(255, 215, 0, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.stat-box .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.stat-box .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-gold);
}

.hero-img-main img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-img-main:hover img { transform: scale(1.03); }

.hero-mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mini-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mini-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.mini-card-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--white);
}

.mini-card-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.35);
  color: #000;
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid rgba(255, 215, 0, 0.4);
}

.btn-secondary:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
  color: var(--gold);
}

.btn-red {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 4px 20px rgba(192, 57, 43, 0.3);
}

.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(192, 57, 43, 0.4);
  color: #fff;
}

/* =========================================
   SECTION HEADERS
   ========================================= */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.25);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 16px auto 0;
  font-size: 1.05rem;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 16px auto 0;
}

/* =========================================
   CASINO CARDS (TOP LIST)
   ========================================= */
.casinos-section { background: var(--bg-section); }

.casino-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 24px;
  align-items: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.casino-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  opacity: 0;
  transition: opacity var(--transition);
}

.casino-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.casino-card:hover::before { opacity: 1; }

.casino-card.featured {
  border-color: rgba(255, 215, 0, 0.35);
  background: linear-gradient(135deg, var(--bg-card), rgba(255, 215, 0, 0.04));
}

.casino-card.featured::before { opacity: 1; }

.casino-rank {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(255, 215, 0, 0.2);
  text-align: center;
  line-height: 1;
}

.casino-card.featured .casino-rank { color: var(--gold); }

.casino-info { flex: 1; }

.casino-name-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.casino-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 50px;
}

.badge-gold { background: rgba(255, 215, 0, 0.15); color: var(--gold); border: 1px solid rgba(255, 215, 0, 0.3); }
.badge-new { background: rgba(46, 204, 113, 0.15); color: #2ECC71; border: 1px solid rgba(46, 204, 113, 0.3); }
.badge-hot { background: rgba(192, 57, 43, 0.15); color: #E74C3C; border: 1px solid rgba(192, 57, 43, 0.3); }

.casino-bonus {
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.casino-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.casino-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.casino-stars {
  color: var(--gold);
  font-size: 0.9rem;
}

.casino-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.casino-score {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.casino-score span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}

/* =========================================
   FEATURES GRID
   ========================================= */
.features-section { background: var(--bg-dark); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* =========================================
   BONUS GUIDE SPLIT
   ========================================= */
.bonus-section {
  background: var(--bg-section);
}

.bonus-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.bonus-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.bonus-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.bonus-img-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
}

.bonus-img-overlay strong {
  color: var(--gold);
  font-size: 1.1rem;
}

.bonus-img-overlay p {
  color: var(--text-secondary);
  font-size: 0.8rem;
  margin-top: 4px;
}

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.bonus-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  transition: all var(--transition);
}

.bonus-item:hover {
  border-color: var(--border-hover);
}

.bonus-item-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.bonus-item-text strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.bonus-item-text span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* =========================================
   HOW TO SECTION
   ========================================= */
.howto-section { background: var(--bg-dark); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), var(--border), transparent);
  z-index: 0;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}

.step-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-gold);
}

.step-num {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-card h4 { margin-bottom: 10px; font-size: 1rem; }
.step-card p { color: var(--text-secondary); font-size: 0.85rem; }

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section { background: var(--bg-section); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:hover { border-color: var(--border-hover); }

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}

.faq-question span {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-body);
}

.faq-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.65;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* =========================================
   CTA BANNER
   ========================================= */
.cta-section {
  background: linear-gradient(135deg, #0A0A0F 0%, #1A0F00 50%, #0A0A0F 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner h2 { margin-bottom: 16px; }
.cta-inner p { color: var(--text-secondary); max-width: 560px; margin: 0 auto 36px; font-size: 1.05rem; }

.cta-disclaimer {
  margin-top: 24px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: #060608;
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 16px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.footer-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.footer-legal {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 700px;
}

.footer-legal strong { color: var(--text-secondary); }

.gambling-warning {
  background: rgba(192, 57, 43, 0.08);
  border: 1px solid rgba(192, 57, 43, 0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.gambling-warning span { font-size: 1.2rem; }

.gambling-warning p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.gambling-warning p strong { color: #E74C3C; }

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-dark) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); }

/* =========================================
   COMPARISON TABLE
   ========================================= */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
}

.compare-table th {
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid var(--border);
  padding: 14px 16px;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
}

.compare-table td {
  border: 1px solid var(--border);
  padding: 14px 16px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  background: var(--bg-card);
  transition: background var(--transition);
}

.compare-table tr:hover td { background: var(--bg-card2); }

.check { color: #2ECC71; }
.cross { color: #E74C3C; }

/* =========================================
   REVIEW CARD (detailed)
   ========================================= */
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
  transition: all var(--transition);
}

.review-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-gold);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 16px;
  flex-wrap: wrap;
}

.review-title-block h3 { font-size: 1.4rem; }

.review-score-block {
  text-align: right;
}

.score-big {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.score-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.review-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}

.pros, .cons {
  background: var(--bg-section);
  border-radius: var(--radius);
  padding: 16px 20px;
}

.pros h5 { color: #2ECC71; margin-bottom: 10px; font-size: 0.85rem; text-transform: uppercase; }
.cons h5 { color: #E74C3C; margin-bottom: 10px; font-size: 0.85rem; text-transform: uppercase; }

.pros li, .cons li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pros li::before { content: '✓'; color: #2ECC71; font-weight: 700; flex-shrink: 0; }
.cons li::before { content: '✗'; color: #E74C3C; font-weight: 700; flex-shrink: 0; }

/* =========================================
   BONUS TYPES GRID
   ========================================= */
.bonus-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bonus-type-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  text-align: center;
}

.bonus-type-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.bonus-type-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.bonus-type-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.bonus-type-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.bonus-amount {
  display: inline-block;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.25);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

/* =========================================
   VEILIG GOKKEN PAGE
   ========================================= */
.responsible-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.responsible-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all var(--transition);
}

.responsible-card:hover {
  border-color: var(--border-hover);
}

.responsible-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.limit-calc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
}

.limit-calc h3 { margin-bottom: 24px; text-align: center; }

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(255, 215, 0, 0.4);
}

.calc-result {
  background: rgba(255, 215, 0, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  margin-top: 20px;
  display: none;
}

.calc-result.show { display: block; }

.calc-result .result-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.calc-result p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-top: 8px;
}

/* =========================================
   404 PAGE
   ========================================= */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 215, 0, 0.3);
  line-height: 1;
  margin-bottom: 16px;
}

/* =========================================
   MOBILE MENU
   ========================================= */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 15, 0.97);
  z-index: 999;
  flex-direction: column;
  padding: 32px 24px;
  gap: 8px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 16px;
  border-radius: var(--radius);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.mobile-menu a:hover {
  color: var(--gold);
  background: rgba(255, 215, 0, 0.06);
  border-color: var(--border);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-split { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .bonus-types-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  
  .main-nav { display: none; }
  .hamburger { display: flex; }
  
  .casino-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .casino-action { align-items: flex-start; flex-direction: row; align-items: center; }
  
  .features-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .responsible-grid { grid-template-columns: 1fr; }
  .review-pros-cons { grid-template-columns: 1fr; }
  .bonus-types-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  
  .compare-table { font-size: 0.8rem; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; max-width: 280px; }
  .hero-btns { flex-direction: column; }
  .steps-grid { grid-template-columns: 1fr; }
}