/* ===========================
   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);
}
