/* ============================================
   100 Eichhof Erlebnisse - Brand Design CSS
   Eichhof Kampagne: Schwarz / Gelb / Weiss
   "Dose" Dark Theme
   Pantone 7408 C = #F6BE00 (Eichhof Yellow)
   Fonts: Novecento Slab Wide Bold (Headlines)
          HCo Gotham SSm (Body)
   Background: Schwarz mit Eichhof Icon-Pattern
   Mobile First
   ============================================ */

/* --- Fonts (von eichhof.ch) --- */

/* Headline Font: Novecento Slab Wide Bold */
@font-face {
    font-family: 'Novecento Slab';
    src: url('/fonts/NovecentoSlabWide-Bold.woff2') format('woff2'),
         url('/fonts/NovecentoSlab-WdBd.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Body Font: Gotham SSm - Light (300) */
@font-face {
    font-family: 'Gotham SSm';
    src: url('/fonts/GothamSSm-300.woff2') format('woff2'),
         url('/fonts/GothamSSm-300.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Body Font: Gotham SSm - Medium (500) */
@font-face {
    font-family: 'Gotham SSm';
    src: url('/fonts/GothamSSm-500.woff2') format('woff2'),
         url('/fonts/GothamSSm-500.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Body Font: Gotham SSm - Bold (700) */
@font-face {
    font-family: 'Gotham SSm';
    src: url('/fonts/GothamSSm-700.woff2') format('woff2'),
         url('/fonts/GothamSSm-700.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* --- Base / Variables --- */
:root {
    --eichhof-black: #101820;
    --eichhof-yellow: #F6BE00;
    --eichhof-yellow-light: #ffd23a;
    --eichhof-yellow-dark: #d4a200;
    --eichhof-white: #ffffff;
    --eichhof-gray-50: #fafafa;
    --eichhof-gray-100: #f5f5f5;
    --eichhof-gray-200: #e8e8e8;
    --eichhof-gray-300: #d0d0d0;
    --eichhof-gray-500: #888888;
    --eichhof-gray-700: #444444;
    --eichhof-gray-900: #2a2a2a;
    --eichhof-success: #2e7d32;
    --eichhof-error: #c62828;
    --font-headline: 'Novecento Slab', 'Helvetica Neue', Arial, sans-serif;
    --font-body: 'Gotham SSm', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-pill: 50px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    margin: 0;
    padding: 0;
    background: var(--eichhof-black) url('/img/pattern-dark.svg');
    background-position-x: -40px;
    background-repeat: repeat;
    background-size: 260%;
    color: var(--eichhof-white);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}
@media (min-width: 768px) {
    body {
        background-size: 80%;
    }
}

/* --- Placeholder boxes (still used for images) --- */
.placeholder-box {
    background: rgba(255,255,255,0.06);
    border: 2px dashed rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    text-align: center;
    padding: 1rem;
    min-height: 80px;
}

.placeholder-box--logo {
    width: 150px;
    height: 50px;
    min-height: auto;
    padding: 0.5rem;
}

.placeholder-box--icon {
    width: 60px;
    height: 60px;
    min-height: auto;
    border-radius: 50%;
    padding: 0.5rem;
    font-size: 0.7rem;
}

.placeholder-box--prize {
    width: 100%;
    height: 120px;
}

.placeholder-box--photo {
    width: 100%;
    height: 150px;
    cursor: pointer;
    transition: border-color 0.2s;
    border-radius: var(--radius-sm);
}

.placeholder-box--photo:hover,
.placeholder-box--photo.selected {
    border-color: var(--eichhof-yellow);
    border-width: 3px;
}

/* Foto-Frage mit echten Bildern */
.quiz-photo-option {
    position: relative;
    cursor: pointer;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.2s;
    background: #f0f0f0;
    aspect-ratio: 4/3;
}

.quiz-photo-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.quiz-photo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    text-align: center;
}

.quiz-photo-option:hover,
.quiz-photo-option.selected {
    border-color: var(--eichhof-yellow);
    border-width: 3px;
}

.quiz-photo-option.correct-photo { border-color: #198754; border-width: 3px; }
.quiz-photo-option.incorrect-photo { border-color: #dc3545; border-width: 3px; }

/* --- Header / Navigation --- */
.site-header {
    background: var(--eichhof-black);
    padding: 0.5rem 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .logo-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header .logo-eichhof {
    height: 60px;
    width: auto;
}

/* --- Language Switcher --- */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-size: 0.75rem;
    font-family: var(--font-headline);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.lang-switch a,
.lang-switch span {
    padding: 0.3rem 0.5rem;
    text-decoration: none;
    transition: all 0.2s;
    line-height: 1;
}

.lang-switch span {
    color: var(--eichhof-yellow);
    font-weight: 700;
}

.lang-switch a {
    color: rgba(255,255,255,0.5);
}

.lang-switch a:hover {
    color: var(--eichhof-white);
}

.lang-switch .lang-divider {
    color: rgba(255,255,255,0.25);
    padding: 0;
    font-weight: 300;
}

/* Header actions (lang + how-it-works) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-how-it-works {
    font-size: 0.8rem;
    white-space: nowrap;
    color: var(--eichhof-white);
    border-color: var(--eichhof-white);
    background: transparent;
    font-family: var(--font-headline);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    transition: all 0.2s;
}

.btn-how-it-works:hover {
    background: var(--eichhof-yellow);
    color: var(--eichhof-black);
    border-color: var(--eichhof-yellow);
}

/* --- Hero Section --- */
.hero-section {
    text-align: center;
    padding: 2.5rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 56px);
    min-height: calc(100dvh - 56px);
    position: relative;
}

.hero-section h1 {
    font-family: var(--font-headline);
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
    color: var(--eichhof-yellow);
}

.hero-title-img {
    width: 100%;
    max-width: 80%;
    height: auto;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .hero-title-img {
        max-width: 300px;
    }
}

.hero-section .lead {
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 8rem;
    max-width: 400px;
    line-height: 1.5;
    min-height: 5.25em;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slogan Rotator */
.slogan-rotator {
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.slogan-rotator.fade-out {
    opacity: 0;
    transform: translateY(-8px);
}
.slogan-rotator.fade-in {
    opacity: 0;
    transform: translateY(8px);
}

/* --- Play Button --- */
.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    background: var(--eichhof-yellow);
    color: var(--eichhof-black);
    border: none;
    font-family: var(--font-headline);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(246, 190, 0, 0.35);
}

.btn-play:hover {
    background: var(--eichhof-yellow-light);
    color: var(--eichhof-black);
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(246, 190, 0, 0.45);
}

.hero-section .text-muted {
    color: rgba(255,255,255,0.7) !important;
}

/* --- Steps Section --- */
.steps-section {
    padding: 2.5rem 1rem;
    background: var(--eichhof-black);
    color: var(--eichhof-white);
}

.step-item {
    text-align: center;
    padding: 1rem 0.5rem;
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--eichhof-yellow);
    color: var(--eichhof-black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-headline);
    margin-bottom: 0.75rem;
}

.step-item h3 {
    font-family: var(--font-headline);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.35rem;
    color: var(--eichhof-white);
}

.step-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.4;
}

/* --- Prize Categories on Landing Page --- */
.prizes-section {
    padding: 2.5rem 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.prizes-section h2 {
    font-family: var(--font-headline);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--eichhof-white);
}

.category-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.category-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--eichhof-white);
    transition: all 0.2s;
}

.category-card:hover {
    border-color: var(--eichhof-yellow);
    background: rgba(255,255,255,0.14);
    color: var(--eichhof-white);
}

.category-card.selected {
    border-color: var(--eichhof-yellow);
    border-width: 2px;
    background: rgba(246, 190, 0, 0.12);
    box-shadow: 0 4px 12px rgba(246, 190, 0, 0.2);
}

#categorySelectionList .category-card {
    cursor: pointer;
}

.placeholder-box--category-icon {
    width: 50px;
    height: 50px;
    min-height: auto;
    border-radius: var(--radius-md);
    padding: 0.5rem;
    font-size: 0.65rem;
    flex-shrink: 0;
    background: var(--eichhof-gray-100);
    border-color: var(--eichhof-gray-300);
}

.category-card-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.category-card-text {
    flex: 1;
    min-width: 0;
}

.category-card-text h3 {
    font-family: var(--font-headline);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0 0 0.15rem;
    color: var(--eichhof-yellow);
}

.category-card-count {
    font-size: 0.75rem;
    line-height: 1.2;
    color: rgba(255,255,255,0.85);
    text-align: left;
}

.category-card-arrow {
    font-size: 1.3rem;
    color: var(--eichhof-yellow);
    flex-shrink: 0;
}

/* --- Prize Selection Modal: Category Cards --- */
.category-card--modal {
    flex-wrap: wrap;
}
.category-card--disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.category-card--disabled:hover {
    border-color: transparent;
}

.btn-show-prizes {
    display: inline-block;
    background: none;
    border: none;
    padding: 0;
    margin-top: 0.4rem;
    font-size: 0.75rem;
    font-family: var(--font-body);
    color: var(--eichhof-yellow);
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
}
.btn-show-prizes:hover {
    text-decoration: underline;
}

.category-prize-list {
    width: 100%;
    padding: 0.75rem 0 0.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-prize-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.3;
}

.category-prize-thumb {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}
.category-prize-info {
    display: flex;
    flex-direction: column;
}
.category-prize-subtitle {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
    margin-top: 0.1rem;
}

/* Sofortpreis restaurant photo */
.sofortpreis-photo {
    width: 100%;
    max-height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0.5rem 0 0.25rem;
}

/* "Alle Erlebnisse ansehen" button */
.prizes-section .btn-outline-dark {
    color: var(--eichhof-white);
    border-color: rgba(255,255,255,0.4);
    background: transparent;
    font-family: var(--font-headline);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 0.85rem;
    border-radius: var(--radius-pill);
    padding: 0.6rem 1.5rem;
}

.prizes-section .btn-outline-dark:hover {
    background: var(--eichhof-yellow);
    color: var(--eichhof-black);
    border-color: var(--eichhof-yellow);
}

/* --- Sofortpreis --- */
.sofortpreis-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-pill);
    background: var(--eichhof-yellow);
    color: var(--eichhof-black);
    vertical-align: middle;
    margin-left: 0.3rem;
}

.sofortpreis-status {
    font-size: 0.78rem;
    margin-top: 0.3rem;
    line-height: 1.3;
}

.sofortpreis-status--available {
    color: var(--eichhof-white);
    font-weight: 700;
    font-size: 0.9rem;
}

.sofortpreis-status--claimed {
    color: var(--eichhof-gray-500);
    font-style: italic;
}

.sofortpreis-banner {
    padding: 0 1rem;
    margin-bottom: 0.75rem;
}

.sofortpreis-banner-inner {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(246, 190, 0, 0.12);
    border: 1px solid var(--eichhof-yellow);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--eichhof-white);
}

.sofortpreis-banner--claimed .sofortpreis-banner-inner {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    opacity: 0.7;
}

.sofortpreis-banner-inner .sofortpreis-badge {
    flex-shrink: 0;
    margin-left: 0;
    margin-top: 0.1rem;
}

.sofortpreis-banner-img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.sofortpreis-card {
    border-color: var(--eichhof-yellow);
    border-width: 2px;
}

.sofortpreis-card--claimed {
    opacity: 0.5;
}

.sofortpreis-card-banner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.sofortpreis-card-banner .sofortpreis-badge {
    margin-left: 0;
}

/* --- Preise Page --- */
.preise-page {
    max-width: 900px;
    margin: 0 auto;
}

.preise-header {
    text-align: center;
    padding: 1.5rem 1rem 0.5rem;
}

.preise-header h1 {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.25rem;
    color: var(--eichhof-yellow);
}

.preise-header p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.preise-toolbar {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    position: sticky;
    top: 56px;
    background: rgba(16, 24, 32, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 50;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.preise-toolbar .form-select,
.preise-toolbar .form-control {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    color: var(--eichhof-white);
}
.preise-toolbar .form-select option {
    background: var(--eichhof-black);
    color: var(--eichhof-white);
}

.preise-filter-wrap,
.preise-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.preise-filter-wrap {
    flex: 0 0 auto;
}

.preise-search-wrap {
    flex: 1;
}

.preise-toolbar-icon {
    position: absolute;
    left: 0.75rem;
    color: rgba(255,255,255,0.5);
    pointer-events: none;
    z-index: 1;
}

.preise-toolbar .form-select {
    width: auto;
    min-width: 180px;
    font-size: 0.9rem;
    padding-left: 2.2rem;
}

.preise-toolbar .form-control {
    font-size: 0.9rem;
    padding-left: 2.2rem;
}

.preise-results-count {
    padding: 0 1rem 0.5rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

.preise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 0 1rem 2rem;
}

.preise-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    transition: all 0.2s;
    cursor: pointer;
    box-shadow: none;
}

.preise-card:hover {
    border-color: var(--eichhof-yellow);
    background: rgba(255,255,255,0.14);
}

.preise-card-image {
    width: 90px;
    flex-shrink: 0;
}

.preise-card-image img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.preise-card-image .placeholder-box {
    width: 90px;
    height: 90px;
    min-height: auto;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
}

.preise-card-body {
    flex: 1;
    min-width: 0;
}

.preise-card-category {
    display: inline-block;
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-pill);
    background: rgba(246, 190, 0, 0.15);
    color: var(--eichhof-yellow);
    margin-bottom: 0.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.preise-card-body h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 0.15rem;
    color: var(--eichhof-white);
}
.preise-card-subtitle {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    margin: 0 0 0.25rem;
    font-weight: 600;
}

.preise-card-body p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.preise-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.75rem;
    margin-top: 0.35rem;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
}

.preise-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: rgba(255,255,255,0.5);
}

