* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Animationen pausieren Klasse */
.animations-paused,
.animations-paused * {
    animation-play-state: paused !important;
}

.animations-paused video,
.animations-paused video * {
    animation-play-state: paused !important;
}

img,
img:focus,
a,
a:focus,
a img, 
a img:focus,
button#navUp:focus,
button#navUp:focus-visible,
button#navDown:focus,
button#navDown:focus-visible {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: Arial, sans-serif;
    background: #000;
    overflow-x: hidden;
    overflow-y: hidden; /* Verhindert Scroll zwischen Sections */
    min-height: 100vh;
    /* Smooth Scroll-Animation für Section-Wechsel */
    scroll-behavior: smooth;
    position: relative; /* Für absolute Sections */
}

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.smile-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    display: inline-block;
}

.smile-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.smile-button:active {
    transform: translateY(0);
}

.container {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: calc(100vh - 160px);
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

@keyframes cycleCockpitBg {
    0%, 85% {
        background-image: url(img/cockpit_bg_1.webp);
    }
    88%, 91% {
        background-image: url(img/cockpit_bg_2.webp);
    }
    94%, 97% {
        background-image: url(img/cockpit_bg_3.webp);
    }
    100% {
        background-image: url(img/cockpit_bg_1.webp);
    }
}

.stevie-wrapper {
    position: relative;
    width: 550px;
    height: 750px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}


/* Responsive Anpassungen für alle Breakpoints */
@media (max-width: 899px) and (min-width: 600px) {
    .gaze-image {
        object-fit: cover;
    }
}

@media (max-width: 599px) and (min-width: 1px) {
    .gaze-image {
        object-fit: cover;
    }
}

.fleet-ship-1, .fleet-ship-2, .fleet-ship-3, .fleet-ship-4, .spaceship-container {
    transition: all 3s ease-in-out;
}

/* Wichtige Gaze-Image Regeln */
#front {
    opacity: 1 !important;
    z-index: 1;
}

/* Alle anderen Bilder überlagern front */
.gaze-image:not(#front) {
    z-index: 2;
}

/* Ensure smile image is visible when active */
#smile.active {
    opacity: 1 !important;
    z-index: 3;
}

/* Twinkle image - no fade transition, hard cut */
#twinkle {
    transition: none !important;
}

/* Alle Gaze-Images standardmäßig unsichtbar */
.gaze-image {
    opacity: 0 !important;
}

/* Nur aktive Images sind sichtbar */
.gaze-image.active {
    opacity: 1 !important;
}

/* Front-Bild ist IMMER sichtbar */
#front.active {
    opacity: 1 !important;
}

/* Spezifische Regeln für alle Richtungen */
#top.active {
    opacity: 1 !important;
}

#top_left.active {
    opacity: 1 !important;
}

#top_right.active {
    opacity: 1 !important;
}

#left.active {
    opacity: 1 !important;
}

#right.active {
    opacity: 1 !important;
}

#smile.active {
    opacity: 1 !important;
}

#twinkle.active {
    opacity: 1 !important;
}



@keyframes space-movement {
    0% {
        background-position: 0 center;
    }
    100% {
        background-position: -1000px center;
    }
}

.spaceship-container {
    position: absolute;
    bottom: 120px; /* Angepasst für 100vh Hero-Section */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 40%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 50;
}

.spaceship-container .spaceship-lights {
    z-index: 51;
}

/* Partikel-Container entfernt für bessere Performance */

