/* ============================
   TECHNICAL NOIR - DJ FLOGOTTI
   ============================ */
:root {
    --bg-black: #000000;
    --text-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    background-color: #000;
}

body {
    background-color: #000;
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    line-height: 1.4;
    -webkit-overflow-scrolling: touch;
}

/* ============================
   SCROLL PROGRESS
   ============================ */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.1);
}

#scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: #003366;
    /* Dunkelblau statt weiß */
    transition: width 0.1s linear;
}

/* ============================
   BACKGROUND & OVERLAYS
   ============================ */

@keyframes subtlePulse {

    0%,
    100% {
        opacity: 0.6;
        filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
        transform: scale(1);
    }

    50% {
        opacity: 1;
        filter: drop-shadow(0 0 20px rgba(0, 0, 0, 1));
        transform: scale(1.02);
    }
}

@keyframes wordFadeIn {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-claim {
    font-size: clamp(24px, 5vw, 48px);
    font-weight: 900;
    /* Minimalistisch, raw */
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.3em;
    will-change: transform, opacity;
}

.pulse-word {
    opacity: 0;
    /* Start hidden */
    animation: wordFadeIn 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.word-1 {
    animation-delay: 0.5s;
}

.word-2 {
    animation-delay: 1.5s;
}

.word-3 {
    animation-delay: 2.5s;
}

#video-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    background-color: var(--bg-black);
}

.bg-v {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease, filter 0.8s ease;
    filter: saturate(1.3) contrast(1.4) brightness(0.85);
    /* Maximale Tiefe im Schwarz */
}

.bg-v.interacting {
    filter: saturate(1.1) contrast(1.2) brightness(0.7);
}



#video-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle, transparent 30%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    opacity: 0.5;
    /* Sichtbare Tiefe */
    pointer-events: none;
}

#noise-overlay {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.15s ease;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
    pointer-events: none;
}

#noise-overlay.active {
    opacity: 1;
}

/* ============================
   FIXED TOP HEADER (LOGO CENTERED)
   ============================ */

.fixed-top-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 40px;
    z-index: 4000;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 40%, transparent 100%) !important;
}

/* Global Music Control in Header */
.header-music-btn {
    position: absolute;
    left: 40px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    color: #fff;
    display: none; /* Hidden until music starts */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto; /* MUST BE AUTO FOR CLICKING */
}

.header-music-btn.is-active {
    display: flex;
}

.header-music-btn:hover {
    transform: scale(1.1);
}

.header-music-btn .music-icon {
    width: 18px;
    height: 18px;
    fill: #fff;
    display: none;
}

.header-music-btn.playing .pause-icon {
    display: block;
}

.header-music-btn:not(.playing) .play-icon {
    display: block;
}

.header-music-btn.playing {
    /* Pure icon, no glow or border */
}

.fixed-top-header.is-scrolled {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, transparent 100%);
    backdrop-filter: blur(16px) saturate(1.5);
    -webkit-backdrop-filter: blur(16px) saturate(1.5);
    padding: 10px 4vw;
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.header-logo {
    width: clamp(180px, 35vw, 270px);
    height: auto;
    transition: width 0.5s ease;
}

.fixed-top-header.is-scrolled .header-logo {
    width: 180px;
}

@keyframes simpleEntrance {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================
   BOTTOM NAVIGATION
   ============================ */

@keyframes arrowScrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.6;
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.4));
    }

    50% {
        transform: translateY(8px);
        opacity: 1;
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
    }
}

.scroll-arrow-svg {
    stroke: #ffffff;
    animation: arrowScrollBounce 2s ease-in-out infinite;
    display: block;
}

.scroll-arrow-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 7000;
    height: 180px; /* Erhöht für einen weicheren Übergang */
    /* Sehr fließender Fade-Bereich ohne harte Kanten */
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Text unten andocken */
    padding-bottom: 30px;
    /* Abstand nach unten */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.15) 75%, transparent 100%);
    pointer-events: none;
    /* Klicks durchlassen außer auf die Links */
    transition: opacity 1.5s ease, visibility 1.5s ease;
}

.bottom-nav.hide-nav {
    opacity: 0 !important;
    visibility: hidden;
}

.legal-links {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 2s ease 0.5s, transform 2s ease 0.5s;
    pointer-events: none;
}

