:root {
    --schwarz: #0a0a0a;
    --dunkel: #111;
    --grau: #1e1e1e;
    --rot: #c0392b;
    --orange: #e67e22;
    --gold: #f39c12;
    --hell: #ecf0f1;
    --mittel: #95a5a6;
}

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

body {
    font-family: 'Georgia', serif;
    background: var(--schwarz);
    color: var(--hell);
    overflow-x: hidden;
}

/* ───── NAVIGATION ───── */
nav {
    background: rgba(0,0,0,0.95);
    border-bottom: 2px solid var(--rot);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* ── Amazon-Hero (echt!) ───────────────────────────────────────────── */
.amazon-hero {
    position: relative;
    padding: 4.5rem 2rem 2.5rem;
    text-align: center;
    background:
        radial-gradient(ellipse at top, rgba(243, 156, 18, 0.18), transparent 60%),
        radial-gradient(ellipse at bottom, rgba(192, 57, 43, 0.12), transparent 65%),
        linear-gradient(180deg, #0d0d0d 0%, #1a1208 100%);
    border-bottom: 3px solid var(--gold);
    overflow: hidden;
}
.amazon-hero::before,
.amazon-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent 0 18px,
            rgba(243, 156, 18, 0.04) 18px 19px
        );
    pointer-events: none;
}
.amazon-hero > * { position: relative; z-index: 1; }

.amazon-hero-pill {
    display: inline-block;
    background: var(--rot);
    color: #fff;
    font-size: 0.78rem;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    margin-bottom: 2rem;
    animation: amazon-hero-pulse 2.4s ease-in-out infinite;
    text-transform: uppercase;
}

.amazon-hero-blade {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(243, 156, 18, 0.45));
    animation: amazon-hero-float 4s ease-in-out infinite;
}

.amazon-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--hell);
    margin: 0 0 1.2rem;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.amazon-hero-title em {
    color: var(--gold);
    font-style: italic;
    text-shadow: 0 0 30px rgba(243, 156, 18, 0.5);
}

.amazon-hero-lead {
    color: var(--mittel);
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 620px;
    margin: 0 auto 2.5rem;
}

.amazon-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: #1a1208;
    font-size: 1.15rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    padding: 1.15rem 2.4rem;
    border-radius: 8px;
    text-decoration: none;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 8px 24px rgba(243, 156, 18, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.amazon-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.15) inset,
        0 12px 32px rgba(243, 156, 18, 0.55),
        0 4px 12px rgba(0, 0, 0, 0.5);
}
.amazon-hero-btn:active { transform: translateY(0); }

.amazon-hero-trust {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
    justify-content: center;
    color: var(--mittel);
    font-size: 0.85rem;
}
.amazon-hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.amazon-hero-skip {
    display: inline-block;
    margin-top: 1.5rem;
    color: #555;
    font-size: 0.75rem;
    font-style: italic;
    text-decoration: none;
    letter-spacing: 0.5px;
}
.amazon-hero-skip:hover { color: var(--mittel); }

@keyframes amazon-hero-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.7); }
    50%      { box-shadow: 0 0 0 10px rgba(192, 57, 43, 0); }
}
@keyframes amazon-hero-float {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50%      { transform: translateY(-8px) rotate(3deg); }
}
@media (max-width: 640px) {
    .amazon-hero { padding: 3rem 1.2rem 2.5rem; }
    .amazon-hero-pill { font-size: 0.68rem; letter-spacing: 1.5px; padding: 0.4rem 0.9rem; margin-bottom: 1.5rem; }
    .amazon-hero-blade { font-size: 3.5rem; }
    .amazon-hero-lead { font-size: 1rem; }
    .amazon-hero-btn { font-size: 1rem; padding: 1rem 1.8rem; width: 100%; max-width: 360px; }
    .amazon-hero-trust { gap: 1rem; font-size: 0.78rem; }
}
@media (prefers-reduced-motion: reduce) {
    .amazon-hero-pill,
    .amazon-hero-blade { animation: none; }
}

/* ── Game-Teaser-Section (unter Amazon-Hero) ─────────────────────── */
.game-teaser-section {
    padding: 3.5rem 2rem;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}
.game-teaser-eyebrow {
    font-size: 0.75rem;
    color: var(--rot);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 0.6rem;
}
.game-teaser-headline {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin: 0 0 0.6rem;
    color: var(--hell);
}
.game-teaser-headline em {
    color: var(--gold);
    font-style: normal;
}
.game-teaser-lead {
    color: var(--mittel);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}
.game-teaser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.game-teaser-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(180deg, #1a1208 0%, #0a0a0a 100%);
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.game-teaser-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(243,156,18,0.2);
}
.game-teaser-emoji {
    font-size: 3.5rem;
    margin-bottom: 0.6rem;
    filter: drop-shadow(0 0 12px rgba(255,184,77,0.3));
}
.game-teaser-title {
    font-size: 1.2rem;
    color: var(--gold);
    margin: 0 0 0.6rem;
    letter-spacing: 1px;
}
.game-teaser-desc {
    color: var(--mittel);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 1.2rem;
}
.game-teaser-cta {
    margin-top: auto;
    color: var(--rot);
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: bold;
    transition: color 0.2s ease;
}
.game-teaser-card:hover .game-teaser-cta { color: var(--gold); }

@media (max-width: 640px) {
    .game-teaser-section { padding: 2.5rem 1.2rem; }
    .game-teaser-grid { gap: 1rem; }
    .game-teaser-card { padding: 1.5rem 1.2rem; }
    .game-teaser-emoji { font-size: 2.8rem; }
}

.logo {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--gold);
    letter-spacing: 2px;
    text-decoration: none;
}

.logo span { color: var(--rot); }

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--mittel);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s;
}

nav a:hover { color: var(--gold); }

.disclaimer-badge {
    background: var(--rot);
    color: white;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 3px;
    font-style: italic;
    letter-spacing: 0;
    text-transform: none;
}

/* ── Burger-Button (nur auf Mobile sichtbar via Media-Query unten) ── */
.nav-burger {
    display: none;
    background: transparent;
    border: 0;
    padding: 0.4rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}
.nav-burger-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
}
.nav-burger[aria-expanded="true"] .nav-burger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-burger[aria-expanded="true"] .nav-burger-bar:nth-child(2) {
    opacity: 0;
}
.nav-burger[aria-expanded="true"] .nav-burger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ───── HERO ───── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 2rem 4rem;
    background: radial-gradient(ellipse at center, #1a0a00 0%, #0a0a0a 70%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '🔪';
    position: absolute;
    font-size: 20rem;
    opacity: 0.04;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    pointer-events: none;
}

.hero-badge {
    background: var(--rot);
    color: white;
    font-size: 0.75rem;
    padding: 4px 16px;
    border-radius: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-block;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 6rem);
    line-height: 1.1;
    color: var(--hell);
    margin-bottom: 0.5rem;
}

h1 .highlight {
    color: var(--gold);
    display: block;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--mittel);
    margin: 1.5rem 0;
    font-style: italic;
}

.hero-sub-badge {
    font-size: 0.8rem;
    color: var(--rot);
    margin-top: 0.5rem;
    display: block;
}

.cta-row {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-radius: 2px;
    letter-spacing: 1px;
    font-family: inherit;
    transition: all 0.2s;
    display: inline-block;
}

.btn-primary {
    background: var(--rot);
    color: white;
}
.btn-primary:hover { background: #e74c3c; transform: translateY(-2px); }

/* ── Game-Start-Button (klar als Spiel erkennbar) ──────────────────── */
.game-start-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.9rem 1.8rem 0.9rem 1.4rem;
    line-height: 1.1;
    text-align: left;
}
.game-start-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform 0.15s ease;
}
.game-start-btn:hover .game-start-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.25);
}
.game-start-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}
.game-start-main {
    font-size: 1.05rem;
    font-weight: bold;
    letter-spacing: 0.5px;
}
.game-start-sub {
    font-size: 0.72rem;
    font-style: italic;
    opacity: 0.75;
    margin-top: 0.15rem;
    letter-spacing: 0.2px;
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}
.btn-secondary:hover { background: var(--gold); color: var(--schwarz); }