/* Hintergrund-Planet */
.background-planet {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.planet-image {
    position: absolute;
    top: 15%;
    right: -1500px; /* Startet komplett außerhalb des rechten Bildschirmrands */
    width: 1500px;
    height: auto;
    opacity: 1;
    filter: brightness(0.8) contrast(1.2);
    animation: planet-movement 90s linear infinite;
    animation-delay: 4s;
    /* GPU-Beschleunigung für Planet */
    will-change: right;
    transform: translateZ(0);
    backface-visibility: hidden;
}

@keyframes planet-movement {
    0% {
        right: -1500px;
    }
    100% {
        right: calc(100vw + 1500px);
    }
}

.cockpit-button-container {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.cockpit-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cockpit-button:hover {
    background: linear-gradient(135deg, #357abd, #2c5aa0);
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 12px 35px rgba(74, 144, 226, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}

.cockpit-button:active {
    transform: translateX(-50%) translateY(0px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.5);
}

/* Alle Partikel entfernt für bessere Performance */

.spaceship-base,
.spaceship-lights,
.drive {
    max-width: 1300px;
    width: 98%;
    height: 98%;
    object-fit: contain;
    position: absolute;
}

/* Basis-Raumschiff (ohne Lichter) - ständig sichtbar */
.spaceship-base {
    z-index: 50;
    animation: spaceship-float 4s ease-in-out infinite;
}

/* Raumschiff mit Warnlichtern - wird nur ab und zu eingeblendet */
.spaceship-lights {
    z-index: 51;
    animation: spaceship-float 4s ease-in-out infinite, warning-lights 2s ease-in-out infinite;
}

/* Antrieb - bewegt sich mit dem Raumschiff */
.drive {
    z-index: 2;
    animation: spaceship-float 4s ease-in-out infinite, drive-pulse 2s ease-in-out infinite;
}

@keyframes spaceship-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes warning-lights {
    0%, 100% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    20% {
        opacity: 0;
    }
    90% {
        opacity: 0;
    }
}

@keyframes drive-pulse {
    0% {
        opacity: 1;
    }
    12% {
        opacity: 0.94;
    }
    28% {
        opacity: 1;
    }
    41% {
        opacity: 0.93;
    }
    57% {
        opacity: 0.88;
    }
    73% {
        opacity: 1;
    }
    86% {
        opacity: 0.84;
    }
    100% {
        opacity: 1;
    }
}

/* Sternenflotte Stile */
.fleet-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

/* Cooler Titel Styling */
.title-container {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    pointer-events: none;
}

.main-title {
    font-family: 'Arial', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.8),
        0 0 40px rgba(74, 144, 226, 0.6),
        0 0 60px rgba(74, 144, 226, 0.4);
    margin: 0;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: title-glow 3s ease-in-out infinite;
}

.subtitle {
    font-family: 'Arial', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.6),
        0 0 20px rgba(74, 144, 226, 0.4);
    margin: 10px 0 30px 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: subtitle-pulse 4s ease-in-out infinite;
}

/* Scroll-Pfeil Styling */
.scroll-arrow {
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    animation: arrow-bounce 2s ease-in-out infinite;
    margin-top: 20px;
    position: relative;
    z-index: 1000;
    pointer-events: auto;
    user-select: none;
}

.scroll-arrow:hover {
    color: #4a90e2;
    transform: translateY(5px);
}

.scroll-arrow svg {
    filter: drop-shadow(0 0 10px rgba(74, 144, 226, 0.6));
}

@keyframes title-glow {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 0.8),
            0 0 40px rgba(74, 144, 226, 0.6),
            0 0 60px rgba(74, 144, 226, 0.4);
    }
    50% {
        text-shadow: 
            0 0 30px rgba(255, 255, 255, 1),
            0 0 60px rgba(74, 144, 226, 0.8),
            0 0 90px rgba(74, 144, 226, 0.6);
    }
}

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

@keyframes arrow-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design für den Titel */
@media (max-width: 768px) {
    .spaceship-container {
        bottom: 2px;
    }
    .main-title {
        font-size: 2.5rem;
        letter-spacing: 0.15em;
    }
    
    .subtitle {
        font-size: 1rem;
        letter-spacing: 0.08em;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
        letter-spacing: 0.1em;
    }
    
    .subtitle {
        font-size: 0.9rem;
        letter-spacing: 0.05em;
    }
}

