/* Final Design: Kombination aus Design 9, 7, 10 und 3 */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors - Original Brand-Farben */
    --neon-blue: #1e9bc7;
    --electric-orange: #ffbd59;
    --lab-green: #39ff14;
    --dark-bg: #0a0a0a;
    --dark-surface: #1a1a1a;
    --dark-card: #2a2a2a;
    
    /* Brand Grautöne */
    --brand-gray-light: #d9d9d9;
    --brand-gray-medium: #757575;
    --brand-gray-dark: #3a3a3b;
    
    /* Vereinfachte Additional Colors - alle auf Brand-Farben */
    --hologram-blue: #1e9bc7;
    --plasma-orange: #ffbd59;
    --reality-violet: #9c27b0;
    --digital-cyan: #1e9bc7;
    --physical-gray: #757575;
    
    /* Typography */
    --font-orbitron: 'Orbitron', monospace;
    --font-jetbrains: 'JetBrains Mono', monospace;
    --font-inter: 'Inter', sans-serif;
    --font-rajdhani: 'Rajdhani', sans-serif;
    --font-exo: 'Exo 2', sans-serif;
    --font-fira: 'Fira Code', monospace;
    
    /* Spacing */
    --container-max: 1200px;
    --section-padding: 80px 0;
    --element-gap: 2rem;
    
    /* Effects */
    --glow-neon: 0 0 20px var(--neon-blue);
    --glow-orange: 0 0 20px var(--electric-orange);
    --glow-green: 0 0 20px var(--lab-green);
    
    /* 3D Properties */
    --perspective: 1000px;
    --depth-near: 10px;
    --depth-mid: 50px;
    --depth-far: 100px;
    
    /* Animation Durations */
    --duration-fast: 0.3s;
    --duration-normal: 0.6s;
    --duration-slow: 1.2s;
}

body {
    font-family: var(--font-inter);
    background: var(--dark-bg);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Particle Background */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Header & Navigation (Design 9 Basis) */
.lab-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(30, 155, 199, 0.2);
}

.lab-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo-container:hover {
    opacity: 0.8;
}

.logo-container:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
    border-radius: 4px;
}

.animated-logo {
    position: relative;
    width: 40px;
    height: 40px;
}

.logo-svg {
    width: 100%;
    height: 100%;
}

/* SVG-Logo Farben */
.logo-path-blue {
    fill: var(--neon-blue);
}

.logo-path-orange {
    fill: var(--electric-orange);
}

/* Subtile Animation nur im Header */
.animated-logo .logo-svg {
    filter: drop-shadow(0 0 8px var(--neon-blue));
    animation: subtle-pulse 3s ease-in-out infinite;
}

/* Footer: Statisches Logo */
.footer-logo .logo-svg.static {
    filter: none;
    animation: none;
}

.logo-text {
    font-family: var(--font-orbitron);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--neon-blue);
    text-shadow: var(--glow-neon);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-rajdhani);
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--neon-blue);
    text-shadow: var(--glow-neon);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.live-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-jetbrains);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--lab-green);
    text-shadow: var(--glow-green);
}

.stat-label {
    font-size: 0.8rem;
    color: #888;
    font-family: var(--font-rajdhani);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--neon-blue);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-lab {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-family: var(--font-orbitron);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px) rotateX(-15deg);
    animation: titleReveal 1s ease-out forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.glitch {
    color: var(--neon-blue);
    text-shadow: var(--glow-neon);
    position: relative;
    animation: glitch-main 4s ease-in-out infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.glitch::before {
    color: #ffbd59;
    animation: glitch-red 4s ease-in-out infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    transform: translate(-2px, -1px);
}

.glitch::after {
    color: #1e9bc7;
    animation: glitch-blue 4s ease-in-out infinite;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    transform: translate(2px, 1px);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--brand-gray-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
}

.cta-primary, .cta-secondary {
    position: relative;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-family: var(--font-rajdhani);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.cta-primary {
    background: linear-gradient(45deg, var(--neon-blue), var(--electric-orange));
    color: #000000;
    box-shadow: var(--glow-neon);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(30, 155, 199, 0.4);
}

.cta-secondary {
    background: transparent;
    color: var(--neon-blue);
    border: 2px solid var(--neon-blue);
}

.cta-secondary:hover {
    background: var(--neon-blue);
    color: #000000;
    box-shadow: var(--glow-neon);
}

/* Demo Container */
.demo-container {
    position: relative;
}

.demo-screen {
    background: var(--dark-surface);
    border: 2px solid var(--neon-blue);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--glow-neon);
}

.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
}

.demo-title {
    font-family: var(--font-jetbrains);
    color: var(--neon-blue);
    font-weight: 500;
}

.demo-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #cccccc;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lab-green);
    box-shadow: var(--glow-green);
    animation: pulse-dot 2s ease-in-out infinite;
}

.status-dot.offline {
    background: #ff4444;
    box-shadow: 0 0 20px #ff4444;
    animation: pulse-dot-offline 3s ease-in-out infinite;
}

.neural-network {
    height: 200px;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1), transparent);
    border-radius: 8px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.demo-controls {
    display: flex;
    gap: 0.5rem;
}

.demo-btn {
    flex: 1;
    padding: 0.5rem;
    background: transparent;
    border: 1px solid var(--electric-orange);
    color: var(--electric-orange);
    border-radius: 4px;
    font-family: var(--font-rajdhani);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-btn:hover, .demo-btn.active {
    background: var(--electric-orange);
    color: #000000;
    box-shadow: var(--glow-orange);
}

/* Floating Elements (aus Design 10) */
.hero-3d-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transform-style: preserve-3d;
    perspective: var(--perspective);
}

.floating-element {
    position: absolute;
    animation: float 6s ease-in-out infinite;
    pointer-events: auto;
}

.podcast-float {
    top: 15%;
    right: 5%;
    animation-delay: 0s;
}

.podcast-float-2 {
    bottom: 25%;
    left: 5%;
    animation-delay: 3s;
}

