/* FairPlays.nl - Casino Review Site */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg-dark: #0d1117;
  --bg-card: #161b22;
  --bg-card-hover: #1c2333;
  --accent: #ff6b00;
  --accent-hover: #ff8533;
  --gold: #ffd700;
  --text: #e6edf3;
  --text-muted: #8b949e;
  --text-dim: #6e7681;
  --border: #30363d;
  --green: #3fb950;
  --red: #f85149;
  --nl-red: #AE1C28;
  --nl-blue: #21468B;
  --nl-white: #FFFFFF;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: var(--bg-dark);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }

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

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.site-header {
  background: rgba(13,17,23,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo span { color: var(--accent); }
.logo sup { font-size: 9px; color: var(--accent); vertical-align: super; margin-left: 1px; }

.nav-desktop { display: flex; gap: 24px; align-items: center; }
.nav-desktop a { color: var(--text-muted); font-size: 14px; font-weight: 500; }
.nav-desktop a:hover { color: #fff; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
}
.lang-switch:hover { border-color: var(--accent); color: var(--accent); }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu {
  display: none;
  padding: 12px 0;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 0; color: var(--text-muted); font-size: 15px; border-bottom: 1px solid var(--border); }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 60px 0 50px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    linear-gradient(135deg, rgba(174,28,40,0.08) 0%, transparent 40%),
    linear-gradient(225deg, rgba(33,70,139,0.08) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 20%, rgba(255,107,0,0.06) 0%, transparent 50%);
  z-index: 0;
}

.hero .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hero h1 .highlight { color: var(--accent); }

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 650px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== NL FLAG BAR ===== */
.nl-flag-bar {
  height: 4px;
  background: linear-gradient(to right, var(--nl-red) 33%, var(--nl-white) 33%, var(--nl-white) 66%, var(--nl-blue) 66%);
}

/* ===== CASINO TABLE ===== */
.casino-section { padding: 40px 0; }

.section-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 30px;
}

.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}

.casino-card:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.casino-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(255,107,0,0.1);
}

.casino-card-badge {
  position: absolute;
  top: 0;
  right: 20px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.casino-card-inner {
  display: grid;
  grid-template-columns: 50px 140px 1fr 140px 150px;
  gap: 20px;
  align-items: center;
  padding: 20px 24px;
}

.casino-rank {
  font-size: 24px;
  font-weight: 900;
  color: var(--accent);
  text-align: center;
}

.casino-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  height: 56px;
}

.casino-logo-wrap img {
  max-height: 40px;
  max-width: 116px;
  object-fit: contain;
}

.casino-logo-text {
  font-size: 16px;
  font-weight: 800;
  color: #333;
  text-align: center;
  white-space: nowrap;
}

.casino-info h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.casino-bonus {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 6px;
}

.casino-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.casino-feature {
  font-size: 11px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 8px;
  color: var(--text-muted);
}

.casino-rating {
  text-align: center;
}

.casino-rating-num {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.casino-rating-label {
  font-size: 11px;
  color: var(--text-muted);
}

.stars {
  display: flex;
  gap: 2px;
  justify-content: center;
  margin: 4px 0;
}

.star {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.star.empty { color: var(--text-dim); }
.star.half { color: var(--gold); }

.casino-cta {
  text-align: center;
}

.btn-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-cta:hover { background: var(--accent-hover); transform: translateY(-1px); color: #fff; }

.casino-terms {
  font-size: 11px;
  color: var(--text-dim);
  padding: 8px 24px 12px;
  border-top: 1px solid var(--border);
}

/* Payments row */
.casino-payments {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 6px;
}

.payment-badge {
  font-size: 10px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  padding: 2px 6px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section { padding: 50px 0; }

.review-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 32px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.review-logo-wrap {
  background: #fff;
  border-radius: 8px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  min-width: 130px;
}

.review-logo-wrap img { max-height: 34px; max-width: 110px; object-fit: contain; }

.review-title-area h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}

.review-rating-inline {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-rating-inline .score {
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
}

.review-body p {
  color: var(--text-muted);
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.7;
}

.review-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 20px 0 10px;
}

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

.pros h4, .cons h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pros h4 { color: var(--green); }
.cons h4 { color: var(--red); }

.pros li, .cons li {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
  list-style: none;
  padding-left: 20px;
  position: relative;
}

.pros li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.cons li::before { content: '✗'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

.review-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.review-cta .btn-cta { padding: 14px 36px; font-size: 15px; }

/* ===== INFO TABLE ===== */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.info-table tr { border-bottom: 1px solid var(--border); }
.info-table td { padding: 10px 14px; font-size: 14px; }
.info-table td:first-child { color: var(--text-muted); font-weight: 600; width: 40%; }
.info-table td:last-child { color: var(--text); }

/* ===== CONTENT SECTIONS ===== */
.content-section {
  padding: 50px 0;
  border-top: 1px solid var(--border);
}

.content-section h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.content-section h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 24px 0 12px;
}

.content-section p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 14px;
  line-height: 1.7;
}

.content-section ul, .content-section ol {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0 0 16px 24px;
  line-height: 1.8;
}

.content-section li { margin-bottom: 6px; }

/* ===== METHODOLOGY ===== */
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.method-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}

.method-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.method-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.method-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== AUTHOR BOX ===== */
.author-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 30px 0;
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nl-red), var(--nl-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.author-info h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.author-info .author-role { font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 4px; }
.author-info p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: var(--bg-card);
  border: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}