.fleet-ship {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fleet-ship img {
    position: absolute;
    object-fit: contain;
}

/* Flotten-Warnlichter CSS-Animationen - wie beim Hauptraumschiff */

/* Flotten-Raumschiff 1 - Sehr klein, links oben */
.fleet-ship-1 {
    top: 22%;
    left: 10%;
    width: 80px;
    height: 80px;
  }

.fleet-ship-1 .fleet-base {
    width: 100%;
    height: 100%;
    z-index: 25;
}

.fleet-ship-1 .fleet-lights {
    width: 100%;
    height: 100%;
    z-index: 26;
    opacity: 0;
    animation: fleet-warning-lights-1 2s ease-in-out infinite;
    /* GPU-Beschleunigung für Warnlichter */
    will-change: opacity;
    transform: translateZ(0);
}

.fleet-ship-1 .fleet-drive {
    width: 100%;
    height: 100%;
    z-index: 2;
    animation: fleet-drive-pulse 2.5s ease-in-out infinite;
}

/* Flotten-Raumschiff 2 - Klein, rechts oben */
.fleet-ship-2 {
    top: 25%;
    right: 15%;
    width: 120px;
    height: 120px;
}

.fleet-ship-2 .fleet-base {
    width: 100%;
    height: 100%;
    z-index: 30;
}

.fleet-ship-2 .fleet-lights {
    width: 100%;
    height: 100%;
    z-index: 31;
    opacity: 0;
    animation: fleet-warning-lights-2 2s ease-in-out infinite;
    animation-delay: 0.5s;
}

.fleet-ship-2 .fleet-drive {
    width: 100%;
    height: 100%;
    z-index: 2;
    animation: fleet-drive-pulse 3s ease-in-out infinite;
}

/* Flotten-Raumschiff 3 - Sehr groß, links unten (Vordergrund) */
.fleet-ship-3 {
    bottom: 20%;
    left: 11%;
    width: 350px;
    height: 350px;
  }

.fleet-ship-3 .fleet-base {
    width: 100%;
    height: 100%;
    z-index: 40;
}

.fleet-ship-3 .fleet-lights {
    width: 100%;
    height: 100%;
    z-index: 41;
    opacity: 0;
    animation: fleet-warning-lights-3 2s ease-in-out infinite;
    animation-delay: 1s;
}

.fleet-ship-3 .fleet-drive {
    width: 100%;
    height: 100%;
    z-index: 4;
    animation: fleet-drive-pulse 2s ease-in-out infinite;
}

/* Flotten-Raumschiff 4 - Groß, rechts unten (Hintergrund) */
.fleet-ship-4 {
    bottom: 35%;
    right: 25%;
    width: 280px;
    height: 280px;
}

.fleet-ship-4 .fleet-base {
    width: 100%;
    height: 100%;
    z-index: 35;
}

.fleet-ship-4 .fleet-lights {
    width: 100%;
    height: 100%;
    z-index: 36;
    opacity: 0;
    animation: fleet-warning-lights-4 2s ease-in-out infinite;
    animation-delay: 1.5s;
}

.fleet-ship-4 .fleet-drive {
    width: 100%;
    height: 100%;
    z-index: 1;
    animation: fleet-drive-pulse 2.8s ease-in-out infinite;
}

/* Flotten-Animationen entfernt - Schiffe sind jetzt statisch */

/* Flotten-Warnlichter CSS-Animationen - wie beim Hauptraumschiff */
@keyframes fleet-warning-lights-1 {
    0%, 100% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    20% {
        opacity: 0;
    }
    90% {
        opacity: 0;
    }
}

@keyframes fleet-warning-lights-2 {
    0%, 100% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    20% {
        opacity: 0;
    }
    90% {
        opacity: 0;
    }
}

@keyframes fleet-warning-lights-3 {
    0%, 100% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    20% {
        opacity: 0;
    }
    90% {
        opacity: 0;
    }
}

@keyframes fleet-warning-lights-4 {
    0%, 100% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    20% {
        opacity: 0;
    }
    90% {
        opacity: 0;
    }
}

/* Flotten-Antrieb Animation */
@keyframes fleet-drive-pulse {
    0% {
        opacity: 1;
    }
    20% {
        opacity: 0.9;
    }
    40% {
        opacity: 1;
    }
    60% {
        opacity: 0.85;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

/* Responsive Design für die Flotte */
@media (max-width: 768px) {
    .fleet-ship-1 {
        width: 60px;
        height: 60px;
        top: 20%;
        left: 5%;
    }
    
    .fleet-ship-2 {
        width: 90px;
        height: 90px;
        top: 30%;
        right: 10%;
    }
    
    .fleet-ship-3 {
        width: 220px;
        height: 220px;
        bottom: 30%;
        left: 15%;
    }
    
    .fleet-ship-4 {
        width: 180px;
        height: 180px;
        bottom: 40%;
        right: 20%;
    }
    
    /* Mobile Performance-Optimierungen */
    /* Partikel entfernt für bessere Performance */
    
    .fleet-ship .fleet-lights {
        animation-duration: 4s !important; /* Langsamere Warnlichter */
    }
    
    .fleet-ship .fleet-drive {
        animation-duration: 4s !important; /* Langsamere Antriebe */
    }
    
    .planet-image {
        position: absolute;
        top: 14%;
        width: 620px;
        filter: brightness(0.8) contrast(1.2);
        animation: planet-movement 120s linear infinite;
          animation-duration: 90s;
          animation-delay: 0s;
        animation-delay: 4s;
      }
    
    /* Partikel entfernt für bessere Performance */
    
    /* Mobile GPU-Optimierungen */
    .space-container {
        will-change: auto !important; /* Reduzierte GPU-Last */
    }
    
    .fleet-ship {
        will-change: auto !important;
    }
    
    /* Reduzierte Schatten-Effekte auf Mobile */
    .main-title,
    .subtitle {
        text-shadow: 0 0 10px rgba(74, 144, 226, 0.4) !important;
    }
}

@media (max-width: 480px) {
    .fleet-ship-1 {
        width: 45px;
        height: 45px;
        top: 25%;
        left: 3%;
    }
    
    .fleet-ship-2 {
        width: 65px;
        height: 65px;
        top: 35%;
        right: 8%;
    }
    
    .fleet-ship-3 {
        width: 190px;
        height: 170px;
        bottom: 22%;
        left: 8%;
      }
    
    .fleet-ship-4 {
        width: 130px;
        height: 130px;
        bottom: 45%;
        right: 15%;
    }
    
    /* Extreme Mobile Performance-Optimierungen */
    /* Partikel entfernt für bessere Performance */
    
    .fleet-ship .fleet-lights {
        animation-duration: 6s !important; /* Sehr langsame Warnlichter */
    }
    
    .fleet-ship .fleet-drive {
        animation-duration: 6s !important; /* Sehr langsame Antriebe */
    }
    
    .planet-image {
        top: 14%;
        right: -750px;
        width: 620px;
        animation: planet-movement 90s linear infinite;
      }
    
    /* Partikel entfernt für bessere Performance */
    
    /* Alle Schiffe bleiben sichtbar - nur Animationen werden langsamer */
}

/* Main Content Container */
.main-content {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: hidden; /* Verhindert Scroll zwischen Sections */
}


/* Hero Section (Space Container) - Additional styling */
.space-container {
    width: 100vw;
    height: 100dvh;
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url('img/space.webp');
    background-size: auto 100%;
    background-repeat: repeat-x;
    background-position: 0 center;
    animation: space-movement 60s linear infinite;
    overflow: hidden;
    will-change: background-position;
    transform: translateZ(0);
    backface-visibility: hidden;
    position: relative;
  }

/* LEISTUNGEN Section */
.about-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    height: 100dvh;
    overflow: hidden;
    position: relative;
    margin: 0;
}

/* Hintergrundbild für About-Section */
.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/space.webp');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: 1;
    animation: about-bg-movement 180s linear infinite;
    transform-origin: center bottom;
}

/* Cockpit-Overlay für About-Section */
.about-cockpit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/leistungen_1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none;
}