.hologram-card {
    background: rgba(79, 195, 247, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--hologram-blue);
    border-radius: 15px;
    padding: 1.5rem;
    transform-style: preserve-3d;
    box-shadow: 0 0 30px rgba(79, 195, 247, 0.2);
    text-align: center;
    min-width: 200px;
}

.podcast-card {
    border-color: var(--electric-orange);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.2);
}

.podcast-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.hologram-card h3 {
    font-family: var(--font-orbitron);
    color: var(--hologram-blue);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.podcast-card h3 {
    color: var(--electric-orange);
}

.hologram-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.podcast-btn {
    background: var(--electric-orange);
    color: #000;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: var(--font-rajdhani);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.podcast-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-orange);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #888;
    font-family: var(--font-rajdhani);
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--neon-blue);
    margin: 0 auto 0.5rem;
    animation: scroll-bounce 2s ease-in-out infinite;
}

/* Sections */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-orbitron);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neon-blue);
    text-shadow: var(--glow-neon);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--brand-gray-light);
}

/* Reality Check Section (aus Design 7) */
.reality-check {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(255, 107, 53, 0.05));
}

.reality-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.reality-item {
    background: var(--dark-surface);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.reality-item.myth {
    border-color: rgba(255, 107, 53, 0.3);
}

.reality-item.truth {
    border-color: rgba(57, 255, 20, 0.3);
}

.reality-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.reality-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.reality-item h3 {
    font-family: var(--font-orbitron);
    margin-bottom: 1rem;
    color: #fff;
}

.reality-item p {
    color: #ccc;
    line-height: 1.6;
}


/* Interactive Tech Canvas Section */
.tech-canvas-section {
    background: var(--dark-surface);
    position: relative;
    overflow: hidden;
}

.code-comment {
    color: var(--lab-green);
    font-family: var(--font-fira);
    font-size: 1rem;
    opacity: 0.8;
}

.tech-canvas-container {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(255, 107, 53, 0.05));
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    overflow: hidden;
}

/* Tech Icon Display */
.tech-icon-display {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.tech-icon-display h3 {
    font-family: var(--font-orbitron);
    color: var(--neon-blue);
    margin: 0;
    font-size: 1.5rem;
    text-shadow: var(--glow-neon);
    transition: all 0.5s ease;
    opacity: 1;
    min-height: 1.8rem;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-icon-display p {
    color: var(--brand-gray-light);
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.4;
    max-width: 600px;
    transition: all 0.5s ease;
    opacity: 1;
    min-height: 1.54rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Level Badge */
.level-badge {
    background: linear-gradient(45deg, var(--electric-orange), #ffd700);
    color: #000;
    padding: 0.05rem 0.5rem;
    border-radius: 8px;
    font-family: var(--font-orbitron);
    font-weight: 700;
    font-size: 0.6rem;
    line-height: 1;
    box-shadow: 0 0 20px rgba(255, 189, 89, 0.6);
    animation: level-pulse 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.5s ease;
    min-height: auto;
}

.level-badge.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.level-text {
    font-size: 0.6rem;
    opacity: 0.8;
}

.level-number {
    font-size: 0.55rem;
    font-weight: 900;
}

/* Level-spezifische Badge-Styles */
.level-badge.level-1 {
    background: linear-gradient(45deg, rgba(255, 189, 89, 0.8), rgba(255, 189, 89, 1));
    box-shadow: 0 0 15px rgba(255, 189, 89, 0.4);
    animation: level-pulse-1 2s ease-in-out infinite;
}

.level-badge.level-2 {
    background: linear-gradient(45deg, rgba(255, 189, 89, 0.9), rgba(255, 189, 89, 1));
    box-shadow: 0 0 20px rgba(255, 189, 89, 0.5);
    animation: level-pulse-2 1.8s ease-in-out infinite;
}

.level-badge.level-3 {
    background: linear-gradient(45deg, rgba(255, 189, 89, 1), rgba(255, 215, 0, 1));
    box-shadow: 0 0 25px rgba(255, 189, 89, 0.6);
    animation: level-pulse-3 1.6s ease-in-out infinite;
}

.level-badge.level-4 {
    background: linear-gradient(45deg, rgba(255, 189, 89, 1), rgba(255, 215, 0, 1));
    box-shadow: 0 0 30px rgba(255, 189, 89, 0.7);
    animation: level-pulse-4 1.4s ease-in-out infinite;
}

.level-badge.level-5 {
    background: linear-gradient(45deg, rgba(255, 189, 89, 1), rgba(255, 215, 0, 1), rgba(255, 255, 255, 0.3));
    box-shadow: 0 0 35px rgba(255, 189, 89, 0.8);
    animation: level-pulse-5 1.2s ease-in-out infinite;
}

/* Level Badge Animations */
@keyframes level-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 189, 89, 0.6);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 25px rgba(255, 189, 89, 0.8);
    }
}

@keyframes level-pulse-1 {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 15px rgba(255, 189, 89, 0.4);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 0 18px rgba(255, 189, 89, 0.5);
    }
}

@keyframes level-pulse-2 {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 189, 89, 0.5);
    }
    50% { 
        transform: scale(1.03);
        box-shadow: 0 0 23px rgba(255, 189, 89, 0.6);
    }
}

@keyframes level-pulse-3 {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 25px rgba(255, 189, 89, 0.6);
    }
    50% { 
        transform: scale(1.04);
        box-shadow: 0 0 28px rgba(255, 189, 89, 0.7);
    }
}

@keyframes level-pulse-4 {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 30px rgba(255, 189, 89, 0.7);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 35px rgba(255, 189, 89, 0.8);
    }
}

@keyframes level-pulse-5 {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 35px rgba(255, 189, 89, 0.8);
    }
    25% { 
        transform: scale(1.06);
        box-shadow: 0 0 40px rgba(255, 189, 89, 0.9);
    }
    50% { 
        transform: scale(1.08);
        box-shadow: 0 0 45px rgba(255, 189, 89, 1.0);
    }
    75% { 
        transform: scale(1.06);
        box-shadow: 0 0 40px rgba(255, 189, 89, 0.9);
    }
}

