/*
Theme Name: NoKYC Casino Theme
Description: Premium German Bitcoin Casino affiliate theme
Version: 1.0
Author: besteonlinebitcoincasinos.com
Text Domain: nokyc-casino
*/

/* ===== CSS VARIABLES ===== */
:root {
  --bg-primary: #070b15;
  --bg-alt: #0c1220;
  --bg-card: #111827;
  --bg-card-hover: #162033;
  --bg-input: #0f1629;
  --accent: #e8b433;
  --accent-hover: #f0c550;
  --accent-dim: rgba(232, 180, 51, 0.2);
  --accent-secondary: #3b82f6;
  --accent-secondary-dim: rgba(59, 130, 246, 0.15);
  --text-primary: #e2e8f0;
  --text-muted: #94a3b8;
  --text-heading: #f8fafc;
  --success: #22c55e;
  --error: #ef4444;
  --border: rgba(255,255,255,0.06);
  --border-accent: rgba(232,180,51,0.3);
  --radius: 8px;
  --max-width: 1280px;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --transition: 0.25s ease;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.4);
  --gradient-hero: linear-gradient(160deg, #070b15 0%, #0e1a30 100%);
  --gradient-section: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-alt) 100%);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.3;
  font-weight: 700;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 0.75rem; margin-top: 2rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); margin-bottom: 0.5rem; margin-top: 1.5rem; }
p { margin-bottom: 1rem; }
strong { color: var(--text-heading); }

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

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7,11,21,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.site-logo {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.site-logo span { color: var(--accent); }
.main-nav ul { list-style: none; display: flex; gap: 32px; }
.main-nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.main-nav a:hover, .main-nav a.active { color: var(--accent); }
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.main-nav a:hover::after { width: 100%; }
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--gradient-hero);
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(232,180,51,0.04) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(59,130,246,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1rem; }
.hero h1 span { color: var(--accent); }
.hero p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 0.5rem; }
.hero .update-date {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.hero .author-attr {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.hero .author-attr img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}
.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: #070b15;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-cta:hover {
  background: var(--accent-hover);
  color: #070b15;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(232,180,51,0.3);
}

/* ===== INNER HERO (secondary pages) ===== */
.inner-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--gradient-hero);
  padding: 100px 24px 60px;
  position: relative;
}
.inner-hero.tall { min-height: 45vh; }
.inner-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1rem; }
.inner-hero .badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 1.5rem;
}
.inner-hero .badge-item {
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius);
}

/* ===== TABLE OF CONTENTS ===== */
.toc-wrapper {
  max-width: 600px;
  margin: -20px auto 40px;
  position: relative;
  z-index: 10;
}
.toc-toggle {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition);
}
.toc-toggle:hover { border-color: var(--accent); color: var(--accent); }
.toc-toggle .toc-arrow { transition: transform var(--transition); }
.toc-toggle.open .toc-arrow { transform: rotate(180deg); }
.toc-list {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 8px 0;
  list-style: none;
}
.toc-list.open { display: block; }
.toc-list li a {
  display: block;
  padding: 6px 20px;
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: all var(--transition);
}
.toc-list li a:hover { color: var(--accent); background: var(--accent-dim); }

/* ===== SECTION DIVIDER ===== */
.section-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 40px 0;
}
.section-divider .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
}
.section-divider .dot:nth-child(2) { opacity: 0.6; width: 6px; height: 6px; }

/* ===== SECTION HEADINGS ===== */
.section-heading {
  text-align: left;
  margin-bottom: 2rem;
}
.section-heading h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 0;
}