.contact-preview-section .content-card.frozen-active .legal-links {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.3em;
    font-weight: 700;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #fff;
}

/* ── LEGAL MODALS ───────────────────────────────────────────────── */
.legal-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    align-items: flex-end;
    justify-content: center;
}

.legal-modal.is-open {
    display: flex;
}

.legal-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: fadeIn 0.25s ease forwards;
}

.legal-modal-sheet {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 680px;
    max-height: 80vh;
    background: rgba(10, 10, 12, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: none;
    border-radius: 16px 16px 0 0;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.3s cubic-bezier(0.32, 0.72, 0, 1) forwards;
    overflow: hidden;
}

.legal-modal-content {
    padding: 20px 32px 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex: 1;
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(12px, 1.4vw, 14px);
    line-height: 1.7;
    letter-spacing: 0.02em;
}

.legal-modal-content h1 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 24px;
}

.legal-modal-content h2 {
    font-size: clamp(11px, 1.3vw, 13px);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin: 24px 0 8px;
}

.legal-modal-content p {
    margin: 0 0 12px;
}

.legal-modal-content a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-modal-content a:hover {
    color: #ffffff;
}

.legal-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    transition: color 0.2s;
    z-index: 2;
}

.legal-modal-close:hover {
    color: #ffffff;
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

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

.bottom-nav .nav-link {
    pointer-events: auto;
    /* Klicks nur auf die Links erlauben */
}

.nav-link {
    position: absolute;
    bottom: 25px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(14px, 1.6vw, 18px);
    /* 30% größer */
    letter-spacing: 0.3em;
    text-transform: uppercase;
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1), color 0.5s ease;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
}

.nav-link.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    color: #ffffff;
    /* Leuchtend wenn aktiv */
}

.nav-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.nav-link:active {
    transform: scale(0.95);
}

/* ============================
   CONTENT SECTIONS — HIDDEN
   All sections are invisible; scroll distance drives the video only.
   ============================ */

/* #music, #me, #tour, #links und #contact bleiben sichtbar */
.music-preview-section,
.me-preview-section,
.tour-preview-section,
.socials-preview-section,
.contact-preview-section {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.round-white-btn {
    display: inline-block;
    background: #ffffff;
    color: #000000;
    mix-blend-mode: screen;
    text-decoration: none;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 16px 32px;
    border-radius: 50px;
    min-width: 240px;
    /* Einheitliche Breite */
    text-align: center;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.social-btn svg {
    flex-shrink: 0;
}

.round-white-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
}

.round-white-btn:active {
    transform: scale(0.96);
}


.me-preview-section,
.tour-preview-section {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
}

.contact-preview-section {
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 40%, #000 100%);
}

.contact-preview-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50vh;
    background: linear-gradient(to top, #000 0%, #000 20%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.music-preview-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.marquee-section-label {
    font-size: clamp(20px, 3.5vw, 32px);
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    text-align: center;
    margin-bottom: 2rem;
    animation: subtlePulse 6s ease-in-out infinite;
    opacity: 0.8;
}

/* ============================
   MARQUEE STATS (Airport Style)
   ============================ */
.marquee-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    font-family: 'Courier New', Courier, monospace;
    /* Airport / Technical vibe */
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.05em;
    min-width: 3ch;
    text-align: center;
}

.stat-label {
    font-size: 9px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.2em;
    margin-top: 4px;
}

.music-marquee-wrap {
    position: relative;
    width: 100vw;
    min-height: 180px;
    /* Sicherstellen, dass Platz da ist */
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background: transparent;
    padding: 20px 0;
    display: flex;
    align-items: center;
}

.music-marquee-wrap::-webkit-scrollbar {
    display: none;
}

.music-marquee-track {
    display: flex;
    width: max-content;
    gap: 16px;
    padding: 0 16px;
    /* Space on both sides */
}

.preview-cover-large {
    width: 140px;
    height: 140px;
    min-width: 140px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06) center/cover no-repeat;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
    transition: transform 0.2s ease, filter 0.2s ease;
    cursor: pointer;
}

.preview-cover-large.placeholder {
    animation: pulse 1.5s ease-in-out infinite;
}

.preview-cover-large:hover {
    filter: brightness(1.1);
    transform: scale(1.03);
}