.tech-canvas {
    width: 100%;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.03) 0%, transparent 70%);
    border-radius: 12px;
    cursor: crosshair;
    display: block;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.canvas-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.canvas-btn {
    background: transparent;
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-family: var(--font-rajdhani);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.canvas-btn:hover {
    background: var(--neon-blue);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.canvas-btn:active {
    transform: translateY(0);
}

.canvas-btn.paused {
    border-color: var(--electric-orange);
    color: var(--electric-orange);
}

.canvas-btn.paused:hover {
    background: var(--electric-orange);
    color: #000;
}

.canvas-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-jetbrains);
    color: var(--neon-blue);
    font-size: 0.9rem;
}

#icon-count {
    font-weight: 600;
    color: var(--electric-orange);
}

/* Glass Effect for Icons */
.glass-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.glass-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--neon-blue);
    box-shadow: 
        0 12px 40px rgba(0, 212, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.glass-icon:active {
    cursor: grabbing;
    transform: scale(0.95);
}

.glass-icon svg {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.glass-icon:hover svg {
    filter: drop-shadow(0 4px 8px rgba(0, 212, 255, 0.4));
    transform: scale(1.1);
}

/* Icon collision effect */
.glass-icon.collision {
    animation: collision-pulse 0.3s ease-out;
}

@keyframes collision-pulse {
    0% { 
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    50% { 
        transform: scale(1.15);
        box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
        border-color: var(--electric-orange);
    }
    100% { 
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
}

/* Loading state */
.canvas-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--neon-blue);
    font-family: var(--font-orbitron);
    font-size: 1.2rem;
    text-align: center;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 212, 255, 0.3);
    border-top: 3px solid var(--neon-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tech-canvas {
        height: 400px;
    }
    
    .tech-canvas-container {
        padding: 1rem;
    }
    
    .canvas-controls {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .glass-icon {
        width: 60px;
        height: 60px;
    }
    
    .glass-icon svg {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .tech-canvas {
        height: 300px;
    }
    
    .glass-icon {
        width: 50px;
        height: 50px;
    }
    
    .glass-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .canvas-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* 5-Ebenen-Modell Section */
.levels-section {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.02), rgba(57, 255, 20, 0.02));
}

.levels-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.levels-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.level-tab {
    background: var(--dark-surface);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    color: #fff;
    font-family: var(--font-inter);
}

.level-tab.active,
.level-tab:hover {
    border-color: var(--neon-blue);
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(5px);
}

.level-number {
    font-family: var(--font-orbitron);
    font-size: 1.5rem;
    color: var(--neon-blue);
    display: block;
    margin-bottom: 0.5rem;
}

.level-name {
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.3rem;
}

.level-tech {
    font-size: 0.9rem;
    color: #888;
    display: block;
    margin-bottom: 0.8rem;
}

.level-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.level-progress .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-blue), #4fc3f7);
    box-shadow: 
        0 0 8px var(--neon-blue), 
        0 0 16px rgba(30, 155, 199, 0.6),
        inset 0 0 8px rgba(30, 155, 199, 0.3);
    border-radius: 2px;
    transition: all 0.3s ease;
    animation: progress-glow 2s ease-in-out infinite alternate;
    position: relative;
}

.level-progress .progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 2px;
    animation: progress-shine 3s ease-in-out infinite;
}

@keyframes progress-glow {
    0% { 
        box-shadow: 
            0 0 8px var(--neon-blue), 
            0 0 16px rgba(30, 155, 199, 0.6),
            inset 0 0 8px rgba(30, 155, 199, 0.3);
    }
    100% { 
        box-shadow: 
            0 0 12px var(--neon-blue), 
            0 0 24px rgba(30, 155, 199, 0.8),
            0 0 32px rgba(30, 155, 199, 0.4),
            inset 0 0 12px rgba(30, 155, 199, 0.5);
    }
}

@keyframes progress-shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.levels-content {
    position: relative;
}

.level-content {
    display: none;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.level-content.active {
    display: grid;
}

.level-info {
    background: var(--dark-surface);
    border-radius: 12px;
    padding: 2rem;
}

.level-info h3 {
    font-family: var(--font-orbitron);
    color: var(--neon-blue);
    margin-bottom: 1rem;
}

.level-info p {
    margin-bottom: 1rem;
    color: #ccc;
}

.level-info ul {
    list-style: none;
    padding-left: 0;
}

.level-info li {
    color: #ccc;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.level-info li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--electric-orange);
}

.level-icons {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 212, 255, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    height: 400px;
    position: relative;
    overflow: hidden;
}

.floating-icons {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 2rem;
}

.floating-icon {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(0, 212, 255, 0.1));
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: float-icon 6s ease-in-out infinite;
}

