/* stoppt-gendern-in-bw.de - Casino Bonus ohne Einzahlung */
/* Palette: Deep forest green + warm coral, editorial serif */

:root {
  --green: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #40916C;
  --green-pale: #E8F5EE;
  --coral: #E07A5F;
  --coral-dark: #C4593E;
  --coral-light: #F2A48D;
  --coral-pale: #FDF0EC;
  --bg: #F5F3F0;
  --bg-white: #FFFFFF;
  --dark: #1A1A1A;
  --dark-mid: #333333;
  --text: #2A2A2A;
  --text-muted: #636363;
  --text-light: #999999;
  --border: #E0DCD7;
  --border-dark: #CCC7C0;
  --radius: 8px;
  --radius-sm: 5px;
  --max-w: 730px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16.5px; scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER ── */
.site-header { background: var(--green); }

.header-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.logo { text-decoration: none; display: flex; align-items: baseline; gap: 3px; padding: 15px 0; }
.logo-main { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: #fff; }
.logo-dot { font-size: 1.1rem; font-weight: 700; color: var(--coral); }

.main-nav { display: flex; gap: 0; flex-wrap: wrap; }

.main-nav a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 16px 13px;
  transition: color 0.15s;
}

.main-nav a:hover { color: rgba(255,255,255,0.9); }

.main-nav a.active {
  color: #fff;
  font-weight: 700;
  background: rgba(255,255,255,0.08);
}

/* ── BREADCRUMB ── */
.breadcrumb {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 24px 0;
  font-size: 0.74rem;
  color: var(--text-light);
}

.breadcrumb a { color: var(--green-mid); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 5px; }

/* ── HERO ── */
.hero {
  max-width: var(--max-w);
  margin: 34px auto 0;
  padding: 0 24px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 14px;
}

.hero h1 span { color: var(--green-mid); }

.hero .lead {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 620px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-light);
}

.hero-meta img { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--green-pale); }

/* ── MAIN ── */
.content-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 26px 24px 60px;
}

/* ── TOC ── */
.toc {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 24px;
  margin: 0 0 32px;
}

.toc-title {
  font-family: var(--serif);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}

.toc ol {
  list-style: none;
  counter-reset: toc-counter;
  columns: 2;
  column-gap: 20px;
  margin: 0;
  padding: 0;
}

.toc li {
  counter-increment: toc-counter;
  margin-bottom: 2px;
}

.toc li::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--coral);
  font-size: 0.8rem;
  margin-right: 4px;
}

.toc a { font-size: 0.82rem; color: var(--text-muted); text-decoration: none; }
.toc a:hover { color: var(--green); }

/* ── HEADINGS ── */
h2 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin: 44px 0 12px;
  line-height: 1.28;
  position: relative;
  padding-left: 16px;
}

h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 4px;
  background: var(--coral);
  border-radius: 2px;
}

h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-mid);
  margin: 26px 0 8px;
}

h4 { font-size: 0.94rem; font-weight: 600; margin: 16px 0 6px; }

/* ── PROSE ── */
p { margin-bottom: 15px; }
a { color: var(--green-mid); }
strong { font-weight: 600; }
ul, ol { margin: 0 0 16px 22px; }
li { margin-bottom: 5px; }

/* ── IMAGES ── */
.article-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 26px 0;
  border: 1px solid var(--border);
}

/* ── INFO BOX ── */
.info-box {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green-mid);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 22px 0;
  font-size: 0.92rem;
}

.info-box.coral { border-left-color: var(--coral); background: var(--coral-pale); }

.info-box.dark {
  background: var(--green);
  color: rgba(255,255,255,0.9);
  border: none;
  border-radius: var(--radius-sm);
}

.info-box.dark a { color: var(--coral-light); }
.info-box strong { display: block; margin-bottom: 4px; }

/* ── STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.step-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--green-mid);
  border-radius: var(--radius);
  padding: 18px;
}

.step-card .step-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 8px;
}

.step-card h4 { margin: 0 0 5px; font-size: 0.9rem; }
.step-card p { margin: 0; font-size: 0.84rem; color: var(--text-muted); line-height: 1.55; }

/* ── TABLE ── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  font-size: 0.88rem;
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.data-table th {
  background: var(--green);
  color: #fff;
  text-align: left;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 0.82rem;
}

.data-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: rgba(27,67,50,0.02); }

/* ── FAQ ── */
.faq-section { margin: 36px 0; }

.faq-section details {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}

.faq-section summary {
  padding: 14px 42px 14px 18px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  font-size: 0.92rem;
  position: relative;
}

.faq-section summary:hover { color: var(--green-mid); }
.faq-section summary::-webkit-details-marker { display: none; }

.faq-section summary::after {
  content: '+';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--coral);
}

.faq-section details[open] summary::after { content: '−'; }
.faq-section details[open] summary { color: var(--green-mid); }

.faq-answer {
  padding: 0 18px 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── AUTHOR BIO ── */
.author-bio {
  margin: 40px 0;
  padding: 22px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.author-bio-img { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.author-bio-img img { width: 100%; height: 100%; object-fit: cover; }
.author-bio-text h3 { margin-top: 0; margin-bottom: 2px; font-size: 0.95rem; }
.author-bio-text .author-role { color: var(--green-mid); font-size: 0.8rem; font-weight: 600; margin-bottom: 6px; }
.author-bio-text p { font-size: 0.85rem; margin-bottom: 0; color: var(--text-muted); }

/* ── RELATED ── */
.related-pages { margin: 30px 0; }

.related-pages h3 {
  font-family: var(--sans);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 10px;
}

.related-links { display: grid; gap: 8px; }

.related-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--dark);
  font-size: 0.88rem;
  font-weight: 500;
  transition: border-color 0.15s;
}

.related-links a::before { content: '→'; color: var(--coral); font-weight: 700; }
.related-links a:hover { border-color: var(--green-mid); }

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 40px 24px 24px;
  font-size: 0.8rem;
}

.footer-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
}

.footer-col h4 { color: var(--coral-light); font-size: 0.74rem; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col p { margin-bottom: 8px; line-height: 1.55; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 6px; }
.footer-col a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  max-width: 1040px;
  margin: 20px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
}

.footer-disclaimer {
  max-width: 1040px;
  margin: 6px auto 0;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.12);
  text-align: center;
  line-height: 1.5;
}

/* ── CONTACT ── */
.contact-form { max-width: 520px; margin: 1.5rem 0 2rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.3rem; font-size: 0.86rem; }
.form-group .required { color: var(--coral); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.92rem; font-family: inherit; background: var(--bg-white); transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green-mid); outline: none; box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}
.form-group textarea { resize: vertical; }
.btn-submit {
  display: inline-block; padding: 11px 28px; background: var(--green-mid); color: #fff;
  border: none; border-radius: var(--radius-sm); font-size: 0.92rem; font-weight: 700; cursor: pointer;
}
.btn-submit:hover { background: var(--green); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  html { font-size: 15.5px; }
  .header-inner { flex-direction: column; align-items: flex-start; }
  .main-nav { width: 100%; overflow-x: auto; flex-wrap: nowrap; }
  .hero h1 { font-size: 1.6rem; }
  h2 { font-size: 1.2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 20px; }
  .author-bio { flex-direction: column; }
  .steps-grid { grid-template-columns: 1fr; }
  .toc ol { columns: 1; }
  .content-wrap { padding: 20px 16px 48px; }
}

@media print {
  .site-header, .site-footer, .toc, .main-nav { display: none; }
  body { font-size: 11pt; line-height: 1.5; background: #fff; }
}