/* --- Prize Detail Modal --- */
.prize-detail-image {
    margin-bottom: 1rem;
}

.placeholder-box--prize-detail {
    width: 100%;
    height: 200px;
    min-height: auto;
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.prize-detail-meta {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin: 0.5rem 0 1rem;
}

.prize-detail-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.85);
}

/* --- CTA Banner (between content & footer) --- */
.cta-banner {
    background: var(--eichhof-yellow);
    padding: 2rem 1rem;
    text-align: center;
}

.cta-banner h3 {
    font-family: var(--font-headline);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
    color: var(--eichhof-black);
}

.cta-banner p {
    font-size: 0.9rem;
    color: var(--eichhof-black);
    margin: 0 0 1rem;
    opacity: 0.8;
}

.cta-banner .btn-play {
    font-size: 0.95rem;
    padding: 0.7rem 2rem;
    border: 2px solid var(--eichhof-black);
}

/* --- Footer --- */
.site-footer {
    background: var(--eichhof-black);
    color: var(--eichhof-white);
    padding: 2rem 1rem;
    margin-top: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-logos {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-logos img {
    height: 40px;
    width: auto;
}

.footer-logos .logo-luzern {
    height: 32px;
}

.footer-partner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.footer-partner-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

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

.footer-lang-divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.15);
    align-self: center;
}

