/* ====================================================
   Nomini Casino — Brand site (DE)
   Colorful, modern, playful — purple/orange/lime
   ==================================================== */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Nunito+Sans:ital,opsz,wght@0,6..12,400;0,6..12,500;0,6..12,600;0,6..12,700;0,6..12,800&display=swap');

:root {
  --bg: #ffffff;
  --bg-soft: #faf7ff;
  --bg-alt: #f3eeff;
  --bg-dark: #1e1340;
  --grape: #6c2bd9;
  --grape-deep: #4c1d95;
  --grape-light: #9d5cf5;
  --orange: #ff7a18;
  --orange-light: #ffa14a;
  --lime: #7cd957;
  --pink: #ff4d8d;
  --sky: #2bb8f5;
  --gold: #ffc23c;
  --ink: #2a1a4a;
  --ink-soft: #5e4d7e;
  --ink-mute: #8b7bab;
  --paper: #ffffff;
  --line: #ece4fa;
  --line-strong: #d9ccf5;
  --success: #2ea043;
  --grad-main: linear-gradient(135deg, #6c2bd9 0%, #9d5cf5 100%);
  --grad-hero: linear-gradient(135deg, #4c1d95 0%, #6c2bd9 45%, #ff4d8d 120%);
  --grad-orange: linear-gradient(135deg, #ff7a18 0%, #ff4d8d 100%);
  --grad-lime: linear-gradient(135deg, #7cd957 0%, #2bb8f5 120%);
  --serif: 'Baloo 2', cursive;
  --sans: 'Nunito Sans', -apple-system, sans-serif;
  --shadow-sm: 0 4px 14px rgba(108, 43, 217, 0.10);
  --shadow-md: 0 10px 30px rgba(108, 43, 217, 0.16);
  --shadow-lg: 0 20px 50px rgba(108, 43, 217, 0.22);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: 860px; margin: 0 auto; padding: 0 28px; }

a { color: var(--grape); text-decoration: none; transition: color .2s; }
a:hover { color: var(--grape-deep); }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; color: var(--ink); line-height: 1.15; }

strong { color: var(--ink); font-weight: 700; }

/* ===== HEADER ===== */
.nav {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 28px;
  gap: 24px;
}
.logo {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 800;
  color: var(--grape);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--grad-orange);
  border-radius: 12px;
  font-size: 22px;
  transform: rotate(-8deg);
}
.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
}
.nav-links a {
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
}
.nav-links a:hover { color: var(--grape); }
.nav-actions { display: flex; gap: 10px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16px;
  padding: 12px 26px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.btn-orange {
  background: var(--grad-orange);
  color: white;
  box-shadow: 0 6px 18px rgba(255, 122, 24, 0.35);
}
.btn-orange:hover { color: white; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(255, 122, 24, 0.45); }
.btn-grape {
  background: var(--grad-main);
  color: white;
  box-shadow: var(--shadow-sm);
}
.btn-grape:hover { color: white; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent;
  color: var(--grape);
  border: 2px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--grape); color: var(--grape); }
.btn-lg { padding: 16px 38px; font-size: 18px; border-radius: 16px; }
.btn-sm { padding: 9px 18px; font-size: 14px; border-radius: 11px; }

/* ===== HERO ===== */
.hero {
  background: var(--grad-hero);
  color: white;
  padding: 70px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(255,194,60,0.25) 0%, transparent 65%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -60px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(124,217,87,0.18) 0%, transparent 65%);
}
.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 820px; margin: 0 auto; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}
.hero h1 {
  color: white;
  font-size: clamp(38px, 6vw, 64px);
  margin-bottom: 22px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.hero-lead {
  font-size: 20px;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 680px;
  margin: 0 auto 36px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-trust {
  margin-top: 40px;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
}
.hero-trust span { display: flex; align-items: center; gap: 8px; }
.hero-banner-img {
  margin: 44px auto 0;
  max-width: 760px;
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  border: 3px solid rgba(255,255,255,0.25);
}

/* ===== BONUS BANNER ===== */
.bonus-banner {
  background: var(--grad-orange);
  color: white;
  border-radius: 24px;
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: -50px auto 0;
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow-lg);
  flex-wrap: wrap;
}
.bonus-banner-text h3 { color: white; font-size: 28px; margin-bottom: 6px; }
.bonus-banner-text p { font-size: 16px; opacity: 0.95; }
.bonus-banner .btn-grape { background: white; color: var(--grape); }
.bonus-banner .btn-grape:hover { background: var(--bg-alt); color: var(--grape-deep); }

/* ===== SECTIONS ===== */
.section { padding: 70px 0; }
.section-soft { background: var(--bg-soft); }
.section-alt { background: var(--bg-alt); }

.section-head { margin-bottom: 40px; }
.section-head.center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-head h2 {
  font-size: clamp(30px, 4.5vw, 44px);
  margin-bottom: 14px;
}
.section-head p { font-size: 18px; color: var(--ink-soft); line-height: 1.6; }

/* ===== INTRO TEXT BLOCK ===== */
.intro-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 900px;
}
.intro-text strong { color: var(--ink); }