.floating-icon:hover {
    transform: scale(1.1);
    border-color: var(--neon-blue);
    background: rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.floating-icon svg {
    width: 60px;
    height: 60px;
    fill: var(--neon-blue);
    transition: fill 0.3s ease;
    background: transparent !important;
}

/* Ensure SVG elements have transparent backgrounds */
.floating-icon svg rect[fill="white"],
.floating-icon svg rect[fill="#ffffff"],
.floating-icon svg rect[fill="#FFFFFF"],
.floating-icon svg path[fill="white"],
.floating-icon svg path[fill="#ffffff"],
.floating-icon svg path[fill="#FFFFFF"] {
    fill: transparent !important;
}

/* Make sure SVG backgrounds are transparent */
.floating-icon svg {
    background-color: transparent !important;
}

.floating-icon svg > rect:first-child {
    fill: transparent !important;
}

.floating-icon:hover svg {
    fill: #ffffff;
}

/* Dynamic icon positioning - wird per JavaScript gesetzt */
/* Keine statischen Positionen mehr - alles dynamisch */

@keyframes float-icon {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
    }
    25% { 
        transform: translateY(-15px) rotate(2deg);
    }
    50% { 
        transform: translateY(-5px) rotate(-1deg);
    }
    75% { 
        transform: translateY(-20px) rotate(1deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .level-icons {
        height: 300px;
    }
    
    .floating-icon {
        width: 80px;
        height: 80px;
    }
    
    .floating-icon svg {
        width: 50px;
        height: 50px;
    }
}

/* Experiences Section (aus Design 7) */
.experiences-section {
    background: var(--dark-surface);
}

.experience-story {
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.experience-story h3 {
    font-family: var(--font-orbitron);
    color: var(--electric-orange);
    margin-bottom: 2rem;
    text-align: center;
}

.story-timeline {
    position: relative;
    padding: 2rem 0;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--lab-green), var(--electric-orange), var(--neon-blue));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item.success .timeline-marker {
    background: var(--lab-green);
    box-shadow: var(--glow-green);
}

.timeline-item.problem .timeline-marker {
    background: var(--electric-orange);
    box-shadow: var(--glow-orange);
}

.timeline-item.learning .timeline-marker {
    background: var(--neon-blue);
    box-shadow: var(--glow-neon);
}

.timeline-content {
    background: var(--dark-bg);
    border-radius: 12px;
    padding: 1.5rem;
    width: 45%;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.timeline-content h4 {
    font-family: var(--font-orbitron);
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #ccc;
    line-height: 1.6;
}

.story-lesson {
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid var(--lab-green);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.story-lesson h4 {
    font-family: var(--font-orbitron);
    color: var(--lab-green);
    margin-bottom: 1rem;
}

.story-lesson ul {
    list-style: none;
    padding-left: 0;
}

.story-lesson li {
    color: #ccc;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.story-lesson li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--lab-green);
    font-weight: bold;
}

.honest-testimonial {
    background: var(--dark-bg);
    border-left: 4px solid var(--neon-blue);
    padding: 2rem;
    border-radius: 0 12px 12px 0;
    max-width: 800px;
    margin: 0 auto;
}

.honest-testimonial blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.honest-testimonial cite {
    color: var(--neon-blue);
    font-family: var(--font-jetbrains);
}

/* Carousel Section */
.carousel-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(0, 212, 255, 0.05));
}

.slogan-carousel {
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    background: var(--dark-surface);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.carousel-slides {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.carousel-slide.prev {
    transform: translateX(-100%);
}

.statement-card {
    background: var(--dark-bg);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    max-width: 800px;
    margin: 2rem;
}

.statement-card:hover {
    transform: translateY(-5px) rotateY(2deg);
    border-color: var(--electric-orange);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.statement-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.statement-card h3 {
    font-family: var(--font-orbitron);
    color: var(--electric-orange);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    line-height: 1.4;
}

.statement-card p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1.1rem;
}

.carousel-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.3);
}

.carousel-btn {
    background: transparent;
    border: 2px solid var(--electric-orange);
    color: var(--electric-orange);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--electric-orange);
    color: #000;
    transform: scale(1.1);
    box-shadow: var(--glow-orange);
}

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

.carousel-btn:disabled:hover {
    background: transparent;
    color: var(--electric-orange);
    transform: none;
    box-shadow: none;
}

.carousel-dots {
    display: flex;
    gap: 1rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--electric-orange);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active,
.carousel-dot:hover {
    background: var(--electric-orange);
    box-shadow: var(--glow-orange);
    transform: scale(1.2);
}

/* Podcast Section */
.podcast-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(0, 212, 255, 0.05));
}

.podcast-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.podcast-player {
    background: var(--dark-surface);
    border: 2px solid var(--electric-orange);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.2);
}

.player-header {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.podcast-artwork {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.podcast-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.fallback-icon {
    font-size: 4rem;
    color: var(--electric-orange);
}

.podcast-info h3 {
    font-family: var(--font-orbitron);
    color: var(--electric-orange);
    margin-bottom: 0.5rem;
}

.podcast-info p {
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.podcast-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #888;
    font-family: var(--font-jetbrains);
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.play-btn {
    background: var(--electric-orange);
    color: #000;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-family: var(--font-rajdhani);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-orange);
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--electric-orange), var(--neon-blue));
    transition: width 0.3s ease;
}

.time {
    font-family: var(--font-jetbrains);
    font-size: 0.9rem;
    color: #888;
}

.podcast-episodes h3 {
    font-family: var(--font-orbitron);
    color: var(--neon-blue);
    margin-bottom: 1.5rem;
}

.episode-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.episode-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--dark-surface);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.episode-item:hover {
    border-color: var(--neon-blue);
    background: rgba(0, 212, 255, 0.05);
}

.episode-number {
    font-family: var(--font-jetbrains);
    color: var(--neon-blue);
    font-weight: 600;
    min-width: 40px;
}

.episode-content {
    flex: 1;
}

.episode-content h4 {
    color: #fff;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.episode-content p {
    color: #888;
    font-size: 0.85rem;
}

.episode-play {
    background: transparent;
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.episode-play:hover {
    background: var(--neon-blue);
    color: #000;
}

/* Blog System Styles */
.blog-section {
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.05), rgba(0, 212, 255, 0.05));
}

.blog-preview {
    background: var(--dark-surface);
    border: 2px solid var(--lab-green);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.2);
}

.blog-preview h3 {
    font-family: var(--font-orbitron);
    color: var(--lab-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.blog-preview .article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #888;
    font-family: var(--font-jetbrains);
}

.blog-preview .article-excerpt {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-preview .article-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.blog-preview .tag {
    background: rgba(57, 255, 20, 0.1);
    color: var(--lab-green);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(57, 255, 20, 0.3);
    font-family: var(--font-rajdhani);
}

.blog-cta {
    background: var(--lab-green);
    color: #000;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-family: var(--font-rajdhani);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.blog-cta:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-green);
}

/* Blog Overview Page */
.blog-overview {
    padding: var(--section-padding);
    background: var(--dark-bg);
}

.blog-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
}

.blog-search {
    flex: 1;
    max-width: 400px;
}

.search-input {
    width: 100%;
    background: var(--dark-surface);
    border: 1px solid rgba(57, 255, 20, 0.3);
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    color: #fff;
    font-family: var(--font-inter);
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--lab-green);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.2);
}

.search-input::placeholder {
    color: #888;
}

