/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --gold: #c9a84c;
    --gold-light: #e8c97e;
    --panel-bg: rgba(20, 16, 10, 0.92);
    --panel-border: rgba(201, 168, 76, 0.25);
    --text-primary: #f0ead8;
    --text-muted: #a09070;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #0d0b08;
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
}

/* ===========================
   SZENE — immer vollformatig
=========================== */
.scene {
    position: fixed;
    inset: 0;
    z-index: 0;
}

.scene img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0;

    /* Zoom-Mechanik */
    transform-origin: 0 0;
    transition: opacity 0.9s ease,
                transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.scene img.loaded {
    opacity: 1;
}

/* Spotlight-Overlay: Hover-Effekt */
.spotlight {
    position: fixed;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.45s ease, background 0.15s ease;
    background: radial-gradient(
        circle var(--spot-r, 280px) at var(--spot-x, 50%) var(--spot-y, 50%),
        transparent 0%,
        transparent 35%,
        rgba(0, 0, 0, 0.55) 100%
    );
}

.spotlight.active {
    opacity: 1;
}


/* Hotspot-Ebene: fest im Viewport, zoomt NICHT mit dem Bild */
.hotspots-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 10;
    transition: opacity 0.35s ease;
}

/* ===========================
   SITE HEADER — Frosted Bar
=========================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    height: 72px;
    display: flex;
    align-items: center;
    padding: 0 36px;
    gap: 24px;

    background: rgba(10, 8, 5, 0.48);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Navigation */
.header-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-nav a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(240, 234, 216, 0.7);
    transition: color 0.2s;
}

.header-nav a:hover {
    color: #f0ead8;
}

/* ===========================
   HOTSPOTS
=========================== */
.hotspot {
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: all;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hotspot.visible {
    opacity: 1;
}

/* Pulsierender Ring */
.hotspot-ring {
    position: relative;
    width: 28px;
    height: 28px;
}

.hotspot-ring::before,
.hotspot-ring::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}

