/* assets/styles.css */
/* inter-100 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  src: url('fonts/inter-v20-latin-100.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-200 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  src: url('fonts/inter-v20-latin-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/inter-v20-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/inter-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/inter-v20-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/inter-v20-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/inter-v20-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  src: url('fonts/inter-v20-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  src: url('fonts/inter-v20-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
    --bg-dark: #090314;
    --bg-grad-1: #13072E;
    --bg-grad-2: #240E4A;
    
    --accent-primary: #D1B3E8;
    --accent-glow: #d1b3e866;
    --btn-grad: linear-gradient(135deg, #8E44AD, #6C3483);
    
    --text-main: #F4EEFF;
    --text-muted: #A895C9;
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --radius-lg: 32px;
    --radius-md: 16px;
}

/* --- Base & Scrollbar --- */
html {
    scroll-behavior: smooth;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background-color: var(--bg-dark); color: var(--text-main); font-family: 'Inter', sans-serif; font-weight: 300; line-height: 1.6; overflow-x: hidden; scroll-behavior: smooth; }
body.modal-open { overflow: hidden; }

::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.1); border-radius: 10px; border: 3px solid var(--bg-dark); }
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.2); }

/* --- Typografie --- */
h1, h2 { font-family: 'Playfair Display', serif; font-weight: 500; line-height: 1.1; color: var(--accent-primary); letter-spacing: -0.5px; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 1.2rem; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 1.5rem; }

.highlight-text { background: var(--btn-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 600; }
.highlight-link { color: var(--accent-primary); text-decoration: underline; text-underline-offset: 4px; transition: color 0.3s; pointer-events: auto; position: relative; z-index: 10; }
.highlight-link:hover { color: #fff; }

/* --- UI Elemente & Glassmorphism --- */
.glass-panel { background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1); }

.btn { display: inline-flex; align-items: center; justify-content: center; background: var(--btn-grad); color: white; padding: 18px 45px; border-radius: 50px; text-decoration: none; font-weight: 500; font-size: 1.1rem; border: 1px solid rgba(255,255,255,0.15); cursor: pointer; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 10px 25px rgba(142, 68, 173, 0.2); }
.btn:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(209, 179, 232, 0.3); }
.btn-full { width: 100%; margin-top: 10px; }
.btn-outline { background: transparent; border: 1px solid var(--accent-primary); color: var(--accent-primary); }
.btn-outline:hover { background: rgba(209, 179, 232, 0.1); }

