/* =============================================
   CORE NETWORK - GTA5 STYLE
   Schwarz | Weiß | Rot | Streng
============================================= */

/* ----- CSS Variables ----- */
:root {
    /* Colors */
    --black: #0a0a0a;
    --black-light: #141414;
    --black-medium: #1a1a1a;
    --gray-dark: #222222;
    --gray: #444444;
    --gray-light: #888888;
    --white: #ffffff;
    --white-muted: #f0f0f0;
    --red: #d62839;
    --red-dark: #a81c2b;
    --red-glow: rgba(214, 40, 57, 0.4);
    
    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-condensed: 'Roboto Condensed', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
    
    /* Cinematic Easing */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);
}

/* ----- Reset & Base ----- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--red);
    color: var(--white);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

/* =============================================
   PAGE LOADER
============================================= */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.loader-logo {
    display: flex;
    justify-content: center;
    width: 100%;
}

.loader-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 40px;
    animation: loaderPulse 2s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--gray-dark);
    margin: 0 auto 20px;
    overflow: hidden;
}

.loader-progress {
    width: 100%;
    height: 100%;
    background: var(--red);
    transform-origin: left;
    animation: loaderProgress 1.5s var(--ease-out-expo) forwards;
}

@keyframes loaderProgress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.loader-text {
    font-family: var(--font-condensed);
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--gray-light);
    animation: loaderTextBlink 1s ease-in-out infinite;
}

@keyframes loaderTextBlink {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* =============================================
   CUSTOM CURSOR (DISABLED)
============================================= */
.cursor-dot,
.cursor-outline {
    display: none !important;
}

/* =============================================
   GLOBAL AMBIENT PARTICLES
============================================= */
.global-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

/* =============================================
   MAGNETIC BUTTONS
============================================= */
.magnetic {
    transition: transform 0.3s var(--ease-out-expo);
}

.magnetic span,
.magnetic svg {
    transition: transform 0.3s var(--ease-out-expo);
}

/* =============================================
   SCROLL REVEAL ANIMATIONS
============================================= */
.reveal-hidden {
    opacity: 0;
    transform: translateY(60px);
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

/* Text split animation (DISABLED)
.split-text .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.reveal-visible .char,
.page-loaded .hero-title .char {
    opacity: 1;
    transform: translateY(0);
}
*/

/* =============================================
   SECTION FOG DIVIDERS
============================================= */
.section-fog-divider {
    height: 150px;
    margin: -75px 0;
    position: relative;
    z-index: 10;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(214, 40, 57, 0.03) 30%,
        rgba(214, 40, 57, 0.05) 50%,
        rgba(214, 40, 57, 0.03) 70%,
        transparent 100%
    );
    pointer-events: none;
}

.section-fog-divider::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(214, 40, 57, 0.1) 0%,
        transparent 70%
    );
    animation: fogPulse 4s ease-in-out infinite;
}

@keyframes fogPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Divider vor Jobs höher positionieren */
.section-fog-divider.before-jobs {
    margin-top: -120px;
}

/* ----- Utility Classes ----- */
.text-red {
    color: var(--red);
}

.highlight {
    color: var(--red);
    font-weight: 600;
}

/* ----- Scanlines Effect ----- */
.scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.1) 2px,
        rgba(0, 0, 0, 0.1) 4px
    );
    pointer-events: none;
    z-index: 2;
    opacity: 0.3;
}

/* ----- Cinematic Effects ----- */
.smoke-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.9;
    mix-blend-mode: screen;
}

.particle-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.hero-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 4;
    background: radial-gradient(ellipse at center, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
}

/* Animated gradient border glow */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        transparent 0%,
        transparent 40%,
        rgba(214, 40, 57, 0.03) 50%,
        transparent 60%,
        transparent 100%
    );
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Cinematic letterbox bars (optional - for ultra-wide feel) */
.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    background: linear-gradient(to top, var(--black) 0%, transparent 100%);
    pointer-events: none;
    z-index: 5;
}

/* ----- Corner Accents ----- */
.corner-accent {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--red);
    pointer-events: none;
    z-index: 10;
    opacity: 0.6;
}

.corner-accent.top-left {
    top: 40px;
    left: 40px;
    border-right: none;
    border-bottom: none;
}

.corner-accent.top-right {
    top: 40px;
    right: 40px;
    border-left: none;
    border-bottom: none;
}

.corner-accent.bottom-left {
    bottom: 40px;
    left: 40px;
    border-right: none;
    border-top: none;
}

.corner-accent.bottom-right {
    bottom: 40px;
    right: 40px;
    border-left: none;
    border-top: none;
}

