
:root{
  --bg:#f6f2ea;
  --bg-soft:#f1ece3;
  --panel:#ffffff;
  --panel-soft:#fcfaf6;
  --panel-tint:#f8f4ee;
  --text:#15181c;
  --text-soft:#272c33;
  --muted:#6f757d;
  --muted-2:#9399a1;
  --line:rgba(21,24,28,.075);
  --line-strong:rgba(21,24,28,.12);
  --accent:#8b7a62;
  --accent-soft:#b8ac9a;
  --accent-dark:#23272d;
  --radius:24px;
  --radius-sm:14px;
  --shadow:0 24px 60px rgba(19,22,26,.07);
  --shadow-soft:0 12px 28px rgba(19,22,26,.05);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    radial-gradient(circle at 10% -10%, rgba(255,255,255,.96), transparent 30%),
    radial-gradient(circle at 100% 14%, rgba(224,215,201,.52), transparent 25%),
    linear-gradient(180deg,#fbf8f3 0%, #f4efe7 100%);
  color:var(--text);
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{color:inherit;text-decoration:none}
.wrap{width:min(1180px,calc(100% - 44px));margin-inline:auto}
.glow{display:none}

.site-header{
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid rgba(21,24,28,.05);
  background:rgba(251,248,243,.82);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  letter-spacing:-.03em;
}
.brand-mark{display:grid;place-items:center;width:38px;height:38px;flex:0 0 38px}
.site-header nav{
  display:flex;
  gap:28px;
  color:#727881;
  font-size:13px;
  font-weight:650;
}
.site-header nav a{
  position:relative;
  transition:color .18s ease;
}
.site-header nav a:hover{color:#15181c}
.site-header nav a:after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:-8px;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(139,122,98,.85), transparent);
  transform:scaleX(0);
  transition:transform .18s ease;
}
.site-header nav a:hover:after{transform:scaleX(1)}

.hero{padding:108px 0 92px}
.eyebrow,.kicker{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.19em;
  font-weight:850;
  color:#8d806d;
}
.live-dot{
  display:inline-block;
  width:7px;height:7px;
  border-radius:50%;
  background:#191d22;
  margin-right:8px;
  box-shadow:0 0 0 5px rgba(25,29,34,.045);
}
h1{
  margin:20px 0 24px;
  max-width:980px;
  font-size:clamp(56px,8vw,96px);
  line-height:.93;
  letter-spacing:-.07em;
  font-weight:800;
  color:#16191d;
}
h1 span{color:#7f7568}
.hero>p{
  max-width:700px;
  margin:0;
  color:#5f666f;
  font-size:19px;
  line-height:1.75;
}
.hero-actions{display:flex;gap:12px;margin-top:36px}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 20px;
  border-radius:13px;
  font-size:13px;
  font-weight:800;
  transition:transform .18s ease,background .18s ease,border-color .18s ease, box-shadow .18s ease;
}
.button.primary{
  background:linear-gradient(145deg,#1c2026,#5d636c);
  color:#fff;
  box-shadow:0 14px 26px rgba(20,24,30,.12);
}
.button.primary:hover{transform:translateY(-1px);box-shadow:0 18px 34px rgba(20,24,30,.14)}
.button.ghost{
  border:1px solid rgba(21,24,28,.11);
  background:rgba(255,255,255,.72);
  color:#161a1f;
}
.button.ghost:hover{background:#fff;border-color:rgba(21,24,28,.16)}
.meta-line{margin-top:24px;color:#7d838c;font-size:12px}

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:20px;
  margin-bottom:26px;
}
.section-head h2,.split-section h2{
  margin:8px 0 0;
  font-size:clamp(35px,5vw,52px);
  font-weight:760;
  letter-spacing:-.05em;
  color:#16191d;
}
.section-note{color:#81878f;font-size:13px}

.model-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.model-card,
.tips-card,
.bonus-card,
.prompt-card,
.embed-card,
.rule-grid article{
  background:linear-gradient(180deg, rgba(252,250,246,.9) 0%, rgba(255,255,255,1) 100%);
  border:1px solid rgba(21,24,28,.07);
  box-shadow:var(--shadow-soft);
}
.model-card{
  position:relative;
  padding:28px;
  border-radius:var(--radius);
  overflow:hidden;
}
.model-card:after{
  content:"";
  position:absolute;
  left:28px;
  right:28px;
  top:0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(139,122,98,.55), transparent);
}
.rank{position:absolute;top:24px;right:24px;color:#8d939b;font-weight:800}
.model-icon{
  width:54px;height:54px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:#f8f4ee;
  border:1px solid rgba(21,24,28,.07);
  color:#1b1f24;
  font-size:12px;
  font-weight:900;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.95);
}
.model-copy h3{margin:20px 0 4px;font-size:22px;font-weight:780;letter-spacing:-.025em;color:#16191d}
.model-copy p{margin:0;color:#727882;font-size:13px}
.big-score{
  display:flex;
  align-items:flex-end;
  gap:9px;
  margin:30px 0 22px;
  font-size:56px;
  font-weight:830;
  letter-spacing:-.055em;
  color:#171a1e;
}
.big-score small{margin-bottom:10px;color:#8c929a;font-size:10px;font-weight:800;letter-spacing:.09em;text-transform:uppercase}
#ranking{padding-top:56px}
.stats{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  padding-top:18px;
  border-top:1px solid rgba(21,24,28,.065);
}
.stats strong{font-size:17px;color:#171a1e}
.stats span{color:#8a9098;font-size:10px;text-transform:uppercase;letter-spacing:.05em}

#spieltag{padding-top:112px}
#bonus{padding-top:112px}
.matchday-switcher{
  display:grid;
  grid-template-columns:46px minmax(0,400px) 46px;
  justify-content:center;
  align-items:center;
  gap:10px;
  margin-bottom:20px;
}
.matchday-arrow{
  display:flex;
  align-items:center;
  justify-content:center;
  width:46px;height:46px;
  border:1px solid rgba(21,24,28,.075);
  border-radius:13px;
  background:#fff;
  color:#4f5660;
  font-size:28px;
  line-height:1;
  box-shadow:0 8px 16px rgba(19,22,26,.035);
  transition:.18s ease;
}
.matchday-arrow:hover{background:#fdfbf8;border-color:rgba(21,24,28,.14)}
.matchday-arrow.disabled{opacity:.25;pointer-events:none}
.matchday-select-form{
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;
  gap:9px;
  padding:8px;
  border:1px solid rgba(21,24,28,.075);
  border-radius:14px;
  background:#fff;
  box-shadow:0 8px 16px rgba(19,22,26,.035);
}
.matchday-select-form label{padding-left:6px;color:#7c828a;font-size:11px;font-weight:750;text-transform:uppercase;letter-spacing:.06em}
.matchday-select-form select{
  height:38px;
  min-width:0;
  padding:0 34px 0 12px;
  border:1px solid rgba(21,24,28,.075);
  border-radius:10px;
  background:#fbf9f4;
  color:#16191d;
  font:720 13px/1 system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}
.matchday-select-form button{
  height:38px;
  padding:0 14px;
  border:1px solid rgba(21,24,28,.09);
  border-radius:10px;
  background:linear-gradient(145deg,#1d2228,#5f656d);
  color:#fff;
  font:800 12px/1 system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  cursor:pointer;
}

.tips-card,.bonus-card{border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow)}
.tips-head,.match-row{
  display:grid;
  grid-template-columns:minmax(360px,2.7fr) repeat(3,minmax(100px,.65fr)) minmax(100px,.65fr);
  align-items:center;
}
.tips-head{
  min-height:52px;
  padding:0 20px;
  border-bottom:1px solid rgba(21,24,28,.065);
  background:#fbf8f2;
  color:#81878f;
  font-size:10px;
  font-weight:850;
  text-transform:uppercase;
  letter-spacing:.1em;
}
.tips-head span:not(:first-child){text-align:center}
.match-row{min-height:88px;padding:12px 20px;border-top:1px solid rgba(21,24,28,.05)}
.match-row:first-of-type{border-top:0}
.fixture{display:flex;align-items:center;gap:18px}
.kickoff{display:flex;flex-direction:column;width:78px;color:#81878f;font-size:10px;line-height:1.45}
.kickoff strong{margin-top:3px;color:#1b1f24;font-size:13px}
.teams{display:grid;grid-template-columns:minmax(0,1fr) 28px minmax(0,1fr);align-items:center;gap:8px;font-size:14px;font-weight:720;color:#171a1e}
.teams b{color:#9aa0a8;font-size:9px;text-align:center}
.tip-cell,.result-cell{text-align:center;font-size:18px;font-weight:820;letter-spacing:-.02em;color:#171a1e}
.result-cell{color:#847968}
.fineprint{margin:13px 4px 0;color:#7e848d;font-size:11px;line-height:1.55}
.tips-mobile-labels{display:none}

.bonus-head,.bonus-row{display:grid;grid-template-columns:minmax(270px,1.7fr) repeat(3,minmax(120px,.7fr))}
.bonus-head{min-height:52px;background:#fbf8f2;border-bottom:1px solid rgba(21,24,28,.065)}
.bonus-head span{display:flex;align-items:center;justify-content:center;padding:13px 16px;color:#81878f;font-size:10px;font-weight:850;text-transform:uppercase;letter-spacing:.09em}
.bonus-head span:first-child{justify-content:flex-start}
.bonus-row{min-height:68px;border-bottom:1px solid rgba(21,24,28,.05)}
.bonus-row:last-child{border-bottom:0}
.bonus-question{display:flex;align-items:center;padding:16px 18px;color:#1f2328;font-size:13px;font-weight:720;line-height:1.45}
.bonus-value{display:flex;align-items:center;justify-content:center;padding:14px;border-left:1px solid rgba(21,24,28,.05);color:#191d22;font-size:13px;font-weight:780;text-align:center;line-height:1.5;white-space:pre-line}
.bonus-mobile-values{display:none}

.prompts-section{padding-top:112px}
.prompt-section-head{margin-bottom:18px}
.prompts-intro{max-width:760px;margin:0 0 28px;color:#6d747d;font-size:15px;line-height:1.76}
.prompt-equal-badge{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border:1px solid rgba(21,24,28,.075);
  border-radius:999px;
  background:#fff;
  color:#837867;
  font-size:10px;
  font-weight:820;
  letter-spacing:.04em;
}
.prompt-stack{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;align-items:start}
.prompt-card{overflow:hidden;border-radius:var(--radius);transition:border-color .18s ease, transform .18s ease}
.prompt-card:hover{border-color:rgba(21,24,28,.11);transform:translateY(-1px)}
.prompt-card[open]{grid-column:1/-1;transform:none}
.prompt-card summary{
  min-height:210px;
  padding:28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  list-style:none;
  cursor:pointer;
}
.prompt-card[open] summary{min-height:auto}
.prompt-card summary::-webkit-details-marker{display:none}
.prompt-summary-copy{min-width:0}
.prompt-topline{display:flex;align-items:center;gap:9px;margin-bottom:18px}
.prompt-number{
  width:32px;height:32px;
  display:grid;
  place-items:center;
  border:1px solid rgba(21,24,28,.075);
  border-radius:10px;
  background:#f8f4ee;
  color:#1b1f24;
  font-size:10px;
  font-weight:900;
}
.prompt-tag{
  min-height:28px;
  padding:0 9px;
  display:inline-flex;
  align-items:center;
  border:1px solid rgba(21,24,28,.06);
  border-radius:999px;
  background:#fbf8f2;
  color:#8a8175;
  font-size:9px;
  font-weight:850;
  text-transform:uppercase;
  letter-spacing:.11em;
}
.prompt-card h3{margin:0 0 9px;font-size:clamp(23px,3vw,30px);font-weight:760;letter-spacing:-.038em;color:#16191d}
.prompt-card summary p{max-width:570px;margin:0;color:#737981;font-size:13px;line-height:1.68}
.prompt-action{
  flex:0 0 auto;
  min-height:40px;
  padding:0 13px;
  display:inline-flex;
  align-items:center;
  gap:9px;
  border:1px solid rgba(21,24,28,.075);
  border-radius:11px;
  background:#fbf8f2;
  color:#4e5560;
  font-size:11px;
  font-weight:800;
  white-space:nowrap;
}
.prompt-chevron{color:#847b6e;font-size:19px;line-height:1;transition:transform .18s ease}
.prompt-card[open] .prompt-chevron{transform:rotate(180deg)}
.prompt-body{border-top:1px solid rgba(21,24,28,.065)}
.prompt-toolbar{padding:13px 16px;display:flex;align-items:center;justify-content:space-between;gap:16px;background:#fbf8f2;color:#7f858d;font-size:11px}
.copy-prompt{padding:9px 12px;border:1px solid rgba(21,24,28,.075);border-radius:10px;background:#fff;color:#2a2e34;font:inherit;font-weight:800;cursor:pointer}
.copy-prompt:hover{background:#f9f7f2}
.prompt-hint{margin:0;padding:11px 16px;border-top:1px solid rgba(21,24,28,.035);background:#fbf8f2;color:#7d838c;font-size:11px;line-height:1.55}
.prompt-textarea,.prompt-body pre{
  margin:0;
  width:100%;
  padding:22px;
  border:0;
  border-top:1px solid rgba(21,24,28,.035);
  outline:none;
  background:#fefdfb;
  color:#252a30;
  font:12.5px/1.72 ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono",monospace;
  white-space:pre-wrap;
  word-break:break-word;
}
.prompt-textarea{min-height:520px;max-height:720px;resize:vertical;overflow:auto}
.prompt-body pre{max-height:640px;overflow:auto}
.prompt-textarea:focus{box-shadow:inset 0 0 0 1px rgba(21,24,28,.10)}
.matchday-toolbar{align-items:flex-end}
.matchday-control{display:flex;flex-direction:column;gap:7px}
.matchday-control label{color:#7d7466;font-size:11px;font-weight:780}
.matchday-input-wrap{display:flex;align-items:center;gap:8px}
.matchday-input-wrap input{width:80px;height:40px;padding:0 11px;border:1px solid rgba(21,24,28,.075);border-radius:10px;outline:none;background:#fff;color:#181c21;font:780 15px/1 system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif}
.matchday-input-wrap span{color:#8a9098;font-size:11px}

.split-section{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;padding-top:112px}
.split-section p{max-width:560px;color:#6e747c;line-height:1.75}
.split-section code{padding:2px 6px;border-radius:6px;background:#f5f1ea;color:#4c524f;font-size:.9em}
.embed-card{min-height:276px;display:grid;place-items:center;padding:20px;border-radius:var(--radius)}
.embed-placeholder{display:flex;flex-direction:column;align-items:center;gap:9px;text-align:center}
.embed-placeholder span{width:62px;height:62px;display:grid;place-items:center;border-radius:18px;background:linear-gradient(145deg,#1f2328,#5c626b);color:#fff;font-weight:950;box-shadow:0 12px 22px rgba(18,22,28,.12)}
.embed-placeholder strong{font-size:19px;color:#16191d}
.embed-placeholder small{color:#858b93}

.rules{padding:112px 0}
.rule-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.rule-grid article{padding:24px;border-radius:20px}
.rule-grid article>span{color:#8d8375;font-size:10px;font-weight:900;letter-spacing:.08em}
.rule-grid h3{margin:14px 0 8px;font-size:19px;font-weight:740;color:#171a1e}
.rule-grid p{margin:0;color:#737981;font-size:13px;line-height:1.7}

footer{
  min-height:132px;
  padding:28px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  border-top:1px solid rgba(21,24,28,.05);
  color:#7c828b;
  font-size:11px;
}
footer div{display:flex;flex-direction:column;gap:3px}
footer strong{color:#16191d;font-size:15px}
footer p{max-width:620px;margin:0;text-align:right;line-height:1.58}

@media(max-width:900px){
  .model-grid,.rule-grid{grid-template-columns:1fr}
  .split-section{grid-template-columns:1fr;gap:24px}
  .site-header nav{display:none}
  .hero{padding:80px 0 70px}
  .desktop-only{display:none!important}
  .match-row{display:block;padding:17px}
  .fixture{align-items:flex-start}
  .teams{width:100%;grid-template-columns:1fr 24px 1fr}
  .tips-mobile-labels{display:grid;grid-template-columns:repeat(4,1fr);gap:8px;margin-top:15px}
  .tips-mobile-labels div{min-width:0;padding:10px 6px;display:flex;flex-direction:column;gap:4px;border:1px solid rgba(21,24,28,.06);border-radius:12px;background:#fbf8f2;text-align:center}
  .tips-mobile-labels small{color:#8b9097;font-size:9px;text-transform:uppercase}
  .tips-mobile-labels strong{font-size:15px}
  .prompt-stack{grid-template-columns:1fr}
  .prompt-card[open]{grid-column:auto}
  .prompt-card summary{min-height:auto}
  footer{align-items:flex-start;flex-direction:column}
  footer p{text-align:left}
}

@media(max-width:760px){
  .bonus-head{display:none!important}
  .bonus-row{display:block;padding:15px}
  .bonus-question{padding:0 0 11px;color:#20252b;font-size:13px}
  .bonus-mobile-values{display:grid;grid-template-columns:1fr;gap:7px}
  .bonus-mobile-values div{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;padding:10px 11px;border:1px solid rgba(21,24,28,.06);border-radius:11px;background:#fbf8f2}
  .bonus-mobile-values small{color:#7d838b;font-weight:700}
  .bonus-mobile-values strong{max-width:62%;color:#181c21;font-size:12px;text-align:right;white-space:pre-line;line-height:1.45}
}

@media(max-width:700px){
  .prompt-equal-badge{white-space:normal}
  .prompts-intro{font-size:14px}
  .prompt-card summary{position:relative;display:block;padding:20px 18px}
  .prompt-card h3{font-size:23px}
  .prompt-card summary p{font-size:12.5px}
  .prompt-action{width:100%;margin-top:17px;justify-content:space-between}
  .prompt-toolbar{align-items:flex-start;flex-direction:column}
  .copy-prompt{width:100%;min-height:42px}
  .prompt-textarea{min-height:460px;max-height:650px;padding:15px;font-size:11px}
  .matchday-toolbar{align-items:stretch}
  .matchday-control{width:100%}
}

@media(max-width:620px){
  .matchday-switcher{grid-template-columns:42px minmax(0,1fr) 42px;gap:8px}
  .matchday-arrow{width:42px;height:44px}
  .matchday-select-form{grid-template-columns:1fr;padding:7px}
  .matchday-select-form label,.matchday-select-form button{display:none}
  .matchday-select-form select{width:100%;height:40px}
}

@media(max-width:520px){
  .wrap{width:min(100% - 24px,1180px)}
  h1{font-size:48px}
  .hero>p{font-size:16px}
  .hero-actions{flex-direction:column;align-items:stretch}
  .section-head{align-items:flex-start;flex-direction:column}
  .fixture{gap:8px}
  .kickoff{width:65px}
  .teams{font-size:12px}
  .tips-mobile-labels{grid-template-columns:repeat(2,1fr)}
}

.brand-mark{overflow:hidden}
.brand-mark img{width:38px;height:38px;display:block}


/* SEO content block: visible, concise and consistent with the light premium design */
.seo-intro{padding-top:0;padding-bottom:10px}
.seo-intro-card{max-width:940px;padding:28px 30px;border:1px solid rgba(64,54,43,.08);border-radius:22px;background:rgba(255,255,255,.7);box-shadow:0 14px 45px rgba(51,43,34,.05)}
.seo-intro-card h2{margin:8px 0 12px;max-width:820px;font-size:clamp(24px,3vw,38px);line-height:1.12;letter-spacing:-.035em;color:#191d22}
.seo-intro-card p{max-width:860px;margin:0;color:#646a72;font-size:14px;line-height:1.75}
.seo-intro-card p+p{margin-top:10px}
.seo-intro-card strong{color:#252a30;font-weight:750}
@media(max-width:620px){.seo-intro-card{padding:22px 20px;border-radius:18px}.seo-intro-card p{font-size:13px;line-height:1.7}}


/* Öffentlicher Aufrufzähler */
.public-counter{padding-top:88px;padding-bottom:18px}
.public-counter-card{max-width:520px;margin:0 auto;padding:28px 30px;text-align:center;border:1px solid rgba(64,54,43,.09);border-radius:24px;background:rgba(255,255,255,.78);box-shadow:0 16px 48px rgba(51,43,34,.06)}
.public-counter-value{margin-top:6px;font-size:clamp(42px,7vw,68px);font-weight:800;line-height:1;letter-spacing:-.055em;color:#191d22;font-variant-numeric:tabular-nums}
.public-counter-label{margin-top:8px;font-size:15px;font-weight:700;color:#31363d}
.public-counter-card p{margin:10px auto 0;max-width:430px;font-size:12px;line-height:1.55;color:#858b92}
@media(max-width:620px){.public-counter{padding-top:72px}.public-counter-card{padding:24px 20px;border-radius:20px}.public-counter-label{font-size:14px}}