/* --- Globale Sektionen & Grid --- */
.section-padding { padding: 100px 20px; position: relative; z-index: 2; }
.description { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.grid { max-width: 1200px; margin: 0 auto; display: grid; gap: 30px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

/* --- Hero, About, Gallery, Rules, Testimonials (bleibt gleich wie in deiner Basis) --- */
.hero { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; background: radial-gradient(circle at 50% 30%, var(--bg-grad-2) 0%, var(--bg-grad-1) 40%, var(--bg-dark) 100%); overflow: hidden; }
#star-canvas { position: absolute; top: -5%; left: -5%; width: 110%; height: 110%; z-index: 0; pointer-events: none; }
.hero-content { position: relative; z-index: 1; max-width: 800px; padding: 60px 40px; text-align: center; margin: 0 20px; }
.badge { display: inline-block; padding: 6px 16px; background: rgba(209, 179, 232, 0.1); color: var(--accent-primary); border: 1px solid var(--accent-glow); border-radius: 30px; font-size: 0.85rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 1; opacity: 0.6; }
.mouse { width: 26px; height: 40px; border: 2px solid var(--text-muted); border-radius: 20px; position: relative; }
.mouse::before { content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--text-muted); border-radius: 2px; animation: scrollWheel 2s infinite; }
@keyframes scrollWheel { 0% { top: 6px; opacity: 1; } 100% { top: 20px; opacity: 0; } }
.about .content-wrapper { max-width: 800px; margin: 0 auto; text-align: center; }
.about .text-block { padding: 50px; border-radius: var(--radius-lg); background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%); border: 1px solid var(--glass-border); }
.image-wrapper { aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.image-wrapper:hover { transform: translateY(-10px) scale(1.02); border-color: rgba(209, 179, 232, 0.3); }
.placeholder-text { color: var(--text-muted); font-weight: 400; font-size: 0.9rem; letter-spacing: 1px; }
.step-card { padding: 40px 30px; position: relative; transition: transform 0.4s ease, background 0.4s ease; border-top: 4px solid transparent; }
.step-card:hover { transform: translateY(-10px); background: rgba(255, 255, 255, 0.06); border-top: 4px solid var(--accent-primary); }
.step-number { position: absolute; top: -20px; left: 30px; width: 40px; height: 40px; background: var(--btn-grad); color: white; font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600; display: flex; align-items: center; justify-content: center; border-radius: 50%; box-shadow: 0 5px 15px rgba(142, 68, 173, 0.4); }
.step-card h3 { font-family: 'Inter', sans-serif; font-size: 1.15rem; margin-top: 10px; margin-bottom: 15px; color: var(--accent-primary); }
.step-card p, .rule-card p { font-size: 0.95rem; margin: 0; line-height: 1.6; }
.rule-card { padding: 40px 30px; text-align: center; transition: transform 0.4s ease, background 0.4s ease; }
.rule-card:hover { transform: translateY(-10px); background: rgba(255, 255, 255, 0.06); }
.rule-icon { font-size: 3rem; margin-bottom: 20px; filter: drop-shadow(0 0 10px var(--accent-glow)); }
.rule-card h3 { font-family: 'Inter', sans-serif; font-size: 1.2rem; margin-bottom: 15px; color: var(--text-main); }
.testimonial-card { padding: 40px; display: flex; flex-direction: column; justify-content: space-between; border-left: 4px solid var(--accent-primary); }
.quote { font-style: italic; font-size: 1.05rem; color: var(--text-main); margin-bottom: 30px; line-height: 1.8; }
.author { font-weight: 500; color: var(--accent-primary); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin: 0; }


/* --- Formular & 3D Flip Container --- */
.register { padding: 60px 20px 120px; perspective: 1500px; } /* Perspective for 3D */

.flip-perspective-wrapper {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.form-flipper {
    position: relative;
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55); /* Bouncy Flip */
    transform-style: preserve-3d;
}

.form-flipper.is-flipped {
    transform: rotateY(180deg);
}

.flip-front, .flip-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    padding: 50px 40px;
}

.flip-front {
    position: relative; /* Front needs height */
    z-index: 2;
    transform: rotateY(0deg);
}

.flip-back {
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

/* --- Formular Inputs --- */
.input-group { position: relative; margin-bottom: 25px; }
.input-group input { width: 100%; padding: 20px 20px 10px; background: rgba(0, 0, 0, 0.2); border: 1px solid var(--glass-border); border-radius: var(--radius-md); color: var(--text-main); font-size: 1rem; outline: none; transition: all 0.3s ease; }
.input-group label { position: absolute; left: 20px; top: 18px; color: var(--text-muted); font-size: 1rem; pointer-events: none; transition: all 0.3s ease; }
.input-group input:focus, .input-group input:not(:placeholder-shown) { background: rgba(0, 0, 0, 0.4); border-color: var(--accent-glow); padding: 26px 20px 6px; }
.input-group input:focus + label, .input-group input:not(:placeholder-shown) + label { top: 6px; font-size: 0.75rem; color: var(--accent-primary); }

.security-note { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; margin-top: -15px; padding-left: 5px; }
.security-note svg { color: #A3E4D7; }

/* --- Der Custom Kalender --- */
.custom-calendar-container {
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 30px;
}

.calendar-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

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

.cal-nav {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-main);
    width: 32px; height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex; align-items: center; justify-content: center;
}
.cal-nav:hover { background: var(--accent-primary); color: var(--bg-dark); }
.cal-nav:disabled { opacity: 0.3; cursor: not-allowed; }

.cal-month-year { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--accent-primary); font-weight: 600; }

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s;
    background: rgba(255,255,255,0.02);
}

.cal-day:hover:not(.disabled) { background: rgba(209, 179, 232, 0.2); border: 1px solid var(--accent-glow); }