/* ----- Character Figures ----- */
.hero-figure {
    position: absolute;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-figure img {
    height: auto;
    filter: drop-shadow(0 0 80px rgba(0, 0, 0, 0.95));
}

.hero-figure.triad {
    right: 0;
    transform: translateX(15%);
}

.hero-figure.triad img {
    max-height: 100vh;
}

/* Responsive Hero Figure */
@media (max-width: 1200px) {
    .hero-figure.triad {
        transform: translateX(25%);
    }
    
    .hero-figure.triad img {
        max-height: 85vh;
    }
}

@media (max-width: 768px) {
    .hero-figure.triad {
        transform: translateX(40%);
    }
    
    .hero-figure.triad img {
        max-height: 70vh;
    }
}

/* =============================================
   NAVIGATION
============================================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: transparent;
    transition: background var(--transition-medium), padding var(--transition-medium);
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    padding: 15px 40px;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-logo-img {
    height: 50px;
    width: auto;
    transition: transform var(--transition-fast);
    transform: translateY(12px);
}

.nav-logo:hover .nav-logo-img {
    transform: translateY(12px) scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-condensed);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    position: relative;
    padding: 8px 0;
    transition: color 0.4s var(--ease-out-expo);
}

.nav-links a::before {
    content: attr(href);
    position: absolute;
    top: 8px;
    left: 0;
    color: var(--red);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s var(--ease-out-expo), opacity 0.4s var(--ease-out-expo);
    pointer-events: none;
}

.nav-links a::after {
    display: none;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-discord {
    background: var(--red) !important;
    padding: 8px 20px !important;
    color: var(--white) !important;
    transition: background 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo) !important;
}

.nav-discord::after,
.nav-discord::before {
    display: none !important;
}

.nav-discord:hover {
    background: var(--red-dark) !important;
    color: var(--white) !important;
    box-shadow: 0 5px 30px var(--red-glow);
}

/* Nav Dropdown Menu */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-dropdown-toggle svg {
    transition: transform 0.3s ease;
}

.nav-dropdown.open .nav-dropdown-toggle svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: rgba(20, 20, 20, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s var(--ease-out-expo);
    z-index: 1000;
}

.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    top: calc(100% + 10px);
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px !important;
    font-size: 13px !important;
    color: var(--white) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.nav-dropdown-menu a:last-child {
    border-bottom: none;
}

.nav-dropdown-menu a::before,
.nav-dropdown-menu a::after {
    display: none !important;
}

.nav-dropdown-menu a:hover {
    background: rgba(214, 40, 57, 0.2);
    color: var(--red) !important;
}

.nav-dropdown-menu a svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.nav-dropdown-menu a:hover svg {
    opacity: 1;
    color: var(--red);
}

/* Nav Login Button */
.nav-login {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px !important;
    background: var(--red) !important;
    border: none;
    color: var(--white) !important;
    transition: all 0.3s var(--ease-out-expo);
}

.nav-login::after,
.nav-login::before {
    display: none !important;
}

.nav-login:hover {
    background: var(--red-dark) !important;
    box-shadow: 0 5px 30px var(--red-glow);
    color: var(--white) !important;
}

.nav-login svg {
    fill: currentColor;
}

/* Nav User Menu */
#nav-auth-container {
    position: relative;
    display: flex;
    align-items: center;
}

#nav-auth-container .user-menu {
    position: static;
}

#nav-auth-container .user-menu-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--red);
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
}

#nav-auth-container .user-menu-toggle:hover {
    background: var(--red-dark);
    box-shadow: 0 5px 30px var(--red-glow);
}

#nav-auth-container .user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

#nav-auth-container .user-name {
    font-family: var(--font-condensed);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--white);
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#nav-auth-container .user-dropdown-arrow {
    color: var(--white);
    opacity: 0.7;
}

#nav-auth-container .user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    min-width: 200px;
    background: var(--black-light);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s var(--ease-out-expo);
    z-index: 1000;
}

#nav-auth-container .user-dropdown.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

#nav-auth-container .user-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    font-family: var(--font-condensed);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--white);
    text-transform: uppercase;
    transition: all 0.2s ease;
}

#nav-auth-container .user-dropdown a::after,
#nav-auth-container .user-dropdown a::before {
    display: none !important;
}

#nav-auth-container .user-dropdown a:hover {
    background: rgba(214, 40, 57, 0.2);
    color: var(--red);
}

#nav-auth-container .user-dropdown a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

#nav-auth-container .user-dropdown .team-only-link {
    background: rgba(214, 40, 57, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#nav-auth-container .user-dropdown .team-only-link:hover {
    background: rgba(214, 40, 57, 0.25);
}

#nav-auth-container .user-dropdown .logout-link {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-light);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
}

/* =============================================
   HERO SECTION
============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(214, 40, 57, 0.1) 0%, transparent 60%),
        linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.3) 0%, 
        transparent 30%,
        transparent 70%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 40px;
    will-change: transform;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-condensed);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--red);
    border: 1px solid var(--red);
    padding: 8px 20px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease-out-expo);
    z-index: -1;
}

.hero-badge:hover::before {
    transform: scaleX(1);
}

.hero-badge:hover {
    color: var(--white);
}

.hero-logo {
    height: 250px;
    margin: 0 auto 20px;
    animation: heroLogoFloat 6s ease-in-out infinite;
}

@keyframes heroLogoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-divider {
    width: 60px;
    height: 2px;
    background: var(--red);
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
}

.hero-divider::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, var(--white), transparent);
    animation: dividerShine 3s ease-in-out infinite;
}

@keyframes dividerShine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(60px, 12vw, 120px);
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 0.9;
    margin-bottom: 20px;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 80px rgba(214, 40, 57, 0.3);
}

.hero-subtitle {
    font-family: var(--font-condensed);
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--gray-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-condensed);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    background: var(--red);
    padding: 16px 36px;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease-out-expo);
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.4s var(--ease-out-expo);
}

.btn-primary:hover {
    background: var(--red-dark);
    box-shadow: 0 10px 40px var(--red-glow), 0 0 80px rgba(214, 40, 57, 0.3);
}

.btn-primary:hover svg {
    transform: translateX(6px);
}

.btn-primary.large {
    padding: 20px 48px;
    font-size: 16px;
}

.btn-ghost {
    font-family: var(--font-condensed);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    padding: 16px 36px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.btn-ghost::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out-expo);
    z-index: -1;
}

.btn-ghost:hover {
    color: var(--black);
    border-color: var(--white);
}

.btn-ghost:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-discord {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-condensed);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    background: #5865F2;
    padding: 16px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.btn-discord::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease-out-expo);
}

.btn-discord:hover::before {
    transform: translateX(100%);
}

.btn-discord svg {
    width: 20px;
    height: 20px;
}

.btn-discord:hover {
    background: #4752c4;
    box-shadow: 0 10px 40px rgba(88, 101, 242, 0.4);
}

/* Hero Scroll Indicator - REMOVED */