.marquee-overlay-text {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    /* Let clicks pass through */
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.music-marquee-wrap:hover .marquee-overlay-text {
    opacity: 1;
}

.marquee-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ============================
   MUSIC SECTION (Overlay beim Übergang)
   ============================ */

/* ============================
   MUSIC PANEL (BOTTOM SHEET)
   ============================ */

#desktop-bg-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover !important;
    object-position: center top !important; /* Keeps the face visible on wide screens */
    z-index: -1;
}

.music-panel {
    position: fixed;
    inset: 0;
    z-index: 6000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.music-panel.open {
    opacity: 1;
    pointer-events: auto;
}

.music-panel-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.music-panel-sheet {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 80vh;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 5vw 90px;
    /* 90px = Nav-Höhe Puffer */
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateY(100%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.music-panel.open .music-panel-sheet {
    transform: translateY(0);
}

.music-close {
    position: absolute;
    top: 20px;
    right: 5vw;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s ease;
    line-height: 1;
}

.music-close:hover {
    color: #fff;
}

.music-panel-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 4px;
}

/* ── Custom SoundCloud Player ── */

.sc-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    padding-top: 10px;
}

/* Track Swipe Container */
.sc-tracks {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    gap: 0;
}

.sc-tracks::-webkit-scrollbar {
    display: none;
}

.sc-track-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0 10px;
}

.sc-cover-wrap {
    width: min(240px, 55vw);
    height: min(240px, 55vw);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.sc-cover-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sc-cover-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.04);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.9;
    }
}

.sc-title {
    font-size: clamp(13px, 3vw, 17px);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
    text-align: center;
    text-transform: lowercase;
    max-width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Play Button */
.sc-controls {
    margin-top: 24px;
}

.sc-play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
    padding-left: 4px;
    /* play icon optical center */
}

.sc-play-btn:hover {
    transform: scale(1.07);
}

.sc-play-btn:active {
    transform: scale(0.94);
}

.sc-play-btn.playing {
    padding-left: 0;
}

/* Track Dots */
.sc-dots {
    display: flex;
    gap: 6px;
    margin-top: 18px;
    align-items: center;
}

.sc-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transition: background 0.3s ease, transform 0.3s ease;
}

.sc-dot.active {
    background: #fff;
    transform: scale(1.3);
}

/* ============================
   CONTENT SECTIONS
   ============================ */

#scroll-container {
    position: relative;
    z-index: 10;
    width: 100%;
}

.content-section {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    padding: 0 10vw 160px 10vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    scroll-margin-top: 100px;
}

.content-card {
    width: 100%;
    max-width: 800px;
    background: transparent;
    /* Kasten weg */
    padding: 0;
    border: none;
}

.bio-text,
.bio-paragraph,
.event-row {
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
    /* Schatten direkt an der Schrift */
}

.bio-text {
    font-size: clamp(28px, 8vw, 42px);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.04em;
    color: #fff;
    text-transform: lowercase;
}

.bio-card {
    background: #000000;
    /* Harter, sauberer Hintergrund */
    padding: 50px;
    border-radius: 0;
    /* Hart = Keine abgerundeten Ecken wie beim Template */
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.bio-paragraph {
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: 0.03em;
    color: #ffffff;
    font-weight: 500;
    text-transform: lowercase;
}

.direct-enquiries p {
    font-size: 11px;
    letter-spacing: 0.1em;
    color: #ffffff;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.direct-enquiries a {
    color: #ffffff !important;
    text-decoration: none !important;
}

.location-base {
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 400;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.dates-title {
    font-size: clamp(28px, 6vw, 42px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.no-dates {
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.dates-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
    margin-top: 2rem;
}

.event-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    /* Frozen glass tint */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Frosted edge */
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    font-size: clamp(14px, 2.5vw, 18px);
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    pointer-events: auto !important;
    opacity: 1 !important;
}

.event-row:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
}

.event-date {
    font-weight: 200;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
    font-size: 0.9em;
}

.event-venue {
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.15em;
    font-size: 1.2em;
    margin-bottom: 0.4rem;
}

.event-city {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    letter-spacing: 0.1em;
}

.me-text {
    font-size: clamp(18px, 3vw, 26px);
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #ffffff;
    font-weight: 700;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    width: 100%;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    /* uniform square format */
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease, box-shadow 0.5s ease;
    filter: grayscale(30%) contrast(1.1);
    /* brings consistency to BW and color mix */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.gallery-grid img:hover {
    transform: scale(1.05) translateY(-5px);
    filter: grayscale(0%) contrast(1.0);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 5;
}

.event-row {
    width: 100%;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #fff;
}

.event-date {
    font-size: 11px;
    letter-spacing: 0.3em;
    opacity: 0.5;
}

.event-loc {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

#dates {
    background: transparent;
    color: #fff;
    transition: background 0.5s ease;
}

#dates .event-row {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#dates .event-date {
    color: #fff;
    opacity: 0.5;
}

#dates .event-loc {
    color: #fff;
}

/* ============================
   CONTACT FORM STYLING
   ============================ */

#socials {
    background: transparent;
    position: relative;
    z-index: 100;
    padding: 100px 10vw;
    color: #fff;
}