/* Leuchtender Kern-Punkt */
.hotspot-ring::before {
    inset: 0;
    background: radial-gradient(circle, #ffe8a0 0%, var(--gold) 55%, transparent 100%);
    transform: scale(0.42);
    opacity: 1;
    transition: transform var(--transition), opacity var(--transition);
    box-shadow:
        0 0  6px 2px rgba(201,168,76,0.9),
        0 0 14px 4px rgba(201,168,76,0.5),
        0 0 28px 8px rgba(201,168,76,0.25);
    animation: dot-glow 1.8s ease-in-out infinite alternate;
}

/* Doppel-Radar-Ring */
.hotspot-ring::after {
    inset: 0;
    background: transparent;
    animation: radar 2.2s ease-out infinite;
    opacity: 0;
}

.hotspot:hover .hotspot-ring::before {
    transform: scale(0.62);
    animation: none;
    box-shadow:
        0 0  8px 3px rgba(232,201,126,1),
        0 0 20px 6px rgba(201,168,76,0.7),
        0 0 36px 12px rgba(201,168,76,0.35);
}

.hotspot.active .hotspot-ring::before {
    background: radial-gradient(circle, #fff5cc 0%, var(--gold-light) 60%, transparent 100%);
    transform: scale(0.68);
    animation: none;
}

@keyframes dot-glow {
    0%   { box-shadow: 0 0  6px 2px rgba(201,168,76,0.9), 0 0 14px 4px rgba(201,168,76,0.5), 0 0 28px 8px rgba(201,168,76,0.2); }
    100% { box-shadow: 0 0 10px 4px rgba(232,201,126,1),  0 0 22px 8px rgba(201,168,76,0.7), 0 0 44px 14px rgba(201,168,76,0.4); }
}

@keyframes radar {
    0%   { box-shadow: 0 0 0  0px rgba(201,168,76,0.75), 0 0 0  0px rgba(201,168,76,0.35); opacity: 1; }
    60%  { box-shadow: 0 0 0 18px rgba(201,168,76,0.15), 0 0 0 36px rgba(201,168,76,0.06); opacity: 1; }
    100% { box-shadow: 0 0 0 24px rgba(201,168,76,0),    0 0 0 48px rgba(201,168,76,0);    opacity: 0; }
}

/* Versetzter Puls-Start pro Hotspot */
.hotspot:nth-child(1)  .hotspot-ring::after { animation-delay: 0.0s; }
.hotspot:nth-child(2)  .hotspot-ring::after { animation-delay: 0.3s; }
.hotspot:nth-child(3)  .hotspot-ring::after { animation-delay: 0.6s; }
.hotspot:nth-child(4)  .hotspot-ring::after { animation-delay: 0.9s; }
.hotspot:nth-child(5)  .hotspot-ring::after { animation-delay: 1.2s; }
.hotspot:nth-child(6)  .hotspot-ring::after { animation-delay: 1.5s; }
.hotspot:nth-child(7)  .hotspot-ring::after { animation-delay: 1.8s; }
.hotspot:nth-child(8)  .hotspot-ring::after { animation-delay: 2.1s; }
.hotspot:nth-child(9)  .hotspot-ring::after { animation-delay: 2.4s; }

/* Label */
.hotspot-label {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 12px);
    transform: translateX(-50%) translateY(4px);
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    color: var(--text-primary);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 5px 10px;
    border-radius: 3px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hotspot.label-below .hotspot-label {
    bottom: auto;
    top: calc(100% + 12px);
    transform: translateX(-50%) translateY(-4px);
}

.hotspot:hover .hotspot-label,
.hotspot.active .hotspot-label {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.hotspot.label-below:hover .hotspot-label,
.hotspot.label-below.active .hotspot-label {
    transform: translateX(-50%) translateY(0);
}

/* ===========================
   PANEL (Slide-in rechts)
=========================== */
.panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    max-width: 100vw;
    height: 100%;
    background: var(--panel-bg);
    border-left: 1px solid var(--panel-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 100;
    padding: 64px 40px 40px;
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
}

.panel.open {
    transform: translateX(0);
}

.panel-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    padding: 4px 8px;
}

.panel-close:hover {
    color: var(--text-primary);
}

.panel-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.panel-title {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.2;
}

.panel-subtitle {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 30px;
}

.panel-divider {
    width: 40px;
    height: 1px;
    background: var(--panel-border);
    margin-bottom: 28px;
}

.panel-body {
    font-size: 14px;
    line-height: 1.85;
    color: var(--text-muted);
}

.panel-body p {
    margin-bottom: 16px;
}

.panel-links {
    list-style: none;
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.panel-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 13px;
    padding: 12px 16px;
    border: 1px solid var(--panel-border);
    border-radius: 4px;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.panel-links li a:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(201, 168, 76, 0.05);
}

.panel-links li a .link-arrow {
    margin-left: auto;
    opacity: 0.4;
    transition: transform 0.2s, opacity 0.2s;
}

.panel-links li a:hover .link-arrow {
    transform: translateX(3px);
    opacity: 1;
}

/* ===========================
   DIM OVERLAY
=========================== */
.dim-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.dim-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ===========================
   HEADER — User-Bereich
=========================== */
.header-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    padding-left: 20px;
    border-left: 1px solid rgba(255,255,255,0.1);
}

.header-user-name {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(240,234,216,0.6);
}

.header-icon-btn,
.header-logout {
    background: none;
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(240,234,216,0.5);
    font-size: 14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, color 0.2s;
}

.header-icon-btn:hover,
.header-logout:hover {
    border-color: rgba(201,168,76,0.5);
    color: var(--gold);
}


/* ===========================
   BENUTZERVERWALTUNG MODAL
=========================== */
.um-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(8, 6, 3, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.um-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

.um-card {
    background: rgba(20, 16, 10, 0.97);
    border: 1px solid var(--panel-border);
    border-radius: 10px;
    width: 100%;
    max-width: 480px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 32px 36px;
}

.um-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.um-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}

.um-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 26px;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    transition: color 0.2s;
}

.um-close:hover { color: var(--text-primary); }

.um-section { margin-bottom: 28px; }

.um-section-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.um-loading,
.um-error { font-size: 13px; color: var(--text-muted); padding: 8px 0; }

.um-user {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(201,168,76,0.08);
}

.um-user:last-child { border-bottom: none; }

.um-user-info { display: flex; flex-direction: column; gap: 2px; }

.um-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.um-username {
    font-size: 12px;
    color: var(--text-muted);
}

.um-user-actions { display: flex; gap: 8px; }

.um-btn {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 5px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.um-btn-pw {
    background: rgba(106,154,188,0.1);
    border: 1px solid rgba(106,154,188,0.3);
    color: #6a9abc;
}

.um-btn-pw:hover {
    background: rgba(106,154,188,0.2);
    border-color: #6a9abc;
}

.um-btn-del {
    background: rgba(188,106,106,0.1);
    border: 1px solid rgba(188,106,106,0.3);
    color: #bc6a6a;
}

.um-btn-del:hover {
    background: rgba(188,106,106,0.2);
    border-color: #bc6a6a;
}

.um-btn-del:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.um-add-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.um-add-form input {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 6px;
    padding: 10px 14px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s;
}

.um-add-form input:focus {
    border-color: rgba(201,168,76,0.5);
}

.um-add-form input::placeholder { color: rgba(160,144,112,0.4); }

.um-error {
    font-size: 12px;
    color: #c97a6a;
    min-height: 16px;
}

.um-submit {
    padding: 10px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.35);
    border-radius: 6px;
    color: var(--gold-light);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 4px;
}

