 :root {
      --chili: #c0392b;
      --gold:  #f39c12;
      --lime:  #27ae60;
      --dark:  #1a1a1a;
      --cream: #fdf6e3;
      --sand:  #f5e6c8;
      --text:  #2c2c2c;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Arial'; background: var(--dark); color: var(--cream); overflow-x: hidden; }

    /* SCROLLYTELLING */
    .reveal { opacity: 0; transform: translateY(60px); transition: opacity 0.8s ease, transform 0.8s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-left  { transform: translateX(-80px); opacity: 0; }
    .reveal-right { transform: translateX(80px); opacity: 0; }
    .reveal-left.visible, .reveal-right.visible { transform: translateX(0); opacity: 1; }

    /* IMG PLACEHOLDER */
    .img-placeholder {
      background: linear-gradient(135deg, #2a2a2a 0%, #3a2a1a 100%);
      border: 2px dashed rgba(243,156,18,0.4);
      border-radius: 12px;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      color: rgba(243,156,18,0.6); font-size: 0.8rem; letter-spacing: 0.1em;
      text-transform: uppercase; gap: 0.5rem;
    }
    .img-placeholder .img-icon { font-size: 2.5rem; opacity: 0.5; }

    /* HERO */
    #hero {
      min-height: 100vh;
      background: linear-gradient(160deg, #1a0000 0%, #3d0b0b 40%, #1a1a1a 100%);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center; padding: 2rem; position: relative; overflow: hidden;
    }
    #hero::before {
      content: "🎲"; position: absolute; font-size: 30vw; opacity: 0.04;
      top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none;
    }
    .hero-eyebrow { font-size: 0.85rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
    #hero h1 { font-size: clamp(2.2rem, 7vw, 6rem); line-height: 1.1; color: var(--cream); text-shadow: 0 0 40px rgba(192,57,43,0.6); margin-bottom: 1.5rem; }
    #hero h1 span { color: var(--chili); }
    .hero-sub { font-size: clamp(1rem, 2vw, 1.4rem); color: #ccc; max-width: 620px; line-height: 1.7; margin-bottom: 2.5rem; }
    .hero-img { width: min(400px, 90vw); height: 260px; margin: 0 auto 2rem; }
    .cta-btn {
      display: inline-block; background: var(--chili); color: var(--cream);
      padding: 1rem 2.5rem; border-radius: 50px; font-size: 1rem; text-decoration: none;
      letter-spacing: 0.05em; transition: background 0.3s, transform 0.2s; border: 2px solid transparent;
    }
    .cta-btn:hover { background: var(--gold); color: var(--dark); transform: scale(1.05); }

    /* SECTIONS */
    section { padding: 6rem 2rem; }
    .container { max-width: 900px; margin: 0 auto; }
    .section-label { font-size: 0.75rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
    h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); line-height: 1.2; margin-bottom: 1.5rem; color: var(--cream); }
    h2 em { color: var(--chili); font-style: normal; }
    p.body-text { font-size: 1.1rem; line-height: 1.85; color: #ccc; max-width: 680px; }

    /* PARADOX */
    #paradox { background: var(--sand); color: var(--text); }
    #paradox .container { max-width: 1200px; }
    #paradox .container h2, #paradox .container p { margin-left: 10%; }
    #paradox .section-label { color: var(--chili); }
    #paradox h2 { color: var(--dark); }
    #paradox h2 em { color: var(--chili); }
    #paradox p.body-text { color: #555; }
    .dice-row { display: flex; gap: 1.5rem; margin: 3rem 0; flex-wrap: wrap; }
    .dice-card {
      flex: 1 1 160px; background: white; border-radius: 16px; padding: 2rem 1.5rem;
      text-align: center; box-shadow: 0 8px 30px rgba(0,0,0,0.1);
      border-top: 4px solid var(--chili); transition: transform 0.3s;
      min-width: 300px;
    }
    .dice-card:hover { transform: translateY(-6px); }
    .dice-card .dice-emoji { font-size: 2.5rem; margin-bottom: 0.8rem; }
    .dice-card h3 { font-size: 1rem; color: var(--dark); margin-bottom: 0.5rem; }
    .dice-card p { font-size: 0.88rem; color: #666; line-height: 1.6; margin-left: 0!important;}
    .dice-card .section-label {margin-top: 1em; font-size: 0.7em; letter-spacing: 0.1em;}

    /* WÜRFELWAHL GAME */
    #game {
      background: #111;
      text-align: center;
    }
    #game h2 { color: var(--cream); }
    .game-intro { color: #aaa; font-size: 1rem; line-height: 1.7; max-width: 600px; margin: 0 auto 3rem; }
    .game-dice-picker { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
    .pick-btn {
      background: #1e1e1e; border: 2px solid #444; color: var(--cream);
      padding: 1.2rem 1.5rem; border-radius: 14px; cursor: pointer;
      font-size: 1.5rem; transition: all 0.25s; min-width: 80px;
      display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
      min-width: 150px;
    }
    .pick-btn span.label { font-size: 0.7rem; letter-spacing: 0.1em; color: #888; text-transform: uppercase; }
    .pick-btn:hover { border-color: var(--gold); background: #2a2a2a; transform: translateY(-4px); }
    .pick-btn.selected { border-color: var(--chili); background: #2d0e0e; }
    #game-result {
      min-height: 120px; display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 1rem;
    }
    .result-box {
      background: #1e1e1e; border-radius: 16px; padding: 2rem 2.5rem;
      max-width: 560px; width: 100%; display: none;
    }
    .result-box.show { display: block; animation: popIn 0.5s ease; }
    @keyframes popIn { from { transform: scale(0.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
    .result-box .vs-line { font-size: 0.75rem; letter-spacing: 0.2em; color: #aaa; text-transform: uppercase; margin-bottom: 0.8rem; }
    .result-box .verdict { font-size: 1.5rem; font-weight: bold; margin-bottom: 0.6rem; }
    .result-box .verdict.lose { color: var(--chili); }
    .result-box .verdict.win  { color: var(--lime); }
    .result-box .quip { font-size: 0.95rem; color: #aaa; line-height: 1.65; }
    .share-btn {
      display: inline-block; margin-top: 1.5rem; background: var(--gold); color: var(--dark);
      padding: 0.7rem 1.8rem; border-radius: 50px; font-size: 0.85rem;
      border: none; cursor: pointer; letter-spacing: 0.05em; transition: transform 0.2s;
    }
    .share-btn:hover { transform: scale(1.05); }
    #copy-hint { font-size: 0.75rem; color: var(--lime); margin-top: 0.5rem; min-height: 1em; }

    /* QUOTE BAND */
    .quote-band { background: var(--chili); padding: 4rem 2rem; text-align: center; }
    .quote-band blockquote { font-size: clamp(1.4rem, 3vw, 2.4rem); color: white; max-width: 780px; margin: 0 auto; line-height: 1.5; font-style: italic; }
    .quote-band cite { display: block; margin-top: 1.5rem; font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6); font-style: normal; }

    /* SCROLL STORY */
    #story { background: #0f0f0f; position: relative; }
    .story-block { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 6rem; }
    .story-block.flip { direction: rtl; }
    .story-block.flip > * { direction: ltr; }
    .story-text .story-number { font-size: 8rem; font-weight: 900; color: var(--chili); line-height: 1; margin-bottom: 0.5rem;}
    .story-text h3 { font-size: 1.8rem; color: var(--cream); margin-bottom: 1rem; line-height: 1.3; margin-top: -2em; z-index: 100;}
    .story-text p { font-size: 1rem; color: #aaa; line-height: 1.8; }
    .story-img { height: 320px; border-radius: 16px; }

    /* MARKETING SEKTION */
    #marketing { background: var(--cream); color: var(--text); }
    #marketing .section-label { color: var(--chili); }
    #marketing h2 { color: var(--dark); }
    #marketing p.body-text { color: #555; }
    .mktg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; margin-top: 3rem; }
    .mktg-card {
      background: white; border-radius: 16px; padding: 2rem;
      box-shadow: 0 4px 20px rgba(0,0,0,0.07);
      border-bottom: 4px solid var(--gold);
      transition: transform 0.3s;
    }
    .mktg-card:hover { transform: translateY(-5px); }
    .mktg-card .mktg-icon { font-size: 2.2rem; margin-bottom: 1rem; }
    .mktg-card h4 { font-size: 1.05rem; color: var(--dark); margin-bottom: 0.6rem; }
    .mktg-card p { font-size: 0.9rem; color: #666; line-height: 1.65; }
    .mktg-card .platform-tag {
      display: inline-block; margin-top: 1rem; background: var(--sand);
      color: var(--chili); font-size: 0.72rem; letter-spacing: 0.12em;
      text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 20px;
    }

    /* SOCIAL PROOF TICKER */
    #ticker { background: var(--chili); padding: 1.2rem 0; overflow: hidden; white-space: nowrap; }
    .ticker-inner { display: inline-block; animation: ticker 25s linear infinite; }
    .ticker-inner span { margin: 0 2.5rem; font-size: 0.9rem; letter-spacing: 0.05em; color: white; }
    @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* STATS BAND */
    #stats { background: #000; }
    .stats-row { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
    .stat-item { text-align: center; flex: 1 1 180px; }
    .stat-num { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; color: var(--gold); line-height: 1; }
    .stat-label { font-size: 0.85rem; color: #888; margin-top: 0.5rem; letter-spacing: 0.1em; text-transform: uppercase; }

    /* WARUM */
    #warum { background: var(--sand); color: var(--text); }
    #warum .section-label { color: var(--chili); }
    #warum h2 { color: var(--dark); }
    .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; margin-top: 3rem; }
    .feature-card { background: white; border-radius: 14px; padding: 2rem; border-left: 4px solid var(--gold); box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
    .feature-card .icon { font-size: 2rem; margin-bottom: 1rem; }
    .feature-card h4 { font-size: 1.05rem; color: var(--dark); margin-bottom: 0.6rem; }
    .feature-card p { font-size: 0.9rem; color: #666; line-height: 1.65; }

    /* WIDE IMAGE BREAK */
    #bild-break { padding: 0; height: 50vw; max-height: 500px; min-height: 280px; }
    #bild-break img { width: 100%; height: auto; border-radius: 0; border: none; font-size: 1rem; }

    /* FINAL CTA */
    #cta-final { background: linear-gradient(160deg, #1a0000, #3d0b0b); text-align: center; padding: 8rem 2rem; }
    #cta-final h2 { font-size: clamp(2rem, 5vw, 4rem); margin-bottom: 1.5rem; }
    #cta-final p { color: #bbb; font-size: 1.1rem; margin-bottom: 3rem; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7; }

    footer { background: #0d0d0d; text-align: center; padding: 2rem; font-size: 0.8rem; color: #ddd; }
    footer p.kleingedrucktes { padding-top: 1em;}
    footer p.kleingedrucktes a, footer p.code78 a { color: #787878; }
    footer p.code78 { color: #fff; letter-spacing: 0.1em; }

    @media (max-width: 700px) {
      .story-block { grid-template-columns: 1fr; gap: 2rem; }
      .story-block.flip { direction: ltr; }
    }