/* ===== SlotExperte.de Static CSS ===== */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1A1A2E;
  background: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== Colors ===== */
:root {
  --navy: #0A2E5C;
  --teal: #00796B;
  --green: #4CAF50;
  --amber: #F5A623;
  --bg-light: #F5F7FA;
  --bg-accent: #E8F4F0;
  --text-primary: #1A1A2E;
  --text-secondary: #5A6A7A;
  --border: #DEE2E6;
  --white: #FFFFFF;
}

/* ===== Layout ===== */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

/* ===== Typography ===== */
.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

/* ===== Compliance Bar ===== */
.compliance-bar {
  background: var(--navy);
  padding: 10px 16px;
  text-align: center;
}
.compliance-bar p {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
}
.compliance-bar a {
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
}
.footer-links a {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--white); }
.rg-pill--link { cursor: pointer; }
.rg-resources a {
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
}
.rg-resources a:hover { color: var(--white); }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}
.nav-desktop { display: none; }
.nav-desktop a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.25s ease;
}
.nav-desktop a:hover { color: var(--navy); }
.cta-btn {
  display: inline-block;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.25s ease;
}
.cta-btn--green {
  background: var(--green);
  color: var(--white);
  padding: 10px 24px;
  font-size: 14px;
}
.cta-btn--green:hover {
  background: #43A047;
  transform: scale(1.02);
}
.cta-btn--navy {
  background: var(--navy);
  color: var(--white);
  padding: 14px 32px;
  font-size: 16px;
}
.cta-btn--navy:hover { background: #0D3A73; transform: scale(1.02); }
.cta-btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  padding: 14px 32px;
  font-size: 16px;
}
.cta-btn--outline:hover { background: rgba(255,255,255,0.1); }
.menu-btn { display: block; padding: 8px; background: none; border: none; cursor: pointer; }
.menu-btn svg { width: 24px; height: 24px; color: var(--text-primary); }

/* Mobile menu */
.mobile-nav {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px;
  flex-direction: column;
  gap: 12px;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  font-size: 16px;
  color: var(--text-secondary);
  padding: 8px 0;
}
.mobile-nav .cta-btn { text-align: center; margin-top: 8px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 64px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(0,121,107,0.25), transparent),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(76,175,80,0.12), transparent),
    linear-gradient(160deg, #0A2E5C 0%, #0D3A73 45%, #00796B 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,46,92,0.15), rgba(10,46,92,0.55));
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero-micro {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hero h1 span {
  display: block;
  font-size: clamp(24px, 4vw, 42px);
  color: rgba(255,255,255,0.85);
  margin-top: 8px;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 680px;
  margin: 32px auto 0;
  line-height: 1.65;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}
.hero-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 24px;
}

/* ===== Trust Bar ===== */
.trust-bar {
  background: var(--teal);
  padding: 20px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--white);
  flex-shrink: 0;
}
.trust-item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

/* ===== Educational Intro ===== */
.edu-intro {
  background: var(--bg-light);
  padding: 64px 0;
}
.edu-intro h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-top: 16px;
  margin-bottom: 40px;
}
.edu-list { display: flex; flex-direction: column; gap: 16px; }
.edu-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.edu-item svg {
  width: 20px;
  height: 20px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}
.edu-item p { font-size: 16px; color: var(--text-primary); line-height: 1.6; }