@keyframes about-bg-movement {
    0% {
        transform: scale(1);
        background-position: center bottom;
    }
    100% {
        transform: scale(1.6);
        background-position: center bottom;
    }
}

/* ABOUT Section (Cockpit) */
.cockpit-section {
    background: url(img/cockpit_bg_1.webp);
      background-size: auto;
    background-size: cover;
    animation: cycleCockpitBg 3s infinite;
    height: 100svh;
    overflow: hidden;
    position: relative;
  }

/* Fixed Header */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(74, 144, 226, 0.3);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    gap: 12px;
}

.header-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: brightness(1.1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.header-title {
    font-family: 'Arial', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(74, 144, 226, 0.6);
    margin: 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.header-nav {
    display: flex;
    gap: 20px;
}

.header-link {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.header-link:hover {
    color: #4a90e2;
    background: rgba(74, 144, 226, 0.1);
    transform: translateY(-2px);
}

/* Fixed Footer */
.fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(74, 144, 226, 0.3);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.footer-text {
    font-family: 'Arial', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 15px;
}

.footer-link {
    font-family: 'Arial', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

    .footer-link:hover {
        color: #4a90e2;
    }





    .cockpit-container {
        width: 100%;
        max-width: none;
        height: 100%;
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: rgba(74, 144, 226, 0.5) transparent;
        position: absolute;
        left: 0;
        padding: 60px 0 0 0;
      }

      .cockpit-content {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        padding: 0 20px;
        width: 100%;
        position: absolute;
        height: calc(100% - 230px);
      }

/* Stevie Character Wrapper Container - Desktop (900px+) */
.stevie-character-wrapper {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    bottom: -11px;
    height: 530px;
    width: 1200px;
    overflow: hidden;
    transition: all 1s ease-in-out;
  }

/* Stevie Gesichter Wrapper - Desktop (900px+) */
.stevie-faces-wrapper {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    bottom: -6px;
    width: 332px;
    height: 483px;
    opacity: 0.9;
    transform: rotate(-1deg);
    transition: all 1s ease-in-out;
  }


.gaze-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.1s ease-in-out;
}

/* Tablet Breakpoint (600px - 899px) */
@media (max-width: 899px) and (min-width: 600px) {
    .cockpit-section .space-suit {
        left: 0;
      }
      .stevie-character-wrapper {
        width: 600px;
        height: 280px;
      }
    
    .stevie-faces-wrapper {
        width: 170px;
        height: 250px;
        bottom: -6px;
      }
}

/* Mobile Breakpoint (320px - 599px) */
@media (max-width: 599px) and (min-width: 1px) {
    .cockpit-section .space-suit {
        left: 0;
      }
      .stevie-character-wrapper {
        width: 400px;
        height: 190px;
      }
    
    .stevie-faces-wrapper {
        width: 110px;
        height: 170px;
        bottom: -6px;
    }
}


/* Space Suit Styling für Cockpit-Section */
.cockpit-section .space-suit {
    position: absolute;
    bottom: -4px;
    left: -7px;
    z-index: 10;
    pointer-events: none;
    margin: 0;
    padding: 0;
    transition: all 1s ease-in-out;
  }



.cockpit-section .space-suit-overlay {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Nicht croppen, sondern vollständig anzeigen */
    opacity: 1;
}

/* Feste Section-Navigation */
.section-navigation {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
    min-width: 70px;
  }



.nav-button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.section-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 8px;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    text-align: center;
    min-height: 14px;
  }

.nav-button {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.nav-button:hover {
    border-color: #4a90e2;
    background: rgba(74, 144, 226, 0.2);
    color: #4a90e2;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.4);
}

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

.nav-button svg {
    filter: drop-shadow(0 0 5px rgba(74, 144, 226, 0.3));
}

/* Responsive Design für Navigation */
@media (max-width: 768px) {
    .section-navigation {
        right: 20px;
    }
    
    .nav-button {
        width: 45px;
        height: 45px;
    }
    
    .header-title {
        font-size: 1.3rem;
    }
    
    .header-link {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .section-navigation {
        right: 15px;
    }
    
    .nav-button {
        width: 40px;
        height: 40px;
    }
    
    .header-title {
        font-size: 1.1rem;
    }
    
    .header-nav {
        gap: 15px;
    }
    
    .header-link {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
    
    .footer-text {
        font-size: 0.7rem;
    }
    
    .footer-links {
        gap: 10px;
    }
}



.about-container {
    width: 100%;
    max-width: none;
    padding: 60px 0;
    height: calc(100dvh - 120px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(74, 144, 226, 0.5) transparent;
    position: absolute;
    left: 0;
    z-index: 3;
}

/* SHOWROOM Container - gleiche Styles wie about-container */
.showroom-container {
    width: 100%;
    max-width: none;
    padding: 5px 0;
    height: calc(100dvh - 120px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(74, 144, 226, 0.5) transparent;
    position: absolute;
    left: 0;
    z-index: 3;
    background-color: #070b10;
  }

/* SHOWROOM Content */
.showroom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.showroom-description {
    font-family: 'Arial', sans-serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-scroll-container {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.tab-scroll-container::-webkit-scrollbar {
    display: none;
}

.tab-buttons {
    display: flex;
    gap: 15px;
    padding: 10px 0;
    min-width: max-content;
}

.tab-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 15px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    min-height: 120px;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.tab-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(74, 144, 226, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.2);
}

.tab-button.active {
    background: rgba(74, 144, 226, 0.2);
    border-color: #4a90e2;
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.3);
}

.tab-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(1.1);
}

.tab-scroll-indicators {
    display: flex;
    gap: 10px;
}

.scroll-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(74, 144, 226, 0.5);
    color: #4a90e2;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.scroll-btn:hover {
    background: rgba(74, 144, 226, 0.2);
    border-color: #4a90e2;
    transform: scale(1.1);
}

.scroll-btn:disabled {
    opacity: 0.3;
    cursor: pointer;
    transform: none;
    pointer-events: none;
}

/* Tab Content */
.tab-content {
    position: relative;
    min-height: 400px;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.project-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
}

.project-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
      margin-top: 0px;
    margin-top: 0px;
    text-align: center;
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.3);
    margin-top: 33px;
  }

.project-logo {
    display: flex;
    justify-content: center;
    margin: 0 0 30px 0;
}

.company-logo {
    max-width: 250px;
    max-height: 250px;
    object-fit: contain;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.company-logo:hover {
    transform: scale(1.05);
}

/* 3D Interactive Elements Wrapper */
.interactive-elements-wrapper {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

/* 3D Business Card Container */
.business-card-3d-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

/* Menu Animation Styles */
.menu-animation-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.menu-book {
    width: 200px;
    height: 300px;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    margin: 0 auto;
  }

.menu-page {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    /* Transition wird dynamisch in JavaScript gesetzt */
    transform-origin: left center;
    top: 0;
    left: 0;
}

/* Initial Z-Index Werte - Cover soll sichtbar sein, andere dahinter */
.menu-page[data-page="cover"] .page-front {
    z-index: 9;
}

.menu-page[data-page="cover"] .page-back {
    z-index: 8;
}

.menu-page[data-page="1"] .page-front {
    z-index: 1;
}

.menu-page[data-page="1"] .page-back {
    z-index: 6;
}

.menu-page[data-page="2"] .page-front {
    z-index: 3;
}

.menu-page[data-page="2"] .page-back {
    z-index: 6;
}

.menu-page[data-page="3"] .page-front {
    z-index: 5;
}

.menu-page[data-page="3"] .page-back {
    z-index: 6;
}

.menu-page[data-page="4"] .page-front {
    z-index: 7;
}


#onkelwillis {
    animation: backgroundBlink 0.6s steps(1) infinite;
    background-image: url("img/clients/client_bg/owpbg1.webp");
    background-size: cover;
    background-position: center top;
  }

@keyframes backgroundBlink {
0%   { background-image: url("img/clients/client_bg/owpbg1.webp"); }
50%  { background-image: url("img/clients/client_bg/owpbg2.webp"); }
100% { background-image: url("img/clients/client_bg/owpbg1.webp"); }
}

#cafeportugal {
    background-image: url(img/clients/client_bg/cafeportugal_bg.png);
    background-size: cover;
    background-position: center top;
  }

  #cafeportugal .project-title,
  #cafeportugal .menu-instruction,
  #cafeportugal .card-instruction,
  #cafeportugal .schatzkarte-title {
    color: #ba9d71;
  }

  #cafeportugal .project-url {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Arial', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ae7b2e;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid rgb(86, 60, 20);
    border-radius: 25px;
    transition: all 0.3s ease;
    background-color: transparent !important;
  }

  #cafeportugal .project-url:hover {
    background: rgba(74, 144, 226, 0.2);
      background-color: rgba(74, 144, 226, 0.2);
    border-color: #ae7b2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(226, 181, 74, 0.3);
  }