.tag-filter {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-tag {
    background: transparent;
    border: 1px solid rgba(57, 255, 20, 0.3);
    color: var(--lab-green);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: var(--font-rajdhani);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-tag:hover,
.filter-tag.active {
    background: var(--lab-green);
    color: #000;
    box-shadow: var(--glow-green);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--dark-surface);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    border-color: var(--lab-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.1);
}

.blog-card.featured {
    border-color: var(--electric-orange);
    background: rgba(255, 107, 53, 0.05);
}

.blog-card.featured:hover {
    border-color: var(--electric-orange);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.blog-card .article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #888;
    font-family: var(--font-jetbrains);
}

.blog-card h3 {
    font-family: var(--font-orbitron);
    color: var(--lab-green);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.4;
}

.blog-card.featured h3 {
    color: var(--electric-orange);
}

.blog-card .article-excerpt {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-card .article-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.blog-card .tag {
    background: rgba(57, 255, 20, 0.1);
    color: var(--lab-green);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    border: 1px solid rgba(57, 255, 20, 0.3);
    font-family: var(--font-rajdhani);
}

.blog-card.featured .tag {
    background: rgba(255, 107, 53, 0.1);
    color: var(--electric-orange);
    border-color: rgba(255, 107, 53, 0.3);
}

/* Blog Article Styles */
.blog-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--dark-surface);
    border-radius: 12px;
    border: 1px solid rgba(57, 255, 20, 0.2);
}

.article-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(57, 255, 20, 0.2);
}

.article-header .article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #888;
    font-family: var(--font-jetbrains);
}