.btn-real {
    background: transparent;
    color: var(--mittel);
    border: 1px solid #444;
    font-size: 0.85rem;
}
.btn-real:hover { border-color: var(--gold); color: var(--gold); }

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--mittel);
    font-size: 0.8rem;
    animation: bounce 2s infinite;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ───── SECTIONS ───── */
section {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.section-full {
    max-width: 100%;
    background: var(--dunkel);
    padding: 5rem 0;
}

.section-full > .inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-label {
    font-size: 0.75rem;
    color: var(--rot);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h2 em {
    color: var(--gold);
    font-style: normal;
}

.lead {
    color: var(--mittel);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
}

/* ───── ÜBER DEN MEISTER ───── */
.ueber-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.avatar-box {
    background: var(--grau);
    border: 2px solid var(--rot);
    padding: 3rem;
    text-align: center;
    position: relative;
}

.avatar-emoji {
    font-size: 8rem;
    display: block;
    margin-bottom: 1rem;
}

.avatar-name {
    font-size: 1.4rem;
    color: var(--gold);
}

.avatar-title {
    color: var(--mittel);
    font-size: 0.85rem;
    margin-top: 0.3rem;
    font-style: italic;
}

.stat-ribbon {
    position: absolute;
    top: -1px;
    right: -1px;
    background: var(--rot);
    color: white;
    font-size: 0.7rem;
    padding: 4px 12px;
    letter-spacing: 1px;
}

.bio-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.fact-card {
    background: var(--grau);
    border-left: 3px solid var(--gold);
    padding: 1rem 1.2rem;
}

.fact-number {
    font-size: 2.2rem;
    color: var(--gold);
    font-weight: bold;
    line-height: 1;
}

.fact-label {
    color: var(--mittel);
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

/* ───── PRODUKTE ───── */
.produkte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.produkt-card {
    background: var(--grau);
    border: 1px solid #2a2a2a;
    padding: 2rem;
    transition: border-color 0.2s, transform 0.2s;
    cursor: pointer;
}

.produkt-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.produkt-emoji {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1rem;
}

.produkt-name {
    font-size: 1.2rem;
    font-weight: normal;
    color: var(--hell);
    margin-bottom: 0.5rem;
}

.produkt-desc {
    color: var(--mittel);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.produkt-schärfe {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.schärfe-label {
    font-size: 0.75rem;
    color: var(--mittel);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.schärfe-bar {
    flex: 1;
    height: 4px;
    background: #333;
    border-radius: 2px;
    overflow: hidden;
}

.schärfe-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--rot));
    border-radius: 2px;
    transition: width 1s ease;
}

.produkt-price {
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: bold;
}

.produkt-price .struck {
    font-size: 0.9rem;
    color: var(--mittel);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.sold-badge {
    background: var(--rot);
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    float: right;
    letter-spacing: 1px;
}

/* ───── SCHÄRFE-O-METER ───── */
.meter-section {
    text-align: center;
    padding: 5rem 2rem;
}

.meter-container {
    max-width: 600px;
    margin: 3rem auto 0;
}

.meter-display {
    background: var(--grau);
    border: 2px solid var(--rot);
    padding: 3rem;
    margin-bottom: 2rem;
}

.meter-value {
    font-size: 6rem;
    color: var(--gold);
    line-height: 1;
    font-weight: bold;
}

.meter-unit {
    font-size: 1rem;
    color: var(--mittel);
    margin-top: 0.5rem;
}

.meter-scale {
    display: flex;
    justify-content: space-between;
    color: var(--mittel);
    font-size: 0.75rem;
    margin-top: 1rem;
}

.meter-btn-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.5rem;
}

.meter-btn {
    padding: 0.6rem 1.4rem;
    background: var(--grau);
    border: 1px solid #444;
    color: var(--hell);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.meter-btn:hover { border-color: var(--gold); color: var(--gold); }

.meter-result {
    margin-top: 1.5rem;
    color: var(--mittel);
    font-style: italic;
    font-size: 0.95rem;
    min-height: 1.5rem;
    transition: opacity 0.3s;
}

/* ───── TESTIMONIALS ───── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: var(--grau);
    padding: 2rem;
    border-top: 3px solid var(--gold);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--rot);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-text {
    color: var(--hell);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: bold;
}

.testimonial-role {
    color: var(--mittel);
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

.stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* ───── FAQ ───── */
.faq-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--grau);
    border: 1px solid #2a2a2a;
    overflow: hidden;
}

.faq-question {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--hell);
    font-size: 1rem;
    font-weight: normal;
    user-select: none;
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
    color: var(--rot);
    font-size: 1.2rem;
    font-style: normal;
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    color: var(--mittel);
    line-height: 1.8;
    font-size: 0.95rem;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.2rem;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ───── BLOG VORSCHAU ───── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: var(--grau);
    overflow: hidden;
    transition: transform 0.2s;
}

.blog-card:hover { transform: translateY(-4px); }

.blog-thumb {
    background: linear-gradient(135deg, #1a0a00, #2a1505);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.blog-content { padding: 1.5rem; }

.blog-tag {
    font-size: 0.7rem;
    color: var(--rot);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.blog-title {
    font-size: 1.05rem;
    font-weight: normal;
    color: var(--hell);
    line-height: 1.4;
    margin-bottom: 0.8rem;
}

.blog-excerpt {
    color: var(--mittel);
    font-size: 0.85rem;
    line-height: 1.7;
}

.blog-meta {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #555;
}

/* ───── NEWSLETTER ───── */
.newsletter-section {
    background: var(--dunkel);
    text-align: center;
    padding: 5rem 2rem;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 2rem auto 0;
    gap: 0;
}

.newsletter-input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    background: var(--grau);
    border: 1px solid #444;
    border-right: none;
    color: var(--hell);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
}

.newsletter-input::placeholder { color: #555; }
.newsletter-input:focus { border-color: var(--gold); }

.newsletter-btn {
    padding: 0.9rem 1.5rem;
    background: var(--rot);
    color: white;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: background 0.2s;
}

.newsletter-btn:hover { background: #e74c3c; }

.newsletter-hint {
    font-size: 0.75rem;
    color: #555;
    margin-top: 1rem;
    font-style: italic;
}

/* ───── FOOTER ───── */
footer {
    background: #050505;
    border-top: 2px solid var(--rot);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
}

.footer-tagline {
    color: var(--mittel);
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
    color: #333;
    font-size: 0.75rem;
}

.footer-copy a { color: #444; }

.footer-disclaimer {
    margin-top: 1.5rem;
    background: #0f0f0f;
    border: 1px solid #1a1a1a;
    padding: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #444;
    font-size: 0.7rem;
    line-height: 1.7;
    font-style: italic;
}

/* ───── RESPONSIVE ───── */
/* Burger früh aktivieren — 7 Nav-Items + Badge passen unter ~1000px nicht mehr
   sauber neben das Logo, ohne dass rechts welche abgeschnitten werden. */
@media (max-width: 1000px) {
    /* Burger zeigen, Menü als ausklappbares Dropdown unter der Nav */
    nav { padding: 0.8rem 1rem; }
    .nav-burger { display: flex; }
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(0,0,0,0.97);
        border-bottom: 2px solid var(--rot);
        padding: 0.5rem 0;
        max-height: calc(100vh - 100%);
        overflow-y: auto;
    }
    nav ul.is-open { display: flex; }
    nav ul li {
        width: 100%;
        border-bottom: 1px solid #1a1a1a;
    }
    nav ul li:last-child { border-bottom: none; }
    nav ul a {
        display: block;
        padding: 0.9rem 1.2rem;
        font-size: 1rem;
    }
    nav ul .disclaimer-badge {
        display: inline-block;
        margin: 0.5rem 1.2rem;
    }
}

@media (max-width: 700px) {
    section { padding: 3rem 1.2rem; }
    .section-full { padding: 3rem 0; }
    .section-full > .inner { padding: 0 1.2rem; }
    .hero { padding: 2rem 1.2rem 3rem; }

    .ueber-grid { grid-template-columns: 1fr; gap: 2rem; }
    .bio-facts { grid-template-columns: 1fr 1fr; }
    .ueber-portrait { padding: 1.5rem; }
    .newsletter-form { flex-direction: column; }
    .newsletter-input { border-right: 1px solid #444; border-bottom: none; }
}

@media (max-width: 480px) {
    section { padding: 2.4rem 1rem; }
    .section-full { padding: 2.4rem 0; }
    .section-full > .inner { padding: 0 1rem; }
    .avatar-box { padding: 1.5rem; }
    .avatar-emoji { font-size: 5rem; }
    .bio-facts { grid-template-columns: 1fr; gap: 1rem; }
    .meter-display { padding: 1.5rem 1rem; }
    .meter-value { font-size: 4rem; }
    .produkt-card { padding: 1.4rem; }
    .produkt-emoji { font-size: 3rem; }
    .footer-links { gap: 1rem; }
}

/* ───── NEWSLETTER OVERLAY ───── */
.overlay-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.overlay-backdrop.active {
    display: flex;
    animation: fadeBackdrop 0.25s ease;
}

@keyframes fadeBackdrop {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.overlay-box {
    background: var(--dunkel);
    border: 2px solid var(--rot);
    max-width: 560px;
    width: 100%;
    padding: 2.5rem 2.5rem 2rem;
    position: relative;
    animation: popIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
    text-align: center;
}

@keyframes popIn {
    from { transform: scale(0.85); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}

.overlay-close {
    position: absolute;
    top: 0.8rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--mittel);
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s;
}
.overlay-close:hover { color: var(--rot); }

.overlay-emoji {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 0.8rem;
}

.overlay-title {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.overlay-subtitle {
    font-size: 0.8rem;
    color: var(--rot);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
}

.overlay-jokes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.8rem;
    text-align: left;
}

.overlay-joke {
    background: var(--grau);
    border-left: 3px solid var(--gold);
    padding: 0.9rem 1.1rem;
    color: var(--hell);
    font-style: italic;
    font-size: 0.92rem;
    line-height: 1.7;
}

.overlay-joke .punchline {
    color: var(--gold);
    font-style: normal;
    font-weight: bold;
    display: block;
    margin-top: 0.3rem;
    font-size: 0.82rem;
}

.overlay-disclaimer {
    font-size: 0.7rem;
    color: #444;
    font-style: italic;
    margin-bottom: 1.2rem;
}

.overlay-btn {
    padding: 0.8rem 2rem;
    background: var(--rot);
    color: white;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: background 0.2s, transform 0.15s;
}
.overlay-btn:hover { background: #e74c3c; transform: translateY(-2px); }

/* ───── MINIGAME ───── */
#gameWrap {
    position: relative;
    display: block;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    user-select: none;
    cursor: crosshair;
    overflow: hidden;
}

#gameCanvas {
    display: block;
    border: 2px solid var(--rot);
    background: #0d0d0d;
    max-width: 100%;
}

#gameOverlay,
#gameOverScreen {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10,10,10,0.93);
}

#gameOverScreen { display: none; }

.game-screen-inner {
    padding: 1.5rem 2rem 2rem;
    text-align: center;
    max-width: 440px;
    width: 100%;
}

.game-legend {
    display: flex;
    gap: 0.7rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--mittel);
}

.game-legend span {
    background: var(--grau);
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
}

@media (max-width: 480px) {
    .game-screen-inner {
        padding: 0.6rem 0.8rem 1rem;
    }
    .game-screen-inner > span[style*="3.5rem"] {
        font-size: 2rem !important;
        margin-bottom: 0.3rem !important;
    }
    .game-legend {
        font-size: 0.85rem;
        gap: 0.5rem;
    }
}

/* ───── SCROLL ANIMATION ───── */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════════════════
   SCHÄRF-O-MAT 5000™ — Fruitinator-Klon, 5x3, 5 Paylines, Gamble
   Neon-Arcade-Cabinet, Vanilla CSS
   ═══════════════════════════════════════════════════════════════════ */

.slot-section {
    text-align: center;
    padding: 5rem 1rem;
}

/* ─── Cabinet (Außenrahmen) ───────────────────────────────────────── */
.cabinet {
    --slot-cell: 88px;
    --neon-cyan: #00e5ff;
    --neon-magenta: #ff2bd6;
    --neon-amber: #ffb84d;
    --neon-red: #ff3a3a;
    /* Demo-Modus: magentafarbener Border-Pulse als visueller Marker */
    transition: box-shadow 0.3s ease;

    position: relative;
    max-width: 760px;
    margin: 0 auto;
    padding: 1.6rem 1.6rem 1.3rem;
    background:
        linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid #222;
    border-radius: 18px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04) inset,
        0 0 40px rgba(243,156,18,0.18),
        0 30px 60px rgba(0,0,0,0.6);
    text-align: left;
    /* Mobile: keine versehentliche Text-Auswahl im Cabinet (Stats/Marquee).
       Die Paytable-Tabelle erlaubt Selektion lokal wieder via override. */
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.cabinet-paytable,
.cabinet-paytable * {
    -webkit-user-select: text;
    user-select: text;
}

.cabinet-bezel {
    position: relative;
    background: linear-gradient(180deg, #0c0c0c 0%, #050505 100%);
    border-radius: 12px;
    padding: 1rem;
    box-shadow:
        0 0 0 1px rgba(255,184,77,0.18) inset,
        0 0 30px rgba(0,229,255,0.06) inset;
}

/* Marquee oben */
.cabinet-marquee {
    text-align: center;
    padding: 0.4rem 0 0.8rem;
    border-bottom: 1px solid rgba(255,184,77,0.15);
    margin-bottom: 0.9rem;
}
.marquee-text {
    display: block;
    font-size: clamp(1rem, 2.6vw, 1.4rem);
    font-weight: bold;
    letter-spacing: 4px;
    color: var(--neon-amber);
    text-shadow:
        0 0 8px rgba(255,184,77,0.55),
        0 0 20px rgba(255,184,77,0.3);
}
.marquee-sub {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.7rem;
    letter-spacing: 5px;
    color: var(--neon-cyan);
    text-shadow: 0 0 6px rgba(0,229,255,0.55);
    text-transform: uppercase;
}

/* Display-Bereich (Stats + Reels + Message) — Padding wandert in die
   Children, damit der Reels-Frame die volle Display-Breite ausfüllen kann. */
.cabinet-display {
    background: #020202;
    border: 1px solid rgba(255,184,77,0.18);
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 0 30px rgba(0,0,0,0.8) inset;
    overflow: hidden; /* verhindert dass abgerundete Ecken vom Reels-Frame überdeckt werden */
}

.cabinet-stats {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.8rem 1rem 0.6rem;
    border-bottom: 1px dashed rgba(255,184,77,0.2);
    margin-bottom: 0;
}
.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 0;
}
.stat-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
}
.stat-value {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--neon-amber);
    line-height: 1.1;
    margin-top: 0.15rem;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 8px rgba(255,184,77,0.45);
}

/* Reels-Bereich: füllt die volle Breite des Cabinet-Displays. Die Reels
   selbst (Stage) sind mittig im Frame zentriert. */
.reels-frame {
    position: relative;
    background: #000;
    padding: 0.5rem 0;
    box-shadow: 0 0 25px rgba(0,0,0,0.9) inset;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Stage: umschließt das Grid 1:1, damit das SVG-Overlay exakt darauf liegt */
.reels-stage {
    position: relative;
    display: block;
    line-height: 0;       /* verhindert zusätzlichen vertikalen Raum */
}
.reels-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, var(--slot-cell));
    gap: 4px;
    background: transparent;
}
.reel {
    position: relative;
    width: var(--slot-cell);
    height: calc(var(--slot-cell) * 3);
    background: transparent;
    border-radius: 4px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255,184,77,0.1) inset,
        0 0 12px rgba(0,0,0,0.6) inset;
}
.reel-strip {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: block;
    will-change: transform;
}
.reel-strip > span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--slot-cell);
    width: 100%;
    font-size: calc(var(--slot-cell) * 0.6);
    line-height: 1;
    transition: filter 0.2s ease, transform 0.2s ease;
}
/* Wild (Messer): permanenter dezenter Goldglow, damit Spieler ihn als Joker erkennt */
.reel-strip > span[data-sym="wild"] {
    filter: drop-shadow(0 0 6px rgba(255, 184, 77, 0.7));
}
.reel-strip > span.win-pulse {
    animation: cell-win 0.6s ease-in-out 3;
}
@keyframes cell-win {
    0%, 100% { transform: scale(1);    filter: none; }
    50%      { transform: scale(1.18); filter: drop-shadow(0 0 12px var(--neon-amber)); }
}