/* ===== CASINO GRID ===== */
.casino-grid-section { background: var(--bg-primary); padding: 60px 0; }
.casino-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.casino-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.casino-card-rank {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #070b15;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 2;
}
.casino-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent-secondary-dim);
  border: 1px solid rgba(59,130,246,0.3);
  color: var(--accent-secondary);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
}
.casino-card-header {
  padding: 48px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bg-alt);
}
.casino-card-logo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  object-fit: contain;
  margin-bottom: 12px;
  background: #fff;
  padding: 4px;
}
.casino-card-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 4px;
}
.casino-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 0;
}
.casino-card-rating .stars { color: var(--accent); font-size: 0.85rem; }
.casino-card-rating .rating-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.casino-card-body { padding: 16px 20px; }
.casino-card-bonus {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  text-align: center;
}
.casino-card-details { font-size: 0.8rem; }
.casino-card-details .detail-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}
.casino-card-details .detail-label { color: var(--text-muted); }
.casino-card-details .detail-value { color: var(--text-heading); font-weight: 500; }
.casino-card-payments {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 12px 0 8px;
  flex-wrap: wrap;
}
.payment-icon {
  width: 32px;
  height: 20px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--text-heading);
  background: var(--bg-alt);
  border: 1px solid var(--border);
}
.bonus-details-toggle {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.75rem;
  cursor: pointer;
  padding: 6px 0;
  text-align: center;
  transition: color var(--transition);
}
.bonus-details-toggle:hover { color: var(--accent); }
.bonus-details-content {
  display: none;
  background: var(--bg-alt);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.5;
}
.bonus-details-content.open { display: block; }
.casino-card-footer { padding: 0 20px 16px; }
.casino-card-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--accent);
  color: #070b15;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.casino-card-cta:hover {
  background: var(--accent-hover);
  color: #070b15;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,180,51,0.3);
}
.casino-card-terms {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
  line-height: 1.4;
  opacity: 0.7;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section { background: var(--bg-alt); padding: 60px 0; }
.review-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 40px;
  overflow: hidden;
}
.review-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}
.review-topbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.review-topbar-logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  object-fit: contain;
  background: #fff;
  padding: 3px;
}
.review-topbar-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}
.review-topbar-stars { color: var(--accent); font-size: 0.9rem; }
.review-topbar-cta {
  background: var(--accent);
  color: #070b15;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 24px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.review-topbar-cta:hover { background: var(--accent-hover); color: #070b15; }
.review-screenshots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 24px;
}
.review-screenshot {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}
.review-screenshot:hover { border-color: var(--accent); }
.review-screenshot img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.review-body {
  padding: 0 24px 24px;
  font-size: 0.95rem;
  line-height: 1.8;
}
.review-body h3 { font-size: 1.15rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.review-body p { margin-bottom: 0.75rem; }
.review-proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.review-pros, .review-cons { padding: 20px; }
.review-pros { background: rgba(34,197,94,0.05); border-right: 1px solid var(--border); }
.review-cons { background: rgba(239,68,68,0.05); }
.review-pros h4 { color: var(--success); font-size: 0.95rem; margin-bottom: 12px; }
.review-cons h4 { color: var(--error); font-size: 0.95rem; margin-bottom: 12px; }
.review-pros ul, .review-cons ul { list-style: none; }
.review-pros li, .review-cons li {
  padding: 6px 0;
  font-size: 0.85rem;
  padding-left: 20px;
  position: relative;
}
.review-pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}
.review-cons li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--error);
  font-weight: 700;
}

/* ===== CONTENT SECTIONS (two-column) ===== */
.content-section { padding: 60px 0; }
.content-section.bg-alt { background: var(--bg-alt); }
.content-section.bg-primary { background: var(--bg-primary); }
.section-spacing { padding: 60px 0; }
.two-col-block {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 40px;
  align-items: start;
}
.two-col-block.reverse { grid-template-columns: 60% 40%; }
.two-col-block.reverse .section-image { order: 2; }
.two-col-block.reverse .section-text { order: 1; }
.section-image-placeholder {
  border: 2px dashed var(--accent);
  background: var(--bg-alt);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}
.section-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.section-text h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin-top: 0; }
.section-text h3 { font-size: clamp(1rem, 2vw, 1.3rem); }
.section-text p { width: 100%; }

/* Content section full-width (for injected HTML) */
.content-section .content-inner { width: 90%; max-width: var(--max-width); margin: 0 auto; }
.content-section h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
.content-section h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); }
.content-section p { width: 100%; }