.article-header h1 {
    font-family: var(--font-orbitron);
    color: var(--lab-green);
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.article-header .article-excerpt {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.article-header .article-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.article-header .tag {
    background: rgba(57, 255, 20, 0.1);
    color: var(--lab-green);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(57, 255, 20, 0.3);
    font-family: var(--font-rajdhani);
}

.article-content {
    line-height: 1.8;
    color: #ccc;
}

.article-content .lead {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 500;
}

.article-content h2 {
    font-family: var(--font-orbitron);
    color: var(--neon-blue);
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem 0;
    border-left: 4px solid var(--neon-blue);
    padding-left: 1rem;
}

.article-content h3 {
    font-family: var(--font-rajdhani);
    color: var(--lab-green);
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.article-content h4 {
    color: var(--electric-orange);
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem 0;
    font-weight: 600;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content strong {
    color: var(--neon-blue);
}

.article-content em {
    color: var(--lab-green);
}

.code-example {
    background: #1e1e1e;
    border: 1px solid rgba(57, 255, 20, 0.3);
    border-radius: 8px;
    margin: 2rem 0;
    overflow: hidden;
}

.code-example h4 {
    background: rgba(57, 255, 20, 0.1);
    color: var(--lab-green);
    padding: 1rem;
    margin: 0;
    font-family: var(--font-jetbrains);
    font-size: 1rem;
    border-bottom: 1px solid rgba(57, 255, 20, 0.3);
}

.code-example pre {
    margin: 0;
    padding: 1.5rem;
    overflow-x: auto;
    font-family: var(--font-fira);
    font-size: 0.9rem;
    line-height: 1.4;
    background: #1e1e1e;
}

.code-example code {
    color: #f8f8f2;
}

.reality-check {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid var(--electric-orange);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.reality-check h3 {
    color: var(--electric-orange);
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.recommendation {
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid var(--lab-green);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.recommendation h3,
.recommendation h4 {
    color: var(--lab-green);
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.solution-box {
    background: var(--dark-bg);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.solution-box h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.solution-box h4:first-child {
    color: var(--electric-orange);
}

.solution-box h4:last-of-type {
    color: var(--lab-green);
    margin-top: 1rem;
}

/* Blog Navigation */
.blog-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(57, 255, 20, 0.2);
}

.blog-nav-btn {
    background: transparent;
    border: 1px solid var(--lab-green);
    color: var(--lab-green);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-family: var(--font-rajdhani);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.blog-nav-btn:hover {
    background: var(--lab-green);
    color: #000;
    box-shadow: var(--glow-green);
}

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

.blog-nav-btn:disabled:hover {
    background: transparent;
    color: var(--lab-green);
    box-shadow: none;
}

/* Loading States */
.blog-loading {
    text-align: center;
    color: #888;
    padding: 3rem;
    font-style: italic;
}

.blog-error {
    color: var(--electric-orange);
    text-align: center;
    padding: 2rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid var(--electric-orange);
    border-radius: 8px;
    margin: 2rem 0;
}

/* Search Highlighting */
.search-highlight {
    background: rgba(57, 255, 20, 0.3);
    color: var(--lab-green);
    padding: 0.1rem 0.2rem;
    border-radius: 3px;
}

/* Blog Overlay Styles */
.blog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    overflow-y: auto;
    padding: 2rem 0;
}

.blog-overlay-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: calc(100vh - 4rem);
    display: flex;
    flex-direction: column;
}

.overview-overlay .blog-overlay-content {
    padding-top: 2rem;
}

.article-overlay .blog-overlay-content {
    max-width: 900px;
}

.article-overlay .article-content {
    flex: 1;
    background: var(--dark-surface);
    border-radius: 12px;
    padding: 3rem;
    margin: 2rem 0;
    border: 1px solid rgba(57, 255, 20, 0.2);
}

/* Close button for overlays */
.blog-overlay::before {
    content: '✕';
    position: fixed;
    top: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    background: var(--dark-surface);
    border: 2px solid var(--electric-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--electric-orange);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 2001;
    transition: all 0.3s ease;
}

.blog-overlay:hover::before {
    background: var(--electric-orange);
    color: #000;
    transform: scale(1.1);
}

/* Blog Main Styles */
.blog-main {
    padding-top: 100px;
    min-height: 100vh;
}

.blog-header-section,
.article-header-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.05), rgba(0, 212, 255, 0.05));
}

.blog-content-section,
.article-content-section {
    padding: 3rem 0;
}

.breadcrumb {
    margin-bottom: 2rem;
    font-family: var(--font-jetbrains);
    font-size: 0.9rem;
    color: #888;
}

.breadcrumb a {
    color: var(--neon-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--lab-green);
}

.breadcrumb span {
    margin: 0 0.5rem;
}

/* Active navigation state */
.nav-link.active {
    color: var(--lab-green) !important;
    text-shadow: var(--glow-green);
}

.nav-link.active::after {
    width: 100%;
    background: var(--lab-green);
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .blog-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .blog-search {
        max-width: none;
    }
    
    .tag-filter {
        justify-content: center;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .blog-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .code-example pre {
        font-size: 0.8rem;
        padding: 1rem;
    }
    
    .blog-overlay {
        padding: 1rem 0;
    }
    
    .blog-overlay-content {
        padding: 0 1rem;
        min-height: calc(100vh - 2rem);
    }
    
    .article-overlay .article-content {
        padding: 2rem;
        margin: 1rem 0;
    }
    
    .blog-overlay::before {
        top: 1rem;
        right: 1rem;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .blog-article {
        padding: 1rem;
    }
    
    .article-header {
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }
    
    .article-header h1 {
        font-size: 1.5rem;
    }
    
    .article-header .article-excerpt {
        font-size: 1rem;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
    }
    
    .article-content h3 {
        font-size: 1.2rem;
    }
    
    .blog-card {
        padding: 1.5rem;
    }
}

/* Extended Podcast Player Styles */
#podcast-audio {
    display: none;
}

.control-btn {
    background: transparent;
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.control-btn:hover {
    background: var(--neon-blue);
    color: #000;
    transform: scale(1.1);
}

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

.control-btn:disabled:hover {
    background: transparent;
    color: var(--neon-blue);
    transform: none;
}

.progress-container {
    flex: 1;
    margin: 0 1rem;
}

.progress-bar {
    position: relative;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    cursor: pointer;
    overflow: visible;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--electric-orange), var(--neon-blue));
    border-radius: 4px;
    transition: width 0.1s ease;
    position: relative;
}

.progress-handle {
    position: absolute;
    top: 50%;
    right: -6px;
    width: 12px;
    height: 12px;
    background: var(--neon-blue);
    border-radius: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 10px var(--neon-blue);
}

.progress-bar:hover .progress-handle {
    opacity: 1;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.volume-slider {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: var(--neon-blue);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 5px var(--neon-blue);
}

.volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: var(--neon-blue);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 5px var(--neon-blue);
}

.loading {
    text-align: center;
    color: #888;
    padding: 2rem;
    font-style: italic;
}

.episode-item.current {
    border-color: var(--electric-orange);
    background: rgba(255, 107, 53, 0.1);
}

.episode-item.current .episode-number {
    color: var(--electric-orange);
}

.episode-item.current .episode-play {
    border-color: var(--electric-orange);
    color: var(--electric-orange);
}

.episode-item.current .episode-play:hover {
    background: var(--electric-orange);
    color: #000;
}

.player-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--neon-blue);
}

.loading-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-top: 2px solid var(--neon-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error-message {
    color: var(--electric-orange);
    font-size: 0.9rem;
    text-align: center;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid var(--electric-orange);
    border-radius: 8px;
    margin: 1rem 0;
}

/* Responsive Podcast Player */
@media (max-width: 768px) {
    .player-controls {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .progress-container {
        order: 3;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .volume-control {
        order: 4;
        width: 100%;
        justify-content: center;
    }
    
    .volume-slider {
        width: 120px;
    }
    
    .podcast-content {
        grid-template-columns: 1fr;
    }
    
    .player-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .podcast-artwork {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .player-controls {
        justify-content: center;
    }
    
    .control-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .play-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .time {
        font-size: 0.8rem;
    }
}

/* Contact Section */
.contact-section {
    background: var(--dark-surface);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-option {
    background: var(--dark-bg);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.contact-option.primary {
    border-color: var(--neon-blue);
}

.contact-option:not(.primary) {
    border-color: rgba(255, 107, 53, 0.3);
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Online/Offline Status in Contact Option */
.contact-option .demo-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.8rem;
    color: #cccccc;
}

.contact-option .status-dot {
    width: 6px;
    height: 6px;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-option h3 {
    font-family: var(--font-orbitron);
    color: var(--neon-blue);
    margin-bottom: 1rem;
}

.contact-option p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-btn {
    background: var(--neon-blue);
    color: #000;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-family: var(--font-rajdhani);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.contact-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-neon);
}

.contact-form {
    background: var(--dark-bg);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.contact-form h3 {
    font-family: var(--font-orbitron);
    color: var(--neon-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.honest-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-rajdhani);
    color: var(--neon-blue);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    background: var(--dark-surface);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    padding: 0.8rem;
    color: #fff;
    font-family: var(--font-inter);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--neon-blue), var(--electric-orange));
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: var(--font-rajdhani);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

/* Footer */
.lab-footer {
    background: var(--dark-bg);
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: var(--font-orbitron);
    color: var(--neon-blue);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--neon-blue);
}

/* Footer legal links - Brand-Blau für Ynotbetter Link */
.footer-legal a {
    color: var(--neon-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px var(--neon-blue);
}

/* Membership Section Styles */
.membership-section {
    position: relative;
}

.membership-logos {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-top: 0.5rem;
}

.membership-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    background: transparent;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.membership-link:hover {
    transform: translateY(-2px);
    background: rgba(0, 212, 255, 0.05);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.1);
}

.membership-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    filter: brightness(0.9);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.membership-link:hover .membership-logo {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.membership-name {
    font-family: var(--font-rajdhani);
    font-weight: 600;
    color: var(--neon-blue);
    font-size: 1.1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.membership-link:hover .membership-name {
    color: #ffffff;
    text-shadow: 0 0 10px var(--neon-blue);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
}

.animated-logo.small {
    width: 30px;
    height: 30px;
}

.footer-logo span {
    font-family: var(--font-orbitron);
    color: var(--neon-blue);
    font-weight: 700;
}

.footer-legal p {
    color: #888;
    margin-bottom: 0.5rem;
}

.legal-links {
    display: flex;
    gap: 1rem;
}

.legal-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--neon-blue);
}

/* Animations */
@keyframes pulse-core {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

@keyframes rotate-ring {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes glitch-main {
    0%, 90%, 100% { 
        transform: translateX(0) scaleX(1) scaleY(1) rotateZ(0deg);
    }
    2% { 
        transform: translateX(-8px) scaleX(0.98) scaleY(1.02) rotateZ(-0.5deg);
    }
    4% { 
        transform: translateX(12px) scaleX(1.02) scaleY(0.98) rotateZ(0.8deg);
    }
    6% { 
        transform: translateX(-5px) scaleX(0.99) scaleY(1.01) rotateZ(-0.3deg);
    }
    8% { 
        transform: translateX(15px) scaleX(1.01) scaleY(0.99) rotateZ(1.2deg);
    }
    10% { 
        transform: translateX(-10px) scaleX(0.97) scaleY(1.03) rotateZ(-0.8deg);
    }
    12% { 
        transform: translateX(0) scaleX(1) scaleY(1) rotateZ(0deg);
    }
    
    /* Zweite Glitch-Welle */
    45% { 
        transform: translateX(0) scaleX(1) scaleY(1) rotateZ(0deg);
    }
    47% { 
        transform: translateX(-12px) scaleX(0.96) scaleY(1.04) rotateZ(-1deg);
    }
    49% { 
        transform: translateX(18px) scaleX(1.03) scaleY(0.97) rotateZ(1.5deg);
    }
    51% { 
        transform: translateX(-8px) scaleX(0.98) scaleY(1.02) rotateZ(-0.7deg);
    }
    53% { 
        transform: translateX(0) scaleX(1) scaleY(1) rotateZ(0deg);
    }
}

@keyframes glitch-red {
    0%, 90%, 100% { 
        transform: translate(-2px, -1px) scaleX(1);
        clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    }
    2% { 
        transform: translate(-15px, 2px) scaleX(0.95);
        clip-path: polygon(0 10%, 100% 15%, 100% 60%, 0 50%);
    }
    4% { 
        transform: translate(8px, -3px) scaleX(1.05);
        clip-path: polygon(0 20%, 100% 25%, 100% 70%, 0 65%);
    }
    6% { 
        transform: translate(-10px, 1px) scaleX(0.98);
        clip-path: polygon(0 5%, 100% 10%, 100% 55%, 0 45%);
    }
    8% { 
        transform: translate(12px, -2px) scaleX(1.02);
        clip-path: polygon(0 15%, 100% 20%, 100% 65%, 0 60%);
    }
    10% { 
        transform: translate(-2px, -1px) scaleX(1);
        clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    }
    
    47% { 
        transform: translate(-18px, 3px) scaleX(0.93);
        clip-path: polygon(0 25%, 100% 30%, 100% 75%, 0 70%);
    }
    49% { 
        transform: translate(15px, -4px) scaleX(1.07);
        clip-path: polygon(0 35%, 100% 40%, 100% 85%, 0 80%);
    }
    51% { 
        transform: translate(-2px, -1px) scaleX(1);
        clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    }
}

@keyframes glitch-blue {
    0%, 90%, 100% { 
        transform: translate(2px, 1px) scaleX(1);
        clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    }
    2% { 
        transform: translate(12px, -2px) scaleX(1.03);
        clip-path: polygon(0 40%, 100% 35%, 100% 85%, 0 90%);
    }
    4% { 
        transform: translate(-10px, 3px) scaleX(0.97);
        clip-path: polygon(0 30%, 100% 25%, 100% 75%, 0 80%);
    }
    6% { 
        transform: translate(8px, -1px) scaleX(1.01);
        clip-path: polygon(0 45%, 100% 40%, 100% 90%, 0 95%);
    }
    8% { 
        transform: translate(-15px, 2px) scaleX(0.95);
        clip-path: polygon(0 35%, 100% 30%, 100% 80%, 0 85%);
    }
    10% { 
        transform: translate(2px, 1px) scaleX(1);
        clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    }
    
    47% { 
        transform: translate(20px, -3px) scaleX(1.05);
        clip-path: polygon(0 20%, 100% 15%, 100% 65%, 0 70%);
    }
    49% { 
        transform: translate(-12px, 4px) scaleX(0.92);
        clip-path: polygon(0 10%, 100% 5%, 100% 55%, 0 60%);
    }
    51% { 
        transform: translate(2px, 1px) scaleX(1);
        clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    }
}

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

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

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(-15deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

/* Fallback für den Fall, dass die Animation nicht lädt */
.title-line {
    animation: titleReveal 1s ease-out forwards;
}

.title-line.glitch {
    opacity: 1 !important; /* Sicherstellen, dass der Glitch-Text immer sichtbar ist */
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotateZ(7.5deg); }
    25% { transform: translateY(-10px) rotateZ(9deg); }
    50% { transform: translateY(-20px) rotateZ(6deg); }
    75% { transform: translateY(-15px) rotateZ(10deg); }
}

@keyframes subtle-pulse {
    0%, 100% { 
        filter: drop-shadow(0 0 8px var(--neon-blue));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 12px var(--neon-blue));
        transform: scale(1.02);
    }
}

/* Mobile-optimierte Hinweis-Box für Tech-Canvas */
.tech-canvas-mobile-notice {
    display: none;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 107, 53, 0.1));
    border: 2px solid var(--neon-blue);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.tech-canvas-mobile-notice::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.tech-canvas-mobile-notice .notice-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--electric-orange);
    text-shadow: 0 0 20px var(--electric-orange);
}

.tech-canvas-mobile-notice h3 {
    font-family: var(--font-orbitron);
    color: var(--neon-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-shadow: var(--glow-neon);
}

.tech-canvas-mobile-notice p {
    color: var(--brand-gray-light);
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu, .live-stats {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    /* Mobile-Optimierungen: Elemente ausblenden */
    .hero-3d-elements,
    .floating-element {
        display: none !important;
    }
    
    .hero-demo {
        display: none !important;
    }
    
    /* Tech-Canvas-Section: Container ausblenden, Hinweis anzeigen */
    .tech-canvas-container {
        display: none !important;
    }
    
    .tech-canvas-mobile-notice {
        display: block;
    }
    
    .reality-grid,
    .anti-hype-statements,
    .tech-grid {
        grid-template-columns: 1fr;
        max-width: none;
    }
    
    .levels-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .levels-nav {
        flex-direction: row;
        overflow-x: auto;
        gap: 0.5rem;
    }
    
    .level-tab {
        min-width: 200px;
    }
    
    .carousel-slides {
        height: 300px;
    }
    
    .statement-card {
        padding: 2rem;
        margin: 1rem;
    }
    
    .statement-card h3 {
        font-size: 1.2rem;
    }
    
    .statement-card p {
        font-size: 1rem;
    }
    
    .carousel-navigation {
        padding: 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .story-timeline::before {
        left: 2rem;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-marker {
        left: 2rem;
    }
    
    .timeline-content {
        width: calc(100% - 4rem);
        margin-left: 4rem;
    }
    
    .podcast-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .lab-nav {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tech-icons {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .membership-logos {
        gap: 1rem;
    }
    
    .membership-link {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1rem;
    }
    
    .membership-logo {
        width: 100px;
        height: 100px;
    }
    
    .membership-name {
        font-size: 1rem;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --neon-blue: #00ffff;
        --electric-orange: #ff8800;
        --lab-green: #00ff00;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Toast Notification System */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 10000;
    min-width: 300px;
    max-width: 500px;
    background: var(--dark-surface);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: toast-slide-in 0.3s ease-out;
    border: 2px solid;
}

.toast-success {
    border-color: var(--lab-green);
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.2);
}

.toast-error {
    border-color: var(--electric-orange);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.toast-info {
    border-color: var(--neon-blue);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
}

.toast-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.toast-message {
    flex: 1;
    color: #fff;
    font-family: var(--font-inter);
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: #888;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.toast-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.toast-fade-out {
    animation: toast-slide-out 0.3s ease-in forwards;
}

@keyframes toast-slide-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toast-slide-out {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Form Validation States */
.form-group.error input,
.form-group.error textarea {
    border-color: var(--electric-orange);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.form-group.success input,
.form-group.success textarea {
    border-color: var(--lab-green);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

.form-group.error label {
    color: var(--electric-orange);
}

.form-group.success label {
    color: var(--lab-green);
}

/* Loading state for submit button */
.btn-primary.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn-primary.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Form animations */
.honest-form {
    transition: transform 0.3s ease;
}

/* Podcast Platform Links */
.podcast-platforms {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
}

.podcast-platforms h4 {
    font-family: var(--font-orbitron);
    color: var(--electric-orange);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.platform-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.platform-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.5rem;
    background: var(--dark-surface);
    border: 2px solid transparent;
    border-radius: 25px;
    text-decoration: none;
    color: #fff;
    font-family: var(--font-rajdhani);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 160px;
    justify-content: center;
}

.platform-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.spotify-btn {
    border-color: #1DB954;
}

.spotify-btn:hover {
    background: #1DB954;
    color: #000;
    box-shadow: 0 8px 25px rgba(29, 185, 84, 0.4);
}

.apple-btn {
    border-color: #8E44AD;
}

.apple-btn:hover {
    background: #8E44AD;
    color: #fff;
    box-shadow: 0 8px 25px rgba(142, 68, 173, 0.4);
}

.platform-logo {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.platform-btn span {
    font-weight: 600;
}

/* Responsive Platform Buttons */
@media (max-width: 768px) {
    .platform-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .platform-btn {
        min-width: 200px;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .podcast-platforms {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .podcast-platforms h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .platform-btn {
        min-width: 180px;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .platform-logo {
        width: 20px;
        height: 20px;
    }
}

/* WhatsApp & QR-Code Styles */
.contact-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-family: var(--font-rajdhani);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    background: #128C7E;
}

.whatsapp-btn .mobile-text {
    display: none;
}

.whatsapp-btn .desktop-text {
    display: inline;
}

.qr-code-link {
    background: transparent;
    border: 1px solid var(--brand-gray-medium);
    color: var(--brand-gray-medium);
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-family: var(--font-rajdhani);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qr-code-link:hover {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    background: rgba(30, 155, 199, 0.1);
    transform: translateY(-2px);
}

.qr-icon {
    font-size: 1rem;
}

.desktop-only {
    display: inline-flex;
}

/* QR-Code Overlay */
.qr-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.qr-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.qr-overlay-content {
    position: relative;
    background: var(--dark-surface);
    border: 2px solid var(--neon-blue);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(1);
    transition: transform 0.3s ease;
}

.qr-overlay.hidden .qr-overlay-content {
    transform: scale(0.9);
}

.qr-close-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: var(--electric-orange);
    border: none;
    border-radius: 50%;
    color: #000;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 189, 89, 0.4);
}

.qr-close-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 189, 89, 0.6);
}

.qr-container h3 {
    font-family: var(--font-orbitron);
    color: var(--neon-blue);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.qr-code-image {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.qr-code-image img {
    max-width: 250px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 2px solid rgba(30, 155, 199, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.qr-container p {
    color: var(--brand-gray-light);
    font-family: var(--font-inter);
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

/* Responsive WhatsApp & QR-Code */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .whatsapp-btn .mobile-text {
        display: inline;
    }
    
    .whatsapp-btn .desktop-text {
        display: none;
    }
    
    .contact-actions {
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .qr-overlay-content {
        padding: 2rem;
        margin: 1rem;
    }
    
    .qr-container h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .qr-code-image img {
        max-width: 200px;
    }
    
    .qr-container p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 250px;
    }
    
    .qr-overlay-content {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .qr-close-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
        top: -8px;
        right: -8px;
    }
    
    .qr-container h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .qr-code-image {
        margin: 1.5rem 0;
    }
    
    .qr-code-image img {
        max-width: 180px;
    }
    
    .qr-container p {
        font-size: 0.9rem;
        margin-top: 1rem;
    }
}

/* Mobile Toast Styles */
@media (max-width: 768px) {
    .toast {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        min-width: auto;
        max-width: none;
    }
    
    .toast-content {
        padding: 1rem;
    }
    
    .toast-message {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .toast {
        top: 0.5rem;
        right: 0.5rem;
        left: 0.5rem;
    }
    
    .toast-content {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .toast-icon {
        font-size: 1.2rem;
    }
    
    .toast-message {
        font-size: 0.85rem;
    }
}