/* =============================================
   SECTION HEADERS
============================================= */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 5;
}

.section-number {
    font-family: var(--font-display);
    font-size: 80px;
    color: var(--gray-dark);
    line-height: 1;
    display: block;
    margin-bottom: -20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 60px);
    letter-spacing: 0.05em;
    color: var(--white);
    position: relative;
}

.title-line {
    width: 60px;
    height: 3px;
    background: var(--red);
    margin: 20px auto 0;
}

.section-intro {
    font-family: var(--font-condensed);
    font-size: 18px;
    color: var(--gray-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 5;
}

/* =============================================
   STORY SECTION
============================================= */
.story {
    position: relative;
    padding: var(--section-padding) 0 40px;
    background: var(--black);
    overflow: visible;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.story-text {
    font-size: 16px;
    color: var(--gray-light);
}

.story-text .lead {
    font-family: var(--font-condensed);
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.5;
}

.story-text p {
    margin-bottom: 16px;
}

.story-text strong {
    color: var(--white);
}

/* Image Frame */
.image-frame {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: all var(--transition-medium);
}

.image-frame:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--red);
}

.frame-corner.tl { top: -5px; left: -5px; border-right: none; border-bottom: none; }
.frame-corner.tr { top: -5px; right: -5px; border-left: none; border-bottom: none; }
.frame-corner.bl { bottom: -5px; left: -5px; border-right: none; border-top: none; }
.frame-corner.br { bottom: -5px; right: -5px; border-left: none; border-top: none; }

/* Timeline */
.timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 60px 20px 40px;
    margin: 0 -20px;
    overflow: visible;
}

.timeline-line {
    position: absolute;
    top: 80px;
    left: calc(10% + 20px);
    right: calc(10% + 20px);
    height: 2px;
    background: var(--gray-dark);
}

.timeline-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 66%;
    height: 100%;
    background: var(--red);
}

.timeline-item {
    position: relative;
    text-align: center;
    flex: 1;
}

.timeline-marker {
    width: 16px;
    height: 16px;
    background: var(--gray-dark);
    border: 3px solid var(--black);
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all var(--transition-fast);
}

.timeline-item.active .timeline-marker,
.timeline-item:hover .timeline-marker {
    background: var(--red);
    box-shadow: 0 0 20px var(--red-glow);
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--red);
    display: block;
    margin-bottom: 8px;
}

.timeline-content h4 {
    font-family: var(--font-condensed);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.timeline-content p {
    font-size: 13px;
    color: var(--gray-light);
}

/* Timeline Act Labels */
.timeline-act {
    position: relative;
    text-align: center;
    padding: 0 20px;
}

.act-label {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 4px;
    color: var(--gray);
    position: relative;
    display: inline-block;
}

.timeline-act.active .act-label {
    color: var(--red);
    text-shadow: 0 0 20px var(--red-glow);
}

.timeline-act.future .act-label {
    color: var(--gray-dark);
    opacity: 0.5;
}

.timeline-item.future .timeline-marker {
    background: var(--gray-dark);
    border-style: dashed;
}

.timeline-item.future .timeline-content h4,
.timeline-item.future .timeline-content p {
    opacity: 0.5;
}

.timeline-item.future .timeline-year {
    color: var(--gray);
}

/* =============================================
   TEASER VIDEO SECTION
============================================= */
.teaser {
    position: relative;
    padding: 40px 0 280px;
    background: var(--black);
    overflow: hidden;
}

.teaser-video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.video-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: var(--black-light);
    border: 1px solid var(--gray-dark);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-frame iframe,
.video-frame video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    background: var(--black);
}

/* Video Poster Overlay */
.video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-poster.visible {
    opacity: 1;
    visibility: visible;
}

.video-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-poster .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(230, 57, 70, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.video-poster .play-btn svg {
    width: 35px;
    height: 35px;
    color: white;
    margin-left: 5px;
}

.video-poster:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--red);
}

.video-frame .frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--red);
    border-style: solid;
    border-width: 0;
    z-index: 10;
    pointer-events: none;
}

.video-frame .frame-corner.tl {
    top: -1px;
    left: -1px;
    border-top-width: 3px;
    border-left-width: 3px;
}

.video-frame .frame-corner.tr {
    top: -1px;
    right: -1px;
    border-top-width: 3px;
    border-right-width: 3px;
}

.video-frame .frame-corner.bl {
    bottom: -1px;
    left: -1px;
    border-bottom-width: 3px;
    border-left-width: 3px;
}

.video-frame .frame-corner.br {
    bottom: -1px;
    right: -1px;
    border-bottom-width: 3px;
    border-right-width: 3px;
}

/* Teaser Responsive */
@media (max-width: 768px) {
    .teaser-video-wrapper {
        padding: 0 20px;
    }
    
    .video-frame .frame-corner {
        width: 20px;
        height: 20px;
    }
}

/* =============================================
   JOBS SECTION (Carousel)
============================================= */
.jobs {
    position: relative;
    background: var(--black-light);
    overflow: hidden;
}

.jobs-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
}

.job-figure {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: var(--black);
    position: relative;
}

.job-figure img {
    height: 75vh;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 80px rgba(0, 0, 0, 0.9));
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.job-figure img.changing {
    opacity: 0;
    transform: scale(0.95);
}

.job-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    position: relative;
    min-height: 500px;
}

.job-content .section-header {
    text-align: left;
    margin-bottom: 40px;
}

.job-carousel {
    max-width: 500px;
}

.job-category {
    font-family: var(--font-condensed);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--red);
    margin-bottom: 16px;
    transition: opacity 0.3s ease;
}

