:root {
  --ink: #171916;
  --muted: #61675f;
  --paper: #f6f4ee;
  --white: #ffffff;
  --green: #184f3a;
  --green-2: #0f392a;
  --lime: #d8f06b;
  --gold: #d5a83f;
  --line: #dcded5;
  --danger: #b32929;
  --radius: 18px;
  --shadow: 0 18px 55px rgba(23, 25, 22, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 16px/1.65 Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body.has-sticky { padding-bottom: 78px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.eyebrow { margin: 0 0 12px; color: var(--green); font-size: .76rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.muted { color: var(--muted); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,244,238,.94); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(23,25,22,.1);
}
.header-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: -.03em; }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; color: var(--lime); background: var(--green); border-radius: 11px; font-size: .92rem; }
.brand small { display: block; color: var(--muted); font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; }
.nav { display: flex; gap: 26px; font-weight: 700; font-size: .9rem; }
.nav a:hover, .nav a.active { color: var(--green); }
.header-cta, .btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 46px; padding: 0 22px; border: 0; border-radius: 12px; font-weight: 850; cursor: pointer; }
.header-cta, .btn-primary { color: var(--lime); background: var(--green); box-shadow: 0 8px 20px rgba(24,79,58,.18); }
.header-cta:hover, .btn-primary:hover { background: var(--green-2); transform: translateY(-1px); }
.btn-secondary { color: var(--green); background: transparent; border: 1px solid var(--green); }
.menu-btn { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: var(--white); border-radius: 10px; font-size: 1.25rem; }
.mobile-nav { display: none; }

