/* elefantenhiphop.de - Casino Bonus ohne Einzahlung */
/* Palette: Electric purple + warm amber, modern geometric */

:root {
  --purple: #7C3AED;
  --purple-dark: #5B21B6;
  --purple-light: #A78BFA;
  --purple-pale: #EDE9FE;
  --amber: #F59E0B;
  --amber-dark: #D97706;
  --amber-light: #FCD34D;
  --amber-pale: #FFFBEB;
  --bg: #F8F8FA;
  --bg-white: #FFFFFF;
  --dark: #1E1B2E;
  --dark-mid: #2D2A3E;
  --text: #1E1B2E;
  --text-muted: #6B6980;
  --text-light: #9896A8;
  --border: #E4E2EE;
  --border-dark: #D0CEE0;
  --radius: 10px;
  --radius-sm: 6px;
  --max-w: 740px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
}

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

.header-inner {
  max-width: 1060px;
  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: 4px;
  padding: 14px 0;
}

.logo-main {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.logo-accent {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.03em;
}

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

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

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

.main-nav a.active {
  color: #fff;
  font-weight: 700;
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px 2px 0 0;
}

/* ── 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(--purple); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 5px; }

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

.hero h1 {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

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

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

.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  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(--purple-pale); }

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

/* ── TOC ── */
.toc {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 30px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.toc a {
  display: inline-block;
  padding: 5px 14px;
  background: var(--purple-pale);
  border-radius: 20px;
  font-size: 0.78rem;
  color: var(--purple-dark);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.15s;
  white-space: nowrap;
}

.toc a:hover { background: var(--purple); color: #fff; }

/* ── HEADINGS ── */
h2 {
  font-size: 1.42rem;
  font-weight: 900;
  color: var(--dark);
  margin: 44px 0 14px;
  padding-left: 14px;
  border-left: 4px solid var(--purple);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

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

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

/* ── PROSE ── */
p { margin-bottom: 15px; }
a { color: var(--purple); }
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-radius: var(--radius);
  padding: 16px 20px;
  margin: 22px 0;
  font-size: 0.92rem;
}

.info-box.purple { background: var(--purple-pale); border-color: rgba(124,58,237,0.15); }
.info-box.amber { background: var(--amber-pale); border-color: rgba(245,158,11,0.2); }

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

.info-box.dark a { color: var(--amber-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: linear-gradient(135deg, var(--purple-pale) 0%, var(--bg-white) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}

.step-card .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--purple);
  color: #fff;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.step-card h4 { margin: 0 0 5px; font-size: 0.92rem; }
.step-card p { margin: 0; font-size: 0.85rem; 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(--purple);
  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(124,58,237,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;
  overflow: hidden;
}

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

.faq-section summary:hover { color: var(--purple); }
.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: 400;
  color: var(--purple-light);
}

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

.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(--purple); 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-size: 0.85rem; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-light); }

.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(--purple); font-weight: 700; }
.related-links a:hover { border-color: var(--purple); }

/* ── 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: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
}

.footer-col h4 { color: var(--amber); font-size: 0.76rem; 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: 1060px;
  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: 1060px;
  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(--purple); }
.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(--purple); outline: none; box-shadow: 0 0 0 3px rgba(124,58,237,0.1); }
.form-group textarea { resize: vertical; }
.btn-submit {
  display: inline-block; padding: 11px 28px; background: var(--purple); color: #fff;
  border: none; border-radius: var(--radius-sm); font-size: 0.92rem; font-weight: 700; cursor: pointer;
}
.btn-submit:hover { background: var(--purple-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.65rem; }
  h2 { font-size: 1.2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 20px; }
  .author-bio { flex-direction: column; }
  .steps-grid { grid-template-columns: 1fr; }
  .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; }
}