.um-submit:hover {
    background: rgba(201,168,76,0.2);
    border-color: var(--gold);
}

/* Geschützte Nav-Links etwas abgegrenzt */
.nav-protected {
    position: relative;
    padding-left: 16px !important;
}

.nav-protected::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: rgba(255,255,255,0.12);
}


/* Anmelden-Button im Header (nicht eingeloggt) */
.header-login-btn {
    margin-left: auto;
    background: none;
    border: 1px solid rgba(201,168,76,0.35);
    color: rgba(240,234,216,0.7);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    white-space: nowrap;
}

.header-login-btn:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(201,168,76,0.08);
}


/* ===========================
   LOGIN MODAL
=========================== */
.login-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;

    background: rgba(8, 6, 3, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.login-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

.login-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Karte */
.login-card {
    width: 100%;
    max-width: 380px;
    background: rgba(20, 16, 10, 0.95);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 12px;
    padding: 48px 40px 40px;
    transform: translateY(0);
    transition: transform 0.5s ease;

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Logo im Login */
.login-logo {
    text-align: center;
    margin-bottom: 32px;
}

.login-logo img {
    height: 48px;
    width: auto;
    filter: invert(1);
    mix-blend-mode: screen;
    opacity: 0.85;
}

.login-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 6px;
}

.login-sub {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 32px;
}

/* Formular */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.login-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.login-field label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.login-field input {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 6px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.login-field input::placeholder {
    color: rgba(160,144,112,0.4);
}

.login-field input:focus {
    border-color: rgba(201,168,76,0.6);
    background: rgba(255,255,255,0.06);
}

/* Fehlermeldung */
.login-error {
    font-size: 13px;
    color: #c97a6a;
    min-height: 18px;
    text-align: center;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%       { transform: translateX(-6px); }
    40%       { transform: translateX(6px); }
    60%       { transform: translateX(-4px); }
    80%       { transform: translateX(4px); }
}

.login-error.shake {
    animation: shake 0.4s ease;
}

/* Anmelden-Button */
.login-btn {
    margin-top: 8px;
    padding: 13px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 6px;
    color: var(--gold-light);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.login-btn:hover {
    background: rgba(201,168,76,0.22);
    border-color: var(--gold);
    color: #f0e4b0;
}

.login-btn:active {
    transform: scale(0.98);
}


/* ===========================
   KONTAKTFORMULAR (im Panel)
=========================== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--panel-border);
    border-radius: 6px;
    padding: 11px 14px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    outline: none;
    resize: none;
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(160,144,112,0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(201,168,76,0.5);
    background: rgba(255,255,255,0.06);
}

/* Honeypot unsichtbar */
.contact-honey {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.contact-status {
    font-size: 13px;
    min-height: 18px;
    line-height: 1.5;
}

.contact-status--success { color: #6aab7e; }
.contact-status--error   { color: #c97a6a; }
.contact-status--info    { color: var(--text-muted); }

.contact-btn {
    padding: 12px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.35);
    border-radius: 6px;
    color: var(--gold-light);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    margin-top: 4px;
}

.contact-btn:hover:not(:disabled) {
    background: rgba(201,168,76,0.2);
    border-color: var(--gold);
}

.contact-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


/* ===========================
   WHAT'S NEW
=========================== */
.whatsnew-btn {
    position: fixed;
    bottom: 28px;
    right: 32px;
    z-index: 60;
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 9px 16px 9px 12px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 0.2s, color 0.2s;
}

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

.whatsnew-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse-dot 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.7); }
}

/* Modal */
.whatsnew-modal {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsnew-modal.open {
    opacity: 1;
    pointer-events: all;
}

.whatsnew-inner {
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 10px;
    padding: 44px 48px;
    max-width: 520px;
    width: 100%;
    position: relative;
    transform: translateY(12px);
    transition: transform 0.3s ease;
}

.whatsnew-modal.open .whatsnew-inner {
    transform: translateY(0);
}

.whatsnew-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 26px;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    transition: color 0.2s;
}

.whatsnew-close:hover { color: var(--text-primary); }

.whatsnew-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.whatsnew-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 28px;
}

.whatsnew-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.whatsnew-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.wn-icon {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 1px;
}

.whatsnew-list strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.whatsnew-list p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.whatsnew-links {
    display: flex;
    gap: 16px;
    border-top: 1px solid var(--panel-border);
    padding-top: 24px;
}

.whatsnew-links a {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

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

/* ===========================
   COOKIE BAR
=========================== */
.cookie-bar {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 80;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(20, 16, 10, 0.96);
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    padding: 12px 18px;
    font-size: 12px;
    color: var(--text-muted);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    white-space: nowrap;
    max-width: calc(100vw - 48px);
    flex-wrap: wrap;
}

.cookie-bar a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

.cookie-bar a:hover { text-decoration: underline; }

.cookie-bar button {
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.35);
    color: var(--gold-light);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 5px 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.cookie-bar button:hover {
    background: rgba(201,168,76,0.22);
}


/* ===========================
   FOOTER
=========================== */
.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 24px;
    font-size: 11px;
    color: rgba(240,234,216,0.35);
    pointer-events: none;
}

.site-footer a {
    color: rgba(240,234,216,0.35);
    text-decoration: none;
    pointer-events: all;
    transition: color 0.2s;
}

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

.footer-sep { opacity: 0.3; }


/* ===========================
   SCROLLBAR
=========================== */
.panel::-webkit-scrollbar { width: 4px; }
.panel::-webkit-scrollbar-track { background: transparent; }
.panel::-webkit-scrollbar-thumb {
    background: var(--panel-border);
    border-radius: 2px;
}


/* ===========================
   BLOG VORSCHAU IM PANEL
=========================== */
.blog-preview-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--panel-border);
    text-decoration: none;
    color: var(--text-primary);
    transition: color 0.2s;
}
.blog-preview-item:last-child { border-bottom: none; }
.blog-preview-item:hover { color: var(--gold-light); }