.footer-links .lang-switch {
    margin-left: 0;
}

.site-footer .text-muted {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* --- Modals (Dark theme) --- */
.modal-content {
    border-radius: var(--radius-lg);
    background: var(--eichhof-black);
    color: var(--eichhof-white);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.modal-header {
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.modal-header .modal-title {
    font-family: var(--font-headline);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 1rem;
    color: var(--eichhof-white);
}

.modal-footer {
    border-top: 1px solid rgba(255,255,255,0.12);
}

.btn-close {
    filter: invert(1);
}

/* --- Age Gate - Fullscreen (bleibt dunkel) --- */
#ageGateModal .modal-content {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--eichhof-black);
    color: var(--eichhof-white);
    border: none;
}

#ageGateModal .modal-body {
    text-align: center;
    padding: 2rem;
    max-width: 480px;
    width: 100%;
}

#ageGateModal .logo-eichhof {
    height: 80px;
    width: auto;
    margin-bottom: 1.5rem;
}

#ageGateModal h2 {
    font-family: var(--font-headline);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--eichhof-white);
}

#ageGateModal .age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

#ageGateModal .age-buttons .btn {
    min-width: 120px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-headline);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-pill);
}

#ageGateModal #ageYes {
    background: var(--eichhof-yellow);
    color: var(--eichhof-black);
    border-color: var(--eichhof-yellow);
}

