/* shakebet7.de – stylesheet. Pure CSS, no JavaScript. */

:root {
  --bg: #110c1c;
  --bg-2: #171026;
  --surface: #1e1631;
  --surface-2: #281d42;
  --border: #3a2c5c;
  --text: #eee8f7;
  --text-muted: #b7aacb;
  --heading: #ffffff;
  --gold: #ffd400;
  --gold-2: #ff8a00;
  --gold-soft: rgba(255, 212, 0, 0.12);
  --red: #ff2d2d;
  --link: #ffd84d;
  --ink: #000000;
  --radius: 14px;
  --max: 1160px;
  --content: 820px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--link); text-decoration-color: rgba(255, 211, 110, 0.4); text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }
h1, h2, h3 { color: var(--heading); line-height: 1.22; font-weight: 900; letter-spacing: -0.01em; }
h1 { font-size: clamp(1.75rem, 4.2vw, 2.7rem); margin: 0 0 0.4em; }
h2 { font-size: clamp(1.35rem, 3vw, 1.8rem); margin: 2.4em 0 0.7em; padding-top: 0.2em; }
h2::after { content: ""; display: block; width: 64px; height: 5px; margin-top: 0.45em; transform: skewX(-20deg); background: linear-gradient(90deg, var(--gold), var(--gold-2) 60%, var(--red)); }
h3 { font-size: 1.18rem; margin: 1.8em 0 0.5em; }
p { margin: 0 0 1.1em; }
ul, ol { padding-left: 1.3em; margin: 0 0 1.2em; }
li { margin-bottom: 0.45em; }
li::marker { color: var(--gold); }
strong { color: var(--heading); }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* Buttons */
.btn { display: inline-block; font-weight: 800; text-decoration: none; border-radius: 10px; white-space: nowrap; transition: transform .15s ease, filter .15s ease; }
.btn-cta {
  background: linear-gradient(135deg, #fff04d 0%, var(--gold) 40%, var(--gold-2) 100%);
  color: #1a0d00;
  padding: 0.85rem 1.9rem;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.btn-cta:hover { filter: brightness(1.05); transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--ink); }
.btn-cta:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.92rem; }
.btn-lg { padding: 1rem 2.4rem; font-size: 1.12rem; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(17, 12, 28, 0.94); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; gap: 24px; min-height: 68px; }
.logo img { height: 40px; width: auto; }
.site-nav { margin-left: auto; }
.site-nav ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.site-nav li { margin: 0; }
.site-nav a { display: block; padding: 8px 12px; border-radius: 8px; color: var(--text); text-decoration: none; font-weight: 600; font-size: 0.96rem; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--gold); background: var(--gold-soft); }
.nav-toggle, .burger { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Breadcrumb */
.breadcrumb { background: var(--bg-2); border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; list-style: none; margin: 0; padding: 10px 0; }
.breadcrumb li { margin: 0; color: var(--text-muted); }
.breadcrumb li + li::before { content: "›"; margin: 0 8px; color: var(--gold); }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }

/* Hero */
.hero { position: relative; overflow: hidden; background: #000; min-height: 460px; display: flex; align-items: center; }
.hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: right center; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,12,28,.94) 0%, rgba(17,12,28,.82) 34%, rgba(17,12,28,.2) 62%, transparent 80%); }
.hero-inner { position: relative; z-index: 1; padding-top: 48px; padding-bottom: 48px; }
.hero-content { max-width: 560px; }
.hero-updated { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.2em; }
.hero-offer {
  display: flex; flex-direction: column; gap: 2px;
  padding: 16px 20px; margin-bottom: 24px; max-width: 460px;
  border: 3px solid var(--ink); border-radius: var(--radius);
  background: linear-gradient(135deg, #ff2d2d 0%, #ff6a00 100%);
  box-shadow: 6px 6px 0 var(--ink);
  transform: rotate(-1deg);
}
.hero-offer-label { text-transform: uppercase; letter-spacing: .12em; font-size: 0.75rem; font-weight: 800; color: #fff3b0; }
.hero-offer-value { font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 900; color: var(--gold); line-height: 1.15; text-shadow: 3px 3px 0 var(--ink); }
.hero-offer-sub { color: #fff; font-size: 0.95rem; font-weight: 600; }
.hero-note { margin: 12px 0 0; font-size: 0.8rem; color: var(--text-muted); }

/* Content */
.main { padding-top: 36px; padding-bottom: 64px; }
.content { max-width: var(--content); margin: 0 auto; }
.content > h2:first-of-type { margin-top: 1.4em; }

.toc { margin: 0 0 32px; }
.toc details { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.toc summary { cursor: pointer; padding: 14px 20px; font-weight: 800; color: var(--heading); list-style: none; display: flex; justify-content: space-between; }
.toc summary::-webkit-details-marker { display: none; }
.toc summary::after { content: "+"; color: var(--gold); font-size: 1.3rem; line-height: 1; }
.toc details[open] summary::after { content: "–"; }
.toc ol { margin: 0; padding: 4px 20px 16px 40px; columns: 2; column-gap: 32px; font-size: 0.95rem; }
.toc a { color: var(--text); text-decoration: none; }
.toc a:hover { color: var(--gold); }

.table-wrap { overflow-x: auto; margin: 0 0 1.5em; border: 1px solid var(--border); border-radius: var(--radius); -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
table.wide { min-width: 540px; }
th, td { padding: 12px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--border); }
th { background: var(--surface-2); color: var(--gold); font-weight: 700; white-space: nowrap; }
tr:last-child td { border-bottom: 0; }
tbody tr:nth-child(even) { background: rgba(255, 255, 255, 0.02); }

.cta-row { text-align: center; margin: 1.8em 0; }

.faq-item { background: var(--surface); border: 1px solid var(--border); border-left: 4px solid var(--gold); border-radius: 10px; padding: 16px 20px; margin-bottom: 12px; }
.faq-item h3 { margin: 0 0 6px; font-size: 1.05rem; }
.faq-item p { margin: 0; color: var(--text); }

.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.related-card { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px 18px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); color: var(--heading); text-decoration: none; font-weight: 700; line-height: 1.35; }
.related-card:hover { border-color: var(--gold); }
.related-card .arrow { color: var(--gold); font-size: 1.2rem; }

/* Footer */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 44px 0 90px; font-size: 0.93rem; color: var(--text-muted); }
.footer-inner { display: grid; grid-template-columns: 1.3fr 1fr 1.3fr; gap: 36px; }
.footer-brand img { height: 44px; width: auto; margin-bottom: 14px; }
.footer-title { color: var(--heading); font-weight: 800; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.footer-nav ul { list-style: none; padding: 0; columns: 2; }
.footer-nav a, .footer-rg a { color: var(--text-muted); }
.footer-nav a:hover, .footer-rg a:hover { color: var(--gold); }
.badge-18 { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--red); color: #fff; font-size: 0.78rem; font-weight: 900; }
.footer-bottom { margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--border); font-size: 0.85rem; }

/* Sticky mobile CTA */
.sticky-cta { display: none; }

@media (max-width: 960px) {
  .header-inner { gap: 12px; }
  .burger { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; margin-left: auto; cursor: pointer; order: 3; }
  .burger span:not(.sr-only) { display: block; height: 2px; background: var(--heading); border-radius: 2px; transition: transform .2s, opacity .2s; }
  .header-cta { order: 2; margin-left: auto; }
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); margin: 0; }
  .site-nav ul { flex-direction: column; padding: 8px 20px 16px; }
  .site-nav a { padding: 12px; font-size: 1.02rem; }
  .nav-toggle:checked ~ .site-nav { display: block; }
  .nav-toggle:checked ~ .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-header { position: sticky; }
  .header-inner { position: relative; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .container { padding: 0 16px; }
  .logo img { height: 32px; }
  .header-cta { display: none; }
  .hero { flex-direction: column; min-height: 0; align-items: stretch; }
  .hero-bg img { position: static; height: auto; aspect-ratio: 640 / 600; max-height: 320px; object-position: center; }
  .hero::after { top: auto; height: calc(100% - 200px); background: none; }
  .hero-bg { position: relative; display: block; }
  .hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, var(--bg) 100%); }
  .hero-offer { transform: none; }
  .hero-inner { padding-top: 0; padding-bottom: 28px; margin-top: -40px; }
  .hero-offer { max-width: none; }
  .hero .btn-lg { display: block; text-align: center; }
  .toc ol { columns: 1; }
  th, td { padding: 10px 12px; }
  table:not(.wide) th { white-space: normal; }
  .related { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .sticky-cta {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: rgba(17, 12, 28, 0.97); border-top: 2px solid var(--gold);
    font-weight: 800; color: #fff;
  }
}