#socials h2,
#socials .social-icon-link {
    color: #ffffff !important;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
    /* Schatten für Sichtbarkeit auf Video */
}

#socials .social-icon-link:hover {
    opacity: 1;
    transform: scale(1.1);
    color: #ffffff !important;
}

#contact .content-card {
    max-width: 100%;
    /* Über die gesamte Breite */
}

.contact-form-minimal {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 50px;
}

.input-line {
    width: 100%;
    position: relative;
}

.input-line input,
.input-line textarea {
    width: 100%;
    background: transparent !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important; /* Subtle underline instead */
    border-radius: 0 !important;
    color: #ffffff !important;
    font-family: inherit;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 500;
    padding: 24px 28px;
    /* Mehr Padding für den 'Modul'-Look */
    outline: none;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.input-line textarea {
    resize: none;
    line-height: 1.6;
    min-height: 160px;
}

.input-line input::placeholder,
.input-line textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.input-line input:focus,
.input-line textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.text-submit-btn {
    align-self: center;
    background: #ffffff;
    mix-blend-mode: screen;
    border: none;
    border-radius: 50px;
    color: #000000;
    font-family: inherit;
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 16px 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.text-submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.optin-line {
    margin: 16px 0 8px;
}

.optin-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.55);
    font-size: clamp(11px, 1.2vw, 13px);
    line-height: 1.5;
    letter-spacing: 0.03em;
}

.optin-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    min-width: 16px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 3px;
    background: transparent;
    cursor: pointer;
    margin-top: 2px;
    transition: border-color 0.2s, background 0.2s;
}

.optin-label input[type="checkbox"]:checked {
    background: #ffffff;
    border-color: #ffffff;
}

.optin-label input[type="checkbox"]:checked::after {
    content: '';
    display: block;
    width: 4px;
    height: 8px;
    border: 2px solid #000;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translate(2px, -1px);
    margin: auto;
}

.optin-label a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.optin-label a:hover {
    color: #ffffff;
}

.direct-enquiries {
    color: #ffffff;
    font-size: clamp(12px, 1.5vw, 14px);
    line-height: 1.6;
    text-align: center;
    opacity: 0.8;
}

.direct-enquiries h3 {
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.direct-enquiries p {
    font-weight: 400;
    margin-bottom: 4px;
}

.direct-enquiries p strong {
    font-weight: 700;
}

/* --- Section Variations (Background shading differences) --- */
#bio {
    background: transparent;
}

#dates {
    background: linear-gradient(180deg, transparent 0%, rgba(10, 0, 0, 0.7) 50%, transparent 100%);
}

#gallery {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 10, 25, 0.6) 50%, transparent 100%);
}

#contact {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
}

.submit-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 20px;
    font-weight: 900;
    letter-spacing: 0.3em;
    font-size: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    margin-top: 20px;
    border-radius: 0;
    /* Passend zum harten Design */
}

.submit-btn:hover {
    transform: translateY(-3px);
    background: #f0f0f0;
}