.faq-q:hover { background: var(--bg-card-hover); }
.faq-q .arrow { transition: transform 0.2s; font-size: 12px; color: var(--text-muted); }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }

.faq-a {
  display: none;
  padding: 0 20px 16px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  background: var(--bg-card);
}

.faq-item.open .faq-a { display: block; }

/* ===== FOOTER ===== */
.site-footer {
  background: #080b10;
  border-top: 1px solid var(--border);
  padding: 40px 0 20px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-brand .logo { font-size: 20px; display: inline-block; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: var(--text-dim); line-height: 1.6; max-width: 320px; }

.footer-links h4 { font-size: 13px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.footer-links a { display: block; font-size: 13px; color: var(--text-dim); margin-bottom: 8px; }
.footer-links a:hover { color: var(--accent); }

.footer-disclaimer {
  background: rgba(174,28,40,0.05);
  border: 1px solid rgba(174,28,40,0.15);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 24px;
}

.footer-disclaimer .age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--nl-red);
  color: var(--nl-red);
  font-size: 14px;
  font-weight: 800;
  margin-right: 12px;
  float: left;
}

.footer-disclaimer p {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
}

.footer-disclaimer a { color: var(--nl-red); }

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

.footer-bottom p { font-size: 12px; color: var(--text-dim); }
.footer-bottom a { color: var(--text-dim); font-size: 12px; }

/* ===== AFFILIATE DISCLOSURE ===== */
.affiliate-notice {
  background: rgba(255,107,0,0.05);
  border: 1px solid rgba(255,107,0,0.15);
  border-radius: 8px;
  padding: 12px 16px;
  margin: 20px 0;
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .casino-card-inner {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }
  .casino-logo-wrap { grid-column: 1 / -1; height: 48px; justify-self: start; }
  .casino-info { grid-column: 1 / -1; }
  .casino-rating { grid-column: 1 / -1; text-align: left; display: flex; align-items: center; gap: 12px; }
  .casino-cta { grid-column: 1 / -1; text-align: left; }
  .btn-cta { width: 100%; text-align: center; display: block; }
  .casino-card-badge { font-size: 10px; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero h1 { font-size: 30px; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .hamburger { display: block; }
  .hero h1 { font-size: 26px; }
  .hero-sub { font-size: 15px; }
  .hero-stats { gap: 20px; }
  .section-title { font-size: 22px; }
  .review-block { padding: 20px; }
  .author-box { flex-direction: column; text-align: center; }
}

/* ===== UPDATED BADGE ===== */
.updated-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 8px;
}

.updated-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
}

/* ===== GAME TYPES ===== */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin: 20px 0;
}

.game-type {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: border-color 0.2s;
}

.game-type:hover { border-color: var(--accent); }
.game-type .icon { font-size: 28px; margin-bottom: 8px; }
.game-type h4 { font-size: 14px; font-weight: 600; }
.game-type p { font-size: 12px; color: var(--text-muted); }