#ageGateModal #ageYes:hover {
    background: var(--eichhof-yellow-light);
    border-color: var(--eichhof-yellow-light);
}

#ageGateModal #ageNo {
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
    background: transparent;
}

#ageGateModal #ageNo:hover {
    color: var(--eichhof-white);
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
}

#ageGateModal .text-muted {
    color: rgba(255, 255, 255, 0.5) !important;
}

#ageGateModal .alert-warning {
    background: rgba(246, 190, 0, 0.1);
    border-color: var(--eichhof-yellow);
    color: var(--eichhof-yellow);
}

#ageGateModal .alert-warning a {
    color: var(--eichhof-yellow-light);
}

/* --- Quiz Modal --- */
#quizModal .modal-dialog {
    max-width: 500px;
}

.quiz-progress {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.quiz-progress-dot {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,0.2);
    transition: background 0.3s;
}

.quiz-progress-dot.active {
    background: var(--eichhof-yellow);
}

.quiz-progress-dot.completed {
    background: var(--eichhof-success);
}

.quiz-progress-dot.failed {
    background: var(--eichhof-error);
}

.quiz-question {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--eichhof-white);
}

.quiz-category-badge {
    display: inline-block;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-pill);
    background: rgba(246, 190, 0, 0.15);
    color: var(--eichhof-yellow);
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Quiz answer options */
.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quiz-option {
    display: flex;
    align-items: center;
    padding: 0.85rem 1rem;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s;
    background: transparent;
    font-size: 0.95rem;
    color: var(--eichhof-white);
}

