/* Sportwetten.Bonus - Warm Wood Theme */
:root {
  --clr-wood: #2e1a0e;
  --clr-wood-mid: #3d2510;
  --clr-orange: #c87422;
  --clr-orange-light: #e09040;
  --clr-warm: #f7f2ec;
  --clr-text: #2a1a0a;
  --clr-light-text: #f0e8dc;
  --ff-sans: system-ui, -apple-system, sans-serif;
  --ff-serif: Georgia, 'Times New Roman', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--clr-text);
  background: var(--clr-warm);
}

a { color: var(--clr-orange); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--clr-wood);
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
}

.site-logo {
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}

.site-logo .logo-dot { color: var(--clr-orange); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--clr-light-text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.main-nav a {
  color: var(--clr-light-text);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.4rem 0.75rem;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--clr-orange);
  background: rgba(200, 116, 34, 0.1);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #1a0d05 0%, #3d2510 50%, #2e1a0e 100%);
  padding: 5.5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(200, 116, 34, 0.03) 40px,
    rgba(200, 116, 34, 0.03) 41px
  );
}

.hero-inner { position: relative; z-index: 1; }

.hero-title {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: var(--clr-orange-light);
  font-size: 1.2rem;
  font-family: var(--ff-serif);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.hero-line {
  width: 60px;
  height: 3px;
  background: var(--clr-orange);
  margin: 0 auto;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--clr-orange);
  color: #fff;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.stats-bar span { white-space: nowrap; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--clr-wood-mid);
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
  color: var(--clr-light-text);
}

.breadcrumb a { color: var(--clr-orange-light); }
.breadcrumb a:hover { color: #fff; }

/* ===== CONTENT ===== */
.content-section {
  padding: 3rem 1.5rem;
}

.content-section.light {
  background: var(--clr-warm);
  color: var(--clr-text);
}

.content-section.dark {
  background: var(--clr-wood);
  color: var(--clr-light-text);
}

.content-inner {
  max-width: 820px;
  margin: 0 auto;
}

.content-inner h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--clr-wood);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.dark .content-inner h1 {
  color: var(--clr-orange-light);
}

.content-inner h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-wood);
  border-bottom: 2px solid var(--clr-orange);
  padding-bottom: 0.4rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.dark .content-inner h2 {
  color: var(--clr-orange-light);
  border-bottom-color: rgba(200, 116, 34, 0.5);
}

.content-inner h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-orange);
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
}

.dark .content-inner h3 {
  color: var(--clr-orange-light);
}

.content-inner p {
  margin-bottom: 1rem;
}

/* ===== ANCHOR NAV ===== */
.art-anchors {
  background: #ede7de;
  border-left: 4px solid var(--clr-orange);
  padding: 0.75rem 1rem;
  margin: 1.25rem 0;
  font-size: 0.9rem;
  border-radius: 0 3px 3px 0;
  line-height: 1.8;
}

.art-anchors span { color: var(--clr-text); font-weight: 600; }
.art-anchors a { color: var(--clr-wood); margin: 0 0.15rem; }
.art-anchors a:hover { color: var(--clr-orange); }

/* ===== TABLE ===== */
.tbl-wrap { overflow-x: auto; margin: 1.25rem 0; }

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.data-table th {
  background: var(--clr-wood);
  color: #fff;
  padding: 0.65rem 1rem;
  text-align: left;
  font-weight: 700;
  white-space: nowrap;
}

.data-table td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid #e0d5c8;
}

.data-table tr:nth-child(even) td {
  background: #efe8df;
}

.data-table tr:hover td {
  background: #e8ddd1;
}

/* ===== CHECKLIST ===== */
.art-checklist {
  list-style: none;
  margin: 1rem 0;
}

.art-checklist li {
  padding: 0.3rem 0;
  padding-left: 1.75rem;
  position: relative;
}

.art-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clr-orange);
  font-weight: bold;
}

/* ===== STEPS ===== */
.art-steps {
  list-style: decimal inside;
  margin: 1rem 0;
}

.art-steps li {
  padding: 0.3rem 0 0.3rem 0.5rem;
}

/* ===== INFO BOX ===== */
.art-info {
  background: #efe8df;
  border-left: 4px solid var(--clr-orange);
  padding: 1rem 1.25rem;
  border-radius: 0 3px 3px 0;
  margin: 1rem 0;
}

.dark .art-info {
  background: rgba(200, 116, 34, 0.1);
}

/* ===== MYTHS LIST ===== */
.art-myths {
  list-style: none;
  margin: 1rem 0;
}

.art-myths li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
  border-bottom: 1px solid #e0d5c8;
}

.art-myths li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #c0392b;
  font-weight: bold;
  font-size: 1.1rem;
}

/* ===== FAQ ===== */
.faq-list { margin: 1rem 0; }

.faq-item { border-bottom: 1px solid #d5c8b8; }

.dark .faq-item { border-bottom-color: rgba(255,255,255,0.15); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-wood);
  font-family: inherit;
  line-height: 1.4;
}

.dark .faq-q { color: var(--clr-light-text); }

.faq-q::after {
  content: '+';
  color: var(--clr-orange);
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.2s;
}

.faq-q.open::after { content: '−'; }

.faq-a {
  display: none;
  padding: 0 0 0.75rem 0;
}

.faq-a p { margin-bottom: 0; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--clr-wood);
  color: var(--clr-light-text);
  padding: 3.5rem 1.5rem 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-col h3 {
  color: var(--clr-orange-light);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.4rem; }

.footer-col a {
  color: var(--clr-orange-light);
  font-size: 0.9rem;
}

.footer-col a:hover { color: #fff; }

.footer-col p { font-size: 0.88rem; opacity: 0.8; line-height: 1.6; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.82rem;
  opacity: 0.65;
  text-align: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.footer-note {
  font-size: 0.8rem;
  color: var(--clr-orange-light);
  margin-top: 0.5rem;
  opacity: 0.8;
}

/* ===== BACK TO TOP ===== */
.btt {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--clr-orange);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
  transition: background 0.2s;
  z-index: 50;
}

.btt:hover { background: var(--clr-orange-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-title { font-size: 2rem; }
  .content-inner h1 { font-size: 1.7rem; }
  .content-inner h2 { font-size: 1.3rem; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--clr-wood-mid);
    padding: 1rem;
    z-index: 200;
  }

  .main-nav.open { display: block; }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav a {
    display: block;
    padding: 0.7rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .hdr-inner { position: relative; }

  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }

  .stats-bar { gap: 1.5rem; justify-content: flex-start; }

  .hero-title { font-size: 1.6rem; letter-spacing: 0.06em; }
  .hero { padding: 4rem 1.5rem 3rem; }
}

@media (max-width: 480px) {
  .hero { padding: 3rem 1rem 2rem; }
  .hero-title { font-size: 1.4rem; }
  .stats-bar { flex-direction: column; gap: 0.5rem; }
  .content-inner h1 { font-size: 1.45rem; }
}
