/* americanautos.de – Casino Bonus ohne Einzahlung */
/* Steel blue + warm charcoal, modern tech magazine */

:root {
  --blue: #3B82F6;
  --blue-dark: #2563EB;
  --blue-light: #60A5FA;
  --blue-pale: #EFF6FF;
  --char: #292524;
  --char-mid: #44403C;
  --char-light: #78716C;
  --stone: #F5F5F4;
  --white: #FFFFFF;
  --dark: #1C1917;
  --text: #3D3835;
  --text-muted: #6D6560;
  --text-light: #A8A29E;
  --border: #E7E5E4;
  --border-dark: #D6D3D1;
  --radius: 10px;
  --radius-sm: 6px;
  --max-w: 740px;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --mono: 'SFMono-Regular', Consolas, monospace;
}

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

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

/* ── HEADER ── */
.site-header {
  background: var(--char);
  border-bottom: 3px solid var(--blue);
}

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

.logo {
  text-decoration: none;
  padding: 14px 0;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.logo-text { font-size: 0.88rem; font-weight: 800; color: #fff; letter-spacing: 0.04em; text-transform: uppercase; }
.logo-accent { color: var(--blue); }

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

.main-nav a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 500;
  padding: 16px 13px;
  transition: color 0.15s;
  letter-spacing: 0.01em;
}

.main-nav a:hover { color: #fff; }
.main-nav a.active { color: var(--blue-light); font-weight: 700; }

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

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

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

.hero-tag {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
}

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

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

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

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

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

/* ── TOC ── */
.toc {
  background: var(--char);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 0 0 32px;
  color: rgba(255,255,255,0.7);
}

.toc-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-light);
  margin-bottom: 10px;
}

.toc ol { list-style: decimal; margin: 0 0 0 16px; padding: 0; columns: 2; column-gap: 20px; }
.toc li { margin-bottom: 3px; }
.toc a { font-size: 0.8rem; color: rgba(255,255,255,0.55); text-decoration: none; }
.toc a:hover { color: #fff; }

/* ── HEADINGS ── */
h2 {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--dark);
  margin: 48px 0 12px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  padding-left: 14px;
  border-left: 4px solid var(--blue);
}

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

/* ── PROSE ── */
p { margin-bottom: 15px; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); text-decoration: underline; }
strong { font-weight: 700; }
ul, ol { margin: 0 0 16px 20px; }
li { margin-bottom: 5px; }

/* ── IMAGES ── */
.article-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 26px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* ── INFO BOX ── */
.info-box {
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 22px 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

.info-box.blue { background: var(--blue-pale); border: 1px solid rgba(59,130,246,0.15); }

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

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

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

.step-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  text-align: center;
  position: relative;
}

.step-item .num {
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 4px;
}

.step-item h4 { margin: 0 0 3px; font-size: 0.82rem; text-align: center; }
.step-item p { margin: 0; font-size: 0.76rem; color: var(--text-muted); line-height: 1.45; }

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

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

.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) { background: var(--stone); }

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

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

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

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

.faq-section summary::after {
  content: '▸';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: var(--blue);
  transition: transform 0.15s;
}

.faq-section details[open] summary::after { transform: translateY(-50%) rotate(90deg); }

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

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

.author-bio-img { width: 52px; height: 52px; border-radius: var(--radius-sm); 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(--blue); font-size: 0.76rem; font-weight: 700; margin-bottom: 5px; }
.author-bio-text p { font-size: 0.82rem; margin-bottom: 0; color: var(--text-muted); }

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

.related-pages h3 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 8px;
  border-left: none;
  padding-left: 0;
}

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

.related-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 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, transform 0.1s;
}

.related-links a:hover { border-color: var(--blue); transform: translateX(3px); text-decoration: none; }
.related-links a::before { content: '→'; color: var(--blue); font-weight: 700; }

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

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

.footer-col h4 {
  color: var(--blue-light);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.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.3); text-decoration: none; }
.footer-col a:hover { color: #fff; }

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

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

/* ── CONTACT ── */
.contact-form { max-width: 480px; 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(--blue); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 10px 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(--blue); outline: none; box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}
.form-group textarea { resize: vertical; }
.btn-submit {
  display: inline-block; padding: 10px 26px; background: var(--blue); color: #fff;
  border: none; border-radius: var(--radius-sm); font-size: 0.88rem; font-weight: 700; cursor: pointer;
}
.btn-submit:hover { background: var(--blue-dark); }

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

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