.job-name {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 72px);
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    transition: opacity 0.3s ease;
}

.job-description {
    font-family: var(--font-condensed);
    font-size: 18px;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 40px;
    height: 100px;
    overflow: hidden;
    transition: opacity 0.3s ease;
}

.job-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    position: absolute;
    bottom: 80px;
    left: 60px;
}

.job-nav-btn {
    width: 50px;
    height: 50px;
    border: 1px solid var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    background: transparent;
}

.job-nav-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
}

.job-nav-btn:hover {
    border-color: var(--red);
    background: var(--red);
}

.job-counter {
    font-family: var(--font-display);
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-counter .divider {
    color: var(--gray);
}

/* Entrepreneur Teaser */
.entrepreneur-teaser {
    position: relative;
    background: var(--black);
    border-top: 1px solid var(--gray-dark);
    padding: 60px 60px 80px;
    z-index: 10;
}

.teaser-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.teaser-icon {
    margin-bottom: 20px;
}

.teaser-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--red);
    opacity: 0.8;
}

.teaser-label {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--gray-light);
    display: block;
    margin-bottom: 8px;
}

.teaser-text h3 {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 3px;
    margin-bottom: 12px;
    background: linear-gradient(90deg, var(--white), var(--red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.teaser-text p {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.teaser-hint {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-family: var(--font-condensed);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--gray);
    text-transform: uppercase;
}

.teaser-hint .separator {
    color: var(--red);
    opacity: 0.5;
}

/* Decorative line */
.jobs-layout::before {
    content: '';
    position: absolute;
    top: 25%;
    bottom: 25%;
    left: 50%;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--red), transparent);
    z-index: 3;
}

/* Responsive Jobs */
@media (max-width: 1024px) {
    .jobs-layout {
        min-height: 80vh;
    }
    
    .job-figure img {
        height: 60vh;
    }
    
    .job-content {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .jobs-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .jobs-layout::before {
        display: none;
    }
    
    .job-figure {
        order: 2;
        padding: 20px;
    }
    
    .job-figure img {
        height: 50vh;
    }
    
    .job-content {
        order: 1;
        padding: 60px 20px 120px;
        min-height: 400px;
    }
    
    .job-content .section-header {
        text-align: center;
    }
    
    .job-carousel {
        text-align: center;
    }
    
    .job-nav {
        justify-content: center;
        left: 50%;
        transform: translateX(-50%);
        bottom: 40px;
    }
}

/* =============================================
   GALLERY SECTION
============================================= */
.gallery {
    position: relative;
    padding: var(--section-padding) 0 80px;
    background: var(--black);
    overflow: hidden;
}

.slideshow {
    position: relative;
    margin-top: 40px;
    z-index: 5;
    width: 100%;
}

.slideshow-track {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--black);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        transparent 0%, 
        transparent 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
}

.slide-info {
    position: absolute;
    bottom: 40px;
    left: 60px;
    z-index: 2;
}

.slide-number {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--red);
    display: block;
    line-height: 1;
}

.slide-info h3 {
    font-family: var(--font-condensed);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
}

/* Slideshow Navigation */
.slideshow-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 10;
}

.slide-btn {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.slide-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
}

.slide-btn:hover {
    border-color: var(--red);
    background: var(--red);
}

.slide-counter {
    font-family: var(--font-display);
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.slide-counter .current {
    color: var(--white);
}

.slide-counter .divider {
    color: var(--gray);
}

.slide-counter .total {
    color: var(--gray);
}

/* Progress Bar */
.slide-progress {
    width: 100%;
    max-width: 400px;
    height: 2px;
    background: var(--gray-dark);
    margin: 0 auto;
}

.progress-bar {
    height: 100%;
    background: var(--red);
    width: 25%;
    transition: width var(--transition-medium);
}

/* =============================================
   QUOTE SECTION
============================================= */
.quote-section {
    position: relative;
    padding: 140px 0;
    background: var(--black-medium);
    overflow: hidden;
}

.quote-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(214, 40, 57, 0.05) 0%, transparent 70%);
}

.quote-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 5;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 200px;
    color: var(--red);
    opacity: 0.2;
    line-height: 0.5;
    margin-bottom: -40px;
}

blockquote {
    font-family: var(--font-condensed);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 300;
    line-height: 1.6;
    color: var(--white);
    font-style: italic;
    margin-bottom: 40px;
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--red);
    flex-shrink: 0;
}

.author-line {
    width: 40px;
    height: 2px;
    background: var(--red);
}

.author-info strong {
    font-family: var(--font-condensed);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
}

.author-info span {
    font-size: 12px;
    color: var(--gray-light);
    letter-spacing: 1px;
}

/* =============================================
   STATS SECTION
============================================= */
.stats {
    padding: 80px 0;
    background: var(--black);
    border-top: 1px solid var(--gray-dark);
    border-bottom: 1px solid var(--gray-dark);
}

.stats-header {
    text-align: center;
    margin-bottom: 40px;
}

.stats-badge {
    display: inline-block;
    font-family: var(--font-condensed);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--red);
    padding: 8px 20px;
    border: 1px solid var(--red);
    background: rgba(230, 57, 70, 0.1);
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.stat-item {
    text-align: center;
    padding: 0 40px;
    position: relative;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 72px);
    color: var(--white);
    display: block;
    line-height: 1;
}

.stat-number .stat-small {
    font-size: 0.5em;
    color: var(--gray-light);
    opacity: 0.7;
}

.stat-number .stat-loading {
    color: var(--gray-dark);
    animation: statPulse 1.5s ease-in-out infinite;
}

.stat-number .stat-offline {
    color: var(--gray-dark);
    font-size: 0.6em;
}

@keyframes statPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