.blog-preview-title {
    font-size: 0.88rem;
    line-height: 1.4;
    flex: 1;
}
.blog-preview-date {
    font-size: 0.72rem;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.panel-loading {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.panel-cta {
    display: inline-block;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 7px 14px;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 4px;
    transition: all 0.2s;
}
.panel-cta:hover {
    background: rgba(201,168,76,0.08);
    border-color: var(--gold);
}


/* ===========================
   GUIDED TOUR
=========================== */

body.tour-active .hotspot { pointer-events: none; }

.tour-overlay {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(10,8,6,0.72);
    pointer-events: all;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: none;
}
.tour-overlay.visible { opacity: 1; display: block; }

.tour-spotlight {
    position: fixed;
    z-index: 501;
    border-radius: 6px;
    box-shadow: 0 0 0 100vmax rgba(10,8,6,0.72);
    border: 2px solid rgba(201,168,76,0.55);
    opacity: 0;
    pointer-events: none;
    transition: left 0.4s cubic-bezier(0.4,0,0.2,1),
                top  0.4s cubic-bezier(0.4,0,0.2,1),
                width  0.4s cubic-bezier(0.4,0,0.2,1),
                height 0.4s cubic-bezier(0.4,0,0.2,1),
                opacity 0.3s ease;
}

.tour-highlighted { position: relative; z-index: 502 !important; }

.tour-callout {
    position: fixed;
    z-index: 503;
    width: 360px;
    background: rgba(18,14,9,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 10px;
    padding: 22px 24px 20px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.6);
    pointer-events: all;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.tour-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.tour-count {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold);
    font-weight: 600;
}

.tour-x {
    background: none;
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--muted);
    width: 22px; height: 22px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.tour-x:hover { background: rgba(201,168,76,0.1); color: var(--text); }

.tour-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 10px;
}

.tour-text {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.tour-text kbd {
    display: inline-block;
    background: var(--surface2);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 3px;
    padding: 1px 6px;
    font-family: inherit;
    font-size: 0.78em;
    color: var(--gold-light);
}

.tour-dots { display: flex; gap: 6px; margin-bottom: 18px; }

.tour-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(201,168,76,0.2);
    transition: all 0.25s;
}
.tour-dot.active { background: var(--gold); width: 18px; border-radius: 3px; }
.tour-dot.done   { background: rgba(201,168,76,0.45); }

.tour-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tour-btn-skip {
    background: none; border: none;
    color: var(--muted);
    font-size: 0.75rem; font-family: 'Inter', sans-serif;
    cursor: pointer; padding: 6px 0;
    transition: color 0.2s; letter-spacing: 0.04em;
}
.tour-btn-skip:hover { color: var(--text); }

.tour-btn-group { display: flex; gap: 8px; }

.tour-btn-prev,
.tour-btn-next {
    background: none;
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    padding: 7px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.04em;
}
.tour-btn-prev { color: var(--muted); }
.tour-btn-prev:hover:not(:disabled) { border-color: rgba(201,168,76,0.6); color: var(--text); }
.tour-btn-prev:disabled { opacity: 0.3; cursor: default; }
.tour-btn-next {
    background: var(--gold); border-color: var(--gold);
    color: #0d0b08; font-weight: 600;
}
.tour-btn-next:hover { background: var(--gold-light); border-color: var(--gold-light); }


/* ===========================
   HILFE-MODAL
=========================== */

.help-overlay {
    position: fixed;
    inset: 0;
    z-index: 600;
    background: rgba(10,8,6,0.80);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.help-overlay.visible { opacity: 1; pointer-events: all; }

.help-modal {
    background: rgba(16,12,8,0.98);
    border: 1px solid rgba(201,168,76,0.22);
    border-radius: 14px;
    width: 100%; max-width: 660px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 36px 40px 40px;
    position: relative;
    box-shadow: 0 32px 80px rgba(0,0,0,0.7);
    transform: translateY(12px);
    transition: transform 0.3s ease;
}
.help-overlay.visible .help-modal { transform: translateY(0); }

.help-close {
    position: absolute; top: 18px; right: 18px;
    background: none; border: 1px solid rgba(201,168,76,0.2);
    color: var(--muted); width: 28px; height: 28px;
    border-radius: 50%; cursor: pointer; font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.help-close:hover { background: rgba(201,168,76,0.1); color: var(--text); }

.help-head {
    display: flex; align-items: center; gap: 18px;
    margin-bottom: 28px; padding-bottom: 24px;
    border-bottom: 1px solid rgba(201,168,76,0.12);
}

.help-head-icon {
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(201,168,76,0.1); border: 1.5px solid rgba(201,168,76,0.35);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 700; color: var(--gold); flex-shrink: 0;
}

.help-head-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 700; color: var(--text); margin-bottom: 4px;
}
.help-head-sub { font-size: 0.8rem; color: var(--muted); }

.help-tabs { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 24px; }

.help-tab {
    background: none; border: 1px solid rgba(201,168,76,0.15);
    color: var(--muted); font-family: 'Inter', sans-serif;
    font-size: 0.75rem; padding: 6px 14px; border-radius: 4px;
    cursor: pointer; transition: all 0.2s; letter-spacing: 0.04em;
}
.help-tab:hover { border-color: rgba(201,168,76,0.4); color: var(--text); }
.help-tab.active {
    background: rgba(201,168,76,0.12); border-color: var(--gold); color: var(--gold-light);
}

.help-section { display: none; }
.help-section.active { display: block; }

.help-intro { font-size: 0.84rem; color: var(--muted); margin-bottom: 16px; line-height: 1.65; }

.help-card {
    display: flex; gap: 16px;
    background: rgba(201,168,76,0.04); border: 1px solid rgba(201,168,76,0.1);
    border-radius: 8px; padding: 16px 18px; margin-bottom: 10px;
}
.help-card-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.help-card-title { font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.help-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

.help-list { font-size: 0.82rem; color: var(--muted); padding-left: 16px; line-height: 1.75; }
.help-list li strong { color: var(--text); }

.help-spots-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.help-spot {
    display: flex; align-items: center; gap: 12px;
    background: rgba(201,168,76,0.04); border: 1px solid rgba(201,168,76,0.1);
    border-radius: 6px; padding: 10px 14px; font-size: 0.8rem; color: var(--muted);
}
.help-spot strong { color: var(--text); display: block; margin-bottom: 1px; }
.hs-icon { font-size: 1.3rem; flex-shrink: 0; }

.help-note {
    background: rgba(201,168,76,0.06); border-left: 3px solid var(--gold);
    border-radius: 0 4px 4px 0; padding: 10px 14px;
    font-size: 0.8rem; color: var(--muted);
}
.help-note strong { color: var(--text); }

.help-keys { margin-bottom: 8px; }
.help-key-row {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 0; border-bottom: 1px solid rgba(201,168,76,0.07);
    font-size: 0.83rem; color: var(--muted);
}
.help-key-row:last-child { border-bottom: none; }

kbd {
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3);
    border-bottom-width: 2px; border-radius: 4px;
    padding: 3px 9px; font-family: 'Inter', sans-serif;
    font-size: 0.75rem; font-weight: 600; color: var(--gold-light);
    min-width: 32px; letter-spacing: 0.04em; white-space: nowrap; flex-shrink: 0;
}


/* ===========================
   GUIDE TRIGGER BUTTON
=========================== */

.guide-trigger {
    position: fixed; bottom: 44px; right: 24px;
    z-index: 400;
    display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
    pointer-events: none;
}

.guide-menu {
    background: rgba(18,14,9,0.97);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 10px; overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.55);
    opacity: 0; transform: translateY(10px) scale(0.96);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    min-width: 220px;
}
.guide-menu.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }

.guide-menu-item {
    display: flex; align-items: center; gap: 14px;
    width: 100%; background: none; border: none;
    padding: 14px 18px; cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid rgba(201,168,76,0.08); text-align: left;
}
.guide-menu-item:last-child { border-bottom: none; }
.guide-menu-item:hover { background: rgba(201,168,76,0.07); }

.gmi-icon { font-size: 1.2rem; flex-shrink: 0; width: 28px; text-align: center; }
.gmi-title { font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 2px; font-family: 'Inter', sans-serif; }
.gmi-sub { font-size: 0.7rem; color: var(--muted); font-family: 'Inter', sans-serif; }

.guide-trigger-btn {
    display: flex; align-items: center; gap: 7px;
    pointer-events: all;
    background: rgba(18,14,9,0.92);
    border: 1px solid rgba(201,168,76,0.35);
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
    padding: 9px 16px 9px 12px; border-radius: 24px; cursor: pointer;
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4); transition: all 0.2s ease;
}
.guide-trigger-btn:hover,
.guide-trigger-btn.open {
    background: rgba(201,168,76,0.12); border-color: var(--gold);
    box-shadow: 0 4px 24px rgba(201,168,76,0.2);
}

.gtb-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 20px; height: 20px; border-radius: 50%;
    background: rgba(201,168,76,0.15);
    font-size: 0.8rem; font-weight: 700; flex-shrink: 0;
}
.gtb-label { text-transform: uppercase; }