.quiz-option:hover {
    border-color: var(--eichhof-yellow);
    background: rgba(246, 190, 0, 0.08);
}

.quiz-option.selected {
    border-color: var(--eichhof-yellow);
    background: rgba(246, 190, 0, 0.12);
}

.quiz-option.correct {
    border-color: var(--eichhof-success);
    background: rgba(46, 125, 50, 0.15);
}

.quiz-option.incorrect {
    border-color: var(--eichhof-error);
    background: rgba(198, 40, 40, 0.15);
}

/* Photo quiz grid */
.quiz-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

/* True/False buttons */
.tf-buttons {
    display: flex;
    gap: 1rem;
}

.tf-buttons .btn {
    flex: 1;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-headline);
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

.tf-buttons .btn-outline-success {
    color: var(--eichhof-success);
    border-color: var(--eichhof-success);
}

.tf-buttons .btn-outline-success:hover {
    background: var(--eichhof-success);
    color: var(--eichhof-white);
}

.tf-buttons .btn-outline-danger {
    color: var(--eichhof-error);
    border-color: var(--eichhof-error);
}

.tf-buttons .btn-outline-danger:hover {
    background: var(--eichhof-error);
    color: var(--eichhof-white);
}

/* Multi choice checkboxes */
.quiz-multi-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s;
    background: transparent;
    font-size: 0.95rem;
    color: var(--eichhof-white);
}

.quiz-multi-option:hover {
    border-color: var(--eichhof-yellow);
}

.quiz-multi-option.selected {
    border-color: var(--eichhof-yellow);
    background: rgba(246, 190, 0, 0.12);
}

.quiz-multi-option .check-indicator {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
    color: transparent;
}

.quiz-multi-option.selected .check-indicator {
    background: var(--eichhof-yellow);
    border-color: var(--eichhof-yellow);
    color: var(--eichhof-black);
}

/* Quiz feedback */
.quiz-feedback {
    display: none;
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-top: 1rem;
    font-size: 0.9rem;
}

.quiz-feedback.show {
    display: block;
}

.quiz-feedback.success {
    background: rgba(46, 125, 50, 0.08);
    border: 1px solid var(--eichhof-success);
    color: var(--eichhof-success);
}

.quiz-feedback.error {
    background: rgba(198, 40, 40, 0.08);
    border: 1px solid var(--eichhof-error);
    color: var(--eichhof-error);
}

/* --- Prize Selection Modal --- */
#prizeSelectionModal .alert-success {
    background: rgba(46, 125, 50, 0.08);
    border-color: var(--eichhof-success);
    color: var(--eichhof-success);
}

#prizeSelectionModal .prize-select-card {
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--eichhof-white);
}

#prizeSelectionModal .prize-select-card:hover,
#prizeSelectionModal .prize-select-card.selected {
    border-color: var(--eichhof-yellow);
    background: rgba(246, 190, 0, 0.12);
}

/* --- Registration Modal --- */
.reg-category-display {
    background: rgba(246, 190, 0, 0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
}

.reg-category-display small {
    color: rgba(255,255,255,0.6) !important;
}

#registrationModal .form-check-input:checked {
    background-color: var(--eichhof-yellow);
    border-color: var(--eichhof-yellow);
}

#registrationModal .form-check-label a {
    color: var(--eichhof-yellow);
}

#registrationModal .form-label {
    color: var(--eichhof-white);
}

#registrationModal .form-control {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    color: var(--eichhof-white);
}