/* ===== TOC ===== */
.toc {
  background: var(--bg-soft);
  border: 2px solid var(--line);
  border-radius: 20px;
  padding: 28px 32px;
  margin: 36px 0;
}
.toc h3 { font-size: 20px; margin-bottom: 16px; color: var(--grape); }
.toc ol { list-style: none; counter-reset: toc; columns: 2; column-gap: 36px; }
.toc ol li { counter-increment: toc; margin-bottom: 10px; padding-left: 34px; position: relative; break-inside: avoid; }
.toc ol li::before {
  content: counter(toc);
  position: absolute;
  left: 0;
  top: 0;
  width: 24px; height: 24px;
  background: var(--grad-main);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  font-family: var(--serif);
}
.toc ol li a { color: var(--ink-soft); font-weight: 600; font-size: 15px; }
.toc ol li a:hover { color: var(--grape); }

/* ===== PROSE ===== */
.prose h2 {
  font-size: clamp(28px, 4vw, 38px);
  margin: 50px 0 18px;
  scroll-margin-top: 90px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 24px; margin: 32px 0 12px; }
.prose p { font-size: 17px; line-height: 1.8; color: var(--ink-soft); margin-bottom: 18px; }
.prose p strong { color: var(--ink); }
.prose ul { list-style: none; margin: 0 0 24px; padding: 0; }
.prose ul li {
  position: relative;
  padding: 9px 0 9px 34px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 18px; height: 18px;
  background: var(--grad-lime);
  border-radius: 6px;
  transform: rotate(45deg);
}
.prose ul li::after {
  content: '✓';
  position: absolute;
  left: 4px; top: 9px;
  color: white;
  font-size: 11px;
  font-weight: 800;
}

/* ===== DATA TABLE ===== */
.table-card {
  margin: 28px 0;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.data-table { width: 100%; border-collapse: collapse; background: white; }
.data-table th {
  background: var(--grad-main);
  color: white;
  text-align: left;
  padding: 16px 22px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
}
.data-table td {
  padding: 15px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-soft);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--bg-soft); }
.data-table td strong { color: var(--ink); }
.data-table td:first-child { font-weight: 700; color: var(--ink); }

/* ===== FEATURE BANNER (mid-page CTA) ===== */
.mid-banner {
  background: var(--grad-main);
  border-radius: 24px;
  padding: 44px;
  text-align: center;
  color: white;
  margin: 50px 0;
  position: relative;
  overflow: hidden;
}
.mid-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,194,60,0.2) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(255,77,141,0.2) 0%, transparent 50%);
}
.mid-banner-content { position: relative; z-index: 1; }
.mid-banner h3 { color: white; font-size: 30px; margin-bottom: 18px; }
.mid-banner .btn { background: white; color: var(--grape); }
.mid-banner .btn:hover { background: var(--bg-alt); color: var(--grape-deep); }

/* ===== INFO CARDS (feature grid) ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 36px;
}
.card {
  background: white;
  border: 2px solid var(--line);
  border-radius: 18px;
  padding: 26px 24px;
  transition: all .25s;
}
.card:hover { border-color: var(--grape-light); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--grad-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
  transform: rotate(-6deg);
}
.card:nth-child(2n) .card-icon { background: var(--grad-lime); }
.card:nth-child(3n) .card-icon { background: var(--grad-main); }
.card h4 { font-size: 19px; margin-bottom: 8px; }
.card p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; }

/* ===== FAQ ===== */
.faq { max-width: 820px; margin: 40px auto 0; }
.faq details {
  background: white;
  border: 2px solid var(--line);
  border-radius: 16px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq details[open] { border-color: var(--grape-light); box-shadow: var(--shadow-sm); }
.faq summary {
  padding: 20px 58px 20px 24px;
  cursor: pointer;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  list-style: none;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px;
  background: var(--grad-main);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 400;
}
.faq details[open] summary::after { content: '−'; }
.faq details p { padding: 0 24px 22px; color: var(--ink-soft); font-size: 16px; line-height: 1.7; }

/* ===== FINAL CTA ===== */
.final {
  background: var(--grad-hero);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255,194,60,0.2) 0%, transparent 50%);
}
.final-content { position: relative; z-index: 1; }
.final h2 { color: white; font-size: clamp(32px, 4.5vw, 50px); margin-bottom: 18px; }
.final p { font-size: 19px; opacity: 0.95; max-width: 600px; margin: 0 auto 32px; }
.final-fine { margin-top: 22px; font-size: 13px; opacity: 0.75; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 26px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer .logo { color: white; margin-bottom: 14px; }
.footer-about { max-width: 420px; font-size: 14px; line-height: 1.7; }
.footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h5 { color: white; font-family: var(--serif); font-size: 16px; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; font-size: 14px; }
.footer-col a { color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  opacity: 0.6;
  line-height: 1.7;
}
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  font-weight: 800;
  font-family: var(--serif);
  margin-bottom: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .toc ol { columns: 1; }
  .bonus-banner { flex-direction: column; text-align: center; padding: 32px 28px; }
  .footer-top { flex-direction: column; }
  .footer-links { gap: 40px; }
}
@media (max-width: 600px) {
  .nav-inner { padding: 12px 18px; }
  .nav-actions .btn-ghost { display: none; }
  .wrap, .wrap-narrow { padding: 0 18px; }
  .section { padding: 50px 0; }
  .hero { padding: 50px 0 70px; }
  .table-card { overflow-x: auto; }
  .data-table { min-width: 540px; }
}