.page-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 2px;
    overflow: hidden;
    /* box-shadow entfernt */
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.page-face img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.page-back {
    transform: rotateY(180deg);
}

.menu-instruction {
    color: #4a90e2;
    font-size: 14px;
    font-weight: 500;
    margin-top: 15px;
    text-align: center;
    opacity: 0.8;
}

.business-card-3d {
    width: 180px;
    height: 300px;
    position: relative;
    transform-style: preserve-3d;
    cursor: default;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    margin: 0 auto;
}

.card-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.card-front {
    transform: rotateY(0deg);
}

.card-back {
    transform: rotateY(180deg);
}

.card-face img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.card-instruction,
.schatzkarte-title {
    margin-top: 15px;
    font-size: 14px;
    color: #4a90e2;
    text-align: center;
    opacity: 0.8;
}

.project-video {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
  }

.project-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Smartphone Effect Styles */
.smartphone-container {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.smartphone-frame {
    position: relative;
    width: 300px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

.smartphone-image {
    width: 100%;
    height: auto;
    max-width: 300px;
    position: relative;
    z-index: 2;
    pointer-events: none;
  }

.smartphone-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    padding: 14px 17px 20px 16px;
  }

.smartphone-video {
    width: 267px;
    height: 533px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

/* Pirate TV Effect Styles */
.pirate-tv-container {
    position: relative;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pirate-tv-frame {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pirate-tv-image {
    width: 100%;
    height: auto;
    max-width: 639px;
    position: relative;
    z-index: 2;
    pointer-events: none;
    margin-top: -27px;
  }

.pirate-tv-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    /* Anpassung für 650px Frame mit 600px Video */
    padding: 25px; /* (650-600)/2 = 25px auf jeder Seite */
}

.pirate-tv-video {
    width: 600px;
    height: auto;
    object-fit: cover;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    transform: scale(1.02);
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.2);
    border: 3px solid #4a90e2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a90e2;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.video-placeholder:hover .play-button {
    background: rgba(74, 144, 226, 0.3);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(74, 144, 226, 0.4);
}

.video-text {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
}

.project-info {
    text-align: center;
    margin-bottom: 30px;
}

.project-url {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Arial', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #4a90e2;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.project-url:hover {
    background: rgba(74, 144, 226, 0.2);
    border-color: #4a90e2;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.3);
}

.project-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.example-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.example-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(74, 144, 226, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.2);
}

.example-preview {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: linear-gradient(135deg, #4a90e2, #667eea);
    position: relative;
    overflow: hidden;
}

.example-preview::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

/* Spezifische Beispiel-Styles */
.example-preview.flyer::before {
    width: 20px;
    height: 30px;
    background: rgba(255, 255, 255, 0.4);
}

.example-preview.banner::before {
    width: 40px;
    height: 15px;
    background: rgba(255, 255, 255, 0.4);
}

.example-preview.business-card::before {
    width: 25px;
    height: 15px;
    background: rgba(255, 255, 255, 0.4);
}

.example-preview.tshirt::before {
    width: 20px;
    height: 25px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
}

.example-preview.pen::before {
    width: 4px;
    height: 30px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
}

.example-preview.car-sticker::before {
    width: 35px;
    height: 20px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 3px;
}

.example-preview.schatzkarte {
    background: transparent;
    border: 2px solid rgba(74, 144, 226, 0.3);
}

.example-preview.schatzkarte::before {
    display: none;
}

.example-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

/* Schatzkarte Container */
.schatzkarte-container {
    margin: 40px 0;
    padding: 30px;
    text-align: center;
}

.schatzkarte-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.schatzkarte-img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.schatzkarte-img:hover {
    transform: scale(1.02);
    cursor: pointer;
}

/* Magnifier Styles */
.magnifier-overlay {
    backdrop-filter: blur(5px);
}

.magnifier-content {
    animation: magnifierFadeIn 0.3s ease;
}

@keyframes magnifierFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.magnified-image {
    transition: transform 0.3s ease;
}

.magnified-image:hover {
    transform: scale(1.05);
}

/* Responsive video positioning is now handled by JavaScript */

/* Mobile optimizations */
@media (max-width: 768px) {
    .schatzkarte-img {
        cursor: pointer;
    }
    
    .magnifier-close {
        top: 10px !important;
        right: 10px !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 24px !important;
    }
    
}

.example-name {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-weight: 500;
}

/* Responsive Design für SHOWROOM */
@media (max-width: 768px) {
    .showroom-content {
        padding: 0 15px;
    }
    
    .showroom-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .tab-navigation {
        gap: 10px;
    }
    
    .tab-buttons {
        gap: 10px;
        padding: 5px 0;
    }
    
    .tab-button {
        min-width: 100px;
        min-height: 100px;
        padding: 15px;
    }
    
    .tab-logo {
        width: 60px;
        height: 60px;
    }
    
    .scroll-btn {
        width: 35px;
        height: 35px;
        flex-shrink: 0;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .project-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .company-logo {
        max-width: 250px;
        max-height: 250px;
    }
    
    .schatzkarte-container {
        margin: 30px 0;
        padding: 20px;
    }
    
    .schatzkarte-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .schatzkarte-img {
        max-height: 400px;
    }
    
    .business-card-3d {
        width: 150px;
        height: 250px;
    }
    
    .interactive-elements-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .business-card-3d-container {
        padding: 15px;
    }
    
    .menu-animation-container {
        padding: 15px;
    }
    
    .menu-book {
        width: 250px;
        height: 350px;
    }
    
    .video-text {
        font-size: 1rem;
    }
    
    .project-url {
        font-size: 1.1rem;
        padding: 10px 20px;
    }
    
    .project-examples {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
    }
    
    .example-item {
        padding: 12px;
    }
    
    .example-preview {
        width: 50px;
        height: 50px;
    }
    
    .example-name {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .showroom-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .tab-navigation {
        gap: 8px;
    }
    
    .tab-button {
        min-width: 80px;
        min-height: 80px;
        padding: 12px;
    }
    
    .tab-logo {
        width: 50px;
        height: 50px;
    }
    
    .scroll-btn {
        width: 30px;
        height: 30px;
        flex-shrink: 0;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .project-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .company-logo {
        max-width: 120px;
        max-height: 70px;
    }
    
    .schatzkarte-container {
        margin: 20px 0;
        padding: 15px;
    }
    
    .schatzkarte-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .schatzkarte-img {
        max-height: 300px;
    }
    
    .business-card-3d {
        width: 120px;
        height: 200px;
    }
    
    .interactive-elements-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .business-card-3d-container {
        padding: 10px;
    }
    
    .menu-animation-container {
        padding: 10px;
    }
    
    .menu-book {
        width: 200px;
        height: 300px;
    }
    
    .card-instruction {
        font-size: 12px;
    }
    
    .video-text {
        font-size: 0.9rem;
    }
    
    .project-url {
        font-size: 1rem;
        padding: 8px 16px;
    }
    
    .project-examples {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .example-item {
        padding: 10px;
    }
    
    .example-preview {
        width: 40px;
        height: 40px;
    }
    
    .example-name {
        font-size: 0.7rem;
    }
}

/* Custom Scrollbar für Webkit-Browser */
.about-container::-webkit-scrollbar,
.showroom-container::-webkit-scrollbar {
    width: 8px;
}

.about-container::-webkit-scrollbar-track,
.showroom-container::-webkit-scrollbar-track {
    background: transparent;
}

.about-container::-webkit-scrollbar-thumb,
.showroom-container::-webkit-scrollbar-thumb {
    background: rgba(74, 144, 226, 0.5);
    border-radius: 4px;
}

.about-container::-webkit-scrollbar-thumb:hover,
.showroom-container::-webkit-scrollbar-thumb:hover {
    background: rgba(74, 144, 226, 0.7);
}

.section-title {
    font-family: 'Arial', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    text-shadow: 
        0 0 20px rgba(74, 144, 226, 0.6),
        0 0 40px rgba(74, 144, 226, 0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    width: 100%;
        position: relative;
        z-index: 999;
        height: 50px;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px; /* Content bleibt zentriert */
    margin: 0 auto; /* Zentrierung */
    padding: 0 20px; /* Horizontales Padding */
}

.about-text {
    max-width: 800px;
    text-align: center;
}

.about-description {
    font-family: 'Arial', sans-serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 50px;
    text-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.skill-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(74, 144, 226, 0.3);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.skill-category:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(74, 144, 226, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.2);
}

.skill-category h3 {
    font-family: 'Arial', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #4a90e2;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(74, 144, 226, 0.4);
}

.skill-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-category li {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.skill-category li:last-child {
    border-bottom: none;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cta-button.primary {
    background: linear-gradient(135deg, #4a90e2, #667eea);
    color: #ffffff;
    border: 2px solid #4a90e2;
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.4);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #5a9ff2, #7680fa);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.6);
}

.cta-button.secondary {
    background: transparent;
    color: #4a90e2;
    border: 2px solid #4a90e2;
}

.cta-button.secondary:hover {
    background: rgba(74, 144, 226, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.3);
}

/* Neue Styles für LEISTUNGEN Section */
.about-text {
    max-width: 1000px;
    text-align: left;
}

/* Profile Short */
.profile-short {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(74, 144, 226, 0.1);
    border-left: 4px solid #4a90e2;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.profile-headline {
    font-family: 'Arial', sans-serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(74, 144, 226, 0.2);
}

/* Profile Detailed */
.profile-detailed {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(74, 144, 226, 0.2);
}

.profile-detailed h3 {
    font-family: 'Arial', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(74, 144, 226, 0.4);
}

.profile-detailed p {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 15px;
}

.tagline {
    margin-top: 20px;
    padding: 20px;
    background: rgba(74, 144, 226, 0.08);
    border-radius: 8px;
    border-left: 3px solid #4a90e2;
}

.tagline strong {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.15rem;
}

/* Section Headings */
.section-heading {
    font-family: 'Arial', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #4a90e2;
    margin: 50px 0 30px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(74, 144, 226, 0.3);
    text-shadow: 0 0 15px rgba(74, 144, 226, 0.4);
}

/* Competencies Section */
.competencies-section {
    margin-bottom: 40px;
}

.competency-block {
    margin-bottom: 35px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(74, 144, 226, 0.25);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.competency-block:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(74, 144, 226, 0.5);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.15);
}

.competency-block h4 {
    font-family: 'Arial', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #67a8f0;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
}

.competency-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.competency-block li {
    font-family: 'Arial', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.competency-block li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Tech Section */
.tech-section {
    margin-bottom: 40px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.tech-category {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(74, 144, 226, 0.25);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.tech-category:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(74, 144, 226, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.2);
}

.tech-category h4 {
    font-family: 'Arial', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #67a8f0;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
}

.tech-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-category li {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 8px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-category li:last-child {
    border-bottom: none;
}

/* Tools Section */
.tools-section {
    margin-bottom: 40px;
}

.tool-block {
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(74, 144, 226, 0.25);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.tool-block:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(74, 144, 226, 0.5);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.15);
}

.tool-block h4 {
    font-family: 'Arial', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #67a8f0;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
}

.tool-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tool-block li {
    font-family: 'Arial', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.tool-block li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: bold;
    font-size: 1.3rem;
}

.tool-preference {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    color: #67a8f0;
    font-weight: 600;
    margin: 15px 0 10px 0;
}

.tool-subheading {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    margin: 20px 0 10px 0;
    font-style: italic;
}

/* Security Section */
.security-section {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(74, 144, 226, 0.05);
    border: 1px solid rgba(74, 144, 226, 0.3);
    border-radius: 12px;
}

.security-section ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.security-section li {
    font-family: 'Arial', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.security-section li::before {
    content: "🔒";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Performance Section */
.performance-section {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(74, 144, 226, 0.05);
    border: 1px solid rgba(74, 144, 226, 0.3);
    border-radius: 12px;
}

.performance-section ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.performance-section li {
    font-family: 'Arial', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.performance-section li::before {
    content: "⚡";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* AI Section */
.ai-section {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(74, 144, 226, 0.05);
    border: 1px solid rgba(74, 144, 226, 0.3);
    border-radius: 12px;
}

.ai-section ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.ai-section li {
    font-family: 'Arial', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.ai-section li::before {
    content: "🤖";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Design Section */
.design-section {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(74, 144, 226, 0.25);
    border-radius: 12px;
}

.design-section p {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 20px;
}

.design-philosophy {
    margin: 30px 0;
    padding: 25px;
    background: rgba(74, 144, 226, 0.1);
    border-left: 4px solid #4a90e2;
    border-radius: 8px;
}

.design-philosophy strong {
    color: #67a8f0;
    font-size: 1.15rem;
}

.showroom-reference {
    margin-top: 25px;
    padding: 20px;
    background: rgba(74, 144, 226, 0.08);
    border-radius: 8px;
    text-align: center;
    font-size: 1.1rem;
}

.showroom-reference strong {
    color: #67a8f0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Closing Section */
.closing-section {
    margin-top: 50px;
    padding: 40px;
    text-align: center;
    border-top: 2px solid rgba(74, 144, 226, 0.3);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

.closing-text {
    font-family: 'Arial', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0;
}

.closing-text strong {
    color: #67a8f0;
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(74, 144, 226, 0.4);
}

/* Responsive Design für neue Styles */
@media (max-width: 768px) {
    .profile-headline {
        font-size: 1.1rem;
    }
    
    .profile-detailed h3 {
        font-size: 1.5rem;
    }
    
    .section-heading {
        font-size: 1.5rem;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .competency-block,
    .tool-block,
    .security-section,
    .performance-section,
    .ai-section,
    .design-section {
        padding: 20px;
    }
    
    .tool-block h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .profile-short {
        padding: 20px;
    }
    
    .profile-headline {
        font-size: 1rem;
    }
    
    .profile-detailed h3 {
        font-size: 1.3rem;
    }
    
    .profile-detailed p {
        font-size: 1rem;
    }
    
    .section-heading {
        font-size: 1.3rem;
        margin: 30px 0 20px 0;
    }
    
    .competency-block h4,
    .tech-category h4,
    .tool-block h4 {
        font-size: 1.1rem;
    }
    
    .competency-block li,
    .tool-block li,
    .security-section li,
    .performance-section li,
    .ai-section li {
        font-size: 0.95rem;
    }
    
    .design-section p {
        font-size: 1rem;
    }
    
    .tool-preference,
    .tool-subheading,
    .tool-note {
        font-size: 0.95rem;
    }
}
@media (max-width: 768px) {
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-description {
        font-size: 1.1rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .skill-category {
        padding: 20px;
    }
}