/* Live Indicator Dot */
.stat-live-indicator {
    position: absolute;
    top: 0;
    right: 20px;
    width: 8px;
    height: 8px;
    background: var(--gray-dark);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.stat-live-indicator.live {
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
    }
    50% { 
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.8);
    }
}

.stat-label {
    font-family: var(--font-condensed);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--red);
    margin-top: 8px;
    display: block;
}

.stat-sublabel {
    font-family: var(--font-condensed);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--red);
    margin-top: 4px;
    display: block;
    opacity: 0.8;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--gray-dark);
}

/* =============================================
   FINAL CTA
============================================= */
.final-cta {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
}

.cta-content {
    text-align: center;
}

/* Partner Logos */
.partner-logos {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--gray-dark);
}

.partner-label {
    display: block;
    font-family: var(--font-condensed);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gray-light);
    margin-bottom: 30px;
    opacity: 0.5;
}

/* Wilde/verstreute Anordnung */
.partner-scatter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px 50px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

/* Jedes 2., 4., 6. etc. Logo leicht versetzt */
.partner-scatter .partner-logo:nth-child(even) {
    transform: translateY(10px);
}

.partner-scatter .partner-logo:nth-child(3n) {
    transform: translateY(-8px) rotate(-2deg);
}

.partner-scatter .partner-logo:nth-child(5n) {
    transform: translateY(15px) rotate(1deg);
}

.partner-scatter .partner-logo:nth-child(7n) {
    transform: translateY(-12px);
}

.partner-logo {
    display: block;
    opacity: 0.4;
    transition: all 0.4s ease;
    filter: grayscale(100%);
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.1) translateY(0) rotate(0deg) !important;
    filter: grayscale(0%);
}

.partner-logo img {
    height: 55px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(60px, 10vw, 100px);
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.cta-content p {
    font-family: var(--font-condensed);
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   FOOTER
============================================= */
.footer {
    padding: 80px 0 40px;
    background: var(--black);
    border-top: 1px solid var(--gray-dark);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray-dark);
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--gray-light);
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    font-family: var(--font-condensed);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gray-light);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--gray);
    transition: all var(--transition-fast);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.footer-social a:hover {
    border-color: var(--red);
    background: var(--red);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 8px;
}

.footer-bottom .disclaimer {
    font-size: 11px;
    color: var(--gray);
    opacity: 0.6;
}

/* =============================================
   REVEAL ANIMATIONS
============================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveal for grid items */
.jobs-grid .job-card:nth-child(1) { transition-delay: 0s; }
.jobs-grid .job-card:nth-child(2) { transition-delay: 0.1s; }
.jobs-grid .job-card:nth-child(3) { transition-delay: 0.2s; }
.jobs-grid .job-card:nth-child(4) { transition-delay: 0.3s; }

.timeline-item:nth-child(2) { transition-delay: 0s; }
.timeline-item:nth-child(3) { transition-delay: 0.15s; }
.timeline-item:nth-child(4) { transition-delay: 0.3s; }