#registrationModal .form-check-label {
    color: rgba(255,255,255,0.85);
}

#registrationModal .form-check-input {
    background-color: transparent;
    border-color: rgba(255,255,255,0.3);
}

#registrationModal .form-control:focus {
    border-color: var(--eichhof-yellow);
    box-shadow: 0 0 0 0.2rem rgba(246, 190, 0, 0.2);
}

/* --- Confirmation Modal --- */
#confirmationModal .alert-info {
    background: rgba(246, 190, 0, 0.12);
    border-color: var(--eichhof-yellow);
    color: var(--eichhof-yellow);
}

/* --- Already Participated Modal --- */
#alreadyParticipatedModal hr {
    border-color: rgba(255,255,255,0.15);
}

/* --- Global Button Styles --- */
.btn-dark,
.modal-footer .btn-dark {
    background: var(--eichhof-yellow);
    color: var(--eichhof-black);
    border-color: var(--eichhof-yellow);
    font-family: var(--font-headline);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
    border-radius: var(--radius-pill);
    padding: 0.6rem 1.5rem;
    transition: all 0.2s;
}

.btn-dark:hover,
.modal-footer .btn-dark:hover {
    background: var(--eichhof-yellow-dark);
    color: var(--eichhof-black);
    border-color: var(--eichhof-yellow-dark);
}

.btn-dark:active,
.btn-dark:focus-visible,
.btn-dark.active {
    background: var(--eichhof-yellow-dark);
    color: var(--eichhof-black);
    border-color: var(--eichhof-yellow-dark);
    box-shadow: none;
}

.btn-dark:disabled {
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.4);
    border-color: rgba(255,255,255,0.15);
}

.btn-success {
    background: var(--eichhof-success);
    border-color: var(--eichhof-success);
    color: var(--eichhof-white);
    font-family: var(--font-headline);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: var(--radius-pill);
}

.btn-success:hover {
    background: #388e3c;
    border-color: #388e3c;
}

.btn-warning {
    background: var(--eichhof-yellow);
    color: var(--eichhof-black);
    border-color: var(--eichhof-yellow);
    font-family: var(--font-headline);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: var(--radius-pill);
}

.btn-warning:hover {
    background: var(--eichhof-yellow-dark);
    border-color: var(--eichhof-yellow-dark);
    color: var(--eichhof-black);
}

.btn-outline-dark {
    color: var(--eichhof-white);
    border-color: rgba(255,255,255,0.4);
    background: transparent;
    border-radius: var(--radius-pill);
    font-family: var(--font-headline);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.btn-outline-dark:hover {
    background: rgba(255,255,255,0.1);
    color: var(--eichhof-yellow);
    border-color: var(--eichhof-yellow);
}

.btn-outline-dark:active,
.btn-outline-dark:focus-visible,
.btn-outline-dark.active {
    background: rgba(255,255,255,0.15);
    color: var(--eichhof-yellow);
    border-color: var(--eichhof-yellow);
    box-shadow: none;
}

.btn-outline-secondary {
    color: rgba(255,255,255,0.6);
    border-color: rgba(255,255,255,0.3);
    border-radius: var(--radius-pill);
}

.btn-outline-secondary:hover {
    background: rgba(255,255,255,0.1);
    color: var(--eichhof-white);
    border-color: rgba(255,255,255,0.4);
}

.btn-link {
    color: var(--eichhof-yellow);
}

.btn-link:hover {
    color: var(--eichhof-white);
}

/* --- How It Works Modal --- */
#howItWorksModal h6 {
    color: var(--eichhof-white);
    font-family: var(--font-headline);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* --- No QR Code Page --- */
.no-qr-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem;
}

.no-qr-page h1 {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
    color: var(--eichhof-yellow);
}

.no-qr-page p {
    color: rgba(255,255,255,0.7);
    max-width: 400px;
}
.no-qr-page p a {
    color: var(--eichhof-yellow);
    text-decoration: underline;
}

.no-qr-page img[src*="eichhof-logo"] {
}

.no-qr-qr-placeholder {
    width: 200px;
    height: 200px;
    margin: 2rem auto;
}

/* --- Subpages (FAQ, TB, DS, Impressum) --- */
.subpage {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 1rem;
    color: var(--eichhof-white);
}

.subpage h1 {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 1.5rem;
    color: var(--eichhof-yellow);
}

