/* ============================================================
   GROOMSDAY 2026 — Metal Festival Stylesheet
   ============================================================ */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Oswald', 'Bebas Neue', sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- FONTS / UTIL ---------- */
.metal-font {
    font-family: 'Metal Mania', 'Pirata One', serif;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* ============================================================
   GLOBALER HINTERGRUND (zwei Layer: bg-back + bg-front Banner)
   ============================================================ */

/* Layer 1: Hintergrund (Himmel + Landschaft) — ganz hinten */
.bg-back {
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image: url('../../images/groomsday_bg-only.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #0a0a0a;
    will-change: transform;
}

/* Layer 2: Vordergrund-Banner — zwei Hälften, jeweils an einer Aussenkante.
   Trick: jede Hälfte ist 50vw breit und zeigt das volle Bild als Background,
   skaliert auf Viewport-Höhe. Per background-position links bzw. rechts wird
   nur die jeweils äussere Bildhälfte sichtbar; der transparente Mittelbereich
   überlappt einfach beide Layer und bleibt durchsichtig. */
.bg-front {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 50vw;
    z-index: -1;
    pointer-events: none;
    background-image: url('../../images/groomsday_bg-front.png');
    background-repeat: no-repeat;
    background-size: auto 100%;
    will-change: transform;
}
.bg-front-left  { left: 0;  background-position: left center;  }
.bg-front-right { right: 0; background-position: right center; }

.has-bg { background-color: #0a0a0a; }

/* Mobile (≤820 px): fixed BG ist auf iOS Safari buggy. Layer bleiben
   sichtbar, aber als position:absolute (scrollen mit). Hintergrund wird
   auf 100vh geclippt (deckt das erste Viewport ab), darunter übernimmt
   die Body-Background-Farbe + die Sektion-Overlays die Lesbarkeit.
   Vordergrund-Banner sind über die volle Body-Höhe sichtbar; Breite
   reduziert auf 35vw, damit Text in der Mitte lesbar bleibt. */
@media (max-width: 820px) {
    .bg-back {
        position: absolute;
        top: 0; left: 0; right: 0;
        bottom: auto;
        height: 100vh;
        transform: none !important;
        will-change: auto;
    }
    .bg-front {
        position: absolute;
        top: 0;
        bottom: auto;
        height: 100%;
        width: 35vw;
        opacity: 0.9;
        will-change: auto;
    }
    /* Body als Stacking-Kontext, damit absolute Layer auf dessen Höhe gehen */
    .has-bg {
        position: relative;
        background-color: #0a0505;
    }
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-block;
    padding: 0.85rem 1.6rem;
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 2px solid transparent;
    transition: transform .12s ease, box-shadow .12s ease, background .12s ease, color .12s ease;
    border-radius: 0;
    text-align: center;
}
.btn-primary {
    background: #8b0000;
    color: #fff;
    border-color: #ff3300;
}
.btn-primary:hover {
    background: #ff3300;
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(255,51,0,.7);
}
.btn-outline {
    background: transparent;
    color: #ffaa00;
    border-color: #ffaa00;
}
.btn-outline:hover {
    background: #ffaa00;
    color: #0a0a0a;
    box-shadow: 0 0 24px rgba(255,170,0,.6);
}
.btn-block { display: block; width: 100%; }

/* ---------- TOPBAR ---------- */
.topbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    background: rgba(10,5,5,.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid #2a0000;
}
.topbar-inner {
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.75rem 1.25rem;
}
.topbar-brand {
    font-family: 'Metal Mania', serif;
    font-size: 1.6rem;
    color: #ff3300;
    text-shadow: 0 0 6px rgba(255,51,0,.5);
    letter-spacing: 0.05em;
}
.topbar-nav { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }
.topbar-nav a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    color: #e0e0e0;
    transition: color .12s, text-shadow .12s;
}
.topbar-nav a:hover { color: #ffaa00; text-shadow: 0 0 8px rgba(255,170,0,.6); }
.topbar-logout { color: #8b0000 !important; border-left: 1px solid #2a0000; padding-left: 1.25rem; }
.topbar-logout:hover { color: #ff3300 !important; }

@media (max-width: 600px) {
    .topbar-nav { gap: 0.6rem; }
    .topbar-nav a { font-size: 0.78rem; letter-spacing: 0.1em; }
    .topbar-logout { padding-left: 0.6rem; }
    .topbar-brand { font-size: 1.3rem; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    padding: 6rem 1rem 4rem;
    text-align: center;
    overflow: hidden;
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 980px;
    width: 100%;
}
.hero-logo {
    width: 100%;
    max-width: 820px;
    height: auto;
    margin: 0 auto;
    /* dezenter Glow um das Logo */
    filter: drop-shadow(0 0 20px rgba(255,51,0,.45)) drop-shadow(0 4px 16px rgba(0,0,0,.8));
    animation: flicker 6s infinite;
}
@keyframes flicker {
    0%, 95%, 100% { opacity: 1; }
    96% { opacity: .82; }
    97% { opacity: 1; }
    98% { opacity: .9; }
}
.hero-sub {
    margin-top: 1.5rem;
    font-family: 'Pirata One', serif;
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    color: #ffaa00;
    letter-spacing: 0.4em;
    text-shadow: 0 2px 8px rgba(0,0,0,.8);
}
.hero-date {
    margin-top: 0.6rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    letter-spacing: 0.3em;
    color: #e0e0e0;
    text-shadow: 0 2px 8px rgba(0,0,0,.8);
}
.hero-cta { margin-top: 2.5rem; }

/* Sanfter Übergang vom Hero zur ersten Folge-Sektion */
.hero-fade {
    position: absolute; bottom: 0; left: 0; right: 0; height: 12rem;
    background: linear-gradient(180deg, transparent 0%, rgba(10,5,5,.5) 50%, rgba(10,5,5,.95) 100%);
    z-index: 1;
    pointer-events: none;
}

/* ============================================================
   SECTIONS — halbtransparenter dunkler BG für Lesbarkeit
   ============================================================ */
.section {
    padding: 4.5rem 1.25rem;
    position: relative;
    background: rgba(10,5,5,.92);
}
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-title {
    font-family: 'Metal Mania', serif;
    font-size: clamp(1.8rem, 5vw, 3rem);
    color: #ff3300;
    text-align: center;
    text-shadow: 0 0 16px rgba(255,51,0,.5), 0 2px 4px #000;
    margin-bottom: 2rem;
    letter-spacing: 0.04em;
}
.section-title-xl {
    font-size: clamp(2.2rem, 7vw, 4rem);
    margin-bottom: 1rem;
}
.section-lead {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    color: #999;
    margin-bottom: 2.5rem;
}

/* ============================================================
   HAUPT-GRID (Schedule + Packages/Form)
   ============================================================ */
.main-grid { padding-top: 3rem; }
.grid-two {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 920px) {
    .grid-two { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
}
.grid-col { min-width: 0; }

/* ============================================================
   SCHEDULE / TIMELINE
   ============================================================ */
.day-block { margin-bottom: 2.5rem; }
.day-block:last-child { margin-bottom: 0; }

.day-banner {
    background: linear-gradient(90deg, #2a0000 0%, #8b0000 50%, #2a0000 100%);
    border: 2px solid #ff3300;
    padding: 0.75rem 1.25rem;
    text-align: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 24px rgba(139,0,0,.5);
    position: relative;
}
.day-banner::before, .day-banner::after {
    content: '✟';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #ffaa00;
    font-size: 1.2rem;
}
.day-banner::before { left: 0.75rem; }
.day-banner::after  { right: 0.75rem; }
.day-banner-sub {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    color: #ffaa00;
    letter-spacing: 0.3em;
}
.day-banner-title {
    display: block;
    font-family: 'Metal Mania', serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: #fff;
    text-shadow: 0 0 10px rgba(255,51,0,.6), 0 2px 4px #000;
    line-height: 1.1;
}

.timeline {
    list-style: none;
    border-left: 2px solid #8b0000;
    margin-left: 0.5rem;
    padding: 0.5rem 0 0.5rem 1.25rem;
    position: relative;
}
.timeline-item {
    position: relative;
    padding: 0.6rem 0 0.6rem 0;
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 1rem;
    align-items: start;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.85rem;
    top: 1rem;
    width: 12px; height: 12px;
    background: #ff3300;
    transform: rotate(45deg);
    box-shadow: 0 0 8px rgba(255,51,0,.7);
}
.timeline-time {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: #ffaa00;
    letter-spacing: 0.05em;
    line-height: 1;
}
.timeline-body { min-width: 0; }
.timeline-title {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.timeline-desc {
    margin-top: 0.25rem;
    font-size: 0.95rem;
    color: #aaa;
}

/* ============================================================
   PACKAGES (interaktive Cards)
   ============================================================ */
.packages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
@media (max-width: 540px) {
    .packages { grid-template-columns: 1fr; }
}

.pkg-card {
    background: linear-gradient(180deg, rgba(26,5,5,.95) 0%, rgba(10,10,10,.95) 100%);
    border: 2px solid #ffaa00;
    padding: 1.5rem 1rem;
    position: relative;
    color: #e0e0e0;
    text-align: center;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s, opacity .2s, border-color .2s;
}
.pkg-card:hover { transform: translateY(-3px); box-shadow: 0 0 24px rgba(255,170,0,.4); }
.pkg-card-pro { border-color: #ff3300; background: linear-gradient(180deg, rgba(42,0,0,.95) 0%, rgba(10,10,10,.95) 100%); }
.pkg-card-pro:hover { box-shadow: 0 0 24px rgba(255,51,0,.6); }

/* Auswahl-States (Desktop) */
.pkg-card.is-selected {
    transform: translateY(-3px);
    box-shadow: 0 0 32px rgba(255,51,0,.7), 0 0 0 2px #ff3300 inset;
    border-color: #ff3300;
}
.pkg-card.is-dimmed {
    opacity: 0.45;
    transform: scale(0.97);
}
.pkg-card.is-dimmed:hover {
    opacity: 0.85;
}

.pkg-stub {
    position: absolute; top: 0.4rem; right: 0.6rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.7rem;
    color: #8b0000;
    letter-spacing: 0.3em;
}
.pkg-title {
    font-family: 'Metal Mania', serif;
    font-size: 1.8rem;
    color: #ffaa00;
    margin-bottom: 0.25rem;
    text-shadow: 0 0 8px rgba(255,170,0,.4);
    line-height: 1.05;
}
.pkg-card-pro .pkg-title { color: #ff3300; text-shadow: 0 0 12px rgba(255,51,0,.5); }
.pkg-sub {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: #999;
    margin-bottom: 1rem;
}
.pkg-list {
    list-style: none;
    text-align: left;
    margin: 0.75rem 0;
    font-family: 'Oswald', sans-serif;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
}
.pkg-list li { padding: 0.25rem 0; border-bottom: 1px dashed #2a0000; }
.pkg-list li:last-child { border-bottom: none; }
.pkg-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.7rem;
    color: #fff;
    margin: 0.75rem 0 1rem;
    letter-spacing: 0.05em;
}
.pkg-btn { width: 100%; padding: 0.7rem 1rem; font-size: 0.95rem; }

/* ============================================================
   ANMELDEFORMULAR (Aufklapp auf Desktop, immer offen auf Mobile)
   ============================================================ */
.form-wrap {
    position: relative;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height .45s ease, opacity .25s ease, margin .25s ease;
    margin: 0;
}
.form-wrap[data-open="true"] {
    max-height: 2400px;
    opacity: 1;
    margin: 1rem 0 0;
}

/* Mobile: Form immer sichtbar, Aufklapp deaktivieren */
@media (max-width: 1023px) {
    .form-wrap {
        max-height: none !important;
        opacity: 1 !important;
        overflow: visible;
        margin: 1rem 0 0;
    }
    .form-close { display: none !important; }
    .form-selected { display: none !important; }
}

.form-close {
    position: absolute; top: 0.5rem; right: 0.5rem;
    width: 36px; height: 36px;
    font-size: 1.6rem;
    color: #ffaa00;
    z-index: 5;
    line-height: 1;
}
.form-close:hover { color: #ff3300; }

.form-selected {
    margin-bottom: 1rem;
    font-family: 'Bebas Neue', sans-serif;
    color: #ffaa00;
    letter-spacing: 0.15em;
    text-align: center;
    font-size: 0.95rem;
}
.form-selected strong { color: #fff; }

.register-form {
    background: rgba(15,5,5,.95);
    padding: 1.5rem 1.25rem;
    border: 1px solid #2a0000;
}

/* Auf Desktop sind die Mobile-Radios versteckt */
.mobile-only-pkg { display: none; }
@media (max-width: 1023px) {
    .mobile-only-pkg { display: block; }
}

.form-label {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: #ffaa00;
    margin: 1rem 0 0.4rem;
}
.form-input {
    width: 100%;
    padding: 0.7rem 0.85rem;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    border-radius: 0;
    transition: border-color .12s, box-shadow .12s;
}
.form-input:focus {
    outline: none;
    border-color: #ff3300;
    box-shadow: 0 0 0 2px rgba(255,51,0,.25);
}
textarea.form-input { resize: vertical; min-height: 70px; }
.form-fieldset { border: 1px solid #2a0000; padding: 0.85rem 1rem; margin: 1rem 0; }
.form-fieldset legend { padding: 0 0.5rem; }
.radio-label {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.35rem 0;
    font-family: 'Oswald', sans-serif;
    color: #e0e0e0;
    cursor: pointer;
}
.radio-label input { accent-color: #ff3300; }
.checkbox-label {
    display: flex; align-items: center; gap: 0.6rem;
    margin: 1rem 0;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    color: #999;
    letter-spacing: 0.1em;
}
.checkbox-label input { accent-color: #ff3300; }

.form-feedback { margin-top: 1rem; color: #ff3300; font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.15em; text-align: center; }
.form-error { color: #ff3300; margin-top: 1rem; font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.15em; text-align: center; }
.form-success {
    text-align: center;
    padding: 3rem 1.5rem;
    border: 2px solid #ffaa00;
    background: rgba(255,170,0,.07);
    margin-top: 1.5rem;
}
.form-success h3 { font-size: 2.4rem; color: #ffaa00; text-shadow: 0 0 12px rgba(255,170,0,.5); margin-bottom: 1rem; line-height: 1.1; }
.form-success p { font-family: 'Oswald', sans-serif; color: #e0e0e0; }

/* ============================================================
   WAR CHEST
   ============================================================ */
.warchest-section { padding: 5rem 1.25rem; }
.warchest-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
@media (min-width: 820px) {
    .warchest-grid { grid-template-columns: 1.5fr 1fr; }
}
.warchest-meta { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
.warchest-amount {
    font-family: 'Metal Mania', serif;
    font-size: clamp(2.4rem, 7vw, 4rem);
    color: #ff3300;
    text-shadow: 0 0 16px rgba(255,51,0,.5), 0 2px 6px #000;
    line-height: 1;
}
.warchest-goal {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.1rem, 2.8vw, 1.6rem);
    color: #999;
    letter-spacing: 0.15em;
}
.warchest-bar {
    position: relative;
    height: 44px;
    background: #1a0505;
    border: 2px solid #2a0000;
    overflow: hidden;
}
.warchest-fill {
    position: relative;
    height: 100%;
    background: linear-gradient(90deg, #8b0000 0%, #ff3300 60%, #ffaa00 100%);
    width: 0%;
    transition: width 1s ease-out;
    box-shadow: 0 0 24px rgba(255,51,0,.6);
}
.warchest-flames {
    pointer-events: none;
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 60%, rgba(255,170,0,.3), transparent 30%),
        radial-gradient(circle at 60% 40%, rgba(255,51,0,.3), transparent 35%),
        radial-gradient(circle at 80% 70%, rgba(139,0,0,.4), transparent 30%);
    mix-blend-mode: screen;
    animation: flame 4s infinite alternate;
}
@keyframes flame {
    0%   { transform: translateX(0) scale(1); opacity: .8; }
    100% { transform: translateX(-6px) scale(1.05); opacity: 1; }
}
.warchest-pct {
    margin-top: 0.75rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.25em;
    color: #ffaa00;
    text-align: right;
}

.twint-box {
    border: 2px solid #ffaa00;
    background: linear-gradient(180deg, rgba(26,5,5,.95), rgba(10,10,10,.95));
    padding: 2rem 1.5rem;
    text-align: center;
}
.twint-title { font-family: 'Metal Mania', serif; font-size: 1.6rem; color: #ffaa00; margin-bottom: 0.4rem; }
.twint-label { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.3em; color: #999; font-size: 0.85rem; }
.twint-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    color: #fff;
    letter-spacing: 0.1em;
    margin: 0.5rem 0 1rem;
    word-break: break-all;
}
.twint-qr-placeholder {
    margin-top: 1.5rem;
    border: 2px dashed #555;
    padding: 1.5rem 0.5rem;
    color: #555;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.2em;
}
.twint-qr-placeholder small { display: block; font-size: 0.7rem; margin-top: 0.5rem; letter-spacing: 0.05em; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: rgba(6,0,0,.95);
    text-align: center;
    padding: 2.5rem 1rem;
    border-top: 1px solid #2a0000;
    position: relative;
}
.footer-line {
    font-family: 'Metal Mania', serif;
    font-size: 1.3rem;
    color: #8b0000;
    letter-spacing: 0.15em;
}
.footer-disclaimer {
    margin-top: 0.5rem;
    font-family: 'Bebas Neue', sans-serif;
    color: #444;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
}

/* ============================================================
   LOGIN PAGE
   ============================================================ */
.login-body {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    background:
        linear-gradient(rgba(10,5,5,.7), rgba(10,5,5,.85)),
        url('../../images/groomsday_bg.jpg') center/cover no-repeat,
        #0a0a0a;
    padding: 1.5rem;
}
.login-wrap { width: 100%; max-width: 460px; }
.login-card {
    background: rgba(10,5,5,.88);
    border: 2px solid #8b0000;
    padding: 2.5rem 1.75rem;
    text-align: center;
    box-shadow: 0 0 48px rgba(139,0,0,.4);
}
.login-logo {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 0 auto 0.5rem;
    filter: drop-shadow(0 0 12px rgba(255,51,0,.4));
}
.login-title {
    font-family: 'Metal Mania', serif;
    font-size: clamp(2.6rem, 10vw, 4rem);
    color: #fff;
    text-shadow: 0 0 12px rgba(255,51,0,.7), 0 0 32px rgba(255,51,0,.3);
    margin-bottom: 0.25rem;
    line-height: 1;
}
.login-sub {
    font-family: 'Pirata One', serif;
    color: #ffaa00;
    font-size: 1.1rem;
    letter-spacing: 0.3em;
    margin-bottom: 1.75rem;
}
.login-form { text-align: left; }
.login-foot {
    margin-top: 1.75rem;
    font-family: 'Bebas Neue', sans-serif;
    color: #444;
    letter-spacing: 0.3em;
    font-size: 0.8rem;
    text-align: center;
}

/* ============================================================
   ADMIN
   ============================================================ */
.admin-body {
    background: #0d0d0d;
    color: #e0e0e0;
    min-height: 100vh;
    font-family: 'Oswald', sans-serif;
}
.admin-header {
    background: #1a0505;
    border-bottom: 2px solid #8b0000;
    padding: 1rem 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
}
.admin-header h1 {
    font-family: 'Metal Mania', serif;
    color: #ff3300;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
}
.admin-header nav { display: flex; gap: 1rem; flex-wrap: wrap; }
.admin-header nav a {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.15em;
    color: #ffaa00;
    font-size: 0.95rem;
}
.admin-header nav a:hover { color: #fff; text-decoration: underline; }

.admin-main { max-width: 1200px; margin: 2rem auto; padding: 0 1.5rem; }
.admin-card {
    background: #161616;
    border: 1px solid #2a2a2a;
    padding: 1.5rem;
    margin-bottom: 2rem;
}
.admin-card h2 {
    font-family: 'Bebas Neue', sans-serif;
    color: #ffaa00;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 0.5rem;
}

.admin-stats { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.admin-stat {
    flex: 1; min-width: 140px;
    background: #1f1f1f; padding: 1rem;
    border-left: 3px solid #ff3300;
}
.admin-stat .label { color: #999; font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; }
.admin-stat .value { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: #fff; }

.admin-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.admin-table th, .admin-table td {
    padding: 0.6rem 0.5rem;
    border-bottom: 1px solid #222;
    text-align: left;
    vertical-align: top;
}
.admin-table th {
    font-family: 'Bebas Neue', sans-serif;
    color: #ffaa00;
    letter-spacing: 0.15em;
    font-weight: 400;
    background: #1a0505;
}
.admin-table tr:hover td { background: #1a1a1a; }
.admin-table .actions a { color: #ff3300; margin-right: 0.5rem; font-size: 0.85rem; letter-spacing: 0.1em; }
.admin-table .actions a:hover { color: #ffaa00; }
.admin-table-wrap { overflow-x: auto; }

.admin-form label { display:block; margin-top:0.75rem; color: #ffaa00; letter-spacing:0.1em; font-size:0.9rem; }
.admin-form input, .admin-form textarea, .admin-form select {
    width: 100%; padding: 0.6rem; background: #0a0a0a; border: 1px solid #333; color: #fff;
    font-family: 'Oswald', sans-serif; font-size: 1rem; margin-top: 0.25rem;
}
.admin-form textarea { font-family: 'Menlo', 'Consolas', monospace; font-size: 0.9rem; }
.admin-form .actions-row { margin-top: 1.25rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }
.admin-form .help { font-size: 0.85rem; color: #999; margin-top: 0.25rem; line-height: 1.4; }
.admin-msg-success { background: #053a05; color: #aaffaa; padding: 0.75rem; border-left: 3px solid #00aa00; margin-bottom: 1rem; }
.admin-msg-error   { background: #3a0505; color: #ffaaaa; padding: 0.75rem; border-left: 3px solid #aa0000; margin-bottom: 1rem; }

.admin-link { color: #ffaa00; text-decoration: underline; }
.admin-link:hover { color: #ff3300; }

/* ============================================================
   PROGRAMM-SEKTION (Saturday + Sunday)
   ============================================================ */
.programm-section { padding-top: 4rem; }

.programm-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}
@media (min-width: 768px) {
    /* Saturday-Card hat mehr Inhalt — minmax sorgt dafür, dass Sunday-Card
       nicht winzig wird, ohne Saturday künstlich zu klein zu zwängen */
    .programm-grid { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 2.5rem; align-items: start; }
}

.day-card {
    background: rgba(15, 5, 5, 0.78);
    border: 1px solid #2a0000;
    box-shadow: 0 0 24px rgba(0,0,0,.5) inset;
}
.day-card-head {
    background: linear-gradient(90deg, #2a0000 0%, #8b0000 50%, #2a0000 100%);
    border-bottom: 2px solid #ff3300;
    padding: 0.85rem 1.25rem;
    text-align: center;
    position: relative;
}
.day-card-head::before, .day-card-head::after {
    content: '✟';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #ffaa00;
    font-size: 1.1rem;
}
.day-card-head::before { left: 0.85rem; }
.day-card-head::after  { right: 0.85rem; }
.day-card-sub {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.8rem;
    color: #ffaa00;
    letter-spacing: 0.35em;
}
.day-card-title {
    display: block;
    font-family: 'Metal Mania', serif;
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    color: #fff;
    text-shadow: 0 0 10px rgba(255,51,0,.6), 0 2px 4px #000;
    line-height: 1.1;
    letter-spacing: 0.04em;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    color: #e0e0e0;
}
.schedule-table tr {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.schedule-table tr:nth-child(even) {
    background: rgba(255,255,255,0.03);
}
.schedule-table tr:last-child { border-bottom: none; }
.schedule-table th {
    width: 80px;
    padding: 0.85rem 0.85rem 0.85rem 1.25rem;
    text-align: right;
    vertical-align: top;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: #ffaa00;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.schedule-table td {
    padding: 0.85rem 1.25rem 0.85rem 0.5rem;
    vertical-align: top;
    font-family: 'Oswald', sans-serif;
}
.act-name {
    display: block;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.98rem;
}
.act-desc {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.9rem;
    color: #aaa;
    text-transform: none;
    letter-spacing: 0.01em;
    line-height: 1.4;
}

/* STRIP CLUB-Highlight */
.act-highlight {
    background: linear-gradient(90deg, rgba(139,0,0,.25), rgba(255,51,0,.15), rgba(139,0,0,.25)) !important;
}
.act-highlight th { color: #ff3300; }
.act-highlight .act-name {
    font-size: 1.1rem;
    color: #ffaa00;
    text-shadow: 0 0 10px rgba(255,170,0,.5);
}
.act-highlight .act-desc { color: #c79; font-style: italic; }

/* Sehr schmale Bildschirme: Time über Act stapeln */
@media (max-width: 400px) {
    .schedule-table th, .schedule-table td { display: block; width: auto; }
    .schedule-table th {
        text-align: left;
        padding: 0.85rem 1.25rem 0 1.25rem;
        font-size: 1rem;
    }
    .schedule-table td {
        padding: 0.25rem 1.25rem 0.85rem 1.25rem;
    }
}

/* ============================================================
   PAKETE-SEKTION (Festival-Tickets)
   ============================================================ */
.pakete-section { padding-top: 3.5rem; }

.tickets-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 980px;
    margin: 0 auto;
    align-items: stretch;
}
@media (min-width: 768px) {
    .tickets-grid { grid-template-columns: 1fr 1fr; }
}

.ticket-card {
    /* Override des alten .pkg-card-Stylings für die Festival-Tickets */
    background: linear-gradient(180deg, rgba(26,5,5,.95) 0%, rgba(10,10,10,.95) 100%) !important;
    border: 2px solid #ffaa00 !important;
    padding: 0 !important;
    text-align: left !important;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform .15s, box-shadow .15s, opacity .2s, border-color .2s;
    position: relative;
}
.ticket-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 32px rgba(255,170,0,.45);
}
.ticket-card-pro {
    border-color: #ff3300 !important;
    background: linear-gradient(180deg, rgba(42,0,0,.95) 0%, rgba(10,10,10,.95) 100%) !important;
}
.ticket-card-pro:hover {
    box-shadow: 0 0 32px rgba(255,51,0,.65);
}
/* Selected/Dimmed Re-Bind über bestehende JS-Klassen */
.ticket-card.is-selected {
    transform: translateY(-4px);
    box-shadow: 0 0 36px rgba(255,51,0,.75), 0 0 0 2px #ff3300 inset;
    border-color: #ff3300 !important;
}
.ticket-card.is-dimmed { opacity: 0.5; transform: scale(0.97); }
.ticket-card.is-dimmed:hover { opacity: 0.85; }

.ticket-head {
    padding: 1.5rem 1.5rem 1rem;
    text-align: center;
    background:
        radial-gradient(ellipse at top, rgba(139,0,0,.3), transparent 70%),
        transparent;
}
.ticket-medal {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.25rem;
    line-height: 1;
}
.ticket-title {
    font-family: 'Metal Mania', serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: #ffaa00;
    text-shadow: 0 0 10px rgba(255,170,0,.5);
    margin: 0 0 0.25rem;
    line-height: 1.1;
    letter-spacing: 0.03em;
}
.ticket-card-pro .ticket-title { color: #ff3300; text-shadow: 0 0 14px rgba(255,51,0,.6); }
.ticket-tagline {
    font-family: 'Pirata One', serif;
    color: #fff;
    letter-spacing: 0.15em;
    font-size: 1rem;
    margin-bottom: 0.4rem;
}
.ticket-sub {
    font-family: 'Oswald', sans-serif;
    color: #999;
    font-size: 0.92rem;
    line-height: 1.4;
}

/* Trennlinie zwischen Kopf und Body — beide Karten identisch (dezent gepunktet) */
.ticket-perforation {
    height: 1px;
    margin: 0.5rem 1.5rem 0.25rem;
    background-image: radial-gradient(circle, rgba(255,170,0,.55) 1px, transparent 1.5px);
    background-size: 8px 1px;
    background-repeat: repeat-x;
    background-position: left center;
    position: relative;
}
.ticket-perforation::before, .ticket-perforation::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 14px; height: 14px;
    background: #0a0505;
    border-radius: 50%;
}
.ticket-perforation::before { left: -1.5rem; }
.ticket-perforation::after  { right: -1.5rem; }

.ticket-items {
    list-style: none;
    padding: 0.75rem 1.5rem 0.5rem;
    margin: 0;
    flex: 1; /* drückt Total + Button nach unten -> Karten gleich hoch */
}
.ticket-items li {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    padding: 0.4rem 0;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    color: #e0e0e0;
}
.ti-label { white-space: nowrap; }
.ti-label sup { color: #ffaa00; font-size: 0.7em; margin-left: 1px; }
.ti-dots {
    flex: 1;
    border-bottom: 1px dotted #555;
    margin: 0 0.25rem;
    align-self: flex-end;
    padding-bottom: 0.35rem;
}
.ti-price {
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.05em;
    font-size: 1rem;
    white-space: nowrap;
}

/* Trennlinie über dem Total — gezackt */
.ticket-total-row {
    margin: 0.5rem 1.5rem 1rem;
    padding-top: 1rem;
    border-top: 2px dashed rgba(255,170,0,.55);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}
.ticket-card-pro .ticket-total-row { border-top-color: rgba(255,51,0,.65); }
.ticket-total-label {
    font-family: 'Bebas Neue', sans-serif;
    color: #999;
    letter-spacing: 0.3em;
    font-size: 0.9rem;
}
.ticket-total-value {
    font-family: 'Metal Mania', serif;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    color: #ffaa00;
    text-shadow: 0 0 12px rgba(255,170,0,.5);
    line-height: 1;
    letter-spacing: 0.02em;
}
.ticket-card-pro .ticket-total-value {
    color: #ff3300;
    text-shadow: 0 0 14px rgba(255,51,0,.6);
}

.ticket-footnote {
    margin: 0 1.5rem 1rem;
    font-size: 0.78rem;
    color: #888;
    line-height: 1.45;
}

.ticket-btn {
    margin: 0 1.5rem 1.5rem;
    width: calc(100% - 3rem);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
}

/* ============================================================
   REGISTER-SECTION (jetzt eigene Sektion unter Pakete)
   ============================================================ */
.register-section { padding-top: 3.5rem; }

/* ============================================================
   SPLIT-LAYOUT (Programm | Pakete + Form)
   ============================================================ */
.split-section { padding-top: 3.5rem; padding-bottom: 3.5rem; }

.split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 1024px) {
    /* Linke Spalte etwas breiter, weil Programm mehr Inhalt hat */
    .split-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
        gap: 3.5rem;
        align-items: start;
    }
}

.split-col { min-width: 0; }

/* Stacks innerhalb der Spalten — beide Tage / beide Tickets vertikal */
.day-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.tickets-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Anker-Span für #register (kein eigener Layout-Effekt) */
.anchor {
    display: block;
    height: 0;
    visibility: hidden;
    scroll-margin-top: 5rem; /* Topbar-Offset beim Scrollen */
}

/* Form bekommt Header */
.form-section-title {
    font-family: 'Metal Mania', serif;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    color: #ff3300;
    text-shadow: 0 0 10px rgba(255,51,0,.5), 0 2px 4px #000;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 0.04em;
}

/* ============================================================
   WAR CHEST — visuelles Upgrade
   ============================================================ */
.warchest-section {
    /* deutlich mehr Padding, dickere rote Border, Outer-Glow */
    padding: 5.5rem 1.25rem 5.5rem;
    border-top: 3px solid #ff3300;
    border-bottom: 3px solid #ff3300;
    box-shadow:
        0 0 60px rgba(255,51,0,.35),
        0 0 0 1px rgba(255,170,0,.15) inset;
    background: rgba(15,0,0,.94);
    position: relative;
    overflow: hidden;
    animation: warchest-pulse 5s ease-in-out infinite;
}
@keyframes warchest-pulse {
    0%, 100% { box-shadow: 0 0 60px rgba(255,51,0,.35), 0 0 0 1px rgba(255,170,0,.15) inset; }
    50%      { box-shadow: 0 0 90px rgba(255,51,0,.55), 0 0 0 1px rgba(255,170,0,.25) inset; }
}

/* Roter Schimmer im Hintergrund + dezentes Flackern */
.warchest-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(255,51,0,.25), transparent 55%),
        radial-gradient(ellipse at 50% 100%, rgba(139,0,0,.35), transparent 60%);
    z-index: 0;
    animation: warchest-flicker 7s ease-in-out infinite;
}
@keyframes warchest-flicker {
    0%, 100% { opacity: 1; }
    35%      { opacity: .85; }
    36%      { opacity: 1; }
    70%      { opacity: .9; }
}
.warchest-section .section-inner { position: relative; z-index: 1; }

.warchest-title {
    font-size: clamp(2.6rem, 8vw, 4.8rem) !important;
    text-shadow:
        0 0 18px rgba(255,51,0,.7),
        0 0 36px rgba(255,51,0,.45),
        0 4px 8px #000 !important;
    margin-bottom: 0.5rem !important;
}
.warchest-lead {
    font-size: 1.15rem !important;
    color: #ffaa00 !important;
    letter-spacing: 0.2em !important;
    margin-bottom: 2rem !important;
}

/* ----- Erklärtext ----- */
.warchest-intro {
    max-width: 780px;
    margin: 0 auto 2.5rem;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 1.02rem;
    line-height: 1.65;
    color: #d8d8d8;
}
.warchest-intro p { margin-bottom: 0.85rem; }
.warchest-intro p:last-child { margin-bottom: 0; }
.warchest-intro strong { color: #ffaa00; letter-spacing: 0.04em; }

/* ----- Toll-Card (Fixkosten-Liste) ----- */
.toll-card {
    max-width: 780px;
    margin: 0 auto 3rem;
    border: 2px solid #ffaa00;
    background: linear-gradient(180deg, rgba(26,5,5,.92), rgba(10,5,5,.92));
    padding: 1.75rem 1.5rem 1.5rem;
    box-shadow: 0 0 32px rgba(255,170,0,.25), 0 0 0 1px rgba(255,170,0,.1) inset;
}
.toll-title {
    font-family: 'Metal Mania', serif;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    color: #ffaa00;
    text-align: center;
    text-shadow: 0 0 12px rgba(255,170,0,.5);
    letter-spacing: 0.04em;
}
.toll-sub {
    font-family: 'Bebas Neue', sans-serif;
    color: #999;
    text-align: center;
    letter-spacing: 0.3em;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}
.toll-list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
}
.toll-list li {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: baseline;
    gap: 0.6rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255,170,0,.18);
    font-family: 'Oswald', sans-serif;
}
.toll-list li:last-child { border-bottom: none; }
.toll-rank {
    font-family: 'Pirata One', serif;
    color: #ff3300;
    font-size: 1.25rem;
    min-width: 2.2rem;
    text-align: center;
    text-shadow: 0 0 8px rgba(255,51,0,.5);
}
.toll-name {
    color: #fff;
    font-size: 0.98rem;
    letter-spacing: 0.02em;
    line-height: 1.35;
}
.toll-name em { color: #999; font-style: italic; font-size: 0.88em; }
.toll-dots {
    /* visueller Punktleader-Bereich (Wiederverwendung der Grid-Lücke) */
    display: none;
}
.toll-price {
    font-family: 'Bebas Neue', sans-serif;
    color: #ffaa00;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.toll-total {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 2px dashed rgba(255,51,0,.55);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.toll-total-label {
    font-family: 'Bebas Neue', sans-serif;
    color: #999;
    letter-spacing: 0.25em;
    font-size: 0.95rem;
}
.toll-total-value {
    font-family: 'Metal Mania', serif;
    font-size: clamp(1.5rem, 3.5vw, 2.1rem);
    color: #ff3300;
    text-shadow: 0 0 14px rgba(255,51,0,.6);
    letter-spacing: 0.02em;
}

/* Mobile: Toll-Items kompakter, evtl. Name auf zwei Zeilen */
@media (max-width: 480px) {
    .toll-list li { grid-template-columns: auto 1fr; row-gap: 0.15rem; }
    .toll-price { grid-column: 2; text-align: right; }
}

/* prefers-reduced-motion: Pulsieren / Flackern aus */
@media (prefers-reduced-motion: reduce) {
    .warchest-section, .warchest-glow { animation: none !important; }
}

/* ================================================================
   ================================================================
   MODERN REDESIGN OVERRIDES (Hellfest 2022 Vibe)
   ----------------------------------------------------------------
   Override-Block am Ende — Rollback: diesen Block komplett löschen,
   dann ist die alte Metal-Mania-Optik zurück.
   ================================================================ */

/* ---------- TYPOGRAFIE: alle Display-Headlines auf Anton ---------- */
body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-feature-settings: 'ss01', 'cv11';
}
.metal-font,
.section-title,
.section-title-xl,
.day-card-title,
.day-banner-title,
.ticket-title,
.ticket-total-value,
.toll-title,
.toll-total-value,
.warchest-title,
.warchest-amount,
.form-section-title,
.login-title,
.topbar-brand,
.footer-line,
.hero-sub {
    font-family: 'Anton', 'Bebas Neue', sans-serif !important;
    font-weight: 400 !important;
    letter-spacing: 0.02em !important;
    text-transform: uppercase;
    text-shadow: none !important;
}

/* ---------- GLOBAL: Glow / Drop-Shadow weg ---------- */
.section-title,
.section-title-xl,
.warchest-title,
.warchest-lead,
.hero-sub,
.hero-date,
.day-card-title,
.ticket-title,
.toll-title,
.act-name,
.act-highlight .act-name,
.toll-rank,
.warchest-amount,
.form-section-title { text-shadow: none !important; }

/* ---------- HERO ---------- */
.hero-logo { animation: none; filter: drop-shadow(0 4px 24px rgba(0,0,0,.7)); }
.hero-sub { color: #fff !important; letter-spacing: 0.4em !important; font-size: clamp(1.1rem, 2.4vw, 1.6rem) !important; }
.hero-date { color: #999; letter-spacing: 0.35em; font-family: 'Inter', sans-serif; font-weight: 600; font-size: clamp(0.9rem, 1.8vw, 1.1rem) !important; }
.hero-fade { background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.6) 60%, rgba(0,0,0,.9) 100%); }

/* ---------- TOPBAR ---------- */
.topbar { background: rgba(0,0,0,.85); border-bottom: 1px solid rgba(255,255,255,.08); }
.topbar-brand { color: #ff3300 !important; font-size: 1.4rem !important; letter-spacing: 0.06em !important; }
.topbar-nav a { color: #fff; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.78rem; letter-spacing: 0.18em; }
.topbar-nav a:hover { color: #ff3300; text-shadow: none; }
.topbar-logout { color: #999 !important; }
.topbar-logout:hover { color: #ff3300 !important; }

/* ---------- SECTIONS ---------- */
.section { background: rgba(0,0,0,.78) !important; padding: 5rem 1.25rem !important; }
.section-title {
    color: #fff !important;
    font-size: clamp(2rem, 5vw, 3.4rem) !important;
    letter-spacing: 0.04em !important;
    margin-bottom: 2.5rem !important;
    line-height: 1;
}
.section-title-xl { font-size: clamp(2.6rem, 7vw, 4.5rem) !important; }
.section-lead { color: #999; letter-spacing: 0.06em; font-family: 'Inter', sans-serif; }

/* ---------- SCHEDULE ---------- */
.day-card { border: 1px solid rgba(255,255,255,.08) !important; background: rgba(0,0,0,.5) !important; box-shadow: none !important; }
.day-card-head {
    background: transparent !important;
    border-bottom: 1px solid rgba(255,255,255,.15) !important;
    padding: 1.5rem 1.5rem 1.25rem !important;
    text-align: left !important;
}
.day-card-head::before, .day-card-head::after { display: none !important; }
.day-card-sub {
    color: #999 !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600;
    font-size: 0.75rem !important;
    letter-spacing: 0.3em !important;
    margin-bottom: 0.35rem;
}
.day-card-title { color: #fff !important; font-size: clamp(1.6rem, 3.5vw, 2.4rem) !important; }

.schedule-table tr { border-bottom: 1px solid rgba(255,255,255,.06); background: transparent !important; }
.schedule-table tr:nth-child(even) { background: transparent !important; }
.schedule-table th {
    color: #999 !important;
    font-family: 'JetBrains Mono', 'Menlo', monospace !important;
    font-feature-settings: 'tnum';
    font-size: 0.95rem !important;
    font-weight: 600;
    letter-spacing: 0;
    width: 76px;
}
.act-name { color: #fff !important; font-family: 'Inter', sans-serif !important; font-weight: 600; font-size: 0.95rem !important; letter-spacing: 0.02em !important; }
.act-desc { color: #888 !important; font-family: 'Inter', sans-serif !important; }

/* STRIP CLUB Highlight: dezenter roter Border-Left statt voll-flächiger Background */
.act-highlight {
    background: transparent !important;
    border-left: 2px solid #ff3300;
    background-image: linear-gradient(90deg, rgba(255,51,0,.08), transparent 60%) !important;
}
.act-highlight th { color: #ff3300 !important; }
.act-highlight .act-name { color: #fff !important; font-size: 1rem !important; }
.act-highlight .act-desc { color: #999 !important; font-style: normal; }

/* ---------- TICKETS ---------- */
.ticket-card {
    border: 1px solid rgba(255,255,255,.12) !important;
    background: rgba(0,0,0,.65) !important;
    box-shadow: none !important;
    padding: 0 !important;
    transition: border-color .2s, opacity .2s, transform .2s !important;
}
.ticket-card:hover { transform: none !important; box-shadow: none !important; border-color: rgba(255,255,255,.3) !important; }
.ticket-card-pro { border-color: rgba(255,51,0,.4) !important; background: rgba(0,0,0,.65) !important; }
.ticket-card-pro:hover { box-shadow: none !important; border-color: #ff3300 !important; }
.ticket-card.is-selected { transform: none !important; border-color: #ff3300 !important; box-shadow: 0 0 0 1px #ff3300 inset !important; }
.ticket-card.is-dimmed { opacity: 0.4; transform: none !important; }
.ticket-card.is-dimmed:hover { opacity: 0.75; }

.ticket-medal { display: none !important; }
.ticket-perforation { display: none !important; }

.ticket-head { padding: 1.75rem 1.5rem 1.25rem !important; text-align: left !important; background: transparent !important; }
.ticket-title { color: #fff !important; font-size: clamp(1.7rem, 3.5vw, 2.2rem) !important; line-height: 1; margin-bottom: 0.6rem !important; }
.ticket-card-pro .ticket-title { color: #fff !important; }
.ticket-tagline {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600;
    color: #ff3300 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase;
    font-size: 0.78rem !important;
    margin-bottom: 0.5rem !important;
}
.ticket-sub { color: #999 !important; font-family: 'Inter', sans-serif !important; font-size: 0.92rem !important; }

.ticket-items { padding: 0.5rem 1.5rem 0.75rem !important; }
.ticket-items li { font-family: 'Inter', sans-serif !important; font-size: 0.92rem !important; color: #ddd; padding: 0.55rem 0 !important; border-bottom: 1px solid rgba(255,255,255,.06); }
.ticket-items li:last-child { border-bottom: none; }
.ti-dots { display: none !important; }
.ticket-items li { display: flex !important; justify-content: space-between !important; align-items: baseline !important; gap: 1rem; }
.ti-label { color: #ddd; }
.ti-price { color: #fff !important; font-family: 'JetBrains Mono', monospace !important; font-weight: 600; font-size: 0.9rem !important; letter-spacing: 0; }

.ticket-total-row { border-top: 1px solid rgba(255,255,255,.15) !important; margin: 0.25rem 1.5rem 1rem !important; padding-top: 1rem !important; }
.ticket-total-label { color: #999 !important; font-family: 'Inter', sans-serif !important; letter-spacing: 0.25em !important; font-size: 0.75rem !important; }
.ticket-total-value { color: #fff !important; font-size: clamp(1.6rem, 3.5vw, 2.2rem) !important; }
.ticket-card-pro .ticket-total-value { color: #ff3300 !important; }

.ticket-footnote { color: #777 !important; font-family: 'Inter', sans-serif !important; }

.ticket-btn { margin: 0 1.5rem 1.5rem !important; }

/* ---------- BUTTONS ---------- */
.btn { font-family: 'Inter', sans-serif !important; font-weight: 600 !important; letter-spacing: 0.18em !important; font-size: 0.9rem !important; padding: 0.95rem 1.4rem !important; }
.btn-primary { background: #ff3300 !important; color: #fff !important; border-color: #ff3300 !important; }
.btn-primary:hover { background: #fff !important; color: #000 !important; border-color: #fff !important; transform: none !important; box-shadow: none !important; }
.btn-outline { color: #fff !important; border-color: rgba(255,255,255,.4) !important; }
.btn-outline:hover { background: #fff !important; color: #000 !important; border-color: #fff !important; box-shadow: none !important; }

/* ---------- FORM IN CARD ---------- */
.form-holder[hidden] { display: none; }
.card-form-slot { /* leerer Slot, JS füllt mit form-wrap */ }
.ticket-card .form-wrap {
    /* Override: Form-Wrap im Card-Kontext, immer per data-open gesteuert */
    max-height: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0;
    transition: max-height .45s ease, opacity .25s ease, padding .25s ease !important;
    border-top: 1px solid transparent;
    background: rgba(0,0,0,.4);
}
.ticket-card .form-wrap[data-open="true"] {
    max-height: 2400px !important;
    opacity: 1 !important;
    padding: 1.5rem 1.5rem 1.5rem;
    border-top-color: rgba(255,255,255,.12);
    overflow: visible !important;
}
/* Auf Mobile gleiche Logik (nicht mehr always-open) */
@media (max-width: 1023px) {
    .ticket-card .form-wrap {
        max-height: 0 !important;
        opacity: 0 !important;
        overflow: hidden !important;
    }
    .ticket-card .form-wrap[data-open="true"] {
        max-height: 2400px !important;
        opacity: 1 !important;
        overflow: visible !important;
    }
    .form-close { display: inline-block !important; }
    .form-selected { display: block !important; }
}

.form-close {
    position: static !important;
    display: inline-block !important;
    width: auto !important; height: auto !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.78rem !important;
    font-weight: 600;
    color: #999 !important;
    letter-spacing: 0.18em;
    padding: 0.4rem 0.6rem;
    border: 1px solid rgba(255,255,255,.2);
    margin-bottom: 1rem;
}
.form-close:hover { color: #fff !important; border-color: #fff; }

.form-selected {
    margin-bottom: 1.25rem;
    color: #999 !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 500;
    letter-spacing: 0.05em !important;
    font-size: 0.85rem !important;
    text-align: left !important;
    text-transform: none;
}
.form-selected strong { color: #ff3300; font-weight: 700; letter-spacing: 0.05em; }

.register-form { background: transparent !important; padding: 0 !important; border: none !important; }

.form-label { color: #999 !important; font-family: 'Inter', sans-serif !important; font-weight: 600 !important; font-size: 0.72rem !important; letter-spacing: 0.2em !important; }
.form-input {
    background: rgba(255,255,255,.04) !important;
    border: 1px solid rgba(255,255,255,.15) !important;
    color: #fff !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.95rem !important;
    border-radius: 2px;
}
.form-input:focus { border-color: #ff3300 !important; box-shadow: 0 0 0 1px #ff3300 !important; }

.form-fieldset { border: 1px solid rgba(255,255,255,.1) !important; }
.radio-label { font-family: 'Inter', sans-serif !important; }

.form-success {
    background: rgba(0,0,0,.5) !important;
    border: 1px solid rgba(255,51,0,.5) !important;
}
.form-success h3 { color: #fff !important; font-size: 2rem !important; text-shadow: none !important; }
.form-success p { color: #999 !important; font-family: 'Inter', sans-serif !important; }

/* ---------- WAR CHEST ---------- */
.warchest-section {
    animation: none !important;
    border: 1px solid rgba(255,51,0,.3) !important;
    border-left: none !important;
    border-right: none !important;
    box-shadow: none !important;
    background: rgba(0,0,0,.85) !important;
    padding: 5rem 1.25rem !important;
}
.warchest-glow { display: none !important; }
.warchest-title {
    color: #fff !important;
    font-size: clamp(2.6rem, 7vw, 4.5rem) !important;
    margin-bottom: 0.75rem !important;
}
.warchest-lead { color: #999 !important; font-family: 'Inter', sans-serif !important; letter-spacing: 0.2em !important; font-size: 0.9rem !important; }
.warchest-intro { color: #bbb !important; font-family: 'Inter', sans-serif !important; font-size: 0.98rem !important; line-height: 1.7 !important; }
.warchest-intro strong { color: #ff3300 !important; }

.toll-card {
    border: 1px solid rgba(255,255,255,.1) !important;
    background: rgba(0,0,0,.5) !important;
    box-shadow: none !important;
}
.toll-title { color: #fff !important; font-size: clamp(1.4rem, 3vw, 1.9rem) !important; }
.toll-sub { color: #999 !important; font-family: 'Inter', sans-serif !important; }
.toll-list li { border-bottom: 1px solid rgba(255,255,255,.08) !important; font-family: 'Inter', sans-serif !important; }
.toll-rank {
    color: #ff3300 !important;
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 0.9rem !important;
    font-weight: 700;
    text-shadow: none !important;
}
.toll-name { color: #fff !important; font-family: 'Inter', sans-serif !important; }
.toll-name em { color: #777 !important; }
.toll-price { color: #fff !important; font-family: 'JetBrains Mono', monospace !important; font-weight: 600; font-size: 0.95rem !important; letter-spacing: 0 !important; }
.toll-total { border-top: 1px solid rgba(255,51,0,.4) !important; }
.toll-total-label { color: #999 !important; font-family: 'Inter', sans-serif !important; }
.toll-total-value { color: #ff3300 !important; font-size: clamp(1.4rem, 3vw, 1.9rem) !important; }

/* ---------- PROGRESS BAR ---------- */
.warchest-amount { color: #fff !important; font-size: clamp(2.2rem, 5.5vw, 3.4rem) !important; }
.warchest-goal { color: #999 !important; font-family: 'JetBrains Mono', monospace !important; }
.warchest-bar { background: rgba(255,255,255,.05) !important; border: 1px solid rgba(255,255,255,.12) !important; height: 10px !important; }
.warchest-fill { background: #ff3300 !important; box-shadow: none !important; }
.warchest-flames { display: none !important; }
.warchest-pct { color: #999 !important; font-family: 'JetBrains Mono', monospace !important; letter-spacing: 0.15em !important; }

/* ---------- TWINT BOX ---------- */
.twint-box { border: 1px solid rgba(255,255,255,.12) !important; background: rgba(0,0,0,.5) !important; }
.twint-title { color: #fff !important; font-family: 'Anton', sans-serif !important; font-size: 1.4rem !important; }
.twint-label { color: #999 !important; font-family: 'Inter', sans-serif !important; }
.twint-number { color: #ff3300 !important; font-family: 'JetBrains Mono', monospace !important; letter-spacing: 0.05em !important; }
.twint-qr-placeholder { border-color: rgba(255,255,255,.15) !important; color: #555; font-family: 'Inter', sans-serif !important; }

/* ---------- FOOTER ---------- */
.footer { background: rgba(0,0,0,.95) !important; border-top: 1px solid rgba(255,255,255,.08) !important; }
.footer-line { color: #fff !important; font-size: 1.1rem !important; letter-spacing: 0.2em !important; }
.footer-disclaimer { color: #555 !important; font-family: 'Inter', sans-serif !important; }

/* ---------- LOGIN ---------- */
.login-card { border-color: rgba(255,255,255,.15) !important; background: rgba(0,0,0,.85) !important; box-shadow: none !important; }
.login-sub { color: #999 !important; font-family: 'Inter', sans-serif !important; font-weight: 600; letter-spacing: 0.3em !important; }
.login-foot { color: #555 !important; font-family: 'Inter', sans-serif !important; }

/* ================================================================
   ================================================================
   TOPBAR-TICKER + WAR-CHEST KONTRAST-BLOCK
   ----------------------------------------------------------------
   Override-Block — Rollback: diesen Block am Ende löschen, dann ist
   das alte Topbar-Menü und der gleichförmige War-Chest-Background
   wieder aktiv (zusammen mit dem Restore von home.php aus .bak).
   ================================================================ */

/* ---------- TOPBAR LAYOUT ---------- */
.topbar-inner {
    display: grid !important;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.25rem;
}
/* Altes Nav verstecken, falls noch im DOM */
.topbar-nav { display: none !important; }

/* ---------- DONATION TICKER ---------- */
.topbar-ticker {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 0.85rem;
    row-gap: 0.2rem;
    align-items: center;
    padding: 0.4rem 0.85rem;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 2px;
    text-decoration: none;
    cursor: pointer;
    max-width: 360px;
    margin: 0 auto;
    transition: border-color .15s, background .15s;
    background: rgba(255,255,255,.02);
}
.topbar-ticker:hover {
    border-color: #ff3300;
    background: rgba(255,51,0,.06);
}
.topbar-ticker:hover .ticker-amount { color: #ff3300; }

.ticker-label {
    grid-row: 1 / 3;
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: #999;
    line-height: 1.1;
    border-right: 1px solid rgba(255,255,255,.12);
    padding-right: 0.85rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.ticker-amounts {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    font-family: 'JetBrains Mono', 'Menlo', monospace;
    font-size: 0.85rem;
    line-height: 1.1;
}
.ticker-amount { color: #fff; font-weight: 600; transition: color .15s; }
.ticker-sep    { color: #555; }
.ticker-goal   { color: #999; font-weight: 400; }

.ticker-bar {
    display: block;
    height: 3px;
    background: rgba(255,255,255,.08);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}
.ticker-fill {
    display: block;
    height: 100%;
    background: #ff3300;
    width: 0%;
    transition: width .8s ease-out;
    /* Subtiler Pulse — alle 4s, nur leichte Helligkeitsänderung */
    animation: ticker-pulse 4s ease-in-out infinite;
}
@keyframes ticker-pulse {
    0%, 100% { box-shadow: 0 0 0 rgba(255,51,0,0); }
    50%      { box-shadow: 0 0 6px rgba(255,51,0,.6); }
}
@media (prefers-reduced-motion: reduce) {
    .ticker-fill { animation: none; }
}

/* Logout: dezenter rechts */
.topbar-logout {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600;
    font-size: 0.72rem !important;
    letter-spacing: 0.2em !important;
    color: #777 !important;
    border: none !important;
    padding: 0 !important;
    transition: color .15s;
}
.topbar-logout:hover { color: #ff3300 !important; }

/* Mobile: kompakter */
@media (max-width: 760px) {
    .topbar-inner {
        grid-template-columns: auto 1fr auto;
        gap: 0.6rem;
        padding: 0.6rem 0.85rem !important;
    }
    .topbar-brand { font-size: 1.05rem !important; }
    .topbar-ticker {
        max-width: none;
        padding: 0.3rem 0.55rem;
        column-gap: 0.5rem;
    }
    .ticker-label {
        display: none;
    }
    .ticker-amounts { font-size: 0.72rem; gap: 0.25rem; }
    .topbar-logout { font-size: 0.65rem !important; }
}
@media (max-width: 420px) {
    /* Sehr schmale Screens: Brand und Logout schrumpfen, Ticker bekommt Platz */
    .topbar-brand { font-size: 0.95rem !important; }
    .ticker-amounts { font-size: 0.7rem; }
}

/* ---------- WAR CHEST: Kontrast-Block (Option B — dark red tint) ---------- */
.warchest-section {
    /* Dunkelroter Tint statt halbtransparent schwarz — hebt sich ab,
       passt aber zum bestehenden Akzent. Hintergrundbild wird bewusst
       überdeckt für visuellen Bruch. */
    background: linear-gradient(180deg, #1a0303 0%, #220505 50%, #1a0303 100%) !important;
    border-top: 1px solid rgba(255,51,0,.5) !important;
    border-bottom: 1px solid rgba(255,51,0,.5) !important;
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
    position: relative;
    z-index: 1; /* über dem Hintergrund-Layer */
}

/* Headline noch eine Stufe prominenter (Anker-Element) */
.warchest-title {
    font-size: clamp(3.2rem, 9vw, 5.8rem) !important;
    margin-bottom: 1rem !important;
    color: #fff !important;
}
.warchest-lead {
    color: #b88 !important;
    font-size: 1rem !important;
}

/* Innere Boxen passen sich dem dunkelroten Tint an */
.warchest-intro { color: #ddd !important; }
.warchest-intro strong { color: #ff6633 !important; }

.toll-card {
    background: rgba(0,0,0,.45) !important;
    border-color: rgba(255,51,0,.25) !important;
}
.twint-box {
    background: rgba(0,0,0,.45) !important;
    border-color: rgba(255,255,255,.15) !important;
}

/* Progress-Bar etwas heller, damit auf rotem Background sichtbar */
.warchest-bar {
    background: rgba(255,255,255,.08) !important;
    border-color: rgba(255,255,255,.18) !important;
}

/* ================================================================
   ================================================================
   WAR CHEST KOMPAKT-BANNER (zweispaltig, attribute-driven toggle)
   ----------------------------------------------------------------
   Override-Block am Ende — Rollback: diesen Block löschen.
   ================================================================ */

/* ---------- Sektion: kompakter ---------- */
#warchest.warchest-section {
    padding-top: 3rem !important;
    padding-bottom: 3.5rem !important;
}
#warchest .warchest-title {
    font-size: clamp(2.4rem, 6vw, 4rem) !important;
    margin-bottom: 0.4rem !important;
}
#warchest .warchest-lead {
    font-size: 0.9rem !important;
    margin-bottom: 2rem !important;
    letter-spacing: 0.18em !important;
}

/* ---------- Banner-Grid: explizit zweispaltig ab 768px ---------- */
#warchest .wc-banner {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}
@media (min-width: 768px) {
    #warchest .wc-banner {
        grid-template-columns: 1fr 1fr !important;
        gap: 3rem !important;
        align-items: start !important;
    }
}

#warchest .wc-col { min-width: 0; }

/* ---------- LINKE SPALTE: Status + TWINT ---------- */
#warchest .warchest-meta {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    margin: 0 0 0.85rem;
    flex-wrap: wrap;
}
#warchest .warchest-amount {
    font-family: 'Anton', sans-serif !important;
    font-size: clamp(2.6rem, 5.5vw, 3.6rem) !important;
    color: #fff !important;
    line-height: 1;
    letter-spacing: 0.02em;
    text-shadow: none !important;
}
#warchest .warchest-goal {
    font-family: 'JetBrains Mono', monospace !important;
    font-size: clamp(0.9rem, 1.8vw, 1.1rem) !important;
    color: #999 !important;
    letter-spacing: 0;
}

#warchest .warchest-bar {
    height: 18px !important;
    background: rgba(255,255,255,.08) !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}
#warchest .warchest-fill {
    height: 100%;
    background: #ff3300 !important;
    box-shadow: none !important;
    transition: width 1s cubic-bezier(.2,.7,.3,1) !important;
}
#warchest .warchest-flames { display: none !important; }

#warchest .warchest-pct {
    margin: 0.6rem 0 0 !important;
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 0.82rem !important;
    color: #999 !important;
    letter-spacing: 0.1em !important;
    text-align: left !important;
    text-transform: uppercase;
}

#warchest .wc-voluntary {
    margin: 0.85rem 0 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #888;
    letter-spacing: 0.02em;
}
#warchest .wc-voluntary strong { color: #ff3300; font-weight: 700; }

/* ---------- TWINT-Box (kompakt, eigenes Markup .wc-twint) ---------- */
#warchest .wc-twint {
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(0,0,0,.35);
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
#warchest .wc-twint-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: #999;
    text-transform: uppercase;
}
#warchest .wc-twint-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(1.1rem, 2.4vw, 1.5rem);
    font-weight: 600;
    color: #ff3300;
    letter-spacing: 0.05em;
    word-break: break-all;
    line-height: 1.1;
}
#warchest .wc-twint-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    align-items: center;
    margin-top: 0.5rem;
}
#warchest .wc-twint-copy {
    padding: 0.55rem 0.85rem !important;
    font-size: 0.72rem !important;
    margin: 0 !important;
    width: 100%;
}
#warchest .wc-twint-qr {
    width: 64px;
    height: 64px;
    border: 1px dashed rgba(255,255,255,.25);
    color: #555;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ---------- RECHTE SPALTE: Toggle + collapsible ---------- */
#warchest .wc-toggle {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
    padding: 1rem 1.25rem;
    background: transparent;
    border: 1px solid rgba(255,51,0,.4);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .15s, border-color .15s;
    text-align: left;
}
#warchest .wc-toggle:hover {
    background: rgba(255,51,0,.1);
    border-color: #ff3300;
}
#warchest .wc-toggle:focus-visible { outline: 2px solid #ff3300; outline-offset: 2px; }
#warchest .wc-toggle-icon {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.4rem;
    line-height: 1;
    color: #ff3300;
    width: 1.3rem;
    text-align: center;
    flex-shrink: 0;
}

/* Default: collapsed. Attribute-getrieben für maximale Klarheit. */
#warchest .wc-details {
    overflow: hidden;
    transition: max-height .55s ease, opacity .35s ease, margin-top .35s ease;
}
#warchest .wc-details[data-collapsed="true"] {
    max-height: 0 !important;
    opacity: 0 !important;
    margin-top: 0 !important;
    pointer-events: none;
}
#warchest .wc-details[data-collapsed="false"] {
    max-height: 4000px !important;
    opacity: 1 !important;
    margin-top: 1rem !important;
    pointer-events: auto;
}

/* Innere Boxen kompakt im Detail-Bereich */
#warchest .wc-details .warchest-intro {
    margin: 0 0 1.25rem !important;
    text-align: left !important;
    font-size: 0.92rem !important;
    color: #bbb !important;
    line-height: 1.6 !important;
}
#warchest .wc-details .warchest-intro p { margin-bottom: 0.65rem; }
#warchest .wc-details .warchest-intro strong { color: #ff6633 !important; }

#warchest .wc-details .toll-card {
    background: transparent !important;
    border: 1px solid rgba(255,255,255,.1) !important;
    padding: 1.25rem !important;
    margin: 0 !important;
    box-shadow: none !important;
}
#warchest .wc-details .toll-title {
    font-family: 'Anton', sans-serif !important;
    font-size: 1.1rem !important;
    text-align: left !important;
    margin-bottom: 0.15rem !important;
    color: #fff !important;
    text-shadow: none !important;
}
#warchest .wc-details .toll-sub {
    font-family: 'Inter', sans-serif !important;
    text-align: left !important;
    margin-bottom: 1rem !important;
    font-size: 0.7rem !important;
    color: #777 !important;
    letter-spacing: 0.25em !important;
}
#warchest .wc-details .toll-list { margin: 0 !important; padding: 0 !important; }
#warchest .wc-details .toll-list li {
    padding: 0.55rem 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
    grid-template-columns: 2rem 1fr auto !important;
    gap: 0.6rem !important;
}
#warchest .wc-details .toll-rank {
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 0.85rem !important;
    color: #ff3300 !important;
    text-shadow: none !important;
    min-width: 0 !important;
    text-align: left !important;
}
#warchest .wc-details .toll-name { color: #fff !important; font-size: 0.9rem !important; font-family: 'Inter', sans-serif !important; }
#warchest .wc-details .toll-name em { color: #777 !important; font-style: italic !important; }
#warchest .wc-details .toll-price {
    color: #fff !important;
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 0.88rem !important;
    letter-spacing: 0 !important;
}
#warchest .wc-details .toll-total {
    border-top: 1px solid rgba(255,51,0,.4) !important;
    padding-top: 1rem !important;
    margin-top: 1rem !important;
}
#warchest .wc-details .toll-total-label { color: #999 !important; font-family: 'Inter', sans-serif !important; }
#warchest .wc-details .toll-total-value {
    color: #ff3300 !important;
    font-family: 'Anton', sans-serif !important;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem) !important;
    text-shadow: none !important;
}

/* ---------- Mobile: alles untereinander, kompakter ---------- */
@media (max-width: 767px) {
    #warchest.warchest-section { padding-top: 2.25rem !important; padding-bottom: 2.5rem !important; }
    #warchest .warchest-title { font-size: clamp(2rem, 8vw, 3rem) !important; }
    #warchest .wc-twint-actions { grid-template-columns: 1fr; }
    #warchest .wc-twint-qr { display: none; }
    #warchest .wc-toggle { font-size: 0.78rem; padding: 0.85rem 1rem; }
}

/* ---------- prefers-reduced-motion ---------- */
@media (prefers-reduced-motion: reduce) {
    #warchest .warchest-fill,
    #warchest .wc-details { transition: none !important; }
}

/* ================================================================
   ================================================================
   WAR CHEST — verspielt-humorvoller Pitch (Crowdfunding-Look)
   ----------------------------------------------------------------
   Override-Block am Ende — Rollback: diesen Block löschen.
   Inhalte: Toll-Liste + erster Pitch-Absatz IMMER sichtbar; nur
   der Zusatz-Absatz versteckt sich hinter "Read more".
   ================================================================ */

/* Subtitle in playful italic */
#warchest .warchest-lead {
    font-style: italic;
    color: #c0c0c0 !important;
    font-size: 1rem !important;
    letter-spacing: 0.04em !important;
    text-transform: none !important;
    margin-bottom: 2rem !important;
    font-family: 'Inter', sans-serif !important;
}

/* Headline-Glyph (Schädel) */
#warchest .wc-glyph {
    color: #ff3300;
    font-weight: 400;
    margin-right: 0.35em;
    font-size: 0.85em;
    vertical-align: 0.05em;
}
#warchest .wc-glyph-small {
    margin-right: 0.5em;
    font-size: 0.9em;
    color: #ff3300;
}

/* ---------- LINKE SPALTE: Voluntary-Block kombiniert ---------- */
#warchest .wc-voluntary {
    margin: 1rem 0 1.25rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #ddd;
    line-height: 1.4;
}
#warchest .wc-voluntary strong {
    display: block;
    color: #ff3300;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 0.25rem;
}
#warchest .wc-voluntary-sub {
    display: block;
    color: #888;
    font-size: 0.85rem;
    font-style: italic;
}

/* ---------- RECHTE SPALTE: Pitch + Toll ---------- */
#warchest .wc-pitch { margin-bottom: 2rem; }

#warchest .wc-pitch-short {
    font-family: 'Inter', sans-serif;
    font-size: 0.98rem;
    line-height: 1.65;
    color: #ddd;
    margin: 0 0 0.85rem;
}
#warchest .wc-pitch-short strong {
    color: #ff3300;
    font-weight: 700;
    letter-spacing: 0.02em;
}
#warchest .wc-pitch-more {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #b8b8b8;
    margin: 0.5rem 0 0.5rem;
    font-style: italic;
}

/* Read-more Collapse — attribute-driven */
#warchest .wc-more {
    overflow: hidden;
    transition: max-height .5s ease, opacity .3s ease, margin .3s ease;
}
#warchest .wc-more[data-collapsed="true"] {
    max-height: 0 !important;
    opacity: 0 !important;
    margin: 0 !important;
    pointer-events: none;
}
#warchest .wc-more[data-collapsed="false"] {
    max-height: 800px !important;
    opacity: 1 !important;
    margin-top: 0.5rem !important;
}

/* Toggle-Button: dezenter als vorher (Pitch ist jetzt teaser, kein Mystery) */
#warchest .wc-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.85rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,.2);
    color: #ccc;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .15s, border-color .15s, color .15s;
}
#warchest .wc-toggle:hover {
    background: rgba(255,51,0,.08);
    border-color: rgba(255,51,0,.5);
    color: #fff;
}
#warchest .wc-toggle:focus-visible { outline: 2px solid #ff3300; outline-offset: 2px; }
#warchest .wc-toggle-icon {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.05rem;
    line-height: 1;
    color: #ff3300;
    width: 0.85rem;
    text-align: center;
    flex-shrink: 0;
}

/* ---------- TOLL OF GLORY (immer sichtbar, kompakt) ---------- */
#warchest .wc-toll {
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}
#warchest .wc-toll-title {
    font-family: 'Anton', sans-serif;
    font-size: 1.15rem;
    color: #fff;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-shadow: none !important;
}
#warchest .wc-toll-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
#warchest .wc-toll-list li {
    display: grid;
    grid-template-columns: 2rem 1fr auto;
    align-items: baseline;
    gap: 0.75rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
    transition: background .15s, padding-left .15s;
    font-family: 'Inter', sans-serif;
}
#warchest .wc-toll-list li:hover {
    background: rgba(255,51,0,.04);
    padding-left: 0.5rem;
}
#warchest .wc-toll-list li:last-child { border-bottom: none; }
#warchest .wc-toll-rank {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ff3300;
    text-align: left;
    line-height: 1.3;
}
#warchest .wc-toll-name {
    color: #fff;
    font-size: 0.92rem;
    line-height: 1.3;
}
#warchest .wc-toll-note {
    color: #777;
    font-style: italic;
    font-size: 0.85em;
    margin-left: 0.3em;
}
#warchest .wc-toll-price {
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0;
    white-space: nowrap;
}

#warchest .wc-toll-total {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255,51,0,.4);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.5rem;
}
#warchest .wc-toll-total-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #999;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.78rem;
}
#warchest .wc-toll-total-value {
    font-family: 'Anton', sans-serif;
    font-size: clamp(1.3rem, 2.6vw, 1.7rem);
    color: #ff3300;
    letter-spacing: 0.02em;
}

/* Mobile: Padding auf wc-toll-list-li:hover deaktivieren (Touch-Geräte) */
@media (hover: none) {
    #warchest .wc-toll-list li:hover {
        background: transparent;
        padding-left: 0;
    }
}
@media (max-width: 767px) {
    #warchest .wc-toll-list li {
        grid-template-columns: 1.5rem 1fr auto;
        gap: 0.5rem;
        padding: 0.5rem 0;
    }
    #warchest .wc-pitch-short, #warchest .wc-pitch-more { font-size: 0.92rem; }
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    #warchest .wc-more,
    #warchest .wc-toll-list li { transition: none !important; }
}

/* ================================================================
   ================================================================
   WAR CHEST — Titel in linke Spalte, Grau-Tint, mehr Atmen
   ----------------------------------------------------------------
   Override-Block am Ende — Rollback: diesen Block löschen.
   ================================================================ */

/* ---------- Sektions-Background: rot → dunkelgrau ---------- */
#warchest.warchest-section {
    background: linear-gradient(180deg, #161616 0%, #1c1c1c 50%, #161616 100%) !important;
    border-top: 2px solid rgba(255,51,0,.55) !important;
    border-bottom: 2px solid rgba(255,51,0,.55) !important;
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
}

/* ---------- Banner-Grid: vertikales Spacing zwischen Spalten gap erhöhen,
              Spalten-Inhalt bekommt eigene gaps für Rhythm ---------- */
#warchest .wc-banner {
    gap: 3rem;
    align-items: start !important;
}
@media (min-width: 768px) {
    #warchest .wc-banner { gap: 3.5rem !important; }
}

/* Innerer vertikaler Rhythm pro Spalte über flex+gap (statt margin-Stapel) */
#warchest .wc-col-status,
#warchest .wc-col-info {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

/* Reset einiger margin-Werte in der linken Spalte, damit gap allein sauber wirkt */
#warchest .wc-col-status > * { margin: 0 !important; }
#warchest .wc-col-info  > * { margin: 0 !important; }

/* ---------- Titel-Block in linker Spalte (statt zentriert oben) ---------- */
#warchest .wc-heading {
    /* eigener Block oben links */
    text-align: left;
}
#warchest .warchest-title {
    /* deutlich kompakter als section-title-xl, links-bündig */
    font-family: 'Anton', sans-serif !important;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem) !important;
    color: #fff !important;
    text-shadow: none !important;
    letter-spacing: 0.04em !important;
    line-height: 1 !important;
    margin: 0 0 0.4rem !important;
    text-align: left !important;
    text-transform: uppercase;
}
#warchest .warchest-lead {
    font-family: 'Inter', sans-serif !important;
    font-style: italic !important;
    color: #999 !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.02em !important;
    text-transform: none !important;
    text-align: left !important;
    margin: 0 !important;
}
#warchest .wc-heading .wc-glyph {
    color: #ff3300;
    margin-right: 0.4rem;
    font-size: 0.9em;
}

/* ---------- Status-Bereich Spacing ---------- */
#warchest .warchest-meta { margin-top: 0.5rem !important; }
#warchest .warchest-bar  { margin-top: 0 !important; }
#warchest .warchest-pct  { margin-top: 0 !important; }

/* TWINT-Box bekommt etwas mehr Atem nach oben durch den parent gap */
#warchest .wc-twint { margin-top: 0.25rem !important; }

/* ---------- Rechte Spalte Spacing ---------- */
#warchest .wc-pitch { display: flex; flex-direction: column; gap: 0.85rem; }
#warchest .wc-toll  { padding-top: 0; margin-top: 0; border-top: none; }

/* Trenner zwischen Pitch und Toll-Liste statt border-top auf wc-toll */
#warchest .wc-col-info > .wc-toll {
    position: relative;
    padding-top: 1.5rem !important;
}
#warchest .wc-col-info > .wc-toll::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: rgba(255,255,255,.12);
}

/* ---------- Mobile: weniger gap, Titel etwas kleiner ---------- */
@media (max-width: 767px) {
    #warchest.warchest-section {
        padding-top: 2.5rem !important;
        padding-bottom: 2.75rem !important;
    }
    #warchest .wc-banner { gap: 2rem !important; }
    #warchest .wc-col-status,
    #warchest .wc-col-info { gap: 1.2rem; }
    #warchest .warchest-title { font-size: clamp(1.6rem, 6vw, 2rem) !important; }
}

/* ================================================================
   ================================================================
   MOBILE HERO — Banner-Split deaktivieren, Original-PNG zeigen
   ----------------------------------------------------------------
   Auf schmalen Viewports werden die zwei 50vw/35vw bg-front-Hälften
   ausgeblendet (sie zoomen auf Mobile zu stark hinein). Stattdessen
   bekommt nur die Hero-Sektion das komplette Original-PNG als
   eigenen Background mit `contain`, sodass Fahnenmasten oben und
   Skull-Pile unten in Originalproportionen sichtbar bleiben.
   bg-back.jpg (Himmel/Ruinen) bleibt darunter sichtbar.

   Rollback: diesen Block am Ende löschen.
   ================================================================ */

@media (max-width: 820px) {
    /* Banner-Hälften komplett aus — sie würden sonst zerquetscht aussehen */
    .bg-front,
    .bg-front-left,
    .bg-front-right { display: none !important; }

    /* Hero zeigt jetzt das komplette Banner-PNG als eigenen BG-Layer.
       contain hält die Original-Proportionen — bei sehr schmalen Phones
       entsteht oben/unten Luft, die der bg-back.jpg auffüllt. */
    .hero {
        background-image: url('../../images/groomsday_bg-front.png');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: contain;
    }
}