.stats-grid .stat-item:nth-child(1) { transition-delay: 0s; }
.stats-grid .stat-item:nth-child(3) { transition-delay: 0.1s; }
.stats-grid .stat-item:nth-child(5) { transition-delay: 0.2s; }
.stats-grid .stat-item:nth-child(7) { transition-delay: 0.3s; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .jobs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline {
        flex-direction: column;
        gap: 40px;
        padding-left: 60px;
    }
    
    .timeline-line {
        top: 0;
        bottom: 0;
        left: 20px;
        right: auto;
        width: 2px;
        height: auto;
    }
    
    .timeline-line::after {
        width: 100%;
        height: 66%;
    }
    
    .timeline-item {
        text-align: left;
    }
    
    .timeline-marker {
        position: absolute;
        left: -52px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
    }
    
    .stats-grid {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .stat-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .nav {
        padding: 15px 20px;
    }
    
    /* Mobile Navigation Fix - immer von oben */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        z-index: 999;
        padding-top: 80px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    /* Mobile Dropdown Navigation */
    .nav-dropdown-menu {
        position: static;
        transform: none;
        min-width: unset;
        background: transparent;
        border: none;
        backdrop-filter: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        margin-top: 15px;
    }
    
    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }
    
    .nav-dropdown-toggle {
        justify-content: center;
    }
    
    .nav-dropdown-menu a {
        justify-content: center;
        padding: 10px 20px !important;
        border-bottom: none;
        font-size: 12px !important;
        color: var(--gray-light) !important;
    }
    
    .nav-dropdown-menu a:hover {
        background: transparent;
        color: var(--red) !important;
    }
    
    /* Stats Section Mobile - 2x2 Grid */
    .stats-header {
        margin-bottom: 30px;
    }
    
    .stats-badge {
        font-size: 11px;
        padding: 6px 14px;
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-item {
        padding: 0;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 11px;
        letter-spacing: 2px;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .corner-accent {
        width: 30px;
        height: 30px;
    }
    
    .corner-accent.top-left,
    .corner-accent.top-right {
        top: 20px;
    }
    
    .corner-accent.top-left,
    .corner-accent.bottom-left {
        left: 20px;
    }
    
    .corner-accent.top-right,
    .corner-accent.bottom-right {
        right: 20px;
    }
    
    .corner-accent.bottom-left,
    .corner-accent.bottom-right {
        bottom: 20px;
    }
    
    .hero-logo {
        height: 70px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .slide-info {
        left: 20px;
        bottom: 20px;
    }
    
    .slide-number {
        font-size: 32px;
    }
    
    .slide-info h3 {
        font-size: 16px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .stats-grid {
        gap: 30px;
    }
    
    .stat-item {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .section-number {
        font-size: 60px;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 6px 16px;
    }
    
    .btn-primary,
    .btn-ghost,
    .btn-discord {
        width: 100%;
        justify-content: center;
    }
    
    /* Stats noch kompakter auf sehr kleinen Screens */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 10px;
        letter-spacing: 1px;
    }
    
    .stats-badge {
        font-size: 10px;
        padding: 5px 12px;
        letter-spacing: 2px;
    }
}

/* =============================================
   MOBILE EXPERT OPTIMIZATIONS
============================================= */

/* Tablet Landscape */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 100px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
}

/* Tablet Portrait & Large Phones */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero-title {
        font-size: 56px;
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
    }
    
    .hero-divider {
        width: 60px;
        margin: 15px auto;
    }
    
    .hero-logo {
        height: 50px;
        margin-bottom: 15px;
    }
    
    /* Hero Figure - hide on mobile or reposition */
    .hero-figure {
        opacity: 0.15;
        right: -30%;
    }
    
    .hero-figure.triad img {
        max-height: 60vh;
    }
    
    /* Touch-friendly buttons - min 44px height */
    .btn-primary,
    .btn-ghost,
    .btn-discord {
        min-height: 48px;
        padding: 14px 28px;
        font-size: 13px;
    }
    
    .job-nav-btn {
        width: 48px;
        height: 48px;
    }
    
    .slide-btn {
        width: 48px;
        height: 48px;
    }
    
    /* Gallery Navigation unter dem Bild auf Mobile */
    .slideshow-nav {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        padding: 20px 0;
        background: var(--black);
    }
    
    /* Jobs Section - mehr Platz für Text */
    .job-description {
        height: auto;
        max-height: 120px;
        font-size: 15px;
    }
    
    .job-content {
        padding-bottom: 140px;
    }
    
    /* Quote Section Mobile */
    .quote-text {
        font-size: 24px;
        line-height: 1.5;
    }
    
    .quote-author {
        font-size: 12px;
    }
    
    /* Section titles */
    .section-title {
        font-size: 32px;
    }
    
    /* Timeline Mobile */
    .timeline-year {
        font-size: 14px;
    }
    
    .timeline-content h4 {
        font-size: 14px;
    }
    
    .timeline-content p {
        font-size: 12px;
    }
    
    /* Final CTA Mobile */
    .cta-title {
        font-size: 48px;
    }
    
    .cta-subtitle {
        font-size: 14px;
    }
    
    /* Gallery slides info */
    .slide-info h3 {
        font-size: 14px;
    }
    
    .slide-description {
        display: none; /* Hide on mobile for cleaner look */
    }
    
    /* Footer Mobile */
    .footer-brand p {
        font-size: 13px;
    }
    
    /* Disable fog dividers on mobile */
    .section-fog-divider {
        display: none;
    }
    
    /* Loader Mobile */
    .loader-logo img {
        height: 60px;
    }
    
    .loader-bar {
        width: 150px;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    /* Hero extra small */
    .hero-title {
        font-size: 42px;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .hero-badge {
        font-size: 9px;
        padding: 5px 12px;
    }
    
    .hero-logo {
        height: 40px;
    }
    
    /* Quote extra small */
    .quote-text {
        font-size: 20px;
    }
    
    /* Final CTA extra small */
    .cta-title {
        font-size: 36px;
    }
    
    /* Story text */
    .story-text .lead {
        font-size: 16px;
    }
    
    .story-text p {
        font-size: 14px;
    }
    
    /* Jobs Section */
    .job-name {
        font-size: 28px;
    }
    
    .job-category {
        font-size: 11px;
    }
    
    .job-description {
        font-size: 14px;
    }
    
    /* Stats smaller */
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    /* Navigation mobile menu */
    .nav-links a {
        font-size: 18px;
        padding: 15px 0;
    }
    
    /* Corner accents smaller */
    .corner-accent {
        width: 20px;
        height: 20px;
    }
}

/* Extra small phones (iPhone SE, etc.) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 36px;
    }
    
    .cta-title {
        font-size: 30px;
    }
    
    .quote-text {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

/* Landscape phones - prevent hero overflow */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-logo {
        height: 40px;
    }
    
    .hero-figure {
        display: none;
    }
}

/* =============================================
   TEAM LOGIN STYLES
============================================= */

/* Dezenter Team-Link im Footer */
.team-login-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--gray);
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-decoration: none;
    opacity: 0.4;
    transition: all var(--transition-fast);
}

.team-login-link:hover {
    opacity: 0.8;
    color: var(--gray-light);
}

/* Intranet Nav Link */
.nav-intranet {
    color: var(--red) !important;
    font-weight: 600;
}

.nav-intranet:hover {
    text-shadow: 0 0 10px var(--red-glow);
}

/* Team Login Modal */
.team-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.team-modal.show {
    display: flex;
}

.team-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.team-modal-content {
    position: relative;
    background: var(--black-light);
    border: 1px solid rgba(214, 40, 57, 0.3);
    border-radius: 8px;
    padding: 40px;
    width: 90%;
    max-width: 400px;
    text-align: center;
}

.team-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--gray-light);
    font-size: 28px;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.team-modal-close:hover {
    color: var(--red);
}

.team-modal-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 4px;
    margin-bottom: 30px;
    color: var(--white);
}

.team-form-group {
    margin-bottom: 15px;
}

.team-form-group input {
    width: 100%;
    padding: 14px 18px;
    background: var(--black-medium);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--white);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.team-form-group input:focus {
    outline: none;
    border-color: var(--red);
}

.team-form-group input::placeholder {
    color: var(--gray-light);
}

.team-error {
    color: var(--red);
    font-size: 0.85rem;
    margin-bottom: 15px;
    min-height: 20px;
}

.team-modal-content .btn-primary {
    width: 100%;
    margin-top: 10px;
}