.cal-day.disabled {
    opacity: 0.2;
    cursor: not-allowed;
    background: transparent;
}

.cal-day.selected {
    background: var(--btn-grad);
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(142, 68, 173, 0.4);
    transform: scale(1.1);
}

/* --- Checkboxen --- */
.legal-checks { margin-bottom: 30px; margin-top: 10px; }
.custom-checkbox { display: flex; align-items: flex-start; position: relative; padding-left: 35px; margin-bottom: 15px; cursor: pointer; font-size: 0.9rem; color: var(--text-muted); user-select: none; }
.custom-checkbox input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; }
.checkmark { position: absolute; top: 2px; left: 0; height: 22px; width: 22px; background-color: rgba(0,0,0,0.3); border: 1px solid var(--glass-border); border-radius: 6px; transition: all 0.2s ease; }
.custom-checkbox:hover input ~ .checkmark { border-color: var(--accent-glow); }
.custom-checkbox input:checked ~ .checkmark { background-color: var(--accent-primary); border-color: var(--accent-primary); }
.checkmark:after { content: ""; position: absolute; display: none; left: 7px; top: 3px; width: 5px; height: 10px; border: solid var(--bg-dark); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.custom-checkbox input:checked ~ .checkmark:after { display: block; }

.message { margin-top: 20px; font-size: 0.95rem; text-align: center; display: none; }
.message.show { display: block; }
.message.success { color: #A3E4D7; }
.message.error { color: #F5B7B1; }

/* --- Flippige Erfolgs-Animation (Häkchen) --- */
.success-content { padding: 40px 20px; }
.success-icon-wrapper { margin: 0 auto 20px; width: 80px; height: 80px; }

.checkmark-circle {
    stroke-dasharray: 166; stroke-dashoffset: 166; stroke-width: 2; stroke-miterlimit: 10;
    stroke: #A3E4D7; fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.checkmark-icon { width: 80px; height: 80px; border-radius: 50%; display: block; stroke-width: 2; stroke: #fff; stroke-miterlimit: 10; box-shadow: inset 0px 0px 0px #A3E4D7; animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both; }
.checkmark-check { transform-origin: 50% 50%; stroke-dasharray: 48; stroke-dashoffset: 48; animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards; }

@keyframes stroke { 100% { stroke-dashoffset: 0; } }
@keyframes scale { 0%, 100% { transform: none; } 50% { transform: scale3d(1.1, 1.1, 1); } }
@keyframes fill { 100% { box-shadow: inset 0px 0px 0px 40px #A3E4D7; } }

/* --- Modals & Footer (bleibt identisch) --- */
footer { text-align: center; padding: 40px; font-size: 0.85rem; color: rgba(255,255,255,0.3); border-top: 1px solid var(--glass-border); }
footer a { color: var(--text-muted); text-decoration: none; margin: 0 10px; transition: color 0.3s; }
footer a:hover { color: var(--accent-primary); }

.reveal-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-scale { opacity: 0; transform: scale(0.95); transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.is-revealed { opacity: 1; transform: translateY(0) scale(1); }

.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(9, 3, 20, 0.7); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); z-index: 10000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s ease; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content { position: relative; width: 90%; max-width: 600px; max-height: 85vh; padding: 40px; overflow-y: auto; transform: translateY(30px) scale(0.95); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); border: 1px solid rgba(209, 179, 232, 0.2); }
.modal-overlay.active .modal-content { transform: translateY(0) scale(1); }
.modal-close { position: absolute; top: 20px; right: 20px; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); color: var(--text-main); width: 40px; height: 40px; border-radius: 50%; font-size: 1.5rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.modal-close:hover { background: var(--btn-grad); color: white; transform: rotate(90deg) scale(1.1); border-color: transparent; }
.modal-body { margin-top: 20px; text-align: left; }
.modal-body p { font-size: 1rem; color: var(--text-main); line-height: 1.7; margin-bottom: 1.2rem; }
.modal-body h3 { font-family: 'Inter', sans-serif; font-size: 1.1rem; color: var(--accent-primary); margin: 1.5rem 0 0.5rem; letter-spacing: 0; }
.modal-body ul { list-style: none; padding-left: 0; margin-top: 15px; }
.modal-body ul li { margin-bottom: 12px; font-size: 0.95rem; color: var(--text-muted); position: relative; padding-left: 20px; }
.modal-body ul li::before { content: '•'; color: var(--accent-primary); position: absolute; left: 0; font-size: 1.2rem; line-height: 1; }

@media (max-width: 768px) {
    .hero-content { padding: 40px 20px; }
    .section-padding { padding: 80px 20px; }
    .flip-front, .flip-back { padding: 40px 25px; }
    .modal-content { padding: 30px 20px; }
}

/* --- Galerie-Grid & Bilder --- */
.gallery-container {
    cursor: pointer;
}

/* Der Wrapper zwingt das 16:9 Verhältnis auf */
.image-wrapper {
    aspect-ratio: 16 / 9; /* Modernes CSS für präzises Format */
    overflow: hidden; /* Schneidet Überstände sauber ab */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05); /* Dezente Abgrenzung */
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.image-wrapper:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(209, 179, 232, 0.3); /* Sanftes pastell-violettes Glühen */
    z-index: 10;
}

/* Das eigentliche Bild füllt den 16:9 Kasten aus */
.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* WICHTIG: Füllt den Kasten aus, ohne zu verzerren (es wird gecroppt) */
    transition: transform 0.6s ease;
}

.image-wrapper:hover .gallery-image {
    transform: scale(1.08); /* Sanfter Zoom-Effekt beim Hover */
}


/* --- LIGHTBOX (Inkl. Pastell-Violett & Glassmorphism) --- */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 5, 20, 0.85); /* Sehr dunkles Violett, fast schwarz */
    backdrop-filter: blur(15px); /* Starker Glassmorphismus-Effekt */
    -webkit-backdrop-filter: blur(15px);
    z-index: 10000; /* Ganz oben */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    padding: 30px;
    text-align: center;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); /* Sanftes Einfliegen */
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1) translateY(0);
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh; /* Verhindert zu hohe Bilder auf kleinen Screens */
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6); /* Eleganter Schatten */
    object-fit: contain; /* Zeigt das komplette Bild, nichts wird abgeschnitten */
}