.outline-btn {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.outline-btn:hover {
    background: #ffffff;
    color: #000000;
}

.social-icon-link {
    color: #ffffff !important;
    opacity: 0.7;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon-link:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.contact-preview-section {
    padding: 0 !important;
    margin: 0 !important;
    height: 100vh !important;
    overflow: hidden;
}

.contact-preview-section .content-card {
    background: transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    height: 100vh !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 0 150px 0 !important;
    border-radius: 0 !important;
    border: none !important;
    border-top: none !important;
    box-shadow: none !important;
    width: 100% !important;
    max-width: 100% !important;
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 100%);
    /* 4 Sekunden Slow Motion */
    transition: backdrop-filter 4s ease, -webkit-backdrop-filter 4s ease,
                background 4s ease, border-color 3s ease;
}

.contact-preview-section .content-card.frozen-active {
    backdrop-filter: blur(80px);
    -webkit-backdrop-filter: blur(80px);
    background: linear-gradient(to top, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 60%, transparent 100%);
    border-top-color: rgba(255,255,255,0.15) !important;
}

@media (min-width: 1025px) {
    .contact-preview-section .content-card.frozen-active {
        backdrop-filter: blur(120px);
        -webkit-backdrop-filter: blur(120px);
    }
}

/* ============================
   EVENTS / TOUR LIST
   ============================ */
.events-list {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-row {
    display: grid;
    grid-template-columns: 80px 1fr 150px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: inherit;
    text-align: left;
    transition: background 0.3s ease, padding 0.3s ease;
}

.event-row:hover {
    background: rgba(255, 255, 255, 0.03);
    padding-left: 15px;
    padding-right: 15px;
}

.event-date {
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 0.1em;
}

.event-name {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 14px;
}

.event-location {
    font-size: 11px;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.4);
    text-align: right;
    text-transform: uppercase;
}

@media (max-width: 600px) {
    .event-row {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: center;
    }
    .event-location {
        text-align: center;
    }
}

/* ============================
   AUDIO POPUP (Frozen Look)
   ============================ */
.audio-popup {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    /* JS zeigt es */
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.audio-popup.show {
    display: flex;
    opacity: 1;
}

.popup-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: 40px;
    text-align: center;
    max-width: 90vw;
    width: 360px;
    transform: scale(0.9);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popup-cover {
    width: 120px;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.1);
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.audio-popup.show .popup-box {
    transform: scale(1);
}

.popup-text {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.15em;
    margin-bottom: 2.5rem;
    color: #ffffff;
    line-height: 1.6;
}

.popup-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.popup-btn {
    border: none;
    border-radius: 50px;
    padding: 16px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.later-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-btn:hover {
    transform: scale(1.05);
}

.play-btn:hover {
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.later-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ============================
   DESKTOP OPTIMIZATION
   ============================ */
@media (min-width: 1025px) {
    .desktop-only-bg {
        display: block !important;
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100vh;
        object-fit: cover !important; /* ensures no distortion */
        object-position: center top !important;
        z-index: -1;
    }

    #video-bg .bg-v {
        display: none !important;
    }

    /* WICHTIG: Alle Sektionen transparent machen, damit das Bild durchscheint */
    .content-section {
        background: transparent !important;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    .bottom-nav {
        display: none !important;
    }

    /* Social-Sektion und Nav-Link auf Desktop ausblenden, da im Header vorhanden */
    #links,
    #nav-links {
        display: none !important;
    }

    html,
    body {
        scroll-behavior: smooth;
        scroll-snap-type: y proximity;
        /* "Looser" Feel: Rastet nur ein, wenn man nah dran ist */
    }

    body {
        overflow-y: auto !important;
        background-color: #000;
    }

    /* Header-Blur auf Desktop entfernen */
    .fixed-top-header.is-scrolled {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: transparent !important;
    }

    .contact-preview-section {
        padding-bottom: 0 !important;
    }

    .contact-preview-section .content-card {
        padding-bottom: 40px !important;
        justify-content: center !important;
    }
}

/* ============================
   MENU TOGGLE (WHITE CIRCLE)
   ============================ */
.menu-btn {
    position: absolute;
    right: 4vw;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 5000;
    pointer-events: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.fixed-top-header.is-scrolled .menu-btn {
    opacity: 1;
    visibility: visible;
}

.menu-circle {
    display: block;
    width: 24px;
    height: 24px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    animation: menuPulse 4s infinite ease-in-out;
}

.menu-contact-label {
    display: none;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    transition: opacity 0.3s ease;
    opacity: 0.7;
}

/* Desktop: zeige CONTACT-Text, verstecke Punkt */
@media (min-width: 1025px) {
    .menu-circle {
        display: none;
    }
    .menu-contact-label {
        display: block;
    }
    .menu-btn:hover .menu-contact-label {
        opacity: 1;
    }
}

/* Mobile: zeige Punkt, verstecke Text */
@media (max-width: 1024px) {
    .menu-contact-label {
        display: none;
    }
}

@keyframes menuPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    }
}

.menu-btn:hover .menu-circle {
    transform: scale(1.4);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

/* ============================
   FULL SCREEN MENU OVERLAY
   ============================ */
.full-menu {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    /* Transition removed for instant background */
}

.full-menu.open {
    opacity: 1;
    visibility: visible;
}

.menu-backdrop {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(80, 0, 180, 0.4), rgba(0, 50, 150, 0.4), rgba(0, 0, 0, 1));
    background-size: 400% 400%;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    animation: menuGradientShift 8s infinite alternate ease-in-out;
}

@keyframes menuGradientShift {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 100%;
    }
}

.full-menu::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(140, 0, 255, 0.15) 0%, transparent 80%);
    pointer-events: none;
    z-index: 5;
}