/* Discord Login Button im Modal */
.team-modal-subtitle {
    color: var(--gray-light);
    font-size: 14px;
    margin-bottom: 30px;
}

.discord-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #5865F2;
    color: white;
    padding: 16px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    width: 100%;
}

.discord-login-btn:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.3);
}

.discord-login-btn svg {
    width: 24px;
    height: 24px;
}

.team-modal-info {
    margin-top: 20px;
    font-size: 12px;
    color: var(--gray-light);
}

/* =============================================
   WHITELIST BUTTON & MODAL STYLES
============================================= */

/* Schräger Whitelist Button auf Hero */
.whitelist-btn {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%) rotate(-3deg);
    z-index: 20;
    font-family: 'Bebas Neue', var(--font-display);
    font-size: clamp(16px, 2.5vw, 22px);
    letter-spacing: 3px;
    color: var(--black);
    background: var(--white);
    padding: 18px 32px;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(214, 40, 57, 0);
}

.whitelist-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out-expo);
    z-index: -1;
}

.whitelist-btn:hover {
    color: var(--white);
    transform: translateY(-50%) rotate(-3deg) scale(1.05);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 0 2px var(--red),
        0 0 60px var(--red-glow);
}

.whitelist-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.whitelist-btn span {
    position: relative;
    z-index: 1;
}

/* Whitelist Modal */
.whitelist-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    padding: 40px 20px;
}

.whitelist-modal.show {
    display: flex;
}

.whitelist-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
}

.whitelist-modal-content {
    position: relative;
    background: linear-gradient(180deg, var(--black-light) 0%, var(--black) 100%);
    border: 1px solid rgba(214, 40, 57, 0.4);
    border-radius: 0;
    padding: 50px;
    width: 100%;
    max-width: 700px;
    margin: 20px 0;
    box-shadow: 
        0 0 100px rgba(214, 40, 57, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.whitelist-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: var(--gray-light);
    font-size: 36px;
    cursor: pointer;
    transition: all var(--transition-fast);
    line-height: 1;
}

.whitelist-modal-close:hover {
    color: var(--red);
    transform: rotate(90deg);
}

.whitelist-modal-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.whitelist-modal-header h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    letter-spacing: 6px;
    color: var(--white);
    margin-bottom: 10px;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.whitelist-modal-subtitle {
    font-family: var(--font-condensed);
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--red);
    text-transform: uppercase;
}

/* Whitelist Form Sections */
.whitelist-section {
    margin-bottom: 40px;
}

.whitelist-section h3 {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 4px;
    color: var(--red);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(214, 40, 57, 0.3);
}

.whitelist-form-group {
    margin-bottom: 20px;
}

.whitelist-form-group label {
    display: block;
    font-family: var(--font-condensed);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--white-muted);
    margin-bottom: 8px;
}

.whitelist-form-group input,
.whitelist-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--black-medium);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    transition: all var(--transition-fast);
}

.whitelist-form-group input:focus,
.whitelist-form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    background: rgba(214, 40, 57, 0.05);
    box-shadow: 0 0 20px rgba(214, 40, 57, 0.1);
}

.whitelist-form-group input::placeholder,
.whitelist-form-group textarea::placeholder {
    color: var(--gray);
}

.whitelist-form-group textarea {
    min-height: 100px;
    resize: vertical;
    line-height: 1.6;
}

.whitelist-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Char Counter */
.char-counter {
    display: block;
    font-size: 12px;
    color: var(--gray);
    margin-top: 5px;
    text-align: right;
}

.char-counter.valid {
    color: #4ade80;
}

/* Checkbox Styling */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    accent-color: var(--red);
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-group a {
    color: var(--red);
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.checkbox-group a:hover {
    color: var(--white);
}

/* Form Actions */
.whitelist-form-actions {
    margin-top: 40px;
    text-align: center;
}

.whitelist-submit {
    padding: 18px 50px;
    font-size: 16px;
}

.whitelist-info {
    text-align: center;
    font-size: 13px;
    color: var(--gray-light);
    margin-top: 20px;
    font-style: italic;
}

/* Responsive Whitelist */
@media (max-width: 768px) {
    .whitelist-btn {
        left: 20px;
        padding: 14px 24px;
        font-size: 14px;
        transform: translateY(-50%) rotate(-2deg);
    }
    
    .whitelist-modal {
        padding: 20px 15px;
    }
    
    .whitelist-modal-content {
        padding: 30px 25px;
    }
    
    .whitelist-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .whitelist-btn {
        left: 15px;
        right: auto;
        top: auto;
        bottom: 100px;
        transform: rotate(-2deg);
        padding: 12px 20px;
        font-size: 12px;
    }
}

/* =============================================
   REGELWERK SIDE MODAL (Dynamic Dual-Modal)
============================================= */

/* When regelwerk modal is open, shift whitelist modal left */
.whitelist-modal.shifted .whitelist-modal-content {
    transform: translateX(-30%);
    transition: transform 0.5s var(--ease-out-expo);
}

.whitelist-modal.shifted .whitelist-modal-overlay {
    pointer-events: none;
}

/* Regelwerk Modal */
.regelwerk-modal {
    position: fixed;
    top: 0;
    right: -50%;
    width: 50%;
    height: 100vh;
    z-index: 10001;
    display: none;
    opacity: 0;
    transition: right 0.5s var(--ease-out-expo), opacity 0.3s ease;
}

.regelwerk-modal.show {
    display: block;
    right: 0;
    opacity: 1;
}

.regelwerk-modal-content {
    height: 100%;
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
    border-left: 1px solid rgba(214, 40, 57, 0.5);
    padding: 40px;
    overflow-y: auto;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.8);
}

.regelwerk-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: var(--gray-light);
    font-size: 36px;
    cursor: pointer;
    transition: all var(--transition-fast);
    line-height: 1;
    z-index: 10;
}