/* ===== FAQ ===== */
.faq-section { background: var(--bg-primary); padding: 60px 0; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--bg-card);
  border: none;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  min-height: 48px;
  transition: all var(--transition);
}
.faq-question:hover { background: var(--bg-card-hover); }
.faq-question span {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-heading);
  text-align: left;
  flex: 1;
  padding-right: 16px;
}
.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== AUTHOR BOX ===== */
.author-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin: 40px 0;
}
.author-box-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--accent);
}
.author-box-content h3 {
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 4px;
}
.author-box-content .author-role {
  font-size: 0.8rem;
  color: var(--accent);
  font-family: var(--font-mono);
  margin-bottom: 12px;
}
.author-box-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
}
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-brand {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-heading);
  margin-bottom: 4px;
}
.footer-copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}
.footer-disclaimer a { color: var(--accent); }

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 10000;
}

/* ===== TABLES (responsive) ===== */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.content-section table, .page-content table, .review-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
table th {
  background: var(--bg-alt);
  color: var(--text-heading);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 1;
}
table td {
  padding: 10px 16px;
  border-top: 1px solid var(--border);
  color: var(--text-primary);
}
table tr:hover td { background: rgba(232,180,51,0.03); }

/* ===== PAGE CONTENT ===== */
.page-content { background: var(--bg-primary); padding: 60px 0; }
.page-content .container { max-width: 900px; }
.page-content h2 { margin-top: 2.5rem; }
.page-content h3 { margin-top: 1.5rem; }

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 640px;
  margin: 0 auto 40px;
}
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 6px;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form select { cursor: pointer; }
.contact-form button {
  background: var(--accent);
  color: #070b15;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 40px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
.contact-form button:hover { background: var(--accent-hover); }
.form-toast {
  display: none;
  background: var(--success);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-top: 16px;
  text-align: center;
}
.form-toast.show { display: block; }

/* Contact info box */
.contact-info-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.contact-info-box p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.5rem; }
.contact-info-box a { color: var(--accent); font-weight: 600; }

/* ===== TEAM SECTION (Über uns) ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 2rem 0;
}
.team-member {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}
.team-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 2px solid var(--accent);
}
.team-member h3 { margin-top: 0; }
.team-member .role {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  margin-bottom: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .casino-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col-block, .two-col-block.reverse { grid-template-columns: 1fr; }
  .two-col-block.reverse .section-image { order: -1; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7,11,21,0.98);
    backdrop-filter: blur(16px);
    z-index: 999;
    padding: 40px 24px;
  }
  .main-nav.open ul { flex-direction: column; gap: 24px; }
  .main-nav.open a { font-size: 1.2rem; }
  .hamburger { display: block; }
  
  .casino-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .casino-card-header { padding: 40px 12px 12px; }
  .casino-card-logo { width: 56px; height: 56px; }
  .casino-card-name { font-size: 0.9rem; }
  .casino-card-body { padding: 12px; }
  .casino-card-bonus { font-size: 0.85rem; }
  .casino-card-details .detail-row { font-size: 0.72rem; }
  .casino-card-footer { padding: 0 12px 12px; }
  .casino-card-cta { padding: 10px; font-size: 0.8rem; }
  
  .review-screenshots { grid-template-columns: 1fr; }
  .review-proscons { grid-template-columns: 1fr; }
  .review-pros { border-right: none; border-bottom: 1px solid var(--border); }
  .review-topbar { padding: 12px 16px; }
  .review-body { padding: 0 16px 16px; }
  
  .hero { min-height: 50vh; padding: 80px 16px 40px; }
  .hero h1 { font-size: clamp(1.5rem, 5vw, 2.2rem); }
  
  .author-box { flex-direction: column; align-items: center; text-align: center; }
  
  .toc-wrapper { margin: -10px 16px 30px; max-width: 100%; }
  
  .team-grid { grid-template-columns: 1fr; }
  
  table td, table th { min-width: 100px; font-size: 13px; }
  
  .two-col-block, .two-col-block.reverse {
    grid-template-columns: 1fr;
  }
  .two-col-block .section-image,
  .two-col-block.reverse .section-image {
    order: -1;
  }
  .two-col-block .section-text,
  .two-col-block.reverse .section-text {
    order: 2;
  }
  
  .contact-form-wrap { padding: 24px; }
}

@media (max-width: 480px) {
  .casino-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .casino-card-rank { width: 22px; height: 22px; font-size: 0.7rem; top: 8px; left: 8px; }
  .casino-card-badge { font-size: 0.55rem; padding: 2px 5px; top: 8px; right: 8px; }
  .payment-icon { width: 26px; height: 16px; font-size: 0.4rem; }
}