.menu-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 600px;
    padding: 40px;
    transform: translateY(30px);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.full-menu.open .menu-content {
    transform: translateY(0);
}

.menu-close-btn {
    position: absolute;
    top: -40px;
    right: 40px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.menu-close-btn:hover {
    opacity: 1;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.menu-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(24px, 5vw, 40px);
    font-weight: 900;
    letter-spacing: 0.1em;
    opacity: 0.8;
    /* Brighter default */
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.menu-nav-link:hover {
    opacity: 1;
    letter-spacing: 0.2em;
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.menu-divider {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 3rem;
}

.menu-socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.menu-soc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.menu-soc-btn svg {
    width: 20px;
    height: 20px;
}

.menu-soc-btn:hover {
    color: #ffffff;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .menu-content {
        padding: 20px;
    }

    .menu-nav {
        gap: 1rem;
    }

    .menu-nav-link {
        font-size: 28px;
    }

    .menu-close-btn {
        display: none;
    }
}

.desktop-only-bg {
    display: none;
}

/* ============================
   LEGAL PAGES (IMPRESSUM & DATENSCHUTZ)
   ============================ */
.legal-wrapper {
    min-height: 100vh;
    background: var(--bg-black);
    color: var(--text-white);
    padding: 60px 8vw 100px 8vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.legal-content h1 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.legal-content p, .legal-content li {
    font-size: clamp(14px, 2vw, 16px);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 60px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.3em;
    font-size: 12px;
    text-transform: uppercase;
    transition: color 0.3s ease, transform 0.3s ease;
}

.back-link:hover {
    color: #fff;
    transform: translateX(-5px);
}

/* SEO Optimization */
.seo-hidden-content {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.desktop-only-bg {
    display: none;
}
/* ── EDITORIAL ALERT SYSTEM ─────────────────────────────────────────── */
.editorial-alert {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: clamp(300px, 45vw, 420px);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    z-index: 10000;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.editorial-alert.visible {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.alert-tag {
    font-size: 9px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    opacity: 0.4;
    margin-bottom: 5px;
    display: block;
}

.alert-content p {
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.alert-content a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 700;
}

.alert-btn-primary {
    width: 100%;
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 16px;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 0.3em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    text-transform: uppercase;
}

.alert-btn-primary:hover {
    background: #000;
    color: #fff;
    box-shadow: inset 0 0 0 1px #fff;
}

.alert-border-top, .alert-border-bottom {
    position: absolute;
    left: 10px;
    right: 10px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.alert-border-top { top: 10px; }
.alert-border-bottom { bottom: 10px; }

@media (max-width: 768px) {
    .editorial-alert {
        bottom: 0;
        right: 0;
        width: 100%;
        transform: translateY(100%);
        border-right: none;
        border-left: none;
        padding-bottom: calc(30px + env(safe-area-inset-bottom));
    }
    
    .editorial-alert.visible {
        transform: translateY(0);
    }
}

/* ── HEADER SOCIALS (DESKTOP) ───────────────────────────────────────── */
.header-socials {
    position: absolute;
    left: 120px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 20px;
    z-index: 5000;
    pointer-events: auto;
}

.header-soc-link {
    color: #fff;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.header-soc-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.header-soc-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Verstecken auf Mobile */
@media (max-width: 1024px) {
    .header-socials {
        display: none !important;
    }
}

/* ── SOCIAL LINKS FIX ────────────────────────────────────── */
.menu-soc-btn {
    pointer-events: auto !important;
}