/* ===========================
   HAMBURGER BUTTON
=========================== */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 4px;
    flex-shrink: 0;
    z-index: 51;
}
.hamburger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(240,234,216,0.75);
    border-radius: 1px;
    transition: transform 0.28s ease, opacity 0.2s ease;
}
.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ===========================
   MOBILE NAVIGATION
=========================== */
.mobile-nav {
    position: fixed;
    top: 58px;
    left: 0;
    width: 100%;
    background: rgba(10,8,5,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201,168,76,0.18);
    z-index: 48;
    display: flex;
    flex-direction: column;
    padding: 8px 0 16px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.22s ease;
}
.mobile-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}
.mobile-nav a {
    padding: 15px 28px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(240,234,216,0.72);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: color 0.18s, background 0.18s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:active,
.mobile-nav a:hover     { color: var(--gold-light); background: rgba(201,168,76,0.06); }

/* Trennlinie vor geschützten Links */
.mobile-nav-sep {
    height: 1px;
    background: rgba(201,168,76,0.15);
    margin: 6px 28px;
}


/* ===========================
   MOBILE ANSICHT (≤ 768 px)
   Automatisch aktiv — kein Schalter nötig
=========================== */
@media (max-width: 768px) {

    /* Header kompakter */
    .site-header {
        padding: 0 16px;
        gap: 10px;
        height: 58px;
    }

    /* Nav ausblenden → Hamburger übernimmt */
    .header-nav    { display: none; }
    .hamburger-btn { display: flex; }

    .header-login-btn {
        padding: 5px 12px;
        font-size: 10px;
        white-space: nowrap;
    }
    .header-theme-btn {
        width: 28px; height: 28px;
        font-size: 13px;
    }

    /* Panel → Bottom Sheet */
    .panel {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        height: 82vh;
        border-left: none;
        border-top: 1px solid var(--panel-border);
        border-radius: 18px 18px 0 0;
        padding: 52px 24px 36px;
        transform: translateY(100%);
    }
    .panel.open  { transform: translateY(0); }

    /* Drag-Handle oben am Panel */
    .panel::before {
        content: '';
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 38px; height: 4px;
        background: var(--panel-border);
        border-radius: 2px;
    }
    .panel-close { top: 14px; right: 18px; }

    /* Hotspot-Ring etwas größer für Touch */
    .hotspot-ring { width: 34px; height: 34px; }

    /* Hotspot-Label: immer leicht sichtbar (nicht nur bei Hover) */
    .hotspot-label {
        opacity: 0.7;
        transform: translateX(-50%) translateY(0);
        font-size: 9px;
        padding: 3px 7px;
    }

    /* Dim-Overlay beim Bottom-Sheet etwas stärker */
    .dim-overlay.active { background: rgba(0,0,0,0.6); }

    /* Guide-Trigger weiter vom Rand */
    .guide-trigger { bottom: 24px; right: 16px; }
    .gtb-label { display: none; }
    .guide-trigger-btn { padding: 10px 12px; border-radius: 50%; }
    .gtb-icon { width: 24px; height: 24px; font-size: 1rem; }

    /* Tour & Hilfe */
    .tour-callout {
        width: calc(100vw - 32px);
        left: 16px !important;
    }
    .help-spots-grid { grid-template-columns: 1fr; }
    .help-modal      { padding: 28px 20px 32px; max-height: 92vh; }
    .help-overlay    { padding: 12px; align-items: flex-end; }

    /* Footer ausblenden — zu wenig Platz */
    .site-footer { display: none; }

    /* Cookie-Bar voller Breite */
    .cookie-bar {
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
        border-radius: 0;
        max-width: 100%;
        font-size: 11px;
    }
}

/* Kein Hover-Effekt auf reinen Touch-Geräten */
@media (hover: none) {
    .hotspot:hover .hotspot-ring::before {
        transform: scale(0.42);
        animation: dot-glow 1.8s ease-in-out infinite alternate;
        box-shadow:
            0 0  6px 2px rgba(201,168,76,0.9),
            0 0 14px 4px rgba(201,168,76,0.5),
            0 0 28px 8px rgba(201,168,76,0.25);
    }
    .hotspot:hover .hotspot-label { opacity: 0.7; }
}


/* ===========================
   SEASON PICKER
=========================== */
.season-picker {
    position: relative;
    flex-shrink: 0;
}

.season-picker-btn {
    background: none;
    border: 1px solid rgba(201,168,76,0.22);
    width: 32px; height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
    transition: border-color 0.2s, background 0.2s;
}
.season-picker-btn:hover {
    border-color: var(--gold);
    background: rgba(201,168,76,0.08);
}

.season-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 200px;
    background: rgba(18,14,9,0.97);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 10px;
    padding: 6px 0 8px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0;
    transform: translateY(-8px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 200;
}
.season-dropdown.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.season-dd-head {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 6px 16px 8px;
}

.season-opt {
    display: flex; align-items: center; gap: 10px;
    width: 100%; background: none; border: none;
    padding: 9px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 12px; font-weight: 500;
    color: rgba(240,234,216,0.7);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    text-align: left;
    white-space: nowrap;
}
.season-opt:hover  { background: rgba(201,168,76,0.07); color: rgba(240,234,216,0.95); }
.season-opt.active { color: var(--gold-light); background: rgba(201,168,76,0.1); }
.season-opt.active::after { content: ' ✓'; margin-left: auto; font-size: 11px; color: var(--gold); padding-left: 12px; }
.season-opt.season-auto-on { color: var(--gold); }

.season-sep {
    height: 1px;
    background: rgba(201,168,76,0.12);
    margin: 4px 12px;
}

/* Light-Mode */
body.light-mode .season-picker-btn { border-color: rgba(150,110,40,0.25); }
body.light-mode .season-picker-btn:hover { border-color: var(--gold); background: rgba(150,110,40,0.08); }
body.light-mode .season-dropdown {
    background: rgba(250,246,238,0.99);
    border-color: rgba(150,110,40,0.2);
    box-shadow: 0 16px 48px rgba(100,80,40,0.2);
}
body.light-mode .season-opt { color: rgba(26,18,8,0.65); }
body.light-mode .season-opt:hover { background: rgba(150,110,40,0.06); color: rgba(26,18,8,0.9); }
body.light-mode .season-opt.active { color: var(--gold); background: rgba(150,110,40,0.1); }
body.light-mode .season-sep { background: rgba(150,110,40,0.12); }


/* ===========================
   THEME TOGGLE BUTTON
=========================== */
.header-theme-btn {
    background: none;
    border: 1px solid rgba(201,168,76,0.22);
    color: rgba(240,234,216,0.55);
    font-size: 15px;
    width: 32px; height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.3s ease;
}
.header-theme-btn:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(201,168,76,0.08);
}