/* ===== Checklist ===== */
.checklist-section { padding: 64px 0; }
.checklist-section h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-top: 8px;
  margin-bottom: 48px;
}
.checklist-cards { display: flex; flex-direction: column; gap: 24px; }
.check-card {
  background: var(--white);
  border-radius: 12px;
  border-left: 4px solid var(--teal);
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.check-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.check-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0,121,107,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.check-icon svg { width: 28px; height: 28px; color: var(--teal); }
.check-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.check-card > p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
}
.check-inner {
  background: var(--bg-accent);
  border-radius: 8px;
  padding: 20px;
}
.check-inner h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.check-inner li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.check-inner li::before {
  content: '–';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== Comparison ===== */
.comparison {
  background: var(--bg-light);
  padding: 64px 0;
  text-align: center;
}
.comparison h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-top: 16px;
  margin-bottom: 32px;
}
.comparison > .container > p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 700px;
  margin: 0 auto;
}
.comparison .cta-btn { margin-top: 32px; }
.affiliate-note {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px 16px;
  margin-top: 24px;
  max-width: 600px;
}
.affiliate-note p {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===== Responsible Gambling ===== */
.rg-section {
  background: var(--navy);
  padding: 64px 0;
  text-align: center;
}
.rg-icon {
  display: inline-flex;
  margin-bottom: 24px;
}
.rg-icon svg { width: 48px; height: 48px; color: var(--green); }
.rg-section h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 32px;
}
.rg-section > .container > p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 700px;
  margin: 0 auto 48px;
}
.rg-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}
.rg-pill {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 9999px;
  transition: background 0.25s ease;
}
.rg-pill:hover { background: rgba(255,255,255,0.1); }
.rg-resources {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 24px;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}
.rg-resources p {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.rg-resources li {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

/* ===== FAQ ===== */
.faq-section { padding: 64px 0; }
.faq-section h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-top: 8px;
  margin-bottom: 48px;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 4px;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
  border-radius: 4px;
}
.faq-question:hover { background: rgba(0,0,0,0.01); }
.faq-question span {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  padding-right: 16px;
}
.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--text-secondary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
}
.faq-answer p {
  padding: 0 4px 20px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===== Footer ===== */
.footer {
  background: var(--navy);
  padding: 64px 0 32px;
}
.footer-compliance {
  text-align: center;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.badge-18 {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  padding: 4px 16px;
}
.footer-compliance > p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-top: 20px;
}
.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  max-width: 600px;
  margin: 16px auto 0;
  line-height: 1.5;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin-bottom: 32px;
}
.footer-links span {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  cursor: default;
}
.footer-links span:hover { color: var(--white); }
.footer-copy {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-copy p {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}
.footer-copy p + p { margin-top: 4px; }

/* ===== Scroll Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== Responsive ===== */
@media (min-width: 640px) {
  .hero-ctas { flex-direction: row; justify-content: center; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; align-items: center; gap: 32px; }
  .menu-btn { display: none; }
  .mobile-nav { display: none !important; }
  .trust-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ===== Bonus guide (education only) ===== */
.bonus-guide {
  background: var(--white);
  padding: 64px 0;
}
.bonus-guide h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-top: 8px;
  margin-bottom: 16px;
}
.bonus-guide .intro {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 720px;
}
.bonus-tips {
  display: grid;
  gap: 16px;
  max-width: 800px;
}
.bonus-tip {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.bonus-tip strong {
  display: block;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.bonus-tip span {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.bonus-tip .num {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== Interactive Checker ===== */
.checker-page {
  background: var(--bg-light);
  padding: 48px 0 80px;
  min-height: 60vh;
}
.checker-wrap { max-width: 640px; }
.checker-header { text-align: center; margin-bottom: 32px; }
.checker-header h1 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: var(--text-primary);
  margin: 12px 0 16px;
}
.checker-intro {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}
.checker-intro a { color: var(--teal); text-decoration: underline; }

.checker-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
}
.checker-step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.checker-step-dot span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}
.checker-step-dot small {
  font-size: 10px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.checker-step-dot.active span,
.checker-step-dot.done span {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}
.checker-step-line {
  flex: 1;
  max-width: 60px;
  height: 2px;
  background: var(--border);
  margin: 0 8px 18px;
}

.checker-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}
.checker-card h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.checker-hint {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.checker-field {
  display: block;
  margin-bottom: 20px;
}
.checker-field span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.checker-field input,
.checker-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-primary);
  background: var(--white);
}
.checker-field input:focus,
.checker-field select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,121,107,0.12);
}
.checker-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  cursor: pointer;
}
.checker-checkbox input { margin-top: 3px; accent-color: var(--teal); }
.checker-checkbox span {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.checker-submit { width: 100%; text-align: center; border: none; cursor: pointer; font-size: 16px; padding: 14px; }
.checker-micro {
  text-align: center;
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 16px;
}

.checker-progress-track {
  height: 10px;
  background: var(--bg-accent);
  border-radius: 999px;
  overflow: hidden;
  margin: 24px 0 8px;
}
.checker-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--green));
  border-radius: 999px;
  transition: width 0.4s ease;
}
.checker-progress-pct {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 24px;
}
.checker-scan-target {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.checker-scan-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checker-scan-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--bg-light);
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.3s;
}
.checker-scan-list li.running { color: var(--text-primary); font-weight: 500; }
.checker-scan-list li.done { color: var(--green); }
.scan-icon {
  width: 24px;
  text-align: center;
  font-size: 14px;
  flex-shrink: 0;
}

.checker-result-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(76,175,80,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--green);
}
.checker-result-grid {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}
.checker-result-item {
  padding: 16px;
  background: var(--bg-light);
  border-radius: 10px;
  border-left: 3px solid var(--amber);
}
.checker-result-item--ok { border-left-color: var(--green); }
.checker-result-item strong {
  display: block;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.checker-result-status {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
}
.checker-result-item p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 6px;
  line-height: 1.5;
}
.checker-result-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.checker-result-actions .cta-btn { text-align: center; }
.cta-btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 12px 24px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 14px;
}
.cta-btn--outline-dark:hover { background: var(--navy); color: var(--white); }
.cta-btn--ghost {
  background: none;
  color: var(--text-secondary);
  border: none;
  padding: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.cta-btn--ghost:hover { color: var(--teal); }
.checker-disclaimer {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .faq-answer { transition: none; }
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}
