/* kitaplatz-anspruch.de - Casino Bonus ohne Einzahlung */
/* Terracotta rust + deep slate, airy minimalist */

:root {
  --terra: #C45D3E;
  --terra-dark: #A84B30;
  --terra-light: #E8836A;
  --terra-pale: #FDF2EF;
  --slate: #2F3640;
  --slate-mid: #485460;
  --slate-light: #6B7C8F;
  --slate-pale: #EEF1F4;
  --bg: #FAFAFA;
  --white: #FFFFFF;
  --dark: #1B1E23;
  --text: #333840;
  --text-muted: #6D737C;
  --text-light: #9BA1AA;
  --border: #E8EAED;
  --border-dark: #D1D5DA;
  --radius: 8px;
  --radius-sm: 5px;
  --max-w: 720px;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, 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.78;
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER ── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.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; padding: 13px 0; display: flex; align-items: center; gap: 4px; }
.logo-text { font-size: 0.95rem; font-weight: 800; color: var(--slate); letter-spacing: -0.02em; }
.logo-dot { color: var(--terra); font-size: 1.1rem; font-weight: 800; }

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

.main-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 14px 12px;
  transition: color 0.15s;
}

.main-nav a:hover { color: var(--slate); }

.main-nav a.active {
  color: var(--terra);
  font-weight: 700;
}

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

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

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

.hero h1 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

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

.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 0.76rem;
  color: var(--text-light);
}

.hero-meta img { width: 32px; height: 32px; border-radius: 50%; }

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

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

.toc-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--terra);
  margin-bottom: 8px;
}

.toc ol { list-style: decimal; margin: 0 0 0 18px; padding: 0; columns: 2; column-gap: 20px; }
.toc li { margin-bottom: 2px; }
.toc a { font-size: 0.82rem; color: var(--text-muted); text-decoration: none; }
.toc a:hover { color: var(--terra); }

/* ── HEADINGS ── */
h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin: 44px 0 10px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--terra);
  border-radius: 2px;
  margin-top: 6px;
}

h3 { font-size: 1.02rem; font-weight: 700; color: var(--slate); margin: 26px 0 8px; }
h4 { font-size: 0.92rem; font-weight: 600; margin: 16px 0 5px; }

/* ── PROSE ── */
p { margin-bottom: 14px; }
a { color: var(--terra); }
a:hover { color: var(--terra-dark); }
strong { font-weight: 600; }
ul, ol { margin: 0 0 16px 20px; }
li { margin-bottom: 4px; }

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

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

.info-box.terra { background: var(--terra-pale); border-color: rgba(196,93,62,0.15); }

.info-box.dark {
  background: var(--slate);
  color: rgba(255,255,255,0.88);
  border: none;
}

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

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

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}

.step-card .step-num {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--white);
  background: var(--terra);
  width: 28px;
  height: 28px;
  line-height: 28px;
  border-radius: 50%;
  margin-bottom: 8px;
}

.step-card h4 { margin: 0 0 4px; font-size: 0.86rem; text-align: center; }
.step-card p { margin: 0; font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

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

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

.data-table td { padding: 9px 14px; border-bottom: 1px solid var(--border); }
.data-table tr:last-child td { border-bottom: none; }

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

.faq-section details {
  border-bottom: 1px solid var(--border);
}

.faq-section details:first-child { border-top: 1px solid var(--border); }

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

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

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

.faq-section details[open] summary::after { content: '−'; }

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

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

.author-bio-img { width: 52px; height: 52px; 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.92rem; }
.author-bio-text .author-role { color: var(--terra); font-size: 0.78rem; font-weight: 600; margin-bottom: 5px; }
.author-bio-text p { font-size: 0.84rem; margin-bottom: 0; color: var(--text-muted); }

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

.related-pages h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-light);
  margin-bottom: 8px;
}

.related-pages h3::after { display: none; }

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

.related-links a {
  display: block;
  padding: 11px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--dark);
  font-size: 0.86rem;
  font-weight: 500;
  transition: border-color 0.15s;
}

.related-links a:hover { border-color: var(--terra); color: var(--terra); }

/* ── FOOTER ── */
.site-footer {
  background: var(--slate);
  color: rgba(255,255,255,0.45);
  padding: 36px 24px 20px;
  font-size: 0.78rem;
}

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

.footer-col h4 { color: var(--terra-light); font-size: 0.7rem; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.07em; }
.footer-col p { margin-bottom: 6px; line-height: 1.5; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 5px; }
.footer-col a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-col a:hover { color: #fff; }

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

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

/* ── CONTACT ── */
.contact-form { max-width: 500px; margin: 1.5rem 0 2rem; }
.form-group { margin-bottom: 0.9rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.25rem; font-size: 0.84rem; }
.form-group .req { color: var(--terra); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 9px 12px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.9rem; font-family: inherit; background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--terra); outline: none; box-shadow: 0 0 0 3px rgba(196,93,62,0.08);
}
.form-group textarea { resize: vertical; }
.btn-submit {
  display: inline-block; padding: 10px 24px; background: var(--terra); color: #fff;
  border: none; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 700; cursor: pointer;
}
.btn-submit:hover { background: var(--terra-dark); }

/* ── 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.5rem; }
  h2 { font-size: 1.15rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 18px; }
  .author-bio { flex-direction: column; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .toc ol { columns: 1; }
  .content-wrap { padding: 18px 16px 48px; }
}

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