.regelwerk-modal-close:hover {
    color: var(--red);
    transform: rotate(90deg);
}

.regelwerk-modal-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.regelwerk-modal-header h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    letter-spacing: 6px;
    color: var(--white);
    margin-bottom: 10px;
}

.regelwerk-modal-header p {
    font-family: var(--font-condensed);
    font-size: 13px;
    color: var(--gray-light);
    letter-spacing: 1px;
}

/* Regel Sections */
.regel-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
    overflow: hidden;
}

.regel-header {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.regel-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    opacity: 0.5;
}

.regel-header h3 {
    font-family: var(--font-condensed);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
}

.regel-section ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.regel-section li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--white-muted);
    line-height: 1.5;
}

.regel-section li:last-child {
    border-bottom: none;
}

.regel-section li::before {
    content: '→';
    color: var(--red);
    flex-shrink: 0;
}

.regel-note {
    background: rgba(214, 40, 57, 0.1);
    border-left: 3px solid var(--red);
    padding: 20px;
    margin-top: 30px;
    font-size: 14px;
    color: var(--gray-light);
    text-align: center;
}

/* Responsive Dual Modal */
@media (max-width: 1200px) {
    .whitelist-modal.shifted .whitelist-modal-content {
        transform: translateX(-20%);
    }
    
    .regelwerk-modal {
        width: 55%;
    }
}

@media (max-width: 900px) {
    /* On smaller screens, regelwerk overlays instead of side-by-side */
    .whitelist-modal.shifted .whitelist-modal-content {
        transform: none;
        opacity: 0.3;
        pointer-events: none;
    }
    
    .regelwerk-modal {
        width: 100%;
        right: -100%;
    }
    
    .regelwerk-modal.show {
        right: 0;
    }
    
    .regelwerk-modal-content {
        border-left: none;
    }
}

@media (max-width: 480px) {
    .regelwerk-modal-content {
        padding: 25px 20px;
    }
    
    .regel-header {
        padding: 12px 15px;
    }
    
    .regel-section ul {
        padding: 15px;
    }
}

/* =============================================
   USER MENU (Discord Login)
============================================= */

.user-menu {
    position: relative;
    display: inline-block;
}

.user-menu-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
}

.user-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--red);
}

.user-name {
    font-family: var(--font-condensed);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--white);
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-dropdown-arrow {
    width: 12px;
    height: 12px;
    color: var(--gray-light);
    transition: transform 0.3s ease;
}

.user-dropdown.show ~ .user-menu-toggle .user-dropdown-arrow,
.user-menu-toggle:has(+ .user-dropdown.show) .user-dropdown-arrow {
    transform: rotate(180deg);
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 180px;
    background: var(--black-medium);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s var(--ease-out-expo);
    z-index: 1000;
}

.user-dropdown.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-family: var(--font-condensed);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--white);
    transition: all 0.2s ease;
}

.user-dropdown a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--red);
}

.user-dropdown a svg {
    width: 16px;
    height: 16px;
}

.user-dropdown a.logout-link {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-light);
}

.user-dropdown a.logout-link:hover {
    color: var(--red);
}

/* =============================================
   MEINE WHITELIST MODAL
============================================= */

#my-whitelist-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s var(--ease-out-expo);
}

#my-whitelist-modal.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.my-whitelist-modal-content {
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    background: var(--black-medium);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s var(--ease-out-expo);
    overflow: hidden;
}

#my-whitelist-modal.show .my-whitelist-modal-content {
    transform: translateY(0);
}

.my-whitelist-modal-header {
    padding: 25px 30px;
    background: linear-gradient(135deg, var(--black-light) 0%, var(--black-medium) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.my-whitelist-modal-header h2 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--white);
    letter-spacing: 3px;
}

.my-whitelist-modal-header p {
    color: var(--gray-light);
    font-size: 14px;
    margin-top: 4px;
}

.my-whitelist-close {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.my-whitelist-close:hover {
    background: var(--red);
    border-color: var(--red);
}

.my-whitelist-close svg {
    width: 18px;
    height: 18px;
}

.my-whitelist-modal-body {
    padding: 30px;
    overflow-y: auto;
    max-height: calc(80vh - 100px);
}

/* Whitelist Status Card */
.wl-status-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
}

.wl-status-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    gap: 10px;
    flex-wrap: wrap;
}

.wl-status-badge {
    font-family: var(--font-condensed);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    padding: 6px 14px;
}

.wl-status-date {
    font-size: 12px;
    color: var(--gray-light);
}

.wl-status-character {
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid var(--red);
    font-size: 14px;
    margin-bottom: 0;
}

.wl-status-character strong {
    color: var(--gray-light);
    margin-right: 8px;
}

/* Support Message Box */
.wl-support-message {
    margin-top: 20px;
    background: rgba(214, 40, 57, 0.1);
    border: 1px solid rgba(214, 40, 57, 0.3);
    padding: 15px;
}

.wl-support-message-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-condensed);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--red);
    margin-bottom: 10px;
}

.wl-support-message p {
    color: var(--white-muted);
    font-size: 14px;
    line-height: 1.7;
    white-space: pre-wrap;
}

/* Responsive */
@media (max-width: 600px) {
    .user-menu-toggle {
        padding: 6px 12px;
    }
    
    .user-name {
        display: none;
    }
    
    .user-dropdown-arrow {
        display: none;
    }
    
    .my-whitelist-modal-content {
        width: 95%;
    }
    
    .my-whitelist-modal-header {
        padding: 20px;
    }
    
    .my-whitelist-modal-header h2 {
        font-size: 22px;
    }
    
    .my-whitelist-modal-body {
        padding: 20px;
    }
}