.subpage h2 {
    color: var(--eichhof-white);
    font-family: var(--font-headline);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.subpage p,
.subpage li {
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

.subpage a {
    color: var(--eichhof-yellow);
}

.subpage a:hover {
    color: var(--eichhof-yellow-light);
}

.subpage .back-link {
    display: inline-block;
    margin-bottom: 1rem;
    text-decoration: none;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.subpage .back-link:hover {
    color: var(--eichhof-yellow);
}

/* Subpage header bar */
.subpage-header {
    background: var(--eichhof-black);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.subpage-header .logo-eichhof {
    height: 36px;
    width: auto;
}

/* FAQ specific */
.subpage .accordion-item {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
}

.subpage .accordion-button {
    background: rgba(255,255,255,0.06);
    color: var(--eichhof-white);
    font-weight: 700;
}

.subpage .accordion-button::after {
    filter: invert(1);
}

.subpage .accordion-button:not(.collapsed) {
    background: rgba(246, 190, 0, 0.12);
    color: var(--eichhof-yellow);
    box-shadow: none;
}

.subpage .accordion-body {
    color: rgba(255,255,255,0.85);
}

/* Contact form in subpages */
.subpage .form-control,
.subpage .form-select,
.subpage textarea.form-control {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    color: var(--eichhof-white);
}

.subpage .form-label {
    color: var(--eichhof-white);
}

.subpage .form-control:focus,
.subpage .form-select:focus {
    border-color: var(--eichhof-yellow);
    box-shadow: 0 0 0 0.2rem rgba(246, 190, 0, 0.2);
}

/* --- Terms & Privacy Modals (nested above registration) --- */
#termsModal .modal-content,
#privacyModal .modal-content {
    color: var(--eichhof-white);
}

#termsModal h2,
#privacyModal h2 {
    font-family: var(--font-headline);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--eichhof-white);
}

#termsModal p,
#privacyModal p,
#termsModal li,
#privacyModal li {
    color: rgba(255,255,255,0.85);
}

/* --- 404 Page --- */
.page-404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem;
    color: var(--eichhof-white);
}

.page-404 h1 {
    font-family: var(--font-headline);
    color: var(--eichhof-yellow);
}

/* --- Utility overrides --- */
.text-muted {
    color: rgba(255,255,255,0.6) !important;
}

.text-danger {
    color: var(--eichhof-error) !important;
}

.alert-warning {
    background: rgba(246, 190, 0, 0.12);
    border-color: var(--eichhof-yellow);
    color: var(--eichhof-yellow);
}

.alert-info {
    background: rgba(246, 190, 0, 0.12);
    border-color: var(--eichhof-yellow);
    color: var(--eichhof-yellow);
}

.alert-success {
    background: rgba(46, 125, 50, 0.08);
    border-color: var(--eichhof-success);
    color: var(--eichhof-success);
}

/* --- Responsive --- */
@media (min-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .quiz-photo-grid {
        grid-template-columns: 1fr 1fr;
    }

    .preise-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media (min-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 4rem 1rem;
    }

    .steps-row {
        display: flex;
        justify-content: center;
        gap: 2rem;
    }

    .step-item {
        flex: 1;
        max-width: 250px;
    }

    .hero-section h1 {
        font-size: 2.4rem;
    }
}

@media (min-width: 992px) {
    .preise-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* ============================================
   LANDING PAGE LAYOUT
   "Dose" Dark Theme – Hero → Kategorien → Steps
   Icons statt Fotos, Einzelkacheln untereinander
   ============================================ */

/* Landing wrapper */
.landing-wrapper {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    width: 100%;
}

.landing-wrapper .site-header  { order: 1; }
.landing-wrapper .hero-section { order: 2; }
.landing-wrapper .prizes-section { order: 3; }
.landing-wrapper .steps-section { order: 4; }
.landing-wrapper .cta-banner   { order: 5; }
.landing-wrapper .site-footer  { order: 6; }

/* Header */
.landing-wrapper .site-header .logo-eichhof {
}
.landing-wrapper .btn-how-it-works {
    color: var(--eichhof-white);
    border-color: rgba(255,255,255,0.3);
}
.landing-wrapper .btn-how-it-works:hover {
    background: rgba(255,255,255,0.1);
}

/* Hero */
.landing-wrapper .hero-section {
    min-height: 0;
    padding: 2rem 1rem 3rem;
    background: transparent;
}
.landing-wrapper .hero-section h1 {
    color: var(--eichhof-yellow);
}
.landing-wrapper .hero-section .lead {
    color: #ffffff;
}

/* Play Button */
.landing-wrapper .btn-play {
    background: var(--eichhof-yellow);
    color: var(--eichhof-black);
    border-color: var(--eichhof-yellow);
}
.landing-wrapper .btn-play:hover {
    background: var(--eichhof-yellow-light);
}

/* Prizes Section */
.landing-wrapper .prizes-section {
    padding-top: 0;
}
.landing-wrapper .prizes-section h2 {
    color: var(--eichhof-white);
}

/* Category Cards */
.landing-wrapper .prizes-section .category-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.landing-wrapper .prizes-section .category-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    min-height: 90px;
    transition: background 0.2s;
}
.landing-wrapper .prizes-section .category-card:hover {
    background: rgba(255,255,255,0.14);
}