/* Paylines-Overlay (SVG): liegt 1:1 über .reels-stage, also exakt über dem
   Grid (inklusive Gaps). viewBox + Polyline-Punkte werden aus JS gesetzt,
   basierend auf der echten Cell-Größe und Gap-Breite. */
.paylines-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    display: block;
}
.paylines-overlay polyline {
    fill: none;
    /* stroke-width wird per JS gesetzt, relativ zur Cell-Größe */
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
    transition: opacity 0.25s ease;
}
/* Dauer-Anzeige: alle aktiven Linien sind sanft sichtbar */
.paylines-overlay polyline.is-active {
    opacity: 0.22;
}
/* Kurzer heller Flash beim Zu-/Abschalten einer Linie */
.paylines-overlay polyline.is-flash {
    opacity: 0.85;
    animation: payline-toggle-flash 0.55s ease-out forwards;
    filter: drop-shadow(0 0 5px currentColor);
}
@keyframes payline-toggle-flash {
    0%   { opacity: 0.95; }
    100% { opacity: 0.22; }
}
/* Beim Abschalten: in der Mitte hell auflodern, dann zu 0 */
.paylines-overlay polyline.is-flash-off {
    opacity: 0.85;
    animation: payline-toggle-off 0.55s ease-out forwards;
    filter: drop-shadow(0 0 5px currentColor);
}
@keyframes payline-toggle-off {
    0%   { opacity: 0.95; }
    60%  { opacity: 0.35; }
    100% { opacity: 0; }
}
/* Gewinn: kräftig pulsierend */
.paylines-overlay polyline.is-win {
    opacity: 1;
    animation: payline-win-pulse 0.55s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 6px currentColor);
    /* stroke-width wird im JS leicht erhöht (siehe highlightWinLines) */
}
@keyframes payline-win-pulse {
    0%   { opacity: 0.45; }
    100% { opacity: 1; }
}