.hero { overflow: hidden; color: white; background: var(--green-2); position: relative; }
.hero:before { content: ""; position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px); background-size: 42px 42px; }
.hero-grid { position: relative; min-height: 620px; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 40px; padding: 70px 0 62px; }
.hero h1 { max-width: 790px; margin: 0; font-size: clamp(2.65rem, 6vw, 5.3rem); line-height: .98; letter-spacing: -.065em; }
.hero .lead { max-width: 680px; margin: 24px 0; color: #dce7df; font-size: 1.12rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 22px; }
.hero .btn-primary { color: var(--green-2); background: var(--lime); }
.hero .btn-primary:hover { background: white; }
.hero .btn-secondary { color: white; border-color: rgba(255,255,255,.45); }
.hero-points { display: flex; flex-wrap: wrap; gap: 9px; padding: 0; list-style: none; }
.hero-points li { padding: 7px 11px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; color: #dce7df; font-size: .8rem; }
.hero-card { position: relative; justify-self: end; width: min(100%, 390px); padding: 25px; color: var(--ink); background: var(--white); border-radius: 26px; box-shadow: 0 25px 70px rgba(0,0,0,.3); transform: rotate(1deg); }
.hero-card:before { content: "Neue Spieler"; position: absolute; top: -14px; right: 22px; padding: 7px 13px; background: var(--lime); border-radius: 999px; color: var(--green-2); font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.hero-card img { width: 100%; max-height: 365px; object-fit: cover; object-position: 50% 28%; border-radius: 17px; }
.hero-card strong { display: block; margin-top: 15px; font-size: 1.18rem; }
.hero-card p { margin: 5px 0 0; color: var(--muted); font-size: .88rem; }
.offer-label { display: inline-block; margin-top: 16px; color: var(--green); font-size: .72rem; font-weight: 900; letter-spacing: .1em; }
.hero-card .hero-card-cta { width: 100%; margin-top: 17px; color: var(--lime); background: var(--green); }

.trust-strip { position: relative; z-index: 2; margin-top: -28px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
.trust-item { padding: 22px; border-right: 1px solid var(--line); }
.trust-item:last-child { border: 0; }
.trust-item span { display: block; color: var(--muted); font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; }
.trust-item strong { display: block; margin-top: 3px; font-size: .97rem; }

.section { padding: 90px 0; }
.section.alt { background: var(--white); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 34px; }
.section-head h2, .article h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.05; letter-spacing: -.045em; }
.section-head p { max-width: 570px; margin: 0; color: var(--muted); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { position: relative; padding: 26px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 30px rgba(23,25,22,.05); }
.card-number { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 28px; border-radius: 50%; background: var(--lime); color: var(--green-2); font-weight: 900; }
.card h3 { margin: 0 0 9px; font-size: 1.23rem; }
.card p { margin: 0; color: var(--muted); }
.card .text-link { display: inline-block; margin-top: 18px; color: var(--green); font-weight: 850; }
.card.featured { color: white; background: var(--green); border-color: var(--green); }
.card.featured p { color: #dce7df; }
.card.featured .text-link { color: var(--lime); }

.seo-intro { max-width: 980px; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: -4px 0 34px; }
.seo-intro p { margin: 0; color: var(--muted); }
.game-category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.game-category { padding: 23px; border: 1px solid var(--line); border-radius: 17px; background: var(--paper); }
.game-category:nth-child(1) { color: white; background: var(--green); border-color: var(--green); }
.game-category:nth-child(1) p { color: #dce7df; }
.game-category:nth-child(1) .text-link { color: var(--lime); }
.game-icon { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 22px; border-radius: 13px; background: var(--white); font-size: 1.35rem; box-shadow: 0 8px 22px rgba(23,25,22,.09); }
.game-category h3 { margin: 0 0 8px; font-size: 1.1rem; }
.game-category p { min-height: 78px; margin: 0; color: var(--muted); font-size: .9rem; }
.game-category .text-link { display: inline-block; margin-top: 16px; color: var(--green); font-size: .77rem; font-weight: 900; }
.games-block { margin-top: 78px; }
.catalog-note { margin: 15px 0 0; color: var(--muted); font-size: .79rem; }
.provider-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 38px; align-items: center; margin-top: 78px; }
.provider-layout h2 { margin: 0 0 18px; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.05; letter-spacing: -.045em; }
.provider-layout p { color: var(--muted); }
.entity-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.entity-chips span { padding: 8px 12px; color: var(--green-2); background: #e8efd0; border: 1px solid #d3dea8; border-radius: 999px; font-size: .78rem; font-weight: 850; }
.provider-card { padding: 28px; color: white; background: var(--green-2); border-radius: 22px; box-shadow: var(--shadow); }
.provider-card .offer-label { color: var(--lime); }
.provider-card h3 { margin: 9px 0 16px; font-size: 1.55rem; }
.provider-card ol { padding-left: 20px; color: #dce7df; }
.provider-card li { margin: 9px 0; }
.provider-card .btn { width: 100%; margin-top: 10px; color: var(--green-2); background: var(--lime); }
.game-guide-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; margin-top: 45px; border: 1px solid var(--line); border-radius: 17px; background: var(--line); }
.game-guide-grid article { padding: 22px; background: var(--white); }
.game-guide-grid h3 { margin: 0 0 8px; color: var(--green); font-size: 1rem; }
.game-guide-grid p { margin: 0; color: var(--muted); font-size: .86rem; }

.check-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 52px; align-items: center; }
.mascot-panel { min-height: 530px; overflow: hidden; background: radial-gradient(circle at 50% 28%, #8b5d37 0, #39291f 44%, #131512 100%); border-radius: 28px; box-shadow: var(--shadow); }
.mascot-panel img { width: 100%; height: 530px; object-fit: cover; object-position: center 18%; }
.check-list { display: grid; gap: 13px; margin-top: 28px; }
.check-row { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 17px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); }
.check-icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; background: var(--lime); color: var(--green-2); font-weight: 950; }
.check-row strong { display: block; }
.check-row p { margin: 2px 0 0; color: var(--muted); font-size: .9rem; }

.comparison { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { padding: 17px 19px; text-align: left; border-bottom: 1px solid var(--line); }
th { background: var(--green-2); color: white; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; }
tr:last-child td { border-bottom: 0; }
.status { display: inline-block; padding: 4px 9px; border-radius: 999px; color: var(--green-2); background: #e5efc0; font-size: .74rem; font-weight: 850; }

.notice { padding: 24px; border-left: 5px solid var(--gold); background: #fff8e8; border-radius: 4px 14px 14px 4px; }
.notice strong { display: block; margin-bottom: 4px; }
.notice p { margin: 0; color: #675d47; }
.danger-note { border-left-color: var(--danger); background: #fff0f0; }
.article-wrap { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 48px; align-items: start; }
.article h2 { margin: 60px 0 18px; font-size: clamp(1.8rem, 3vw, 2.5rem); }
.article h2:first-child { margin-top: 0; }
.article h3 { margin: 30px 0 10px; font-size: 1.25rem; }
.article p, .article li { color: #454a44; }
.article ul, .article ol { padding-left: 22px; }
.toc { position: sticky; top: 94px; padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: 15px; }
.toc strong { display: block; margin-bottom: 12px; }
.toc a { display: block; padding: 7px 0; color: var(--muted); font-size: .88rem; }
.toc a:hover { color: var(--green); }
.faq { display: grid; gap: 11px; }
details { background: var(--white); border: 1px solid var(--line); border-radius: 13px; }
summary { padding: 19px 22px; cursor: pointer; font-weight: 800; }
details p { padding: 0 22px 20px; margin: 0; color: var(--muted); }

.subhero { padding: 72px 0 62px; color: white; background: var(--green-2); }
.subhero-grid { display: grid; grid-template-columns: 1fr .65fr; align-items: center; gap: 36px; }
.subhero h1 { margin: 0; max-width: 840px; font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1; letter-spacing: -.055em; }
.subhero p { max-width: 740px; color: #dce7df; font-size: 1.05rem; }
.offer-box { padding: 26px; color: var(--ink); background: var(--lime); border-radius: 20px; }
.offer-box span { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .09em; font-weight: 850; }
.offer-box strong { display: block; margin: 5px 0 16px; font-size: 1.55rem; line-height: 1.15; }
.steps { counter-reset: step; display: grid; gap: 14px; }
.step { position: relative; padding: 21px 22px 21px 76px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; }
.step:before { counter-increment: step; content: counter(step); position: absolute; left: 20px; top: 20px; display: grid; place-items: center; width: 38px; height: 38px; color: var(--lime); background: var(--green); border-radius: 10px; font-weight: 900; }
.step h3 { margin: 0 0 4px; }
.step p { margin: 0; color: var(--muted); }

.site-footer { padding: 52px 0 98px; color: #d8ded9; background: #101612; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(2, .7fr); gap: 45px; }
.site-footer .brand { color: white; }
.site-footer p { max-width: 560px; color: #9ca69e; }
.site-footer h3 { color: white; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; }
.site-footer a { display: block; margin: 8px 0; color: #b9c1bb; }
.footer-bottom { margin-top: 38px; padding-top: 22px; border-top: 1px solid #29332c; font-size: .8rem; color: #929d95; }
.sticky-cta { position: fixed; z-index: 60; left: 0; right: 0; bottom: 0; display: none; padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); background: rgba(16,22,18,.97); border-top: 3px solid var(--lime); box-shadow: 0 -10px 35px rgba(0,0,0,.22); }
.sticky-inner { width: min(100%, 700px); margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; }
.sticky-copy strong { display: block; color: white; font-size: .87rem; }
.sticky-copy span { display: block; color: #aab4ac; font-size: .68rem; }
.sticky-cta .btn { min-height: 44px; padding: 0 16px; color: var(--green-2); background: var(--lime); }

@media (max-width: 900px) {
  .nav, .header-cta { display: none; }
  .menu-btn { display: block; }
  .mobile-nav { position: fixed; z-index: 49; top: 72px; left: 0; right: 0; padding: 14px 20px 22px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .mobile-nav.open { display: grid; }
  .mobile-nav a { padding: 13px 0; border-bottom: 1px solid var(--line); font-weight: 800; }
  .hero-grid, .subhero-grid, .check-layout, .article-wrap { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 55px; }
  .hero-card { justify-self: start; width: min(100%, 520px); transform: none; }
  .hero-card img { max-height: 310px; object-position: center 27%; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .game-category-grid, .game-guide-grid { grid-template-columns: 1fr 1fr; }
  .provider-layout { grid-template-columns: 1fr; }
  .toc { position: static; order: -1; }
}

@media (max-width: 620px) {
  .container { width: min(1180px, calc(100% - 28px)); }
  .header-inner { min-height: 64px; }
  .brand small { display: none; }
  .mobile-nav { top: 64px; }
  .hero-grid { min-height: 0; padding: 48px 0 56px; }
  .hero h1 { font-size: clamp(2.55rem, 14vw, 4.2rem); }
  .hero .lead { font-size: 1rem; }
  .hero-card { padding: 16px; }
  .hero-card img { height: 250px; }
  .trust-strip { margin-top: -18px; }
  .trust-grid, .card-grid { grid-template-columns: 1fr; }
  .seo-intro, .game-category-grid, .game-guide-grid { grid-template-columns: 1fr; }
  .game-category p { min-height: 0; }
  .games-block, .provider-layout { margin-top: 58px; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); padding: 16px 18px; }
  .trust-item:nth-child(3) { border-bottom: 1px solid var(--line); }
  .section { padding: 68px 0; }
  .section-head { display: block; }
  .section-head p { margin-top: 14px; }
  .mascot-panel, .mascot-panel img { min-height: 0; height: 420px; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .sticky-cta { display: block; }
  .sticky-copy span { display: none; }
}