/* Category icons (always shown, photos hidden) */
.category-card-image {
    display: none;
}
.category-card-icon {
    display: block;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.landing-wrapper .prizes-section .category-card-text {
    flex: 1;
    text-align: left;
}
.landing-wrapper .prizes-section .category-card-text h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: var(--eichhof-yellow);
}
.landing-wrapper .prizes-section .category-card-count {
    font-size: 0.75rem;
    line-height: 1.2;
    color: rgba(255,255,255,0.85);
}
.landing-wrapper .prizes-section .category-card-arrow {
    font-size: 1.2rem;
    color: var(--eichhof-yellow);
}

/* Steps Section */
.landing-wrapper .step-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
}
.landing-wrapper .step-number {
    background: var(--eichhof-yellow);
    color: var(--eichhof-black);
}
.landing-wrapper .step-item h3 {
    color: var(--eichhof-white);
}
.landing-wrapper .step-item p {
    color: rgba(255,255,255,0.85);
}

/* CTA Banner */
.landing-wrapper .cta-banner .btn-play {
    background: var(--eichhof-black);
    color: var(--eichhof-yellow);
    border-color: var(--eichhof-black);
}

/* Footer */
.landing-wrapper .site-footer {
    border-top: 1px solid rgba(255,255,255,0.1);
}
.landing-wrapper .footer-logos .logo-luzern {
}

/* ============================================
   END SCREEN (Kampagne beendet)
   ============================================ */
.endscreen-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.endscreen-hero {
    text-align: center;
    padding: 1rem 1.5rem 0.5rem;
}
.endscreen-hero .hero-title-img {
    max-width: 300px;
    width: 70%;
    margin: 0 auto 1.5rem;
}
.endscreen-title {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--eichhof-yellow);
    margin-bottom: 1rem;
}
.endscreen-text {
    color: rgba(255,255,255,0.8);
    max-width: 540px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
}

/* --- Slider --- */
.endscreen-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 1.75rem auto 0.75rem;
    width: 100%;
    max-width: 380px;
    padding: 0 0.5rem;
}
.es-stage {
    position: relative;
    flex: 1 1 auto;
    width: 100%;
    max-width: 250px;
    aspect-ratio: 9 / 16;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
}
.es-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease;
}
.es-slide.is-active {
    opacity: 1;
    visibility: visible;
}
.es-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.es-sound {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(16,24,32,0.6);
    backdrop-filter: blur(4px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}
.es-sound:hover { background: rgba(16,24,32,0.85); }

.es-arrow {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: var(--eichhof-yellow);
    color: var(--eichhof-black);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    z-index: 2;
}
.es-arrow:hover { background: var(--eichhof-yellow-light); }
.es-arrow:active { transform: scale(0.94); }

.es-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 0.25rem auto 1.5rem;
}
.es-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.es-dot.is-active {
    background: var(--eichhof-yellow);
    transform: scale(1.2);
}

.endscreen-cta-wrap {
    text-align: center;
    padding: 0 1.5rem 2rem;
}

/* --- Desktop --- */
@media (min-width: 768px) {
    .endscreen-hero { padding-top: 2rem; }
    .endscreen-hero .hero-title-img { max-width: 360px; }
    .endscreen-title { font-size: 2rem; }
    .endscreen-text { font-size: 1.1rem; }
    .endscreen-slider {
        max-width: 420px;
    }
}