/* Display-Message */
.display-message {
    text-align: center;
    margin-top: 0;
    padding: 0.7rem 1rem;
    border-top: 1px dashed rgba(255,184,77,0.2);
    min-height: 2.6rem;
    font-size: 0.95rem;
    line-height: 1.3;
    color: var(--neon-cyan);
    text-shadow: 0 0 6px rgba(0,229,255,0.4);
    font-style: italic;
}
.display-message.win {
    color: var(--neon-amber);
    text-shadow: 0 0 10px rgba(255,184,77,0.6);
    font-style: normal;
    font-weight: bold;
}
.display-message.big-win {
    font-size: 1.15rem;
    animation: msg-pulse 0.6s ease-in-out 3;
}
@keyframes msg-pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.06); }
}
.display-message.lose { color: #777; }

/* ─── Steuer-Panel ─────────────────────────────────────────────────
   Eine einzige Reihe: Linien -+ | Pro Linie -+ | MAX | SPIN | AUTO
   Auf Mobile darf sie umbrechen (Flex-Wrap, zentriert).
   Mute/Reset sitzen separat als Floating-Aux am Cabinet-Bezel oben rechts. */
.cabinet-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    row-gap: 0.6rem;
    margin-top: 1rem;
    padding: 0.8rem;
    background: linear-gradient(180deg, #181818 0%, #0a0a0a 100%);
    border: 1px solid #222;
    border-radius: 8px;
    min-width: 0;
}

/* Floating-Aux: Mute (+ Reset wenn pleite) am Cabinet-Bezel rechts oben.
   Sichtbar überhalb des Marquee, klar abgesetzt vom Hauptcontrol-Panel. */
.cabinet-aux {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    display: flex;
    gap: 0.4rem;
    /* über dem Gamble-Overlay (z=10), damit Music/Mute auch im Risiko-Modus
       erreichbar bleiben */
    z-index: 11;
}

.ctrl {
    background: linear-gradient(180deg, #1f1f1f 0%, #0f0f0f 100%);
    color: var(--hell);
    border: 1px solid #333;
    border-radius: 6px;
    padding: 0.7rem 1rem;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: bold;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.12s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
    /* Mobile: kein blaues iOS-Tap-Highlight, keine Doppel-Tap-Selektion */
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    /* Touch-Target: gewährleistet mind. 44px Höhe, auch bei kleinem Padding */
    touch-action: manipulation;
}
.ctrl:hover:not(:disabled) {
    border-color: var(--neon-amber);
    color: var(--neon-amber);
    box-shadow: 0 0 12px rgba(255,184,77,0.35), 0 2px 4px rgba(0,0,0,0.5);
}
.ctrl:active:not(:disabled) { transform: translateY(1px); }
.ctrl:disabled { opacity: 0.4; cursor: not-allowed; }

.ctrl-bet { min-width: 2.5rem; padding: 0.7rem 0.85rem; font-size: 1.1rem; }
.ctrl-max { font-size: 0.78rem; letter-spacing: 1.5px; }
.bet-readout {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0.6rem;
    min-width: 4.5rem;
}
.bet-readout-label {
    font-size: 0.55rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
}
.bet-readout-value {
    font-size: 1.1rem;
    color: var(--neon-amber);
    font-weight: bold;
    text-shadow: 0 0 6px rgba(255,184,77,0.4);
    font-variant-numeric: tabular-nums;
    transition: transform 0.15s ease;
}
.bet-readout-value.bump {
    animation: readout-bump 0.35s ease;
}
@keyframes readout-bump {
    0%, 100% { transform: scale(1); color: var(--neon-amber); }
    50%      { transform: scale(1.15); color: #fff; text-shadow: 0 0 12px rgba(255,184,77,0.9); }
}

/* Trenner zwischen Lines- und Bet-Group */
.control-divider {
    width: 1px;
    align-self: stretch;
    margin: 0 0.3rem;
    background: linear-gradient(180deg, transparent 0%, rgba(255,184,77,0.25) 50%, transparent 100%);
}

.ctrl-spin {
    background: linear-gradient(180deg, #ff5a3a 0%, #c0392b 100%);
    border-color: #ff7e3a;
    color: #fff;
    font-size: 1.4rem;
    letter-spacing: 4px;
    padding: 0.9rem 1.6rem;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.1) inset,
        0 0 22px rgba(255,90,58,0.55),
        0 4px 12px rgba(0,0,0,0.6);
}
.ctrl-spin:hover:not(:disabled) {
    background: linear-gradient(180deg, #ff7e3a 0%, #d44929 100%);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.18) inset,
        0 0 32px rgba(255,126,58,0.7),
        0 4px 12px rgba(0,0,0,0.6);
    color: #fff;
}
.spin-icon { display: inline-block; margin-right: 0.35rem; }
.cabinet[data-state="spinning"] .ctrl-spin { animation: spin-pulse 0.6s ease-in-out infinite; }
@keyframes spin-pulse {
    0%, 100% { box-shadow: 0 0 22px rgba(255,90,58,0.55), 0 4px 12px rgba(0,0,0,0.6); }
    50%      { box-shadow: 0 0 38px rgba(255,90,58,0.9),  0 4px 12px rgba(0,0,0,0.6); }
}

/* Demo-Modus: pulsierender Magenta-Border am Cabinet als visueller Marker */
.cabinet[data-demo="1"] {
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04) inset,
        0 0 40px rgba(255,43,214,0.35),
        0 0 80px rgba(255,43,214,0.18),
        0 30px 60px rgba(0,0,0,0.6);
    animation: demo-pulse 2.2s ease-in-out infinite;
}
@keyframes demo-pulse {
    0%, 100% { outline: 2px solid rgba(255,43,214,0.4); outline-offset: 0; }
    50%      { outline: 2px solid rgba(255,43,214,0.9); outline-offset: 4px; }
}
@media (prefers-reduced-motion: reduce) {
    .cabinet[data-demo="1"] { animation: none; }
}

/* Feste Breite, damit der Text-Wechsel "AUTO" ↔ "AUTO ✓" das Layout
   nicht verschiebt (sonst hüpfen die anderen Controls links, weil
   .cabinet-controls justify-content: center die Mitte neu berechnet).
   6rem deckt beide Varianten mit Reserve ab, auch im Vollbild-Modus. */
.ctrl-auto {
    width: 6rem;
    min-width: 6rem;
    text-align: center;
    /* Wenn das Häkchen reinkommt, soll der vorherige Abstand zwischen
       AUTO und Häkchen konstant zur Mitte zentriert wirken — daher
       Letter-Spacing leicht reduzieren falls der Text rausragen würde. */
    white-space: nowrap;
}
.ctrl-auto[aria-pressed="true"] {
    background: linear-gradient(180deg, #2a5d8f 0%, #143452 100%);
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 14px rgba(0,229,255,0.5);
}
/* Floating-Aux-Buttons (Mute/Reset): kompakt rund, dezent */
.cabinet-aux .ctrl {
    padding: 0;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    font-size: 1rem;
    line-height: 1;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,184,77,0.25);
    backdrop-filter: blur(2px);
}
.cabinet-aux .ctrl:hover:not(:disabled) {
    border-color: var(--neon-amber);
    color: var(--neon-amber);
    box-shadow: 0 0 12px rgba(255,184,77,0.4);
}
.ctrl-mute[aria-pressed="true"] { opacity: 0.55; }
.ctrl-music.is-off { opacity: 0.45; }
.ctrl-music[aria-pressed="true"] {
    color: var(--neon-amber);
    border-color: var(--neon-amber);
    box-shadow: 0 0 10px rgba(255,184,77,0.4);
}

/* Music-Button + Volume-Slider als Gruppe (vertikal gestapelt) */
.ctrl-music-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}
/* Slider erscheint nur wenn Musik AN ist */
.music-volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 2.4rem;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, rgba(255,184,77,0.7) 0%, rgba(255,184,77,0.2) 100%);
    outline: none;
    cursor: pointer;
    margin: 0;
    transition: opacity 0.2s ease;
}
.music-volume-slider:disabled {
    opacity: 0.25;
    pointer-events: none;
}
.ctrl-music-group.is-off .music-volume-slider {
    opacity: 0.25;
    pointer-events: none;
}
.music-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--neon-amber);
    border: 1px solid rgba(0,0,0,0.5);
    box-shadow: 0 0 6px rgba(255,184,77,0.6);
    cursor: pointer;
}
.music-volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--neon-amber);
    border: 1px solid rgba(0,0,0,0.5);
    box-shadow: 0 0 6px rgba(255,184,77,0.6);
    cursor: pointer;
}
.ctrl-reset {
    background: linear-gradient(180deg, #6d2222 0%, #3a1212 100%) !important;
    border-color: var(--neon-red) !important;
    color: var(--neon-red);
}
.cabinet-aux .ctrl-reset:hover {
    box-shadow: 0 0 14px rgba(255,58,58,0.6) !important;
}
.ctrl-fullscreen[aria-pressed="true"] {
    color: var(--neon-amber);
    border-color: var(--neon-amber);
    box-shadow: 0 0 10px rgba(255,184,77,0.4);
}

/* ── Cabinet im Vollbild-Modus ─────────────────────────────────────
   Der Browser legt das Cabinet allein ins Fullscreen — wir müssen also
   den Page-Hintergrund hier selbst mitbringen, sonst sieht man am Rand
   Browser-Default-Schwarz und das Cabinet schwebt unschön mittig.       */
.cabinet:fullscreen,
.cabinet:-webkit-full-screen,
.cabinet.is-fullscreen {
    max-width: none;
    width: 100vw;
    height: 100vh;
    margin: 0;
    border-radius: 0;
    padding: 2rem;
    background:
        radial-gradient(ellipse at top, rgba(243,156,18,0.08), transparent 65%),
        linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
    display: flex;
    flex-direction: column;
    /* "safe center": zentriert vertikal, FALLS der Inhalt in den Viewport passt.
       Wird die Paytable ausgeklappt und der Inhalt höher als 100vh, fällt das
       Zentrieren weg → der Browser scrollt sauber von oben statt das Marquee
       nach oben aus dem Bild zu schieben. */
    justify-content: safe center;
    overflow-y: auto;
}
/* iOS-Fallback: iOS Safari (& Chrome iOS = WebKit) erlaubt requestFullscreen
   nur für <video>, nicht für beliebige DIVs. Wir simulieren Fullscreen via
   position: fixed über den ganzen Viewport, wenn die echte API nicht greift. */
.cabinet.is-fullscreen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    /* dvh statt vh: respektiert iOS-Browser-Bars korrekt */
    height: 100dvh;
    /* Notch/Safe-Area-Padding für iPhone X+ */
    padding-top: max(2rem, env(safe-area-inset-top));
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
    padding-left: max(2rem, env(safe-area-inset-left));
    padding-right: max(2rem, env(safe-area-inset-right));
}
/* Body-Lock während Pseudo-Fullscreen, damit dahinter nicht gescrollt wird */
body.cabinet-fullscreen-lock {
    overflow: hidden;
    /* iOS: position fixed verhindert das Springen bei body-lock */
    position: fixed;
    width: 100%;
}
@media (max-width: 700px) {
    .cabinet.is-fullscreen {
        padding-top: max(1rem, env(safe-area-inset-top));
        padding-bottom: max(1rem, env(safe-area-inset-bottom));
        padding-left: max(0.6rem, env(safe-area-inset-left));
        padding-right: max(0.6rem, env(safe-area-inset-right));
    }
}
/* Innenrand-Bezel füllt im Fullscreen die verfügbare Breite stärker aus */
.cabinet:fullscreen .cabinet-bezel,
.cabinet:-webkit-full-screen .cabinet-bezel,
.cabinet.is-fullscreen .cabinet-bezel {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}
.cabinet:fullscreen .cabinet-controls,
.cabinet:-webkit-full-screen .cabinet-controls,
.cabinet.is-fullscreen .cabinet-controls,
.cabinet:fullscreen .cabinet-paytable,
.cabinet:-webkit-full-screen .cabinet-paytable,
.cabinet.is-fullscreen .cabinet-paytable {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

/* Im Vollbild: Risiko-Overlay groß und mittig statt klein-und-oben */
.cabinet:fullscreen .gamble-overlay,
.cabinet:-webkit-full-screen .gamble-overlay,
.cabinet.is-fullscreen .gamble-overlay {
    align-items: center;
    padding: 3rem 2rem;
}
.cabinet:fullscreen .gamble-inner,
.cabinet:-webkit-full-screen .gamble-inner,
.cabinet.is-fullscreen .gamble-inner {
    max-width: 780px;
    padding: 2.4rem 2.6rem;
    border-width: 2px;
    box-shadow:
        0 0 60px rgba(255,184,77,0.4),
        0 20px 60px rgba(0,0,0,0.7);
}
/* Größere Typografie im Vollbild für immersives Feeling */
.cabinet:fullscreen .gamble-title,
.cabinet:-webkit-full-screen .gamble-title,
.cabinet.is-fullscreen .gamble-title {
    font-size: 1.3rem;
}
.cabinet:fullscreen .gamble-amount,
.cabinet:-webkit-full-screen .gamble-amount,
.cabinet.is-fullscreen .gamble-amount {
    font-size: 2.4rem;
}
.cabinet:fullscreen .gamble-prompt-text,
.cabinet:-webkit-full-screen .gamble-prompt-text,
.cabinet.is-fullscreen .gamble-prompt-text {
    font-size: 1.2rem;
}
.cabinet:fullscreen .gamble-prompt-text strong,
.cabinet:-webkit-full-screen .gamble-prompt-text strong,
.cabinet.is-fullscreen .gamble-prompt-text strong {
    font-size: 2rem;
}
.cabinet:fullscreen .btn-prompt-collect,
.cabinet:-webkit-full-screen .btn-prompt-collect,
.cabinet.is-fullscreen .btn-prompt-collect,
.cabinet:fullscreen .btn-prompt-risk,
.cabinet:-webkit-full-screen .btn-prompt-risk,
.cabinet.is-fullscreen .btn-prompt-risk {
    font-size: 1.25rem;
    padding: 1.3rem 0.8rem;
}
/* Karte größer */
.cabinet:fullscreen .card-face,
.cabinet:-webkit-full-screen .card-face,
.cabinet.is-fullscreen .card-face {
    width: 140px;
    height: 200px;
    font-size: 4.5rem;
}
.cabinet:fullscreen .card-btn,
.cabinet:-webkit-full-screen .card-btn,
.cabinet.is-fullscreen .card-btn {
    font-size: 1.15rem;
    padding: 0.9rem 1.2rem;
}
/* Leiter-Zeilen größer & lesbarer */
.cabinet:fullscreen .ladder li,
.cabinet:-webkit-full-screen .ladder li,
.cabinet.is-fullscreen .ladder li {
    padding: 0.45rem 1.2rem;
    font-size: 1.05rem;
}
.cabinet:fullscreen .ladder li .ladder-step-num,
.cabinet:-webkit-full-screen .ladder li .ladder-step-num,
.cabinet.is-fullscreen .ladder li .ladder-step-num {
    font-size: 0.85rem;
}
.cabinet:fullscreen .btn-ladder-stop,
.cabinet:-webkit-full-screen .btn-ladder-stop,
.cabinet.is-fullscreen .btn-ladder-stop {
    font-size: 1.2rem;
    padding: 1.1rem;
}
.cabinet:fullscreen .btn-collect,
.cabinet:-webkit-full-screen .btn-collect,
.cabinet.is-fullscreen .btn-collect,
.cabinet:fullscreen .btn-collect-half,
.cabinet:-webkit-full-screen .btn-collect-half,
.cabinet.is-fullscreen .btn-collect-half {
    font-size: 1.05rem;
    padding: 1rem;
}
.cabinet:fullscreen .gamble-tab,
.cabinet:-webkit-full-screen .gamble-tab,
.cabinet.is-fullscreen .gamble-tab {
    font-size: 1rem;
    padding: 0.85rem;
}

/* ─── Gamble-Overlay ─────────────────────────────────────────────── */
/* ─── Start-Overlay ──────────────────────────────────────────────────
   Blockiert das Cabinet beim Page-Load, bis der User explizit startet.
   Wird via JS per `hidden`-Attribut entfernt. */
.start-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(255,184,77,0.10), transparent 60%),
        rgba(0,0,0,0.96);
    border-radius: 18px;
    z-index: 12;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    backdrop-filter: blur(4px);
    text-align: center;
}
.start-overlay[hidden] { display: none; }
.start-overlay-inner {
    max-width: 420px;
    width: 100%;
}
.start-overlay-blade {
    font-size: 4rem;
    margin-bottom: 0.6rem;
    filter: drop-shadow(0 0 14px rgba(255,184,77,0.45));
    animation: start-blade-float 3.5s ease-in-out infinite;
}
@keyframes start-blade-float {
    0%, 100% { transform: translateY(0) rotate(-6deg); }
    50%      { transform: translateY(-6px) rotate(6deg); }
}
.start-overlay-title {
    font-size: 1.4rem;
    letter-spacing: 3px;
    color: var(--neon-amber);
    text-shadow: 0 0 18px rgba(255,184,77,0.6);
    margin: 0 0 0.4rem;
    text-transform: uppercase;
}
.start-overlay-sub {
    color: #888;
    font-size: 0.78rem;
    font-style: italic;
    margin: 0 0 1.5rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.start-overlay-btn {
    background: linear-gradient(180deg, #3a2410 0%, #1a0e04 100%);
    border: 2px solid var(--neon-amber);
    color: var(--neon-amber);
    padding: 1rem 2.4rem;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 3px;
    border-radius: 8px;
    cursor: pointer;
    text-shadow: 0 0 8px rgba(255,184,77,0.6);
    box-shadow:
        0 0 0 1px rgba(255,184,77,0.2) inset,
        0 0 25px rgba(255,184,77,0.35);
    transition: all 0.15s ease;
    text-transform: uppercase;
}
.start-overlay-btn:hover {
    background: linear-gradient(180deg, #5a3a16 0%, #2a1a08 100%);
    box-shadow:
        0 0 0 1px rgba(255,184,77,0.4) inset,
        0 0 40px rgba(255,184,77,0.6);
    transform: translateY(-1px);
}
.start-overlay-btn:active { transform: translateY(1px); }
.start-overlay-hint {
    margin: 1.2rem 0 0;
    color: #666;
    font-size: 0.75rem;
    line-height: 1.5;
    font-style: italic;
}

.gamble-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.92);
    border-radius: 18px;
    z-index: 10;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 1.5rem 1rem;
    backdrop-filter: blur(3px);
    overflow-y: auto;
}
.gamble-overlay[hidden] { display: none; }

.gamble-inner {
    width: 100%;
    max-width: 540px;
    overflow-y: visible;
    background: linear-gradient(180deg, #1a1208 0%, #0a0a0a 100%);
    border: 1px solid var(--neon-amber);
    border-radius: 10px;
    padding: 1.2rem;
    box-shadow: 0 0 40px rgba(255,184,77,0.3);
}
.gamble-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255,184,77,0.2);
}
.gamble-title {
    color: var(--neon-amber);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.gamble-amount {
    font-size: 1.6rem;
    color: var(--neon-amber);
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255,184,77,0.6);
    font-variant-numeric: tabular-nums;
}