.lightbox-close {
    position: absolute;
    top: -20px;
    right: -20px;
    background-color: #0A0514;
    border: 1px solid rgba(209, 179, 232, 0.5);
    color: rgba(209, 179, 232, 0.9);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    background-color: rgba(209, 179, 232, 0.9);
    color: #0A0514;
}

.lightbox-caption {
    margin-top: 20px;
    font-size: 1.1rem;
    color: rgba(209, 179, 232, 0.9);
    font-weight: 400;
}

/* --- AGE GATE OVERLAY --- */
.age-gate-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(9, 3, 20, 0.9);
    backdrop-filter: blur(25px); /* Starker Blur für den Hintergrund */
    -webkit-backdrop-filter: blur(25px);
    z-index: 99999; /* Über allem anderen */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.age-gate-overlay.active {
    opacity: 1;
    visibility: visible;
}

.age-gate-content {
    max-width: 500px;
    text-align: center;
    padding: 50px 40px;
    border: 1px solid var(--accent-primary);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(142, 68, 173, 0.2);
}

.age-gate-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.age-gate-content p {
    color: var(--text-main);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.age-gate-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.age-gate-buttons .btn {
    width: 100%;
}

/* --- LIGHTBOX PFEILE (Slider Navigation) --- */
.lightbox-prev, .lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(10, 5, 20, 0.6);
    border: 1px solid rgba(209, 179, 232, 0.4);
    color: rgba(209, 179, 232, 0.8);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10002;
    padding-bottom: 4px; /* Optische Zentrierung der Pfeil-Symbole */
}

.lightbox-prev { left: 3vw; }
.lightbox-next { right: 3vw; }

.lightbox-prev:hover, .lightbox-next:hover {
    background-color: rgba(209, 179, 232, 0.9);
    color: #0A0514;
    transform: translateY(-50%) scale(1.1);
    border-color: transparent;
}

@media (max-width: 768px) {
    .lightbox-prev, .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}