/* ===========================
   TAGESLICHT-MODUS
=========================== */
body.light-mode {
    --gold:         #9a6d20;
    --gold-light:   #c9a84c;
    --panel-bg:     rgba(248, 243, 233, 0.96);
    --panel-border: rgba(150, 110, 40, 0.20);
    --text-primary: #1c1408;
    --text-muted:   #5a4830;
    background: #ede8da;
}

/* Bild etwas heller und wärmer */
body.light-mode .scene img {
    filter: brightness(1.1) saturate(1.05);
}

/* Spotlight — warmer Dunst statt schwarzes Vignette */
body.light-mode .spotlight {
    background: radial-gradient(
        circle var(--spot-r, 280px) at var(--spot-x, 50%) var(--spot-y, 50%),
        transparent 0%,
        transparent 35%,
        rgba(180, 155, 100, 0.45) 100%
    );
}

/* Header */
body.light-mode .site-header {
    background: rgba(240, 232, 212, 0.90);
    border-bottom-color: rgba(0,0,0,0.09);
}
body.light-mode .header-nav a          { color: rgba(26,18,8,0.62); }
body.light-mode .header-nav a:hover    { color: #1c1408; }
body.light-mode .header-login-btn      { color: rgba(26,18,8,0.68); }
body.light-mode .header-login-btn:hover { color: var(--gold); background: rgba(150,110,40,0.08); }
body.light-mode .header-user           { border-left-color: rgba(0,0,0,0.1); }
body.light-mode .header-user-name      { color: rgba(26,18,8,0.55); }
body.light-mode .header-icon-btn,
body.light-mode .header-logout         { border-color: rgba(0,0,0,0.12); color: rgba(26,18,8,0.45); }
body.light-mode .nav-protected::before { background: rgba(0,0,0,0.1); }
body.light-mode .header-theme-btn      { color: rgba(26,18,8,0.55); border-color: rgba(150,110,40,0.25); }
body.light-mode .header-theme-btn:hover { color: var(--gold); background: rgba(150,110,40,0.08); }

/* Dim-Overlay — heller */
body.light-mode .dim-overlay {
    background: rgba(180, 160, 120, 0.40);
}

/* Login & UM Karten */
body.light-mode .login-card,
body.light-mode .um-card {
    background: rgba(250, 246, 238, 0.99);
}
body.light-mode .login-logo img {
    filter: none;
    mix-blend-mode: normal;
    opacity: 0.8;
}

/* Formularfelder */
body.light-mode .login-field input,
body.light-mode .um-add-form input,
body.light-mode .contact-form input,
body.light-mode .contact-form textarea {
    background: rgba(0,0,0,0.04);
    color: var(--text-primary);
}
body.light-mode .login-field input::placeholder,
body.light-mode .um-add-form input::placeholder,
body.light-mode .contact-form input::placeholder,
body.light-mode .contact-form textarea::placeholder {
    color: rgba(90,72,48,0.38);
}

/* Cookie-Bar */
body.light-mode .cookie-bar { background: rgba(245,240,228,0.97); }

/* Tour */
body.light-mode .tour-overlay {
    background: rgba(210, 195, 160, 0.68);
}
body.light-mode .tour-spotlight {
    box-shadow: 0 0 0 100vmax rgba(210, 195, 160, 0.68);
    border-color: rgba(150,110,40,0.6);
}
body.light-mode .tour-callout {
    background: rgba(250, 246, 238, 0.99);
    border-color: rgba(150,110,40,0.28);
    box-shadow: 0 24px 64px rgba(100,80,40,0.25);
}

/* Help-Modal */
body.light-mode .help-overlay  { background: rgba(180,160,120,0.55); }
body.light-mode .help-modal {
    background: rgba(250, 246, 238, 0.99);
    border-color: rgba(150,110,40,0.22);
    box-shadow: 0 32px 80px rgba(100,80,40,0.2);
}
body.light-mode .help-head     { border-bottom-color: rgba(150,110,40,0.12); }
body.light-mode .help-card     { background: rgba(0,0,0,0.03); border-color: rgba(150,110,40,0.1); }
body.light-mode .help-spot     { background: rgba(0,0,0,0.03); border-color: rgba(150,110,40,0.1); }
body.light-mode .help-note     { background: rgba(150,110,40,0.07); }
body.light-mode .help-key-row  { border-bottom-color: rgba(150,110,40,0.08); }
body.light-mode kbd            { background: rgba(150,110,40,0.1); border-color: rgba(150,110,40,0.3); }
body.light-mode .help-tab      { border-color: rgba(150,110,40,0.15); }

/* Guide-Trigger */
body.light-mode .guide-menu {
    background: rgba(250, 246, 238, 0.99);
    border-color: rgba(150,110,40,0.2);
    box-shadow: 0 16px 48px rgba(100,80,40,0.2);
}
body.light-mode .guide-trigger-btn {
    background: rgba(245, 240, 228, 0.96);
    border-color: rgba(150,110,40,0.35);
    color: #9a6d20;
}
body.light-mode .guide-menu-item { border-bottom-color: rgba(150,110,40,0.08); }
body.light-mode .guide-menu-item:hover { background: rgba(150,110,40,0.06); }
body.light-mode .gmi-title { color: #1c1408; }
body.light-mode .gmi-sub   { color: #5a4830; }

/* Footer */
body.light-mode .site-footer,
body.light-mode .site-footer a { color: rgba(26,18,8,0.28); }

/* Light-Mode: Hamburger + Mobile Nav */
body.light-mode .hamburger-btn span { background: rgba(26,18,8,0.7); }
body.light-mode .mobile-nav {
    background: rgba(245,240,228,0.98);
    border-bottom-color: rgba(150,110,40,0.18);
}
body.light-mode .mobile-nav a {
    color: rgba(26,18,8,0.68);
    border-bottom-color: rgba(0,0,0,0.04);
}
body.light-mode .mobile-nav a:hover,
body.light-mode .mobile-nav a:active { color: var(--gold); background: rgba(150,110,40,0.06); }
body.light-mode .mobile-nav-sep { background: rgba(150,110,40,0.15); }

/* Light-Mode Mobile — Panel-Border oben */
@media (max-width: 768px) {
    body.light-mode .dim-overlay.active { background: rgba(180,160,120,0.60); }
}