.gamble-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.gamble-tab {
    flex: 1;
    background: #0f0f0f;
    color: #888;
    border: 1px solid #222;
    padding: 0.6rem;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.15s ease;
}
.gamble-tab.is-active {
    color: var(--neon-amber);
    border-color: var(--neon-amber);
    background: rgba(255,184,77,0.08);
}

.gamble-panel[hidden] { display: none; }

/* Card-Gamble */
.card-display {
    display: flex;
    justify-content: center;
    margin: 0.5rem 0 1rem;
}
.card-face {
    width: 110px;
    height: 150px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1a1a1a 0%, #050505 100%);
    border: 2px solid var(--neon-amber);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--neon-amber);
    box-shadow:
        0 0 0 4px rgba(0,0,0,0.6) inset,
        0 0 20px rgba(255,184,77,0.5);
    transition: transform 0.4s, background 0.4s, color 0.4s;
}
.card-face.is-red    { color: #ff3a3a; background: linear-gradient(135deg, #2a0a0a, #050505); border-color: #ff3a3a; box-shadow: 0 0 0 4px rgba(0,0,0,0.6) inset, 0 0 20px rgba(255,58,58,0.5); }
.card-face.is-black  { color: #ffffff; background: linear-gradient(135deg, #0a0a0a, #1a1a1a); border-color: #cccccc; box-shadow: 0 0 0 4px rgba(0,0,0,0.6) inset, 0 0 20px rgba(255,255,255,0.3); }
.card-face.flip      { transform: rotateY(180deg); }

.card-controls {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}
.card-btn {
    flex: 1;
    padding: 0.85rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: bold;
    border: 2px solid;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s ease;
    letter-spacing: 1.5px;
}
.card-red {
    background: linear-gradient(180deg, #4a1010 0%, #2a0606 100%);
    color: #ff7878;
    border-color: #ff3a3a;
}
.card-red:hover:not(:disabled) {
    background: linear-gradient(180deg, #ff3a3a 0%, #b02020 100%);
    color: #fff;
    box-shadow: 0 0 18px rgba(255,58,58,0.6);
}
.card-black {
    background: linear-gradient(180deg, #1a1a1a 0%, #050505 100%);
    color: #ccc;
    border-color: #888;
}
.card-black:hover:not(:disabled) {
    background: linear-gradient(180deg, #2a2a2a 0%, #0a0a0a 100%);
    color: #fff;
    box-shadow: 0 0 18px rgba(255,255,255,0.3);
}
.card-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.card-history {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    color: #888;
    font-size: 0.8rem;
}
.card-history-list {
    display: inline-flex;
    gap: 0.25rem;
    font-size: 1.1rem;
}
.card-history-list .h-red   { color: #ff3a3a; }
.card-history-list .h-black { color: #ddd; }

/* Risikoleiter */
.ladder-info {
    text-align: center;
    color: #aaa;
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
}
.ladder {
    list-style: none;
    padding: 0;
    margin: 0 0 0.8rem;
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
    /* Kein max-height/overflow mehr: alle Stufen sind direkt sichtbar, damit
       das Fenster sich nicht beim Springen verschiebt und der Stop-Button
       unter der Maus bleibt. */
    border-radius: 4px;
    border: 1px solid #222;
    background: #050505;
}
.ladder li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.2rem 0.8rem;
    font-size: 0.82rem;
    line-height: 1.2;
    color: #666;
    font-variant-numeric: tabular-nums;
    border-bottom: 1px solid #111;
    transition: background 0.1s, color 0.1s;
}
.ladder li:last-child { border-bottom: none; }
.ladder li .ladder-step-num {
    font-size: 0.7rem;
    color: #444;
    letter-spacing: 1px;
}
.ladder li.is-current {
    background: rgba(0,229,255,0.1);
    color: var(--neon-cyan);
    box-shadow: 0 0 12px rgba(0,229,255,0.3) inset;
}
.ladder li.is-target-high {
    background: rgba(255,184,77,0.15);
    color: var(--neon-amber);
    text-shadow: 0 0 8px rgba(255,184,77,0.7);
}
.ladder li.is-target-low {
    background: rgba(255,58,58,0.15);
    color: var(--neon-red);
}

.btn-ladder-stop {
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(180deg, #ff5a3a 0%, #c0392b 100%);
    border: 2px solid #ff7e3a;
    color: #fff;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 3px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255,90,58,0.5);
    transition: all 0.12s ease;
}
.btn-ladder-stop:hover:not(:disabled) {
    box-shadow: 0 0 32px rgba(255,90,58,0.8);
}
.btn-ladder-stop:disabled { opacity: 0.4; cursor: not-allowed; }

.gamble-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}
.btn-collect-half,
.btn-collect {
    flex: 1;
    padding: 0.75rem;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: bold;
    border: 1px solid;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.12s ease;
}
.btn-collect-half {
    background: linear-gradient(180deg, #2a4a6a 0%, #102030 100%);
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
}
.btn-collect-half:hover {
    box-shadow: 0 0 14px rgba(0,229,255,0.5);
}
.btn-collect {
    background: linear-gradient(180deg, #2a6a3a 0%, #102a18 100%);
    color: #5fff8a;
    border-color: #5fff8a;
}
.btn-collect:hover {
    box-shadow: 0 0 14px rgba(95,255,138,0.5);
}

/* ─── Pre-Gamble-Prompt (Phase 1): Einsammeln oder Risiko? ─────── */
.gamble-prompt {
    text-align: center;
    padding: 0.5rem 0 0;
}
.gamble-prompt[hidden] { display: none; }
.gamble-prompt-text {
    margin: 0 0 1.2rem;
    font-size: 1rem;
    color: #ddd;
}
.gamble-prompt-text strong {
    color: var(--neon-amber);
    font-size: 1.4rem;
    text-shadow: 0 0 10px rgba(255,184,77,0.6);
    font-variant-numeric: tabular-nums;
}
.gamble-prompt-buttons {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 1rem;
}
.btn-prompt-collect,
.btn-prompt-risk {
    flex: 1;
    padding: 1rem 0.5rem;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: bold;
    border: 2px solid;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.12s ease;
}
.btn-prompt-collect {
    background: linear-gradient(180deg, #2a6a3a 0%, #102a18 100%);
    color: #5fff8a;
    border-color: #5fff8a;
}
.btn-prompt-collect:hover {
    box-shadow: 0 0 18px rgba(95,255,138,0.6);
    transform: translateY(-1px);
}
.btn-prompt-risk {
    background: linear-gradient(180deg, #6a2a3a 0%, #2a1018 100%);
    color: #ff6a8a;
    border-color: #ff6a8a;
}
.btn-prompt-risk:hover {
    box-shadow: 0 0 18px rgba(255,106,138,0.6);
    transform: translateY(-1px);
}
.gamble-prompt-countdown {
    height: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.4rem;
}
.gamble-prompt-countdown-bar {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--neon-amber) 0%, #ff6a8a 100%);
    transform-origin: left center;
    transform: scaleX(1);
}
.gamble-prompt-countdown-bar.is-running {
    animation: gamble-prompt-countdown linear forwards;
}
@keyframes gamble-prompt-countdown {
    from { transform: scaleX(1); }
    to   { transform: scaleX(0); }
}
.gamble-prompt-hint {
    margin: 0;
    font-size: 0.72rem;
    color: #888;
    font-style: italic;
}
.gamble-choice[hidden] { display: none; }

/* ─── Paytable ───────────────────────────────────────────────────── */
.cabinet-paytable {
    margin-top: 1rem;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,184,77,0.15);
    border-radius: 8px;
    padding: 0 1rem;
}
.cabinet-paytable summary {
    padding: 0.7rem 0;
    color: var(--neon-amber);
    cursor: pointer;
    font-size: 0.92rem;
    letter-spacing: 1px;
    list-style: none;
}
.cabinet-paytable summary::-webkit-details-marker { display: none; }
.paytable-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
    padding: 0.5rem 0 1rem;
}
.cabinet-paytable table {
    width: 100%;
    border-collapse: collapse;
    color: var(--mittel);
    font-size: 0.82rem;
}
.cabinet-paytable th,
.cabinet-paytable td { padding: 0.35rem 0.5rem; text-align: left; }
.cabinet-paytable th { color: var(--neon-amber); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; }
.cabinet-paytable tbody tr { border-top: 1px solid rgba(255,184,77,0.08); }
.cabinet-paytable caption { caption-side: bottom; padding-top: 0.6rem; color: #555; font-size: 0.7rem; text-align: left; }
.paylines-legend strong { color: var(--neon-amber); display: block; margin-bottom: 0.5rem; font-size: 0.9rem; }
.paylines-legend ol { padding-left: 1.2rem; color: var(--mittel); font-size: 0.82rem; line-height: 1.5; }
.paylines-legend .pl-icon { display: inline-block; width: 18px; height: 8px; background: var(--neon-cyan); border-radius: 1px; margin-right: 0.4rem; vertical-align: middle; }
.paylines-legend .pl-top { background: #ff3a3a; }
.paylines-legend .pl-mid { background: var(--neon-amber); }
.paylines-legend .pl-bot { background: #5fff8a; }
.paylines-legend .pl-v   { background: var(--neon-magenta); }
.paylines-legend .pl-iv  { background: var(--neon-cyan); }

/* Mobile */
/* ═══ MOBILE: Schärf-O-Mat — konsolidiert & wasserdicht ═══════════════
   Strategie:
   - Breakpoints: <=640px (Tablet/Phablet), <=480px (typisches Smartphone),
     <=360px (kleines Smartphone)
   - Touch-Targets: alle interaktiven Elemente ≥ 44×44px
   - Reels: bleiben 5 Spalten (Slot-Charakter), JS skaliert Cell-Size
   - Stats: bei <=480px in 2 Reihen, optisch ruhig
   - Controls: bei <=480px in 2 Reihen (Linien/Einsatz oben, Spin/Auto/Max unten)
   - Aux-Buttons (FS/Musik/Mute): am Cabinet-Top als Touch-freundliche Reihe
   ───────────────────────────────────────────────────────────────────── */

/* === Tablet/Phablet (≤ 640px) === */
@media (max-width: 640px) {
    .cabinet { padding: 1rem 0.7rem 0.9rem; }
    .cabinet-bezel { padding: 0.7rem; }

    /* Marquee kompakter, damit Aux-Buttons rechts nicht reinklemmen */
    .cabinet-marquee { padding: 0.3rem 4.5rem 0.5rem; }
    .marquee-text { font-size: 1.05rem; letter-spacing: 3px; }
    .marquee-sub { font-size: 0.6rem; letter-spacing: 3px; }

    /* Reels: Symbol etwas kleiner relativ zur Cell-Size für mehr Luft */
    .reel-strip > span { font-size: calc(var(--slot-cell) * 0.58); }

    /* Stats kompakter */
    .cabinet-stats { gap: 0.4rem; padding: 0.6rem 0.6rem 0.5rem; }
    .stat-value { font-size: 1.05rem; }
    .stat-label { font-size: 0.55rem; letter-spacing: 1px; }

    /* Aux-Buttons: horizontal oben rechts, größer (44px Touch-Target) */
    .cabinet-aux {
        top: 0.5rem;
        right: 0.5rem;
        gap: 0.3rem;
    }
    .cabinet-aux .ctrl {
        width: 2.4rem;
        height: 2.4rem;
        font-size: 1rem;
        padding: 0;
    }

    /* Controls: Divider weg, kompakter */
    .control-divider { display: none; }
    .cabinet-controls { gap: 0.4rem; padding: 0.7rem; }
    .ctrl-spin { font-size: 1.05rem; padding: 0.7rem 1.1rem; letter-spacing: 2px; }

    /* Paytable & Gamble */
    .paytable-grid { grid-template-columns: 1fr; }
    .cabinet-paytable summary { font-size: 0.85rem; padding: 0.7rem; }
    .cabinet-paytable th, .cabinet-paytable td { padding: 0.3rem 0.4rem; font-size: 0.8rem; }
    .gamble-inner { padding: 1rem; }
    .card-face { width: 90px; height: 124px; font-size: 3rem; }
    .gamble-amount { font-size: 1.3rem; }

    /* Start-Overlay etwas kompakter */
    .start-overlay { padding: 1rem 0.8rem; }
    .start-overlay-blade { font-size: 3.2rem; }
    .start-overlay-title { font-size: 1.15rem; letter-spacing: 2px; }
    .start-overlay-sub { font-size: 0.7rem; letter-spacing: 1px; }
    .start-overlay-btn { padding: 0.95rem 1.6rem; font-size: 1rem; letter-spacing: 2px; min-height: 48px; }
    .start-overlay-hint { font-size: 0.68rem; }
}

/* === Smartphone (≤ 480px) === */
@media (max-width: 480px) {
    .cabinet { padding: 0.8rem 0.5rem; }
    .cabinet-bezel { padding: 0.6rem 0.45rem; }

    /* Marquee: noch mehr rechtsseitige Reserve, da Aux-Buttons unten sitzen */
    .cabinet-marquee { padding: 0.25rem 2.8rem 0.4rem 0.4rem; }
    .marquee-text { font-size: 0.95rem; letter-spacing: 2px; }
    .marquee-sub { font-size: 0.55rem; letter-spacing: 2px; }

    /* Aux-Buttons: vertikal stapeln, schmaler, aber Touch-tauglich (40px) */
    .cabinet-aux {
        top: 0.4rem;
        right: 0.4rem;
        flex-direction: column;
        gap: 0.3rem;
    }
    .cabinet-aux .ctrl {
        width: 2.3rem;
        height: 2.3rem;
        font-size: 0.95rem;
    }

    /* STATS: 5 Stats nebeneinander wird zu eng. Auf 2 Reihen mit Wrap.
       Reihe 1: Credits, Linieneinsatz, Linien (je 33%)
       Reihe 2: Gesamt, Letzter Gewinn (je 50%) */
    .cabinet-stats {
        flex-wrap: wrap;
        gap: 0.35rem 0.4rem;
        padding: 0.55rem 0.5rem 0.45rem;
    }
    .stat { flex: 1 1 calc(33.333% - 0.4rem); min-width: 0; }
    .stat-value { font-size: 0.95rem; }
    .stat-label { font-size: 0.5rem; letter-spacing: 0.5px; }

    /* CONTROLS: zwei klar getrennte Reihen via group-wrap
       Reihe 1: Linien -/+ ... Einsatz -/+
       Reihe 2: MAX | SPIN | AUTO */
    .cabinet-controls {
        gap: 0.35rem;
        padding: 0.6rem 0.55rem;
    }
    .ctrl { padding: 0.65rem 0.7rem; font-size: 0.85rem; min-height: 44px; }
    .ctrl-bet {
        min-width: 2.4rem;
        padding: 0.65rem 0.75rem;
        font-size: 1.15rem;
        min-height: 44px;
    }
    .bet-readout { padding: 0 0.35rem; min-width: 3.6rem; }
    .bet-readout-label { font-size: 0.5rem; }
    .bet-readout-value { font-size: 1rem; }
    /* Spin-Button: hervorgehoben, breiter — der wichtigste Button */
    .ctrl-spin {
        font-size: 1.1rem;
        padding: 0.8rem 1.3rem;
        letter-spacing: 2px;
        min-height: 48px;
    }
    .ctrl-auto { width: 5rem; min-width: 5rem; font-size: 0.85rem; padding: 0.65rem 0.4rem; }
    .ctrl-max { font-size: 0.75rem; padding: 0.65rem 0.65rem; }

    /* Gamble Phase 1 (Prompt) — bei <480px Buttons untereinander */
    .gamble-inner { padding: 0.9rem 0.8rem; }
    .gamble-header { flex-direction: column; align-items: flex-start; gap: 0.2rem; margin-bottom: 0.7rem; }
    .gamble-amount { font-size: 1.2rem; }
    .gamble-prompt-buttons { flex-direction: column; gap: 0.45rem; }
    .btn-prompt-collect, .btn-prompt-risk { font-size: 1rem; padding: 0.85rem; min-height: 48px; }

    /* Gamble Phase 2 (Choice) */
    .gamble-tabs { flex-direction: column; gap: 0.3rem; margin-bottom: 0.7rem; }
    .gamble-tab { padding: 0.65rem; font-size: 0.8rem; min-height: 44px; }
    .gamble-actions { flex-direction: column; gap: 0.4rem; }
    .btn-collect-half, .btn-collect { padding: 0.7rem; font-size: 0.9rem; min-height: 44px; }
    .card-face { width: 80px; height: 110px; font-size: 2.6rem; }
    .card-btn { font-size: 0.95rem; padding: 0.7rem 0.5rem; min-height: 44px; }
    .ladder li { padding: 0.18rem 0.7rem; font-size: 0.78rem; }
    .btn-ladder-stop { padding: 0.85rem; font-size: 1rem; min-height: 48px; }
}

/* === Kleines Smartphone (≤ 360px) === */
@media (max-width: 360px) {
    .cabinet { padding: 0.6rem 0.35rem; }
    .cabinet-bezel { padding: 0.5rem 0.35rem; }
    .marquee-text { font-size: 0.85rem; letter-spacing: 1.5px; }
    .marquee-sub { font-size: 0.5rem; letter-spacing: 1.5px; }

    /* Reels noch kleiner zulassen */
    .reel-strip > span { font-size: calc(var(--slot-cell) * 0.6); }

    /* Stats noch kompakter */
    .cabinet-stats { padding: 0.45rem 0.35rem 0.4rem; gap: 0.3rem; }
    .stat-value { font-size: 0.85rem; }
    .stat-label { font-size: 0.45rem; letter-spacing: 0.5px; }

    /* Controls noch enger, aber Touch-Targets bleiben 44px */
    .ctrl-bet { min-width: 2.1rem; padding: 0.6rem 0.55rem; font-size: 1.05rem; }
    .bet-readout { padding: 0 0.25rem; min-width: 3rem; }
    .bet-readout-value { font-size: 0.9rem; }
    .ctrl-spin { font-size: 1rem; padding: 0.7rem 1rem; }
    .ctrl-auto { width: 4.4rem; min-width: 4.4rem; font-size: 0.78rem; }
    .ctrl-max { font-size: 0.7rem; padding: 0.6rem 0.5rem; }
    .ctrl { font-size: 0.8rem; padding: 0.6rem 0.6rem; }

    /* Aux-Buttons noch kleiner aber 40px+ */
    .cabinet-aux .ctrl { width: 2.1rem; height: 2.1rem; font-size: 0.85rem; }

    .card-face { width: 70px; height: 96px; font-size: 2.2rem; }
}
@media (prefers-reduced-motion: reduce) {
    .reel-strip { transition: none !important; }
    .reel-strip > span.win-pulse,
    .paylines-overlay polyline.is-win,
    .paylines-overlay polyline.is-flash,
    .paylines-overlay polyline.is-flash-off,
    .bet-readout-value.bump,
    .display-message.big-win,
    .cabinet[data-state="spinning"] .ctrl-spin {
        animation: none;
    }
}
