/* ============================================
   oldFox-Interactive Website Stylesheet
   Art-Deco Design im Stil der 20er Jahre
   ============================================ */

/* CSS Variablen für Farben und Design-Tokens */
:root {
    /* Farbpalette - Dunkles Theme mit Gold-Akzenten */
    --color-bg-primary: #0a0a0a;
    --color-bg-secondary: #1a1a1a;
    --color-bg-tertiary: #2a2a2a;
    --color-text-primary: #e8e8e8;
    --color-text-secondary: #b8b8b8;
    --color-accent-gold: #d4af37;
    --color-accent-bronze: #cd7f32;
    --color-accent-glow: rgba(212, 175, 55, 0.3);
    
    /* Typografie */
    --font-heading: 'Playfair Display', 'Times New Roman', serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
    
    /* Abstände */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Animationen */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s ease;
    --transition-slow: 0.8s ease;

    /* Layout */
    --header-height: 80px;
}

/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: var(--header-height);
}

/* Typografie */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.05em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-secondary);
    font-size: clamp(1rem, 2vw, 1.125rem);
}

a {
    color: var(--color-accent-gold);
    text-decoration: none;
    transition: all var(--transition-normal);
}

a:hover {
    color: var(--color-accent-bronze);
    text-shadow: 0 0 10px var(--color-accent-glow);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: var(--spacing-sm) var(--spacing-md);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    animation: fadeInDown 0.8s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: transform var(--transition-normal);
}

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--color-accent-glow));
    transition: all var(--transition-normal);
}

.logo:hover {
    transform: scale(1.05);
}

.logo:hover img {
    filter: drop-shadow(0 0 20px var(--color-accent-gold));
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Navigation */
nav {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

nav a {
    position: relative;
    padding: var(--spacing-xs) var(--spacing-sm);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--color-text-secondary);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-accent-gold);
    transition: all var(--transition-normal);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a:hover,
nav a.active {
    color: var(--color-accent-gold);
}

/* Social Links */
.social-links {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-accent-gold);
    transition: all var(--transition-normal);
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--color-accent-gold);
    color: var(--color-bg-primary);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 20px var(--color-accent-glow);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: var(--spacing-xs);
    align-items: center;
    margin-left: var(--spacing-sm);
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 var(--spacing-xs);
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-accent-gold);
    transition: all var(--transition-normal);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lang-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--color-accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px var(--color-accent-glow);
}

.lang-btn.active {
    background: var(--color-accent-gold);
    color: var(--color-bg-primary);
    border-color: var(--color-accent-gold);
}

.lang-btn.active:hover {
    background: var(--color-accent-bronze);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px var(--color-accent-glow);
}

/* Hero Section */
.hero {
    min-height: calc(100vh - var(--header-height, 80px));
    min-height: calc(100svh - var(--header-height, 80px));
    display: block;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 0;
    background-color: var(--color-bg-primary);
    z-index: 1;
    margin: 0;
    max-width: none;
    width: 100%;
    opacity: 1;
    transform: none;
}

.hero-background {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('../assets/images/games/CityUnderPressure/heroBackground.jpg');
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.5;
    will-change: transform;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%),
        linear-gradient(to bottom, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.3) 50%, rgba(10, 10, 10, 0.7) 100%);
    animation: pulse 4s ease-in-out infinite;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-md) var(--spacing-lg) var(--spacing-lg);
    animation: fadeInUp 1s ease 0.3s both;
    color: var(--color-text-primary);
    opacity: 1 !important;
    visibility: visible !important;
    min-height: calc(100vh - var(--header-height, 80px));
    min-height: calc(100svh - var(--header-height, 80px));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: visible;
    pointer-events: none;
}

.hero-content > * {
    pointer-events: auto;
}

/* Rauchschwaden */
.hero-content::before,
.hero-content::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    animation: smokeFloat 15s ease-in-out infinite;
    filter: blur(25px);
}

.hero-content::before {
    left: -100px;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.hero-content::after {
    right: -100px;
    bottom: 20%;
    animation-delay: 5s;
    animation-duration: 20s;
}

@keyframes smokeFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -40px) scale(1.2);
        opacity: 0.75;
    }
    50% {
        transform: translate(-20px, -80px) scale(1.1);
        opacity: 0.65;
    }
    75% {
        transform: translate(40px, -60px) scale(1.3);
        opacity: 0.7;
    }
}

/* Zusätzliche Rauchschwaden-Elemente */
.smoke {
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 40%, rgba(255, 255, 255, 0.08) 60%, transparent 80%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    filter: blur(25px);
    animation: smokeDrift 25s ease-in-out infinite;
}

.smoke-1 {
    left: 10%;
    top: 30%;
    animation-delay: 0s;
    animation-duration: 22s;
    width: 220px;
    height: 220px;
}

.smoke-2 {
    right: 15%;
    top: 50%;
    animation-delay: 8s;
    animation-duration: 28s;
    width: 200px;
    height: 200px;
}

.smoke-3 {
    left: 50%;
    bottom: 20%;
    animation-delay: 15s;
    animation-duration: 25s;
    width: 190px;
    height: 190px;
    transform: translateX(-50%);
}

.smoke-4 {
    left: 30%;
    top: 60%;
    animation-delay: 4s;
    animation-duration: 26s;
    width: 180px;
    height: 180px;
}

.smoke-5 {
    right: 30%;
    bottom: 30%;
    animation-delay: 12s;
    animation-duration: 24s;
    width: 170px;
    height: 170px;
}

@keyframes smokeDrift {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.7;
    }
    20% {
        transform: translate(50px, -60px) scale(1.3) rotate(10deg);
        opacity: 0.85;
    }
    40% {
        transform: translate(-40px, -100px) scale(1.1) rotate(-5deg);
        opacity: 0.75;
    }
    60% {
        transform: translate(60px, -80px) scale(1.4) rotate(15deg);
        opacity: 0.8;
    }
    80% {
        transform: translate(-30px, -120px) scale(1.2) rotate(-10deg);
        opacity: 0.75;
    }
}

/* Aufsteigende Dampfsäulen links und rechts - Realistischer Dampf-Effekt */
.steam-column {
    position: absolute;
    bottom: 0;
    width: 200px;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: visible;
}

.steam-column-left {
    left: 5%;
}

.steam-column-right {
    right: 5%;
}

/* Einzelne Dampf-Wolken für organischen Effekt */
.steam-cloud {
    position: absolute;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(255, 255, 255, 0.4) 15%,
        rgba(255, 255, 255, 0.3) 30%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 70%,
        transparent 100%
    );
    filter: blur(35px);
    animation: steamRise 14s ease-in-out infinite;
    opacity: 0;
}

/* Verschiedene Größen und Positionen für jede Wolke */
.steam-column-left .steam-cloud-1 {
    left: 20%;
    width: 90px;
    height: 90px;
    animation-delay: 0s;
    animation-duration: 12s;
}

.steam-column-left .steam-cloud-2 {
    left: 50%;
    width: 110px;
    height: 110px;
    animation-delay: 2s;
    animation-duration: 15s;
}

.steam-column-left .steam-cloud-3 {
    left: 70%;
    width: 85px;
    height: 85px;
    animation-delay: 4s;
    animation-duration: 13s;
}

.steam-column-left .steam-cloud-4 {
    left: 35%;
    width: 100px;
    height: 100px;
    animation-delay: 6s;
    animation-duration: 16s;
}

.steam-column-right .steam-cloud-1 {
    left: 30%;
    width: 95px;
    height: 95px;
    animation-delay: 1s;
    animation-duration: 13s;
}

.steam-column-right .steam-cloud-2 {
    left: 60%;
    width: 105px;
    height: 105px;
    animation-delay: 3s;
    animation-duration: 14s;
}

.steam-column-right .steam-cloud-3 {
    left: 15%;
    width: 88px;
    height: 88px;
    animation-delay: 5s;
    animation-duration: 12s;
}

.steam-column-right .steam-cloud-4 {
    left: 75%;
    width: 98px;
    height: 98px;
    animation-delay: 7s;
    animation-duration: 15s;
}

@keyframes steamRise {
    0% {
        transform: translateY(0) translateX(0) scale(0.6) rotate(0deg);
        opacity: 0;
        width: 60px;
        height: 60px;
    }
    5% {
        opacity: 0.7;
        transform: translateY(-5vh) translateX(5px) scale(0.7) rotate(5deg);
    }
    15% {
        opacity: 0.85;
        transform: translateY(-15vh) translateX(-8px) scale(0.9) rotate(-3deg);
        width: 90px;
        height: 90px;
    }
    30% {
        opacity: 0.9;
        transform: translateY(-30vh) translateX(12px) scale(1.1) rotate(8deg);
        width: 110px;
        height: 110px;
    }
    45% {
        opacity: 0.85;
        transform: translateY(-45vh) translateX(-10px) scale(1.3) rotate(-5deg);
        width: 130px;
        height: 130px;
    }
    60% {
        opacity: 0.75;
        transform: translateY(-60vh) translateX(15px) scale(1.5) rotate(10deg);
        width: 150px;
        height: 150px;
    }
    75% {
        opacity: 0.6;
        transform: translateY(-75vh) translateX(-12px) scale(1.7) rotate(-8deg);
        width: 170px;
        height: 170px;
    }
    85% {
        opacity: 0.4;
        transform: translateY(-85vh) translateX(8px) scale(1.9) rotate(5deg);
        width: 190px;
        height: 190px;
    }
    95% {
        opacity: 0.2;
        transform: translateY(-95vh) translateX(-5px) scale(2.1) rotate(-3deg);
        width: 210px;
        height: 210px;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) translateX(0) scale(2.3) rotate(0deg);
        width: 230px;
        height: 230px;
    }
}

.hero h1 {
    background: linear-gradient(135deg, var(--color-text-primary) 0%, var(--color-accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
    animation: textReveal 1.2s ease 0.5s both;
    text-transform: none;
    white-space: nowrap;
    font-size: clamp(1.8rem, 4.5vw, 3.5rem);
}

.hero .subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--color-accent-gold);
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
    margin-top: -0.5rem;
    animation: textReveal 1.2s ease 0.6s both;
}

.hero p {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
}

/* Partikel-Effekt für Hero (elektrische Funken) */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform, opacity;
    display: block !important;
    visibility: visible !important;
    z-index: 3;
    transform-origin: center center;
    /* Glut/Funken-Effekt: längliche Form durch width/height Unterschied */
    filter: blur(0.5px);
}

@keyframes spark {
    0% {
        opacity: 0;
        transform: translate(calc(var(--avoid-x, 0px)), calc(0px + var(--avoid-y, 0px))) scale(0.5);
    }
    5% {
        opacity: 1 !important;
        transform: translate(calc(var(--avoid-x, 0px)), calc(-20px + var(--avoid-y, 0px))) scale(1);
    }
    50% {
        opacity: 1 !important;
        transform: translate(calc(var(--avoid-x, 0px)), calc(-50vh + var(--avoid-y, 0px))) scale(1);
    }
    90% {
        opacity: 0.8 !important;
        transform: translate(calc(var(--avoid-x, 0px)), calc(-90vh + var(--avoid-y, 0px))) scale(0.8);
    }
    100% {
        opacity: 0;
        transform: translate(calc(var(--avoid-x, 0px)), calc(-100vh + var(--avoid-y, 0px))) scale(0);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-md);
    background: transparent;
    border: 2px solid var(--color-accent-gold);
    color: var(--color-accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-accent-gold);
    transition: left var(--transition-normal);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn:hover {
    color: var(--color-bg-primary);
    box-shadow: 0 0 20px var(--color-accent-glow);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--color-accent-gold);
    color: var(--color-bg-primary);
}

.btn-primary::before {
    background: var(--color-accent-bronze);
}

/* Sections */
section {
    padding: var(--spacing-lg) var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

/* Reduzierte Abstände für bestimmte Sections */
#description,
#features {
    padding-top: var(--spacing-md);
    padding-bottom: var(--spacing-md);
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-bottom: var(--spacing-md);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent-gold), transparent);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Game Card */
.game-card {
    background: var(--color-bg-secondary);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: var(--spacing-lg);
    border-radius: 8px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.game-card:hover::before {
    left: 100%;
}

.game-card:hover {
    border-color: var(--color-accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

/* Features Grid */
/* Worker Image Section with Parallax */
.worker-image-section {
    position: relative;
    width: 100%;
    max-width: none;
    min-height: 60vh;
    overflow: hidden;
    padding: var(--spacing-xs) 0;
    margin: 0;
    opacity: 1;
    transform: none;
}

.worker-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
}

.worker-image-container.align-right {
    justify-content: flex-end;
    padding-right: 5%;
}

.worker-image-container.align-center {
    justify-content: center;
}

.worker-image-container.align-left {
    justify-content: flex-start;
    padding-left: 5%;
}

.worker-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(10, 10, 10, 0.3) 40%, 
        rgba(10, 10, 10, 0.7) 70%, 
        var(--color-bg-primary) 100%);
    pointer-events: none;
    z-index: 2;
}

.worker-image-container::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60px;
    background: radial-gradient(ellipse at center, 
        rgba(212, 175, 55, 0.15) 0%, 
        rgba(212, 175, 55, 0.05) 40%, 
        transparent 70%);
    filter: blur(20px);
    pointer-events: none;
    z-index: 1;
}

.worker-image {
    max-width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.3));
    will-change: transform;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s both;
    position: relative;
    z-index: 1;
    mask-image: linear-gradient(to bottom, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 1) 60%, 
        rgba(0, 0, 0, 0.8) 75%, 
        rgba(0, 0, 0, 0.4) 85%, 
        rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 1) 60%, 
        rgba(0, 0, 0, 0.8) 75%, 
        rgba(0, 0, 0, 0.4) 85%, 
        rgba(0, 0, 0, 0) 100%);
    /* Ränder entfernen durch leichtes Vergrößern und Abschneiden */
    transform: scale(1.05);
    clip-path: inset(2% 2% 2% 2%);
    -webkit-clip-path: inset(2% 2% 2% 2%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-item {
    padding: var(--spacing-md);
    background: var(--color-bg-secondary);
    border-left: 3px solid var(--color-accent-gold);
    transition: all var(--transition-normal);
}

.feature-item:hover {
    background: var(--color-bg-tertiary);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

.feature-item h3 {
    color: var(--color-accent-gold);
    margin-bottom: var(--spacing-xs);
    font-size: 1.25rem;
}

/* Screenshots Gallery */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.screenshot-placeholder {
    aspect-ratio: 16 / 9;
    background: var(--color-bg-secondary);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    font-style: italic;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.screenshot-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(212, 175, 55, 0.05) 10px,
        rgba(212, 175, 55, 0.05) 20px
    );
}

.screenshot-placeholder:hover {
    border-color: var(--color-accent-gold);
    transform: scale(1.02);
}

.screenshot-item {
    aspect-ratio: 16 / 9;
    background: var(--color-bg-secondary);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.screenshot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.screenshot-item:hover {
    border-color: var(--color-accent-gold);
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
    cursor: pointer;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    opacity: 0;
    transition: opacity var(--transition-normal);
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border: 2px solid var(--color-accent-gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--color-accent-gold);
    border: none;
    color: var(--color-bg-primary);
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-normal);
    z-index: 10001;
}

.lightbox-close:hover {
    background: var(--color-accent-bronze);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 85vh;
    }
}

/* Footer */
footer {
    position: relative;
    z-index: 10;
    background: var(--color-bg-secondary);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: var(--spacing-lg) var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

.footer-logo img {
    height: 30px;
    width: auto;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
}

@media (min-width: 768px) {
    .footer-social {
        justify-content: flex-end;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    margin-top: var(--spacing-md);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

/* Art-Deco geometrische Hintergrund-Elemente */
.deco-shape {
    position: absolute;
    opacity: 0.05;
    pointer-events: none;
}

.deco-shape-1 {
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    border: 2px solid var(--color-accent-gold);
    transform: rotate(45deg);
    animation: rotateSlow 20s linear infinite;
}

.deco-shape-2 {
    bottom: 20%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--color-accent-gold), transparent);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: float 6s ease-in-out infinite;
}

/* Animationen */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes rotateSlow {
    from {
        transform: rotate(45deg);
    }
    to {
        transform: rotate(405deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .language-switcher {
        margin-left: 0;
    }
    
    .hero-content {
        padding: var(--spacing-md);
    }
    
    section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    .features-grid,
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    /* Dampfsäulen auf Mobile kleiner und weniger opak */
    .steam-column {
        width: 150px;
    }
    
    .steam-column-left {
        left: 2%;
    }
    
    .steam-column-right {
        right: 2%;
    }
    
    .steam-cloud {
        filter: blur(25px);
    }
    
    .steam-column-left .steam-cloud-1,
    .steam-column-left .steam-cloud-2,
    .steam-column-left .steam-cloud-3,
    .steam-column-left .steam-cloud-4,
    .steam-column-right .steam-cloud-1,
    .steam-column-right .steam-cloud-2,
    .steam-column-right .steam-cloud-3,
    .steam-column-right .steam-cloud-4 {
        width: 60px !important;
        height: 60px !important;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--color-accent-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-bronze);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
    border-top: 2px solid var(--color-accent-gold);
    padding: var(--spacing-md);
    z-index: 10000;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
    color: var(--color-text-primary);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.6;
}

.cookie-banner-text strong {
    color: var(--color-accent-gold);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    font-size: clamp(1rem, 1.8vw, 1.125rem);
}

.cookie-banner-text a {
    color: var(--color-accent-gold);
    text-decoration: underline;
    transition: all var(--transition-normal);
}

.cookie-banner-text a:hover {
    color: var(--color-accent-bronze);
    text-shadow: 0 0 8px var(--color-accent-glow);
}

.cookie-banner-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    align-items: center;
}

.cookie-banner-btn {
    padding: var(--spacing-xs) var(--spacing-md);
    background: transparent;
    border: 2px solid var(--color-accent-gold);
    color: var(--color-accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    white-space: nowrap;
}

.cookie-banner-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-accent-gold);
    transition: left var(--transition-normal);
    z-index: -1;
}

.cookie-banner-btn:hover::before {
    left: 0;
}

.cookie-banner-btn:hover {
    color: var(--color-bg-primary);
    box-shadow: 0 0 15px var(--color-accent-glow);
    transform: translateY(-2px);
}

.cookie-banner-btn-primary {
    background: var(--color-accent-gold);
    color: var(--color-bg-primary);
    border-color: var(--color-accent-gold);
}

.cookie-banner-btn-primary::before {
    background: var(--color-accent-bronze);
}

.cookie-banner-btn-primary:hover {
    background: var(--color-accent-bronze);
    border-color: var(--color-accent-bronze);
    color: var(--color-bg-primary);
}

/* Cookie Icon Animation */
.cookie-icon {
    display: inline-block;
    margin-right: 0.5rem;
    animation: cookieSpin 3s ease-in-out infinite;
    font-size: 1.2em;
    vertical-align: middle;
}

@keyframes cookieSpin {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-10deg) scale(1.1);
    }
    50% {
        transform: rotate(10deg) scale(1.05);
    }
    75% {
        transform: rotate(-5deg) scale(1.1);
    }
}

/* Glow-Effekt für Cookie Banner */
.cookie-banner::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--color-accent-gold) 20%, 
        var(--color-accent-bronze) 50%, 
        var(--color-accent-gold) 80%, 
        transparent 100%);
    animation: cookieGlow 2s ease-in-out infinite;
    box-shadow: 0 0 20px var(--color-accent-glow);
}

@keyframes cookieGlow {
    0%, 100% {
        opacity: 0.5;
        box-shadow: 0 0 20px var(--color-accent-glow);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 30px var(--color-accent-gold), 0 0 40px var(--color-accent-glow);
    }
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-banner {
        padding: var(--spacing-sm);
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .cookie-banner-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-banner-btn {
        flex: 1;
        min-width: 120px;
    }
}

/* ============================================
   Float & Fly Co. - Spezifische Styles
   ============================================ */

/* Float & Fly Page Body */
.float-and-fly-page {
    background: linear-gradient(to bottom, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
}

/* Hero Section für Float & Fly */
.hero-float-and-fly {
    background: linear-gradient(to bottom, 
        rgba(26, 26, 46, 0.8) 0%, 
        rgba(74, 144, 226, 0.1) 50%, 
        rgba(26, 26, 46, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

/* Flugzeug-Animation */
.airplane-flying {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    pointer-events: none;
    overflow: hidden;
}

.airplane-image {
    position: absolute;
    left: -150px;
    width: 150px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(74, 144, 226, 0.4));
    opacity: 0.9;
    animation: airplaneFly 40s linear infinite;
    will-change: transform;
}

@keyframes airplaneFly {
    0% {
        transform: translateX(0) translateY(25vh) rotate(-3deg) scale(0.8);
        opacity: 0;
    }
    1% {
        opacity: 0.9;
    }
    50% {
        transform: translateX(calc(50vw - 75px)) translateY(27.5vh) rotate(0deg) scale(0.8);
        opacity: 0.9;
    }
    95% {
        transform: translateX(calc(100vw + 150px)) translateY(30vh) rotate(3deg) scale(0.8);
        opacity: 0.9;
    }
    98% {
        opacity: 0;
    }
    100% {
        transform: translateX(calc(100vw + 150px)) translateY(30vh) rotate(3deg) scale(0.8);
        opacity: 0;
    }
}

/* Paket-Animationen */
.parcel {
    position: absolute;
    left: -150px;
    width: 60px;
    height: auto;
    object-fit: contain;
    opacity: 0;
    pointer-events: none;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.3));
    transform: scale(0.35);
}

.parcel-1 {
    animation: parcelDrop1 40s linear infinite;
}

.parcel-2 {
    animation: parcelDrop2 40s linear infinite;
}

.parcel-3 {
    animation: parcelDrop3 40s linear infinite;
}

@keyframes parcelDrop1 {
    0%, 41.5% {
        opacity: 0;
        transform: translateX(calc(42vw - 50px)) translateY(calc(27.1vh + 35px)) rotate(0deg) scale(0.35);
    }
    42% {
        opacity: 1;
        transform: translateX(calc(42vw - 50px)) translateY(calc(27.1vh + 35px)) rotate(0deg) scale(0.35);
    }
    43% {
        opacity: 1;
        transform: translateX(calc(42vw - 40px)) translateY(calc(27.1vh + 65px)) rotate(5deg) scale(0.35);
    }
    52% {
        opacity: 1;
        transform: translateX(calc(42vw)) translateY(calc(27.1vh + 235px)) rotate(10deg) scale(0.35);
    }
    100% {
        opacity: 0;
        transform: translateX(calc(42vw + 60px)) translateY(calc(100vh + 150px)) rotate(20deg) scale(0.35);
    }
}

@keyframes parcelDrop2 {
    0%, 57.5% {
        opacity: 0;
        transform: translateX(calc(58vw - 10px)) translateY(calc(27.9vh + 35px)) rotate(0deg) scale(0.35);
    }
    58% {
        opacity: 1;
        transform: translateX(calc(58vw - 10px)) translateY(calc(27.9vh + 35px)) rotate(0deg) scale(0.35);
    }
    59% {
        opacity: 1;
        transform: translateX(calc(58vw - 20px)) translateY(calc(27.9vh + 65px)) rotate(-5deg) scale(0.35);
    }
    68.5% {
        opacity: 1;
        transform: translateX(calc(58vw - 40px)) translateY(calc(27.9vh + 235px)) rotate(-10deg) scale(0.35);
    }
    100% {
        opacity: 0;
        transform: translateX(calc(58vw - 110px)) translateY(calc(100vh + 150px)) rotate(-20deg) scale(0.35);
    }
}

@keyframes parcelDrop3 {
    0%, 71.5% {
        opacity: 0;
        transform: translateX(calc(72vw + 75px)) translateY(calc(28.6vh + 35px)) rotate(0deg) scale(0.35);
    }
    72% {
        opacity: 1;
        transform: translateX(calc(72vw + 75px)) translateY(calc(28.6vh + 35px)) rotate(0deg) scale(0.35);
    }
    73% {
        opacity: 1;
        transform: translateX(calc(72vw + 95px)) translateY(calc(28.6vh + 65px)) rotate(8deg) scale(0.35);
    }
    82.5% {
        opacity: 1;
        transform: translateX(calc(72vw + 135px)) translateY(calc(28.6vh + 235px)) rotate(12deg) scale(0.35);
    }
    100% {
        opacity: 0;
        transform: translateX(calc(72vw + 215px)) translateY(calc(100vh + 150px)) rotate(25deg) scale(0.35);
    }
}


.hero-background-ff {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background-image: url('../assets/images/games/FloatAndFly/FF_heroBackground.jpg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 0;
    filter: blur(1px);
    will-change: transform;
}

.hero-float-and-fly::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at center, rgba(74, 144, 226, 0.15) 0%, transparent 70%),
        linear-gradient(to bottom, rgba(10, 10, 10, 0.6) 0%, rgba(26, 26, 46, 0.4) 50%, rgba(10, 10, 10, 0.6) 100%);
    z-index: 1;
}

/* Wolken-Container */
.clouds-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.cloud {
    position: absolute;
    background: radial-gradient(ellipse at center,
        rgba(255, 255, 255, 0.6) 0%,
        rgba(255, 255, 255, 0.4) 30%,
        rgba(255, 255, 255, 0.2) 60%,
        transparent 100%
    );
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.7;
    animation: cloudDrift 30s ease-in-out infinite;
    pointer-events: none;
}

@keyframes cloudDrift {
    0% {
        transform: translateX(-20%) translateY(0) scale(1) rotate(0deg);
        opacity: 0.5;
    }
    25% {
        transform: translateX(10%) translateY(-10px) scale(1.1) rotate(5deg);
        opacity: 0.7;
    }
    50% {
        transform: translateX(30%) translateY(-5px) scale(1.2) rotate(-3deg);
        opacity: 0.8;
    }
    75% {
        transform: translateX(50%) translateY(-15px) scale(1.1) rotate(4deg);
        opacity: 0.7;
    }
    100% {
        transform: translateX(120%) translateY(0) scale(1) rotate(0deg);
        opacity: 0.5;
    }
}


/* Wasser-Ripples */
.water-ripples {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.water-ripple {
    position: absolute;
    bottom: 0;
    width: 200%;
    height: 100px;
    background: linear-gradient(to top,
        rgba(74, 144, 226, 0.2) 0%,
        rgba(135, 206, 235, 0.1) 50%,
        transparent 100%
    );
    border-radius: 50% 50% 0 0;
    animation: waterWave 10s ease-in-out infinite;
    opacity: 0.6;
}

.water-ripple:nth-child(2) {
    animation-delay: -3s;
    opacity: 0.4;
    height: 80px;
}

.water-ripple:nth-child(3) {
    animation-delay: -6s;
    opacity: 0.3;
    height: 60px;
}

@keyframes waterWave {
    0%, 100% {
        transform: translateX(-50%) translateY(0) scaleX(1);
    }
    50% {
        transform: translateX(-50%) translateY(-10px) scaleX(1.1);
    }
}

/* Float & Fly Sections */
.float-and-fly-section {
    background: linear-gradient(to bottom,
        rgba(26, 26, 46, 0.3) 0%,
        rgba(31, 42, 58, 0.5) 50%,
        rgba(26, 26, 46, 0.3) 100%
    );
}

/* Concept Art Sections */
.concept-art-section {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    min-height: 60vh;
    overflow: hidden;
    padding: var(--spacing-xs) 0;
    margin: 0;
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(to bottom,
        rgba(26, 26, 46, 0.5) 0%,
        rgba(31, 42, 58, 0.7) 50%,
        rgba(26, 26, 46, 0.5) 100%
    );
}

.concept-art-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center,
        transparent 0%,
        rgba(26, 26, 46, 0.3) 40%,
        rgba(26, 26, 46, 0.6) 100%
    );
    z-index: 0;
    pointer-events: none;
}

.concept-art-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
        rgba(26, 26, 46, 0.4) 0%,
        transparent 20%,
        transparent 80%,
        rgba(26, 26, 46, 0.4) 100%
    );
    z-index: 0;
    pointer-events: none;
}

.concept-art-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
    /* Zusätzlicher Overlay für Verschmelzung */
    background: radial-gradient(ellipse at center,
        transparent 0%,
        rgba(31, 42, 58, 0.2) 50%,
        rgba(26, 26, 46, 0.4) 100%
    );
}

.concept-art-container.align-right {
    justify-content: flex-end;
    padding-right: 5%;
}

.concept-art-container.align-center {
    justify-content: center;
}

.concept-art-container.align-left {
    justify-content: flex-start;
    padding-left: 5%;
}

.concept-art-image {
    max-width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(74, 144, 226, 0.2));
    will-change: transform, opacity, filter;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s both;
    position: relative;
    z-index: 1;
    /* Stärkeres Verschmelzen mit dem Hintergrund */
    mask-image: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.3) 0%, 
        rgba(0, 0, 0, 0.5) 20%,
        rgba(0, 0, 0, 0.8) 40%,
        rgba(0, 0, 0, 0.9) 50%,
        rgba(0, 0, 0, 0.7) 60%, 
        rgba(0, 0, 0, 0.4) 75%, 
        rgba(0, 0, 0, 0.2) 85%, 
        rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.3) 0%, 
        rgba(0, 0, 0, 0.5) 20%,
        rgba(0, 0, 0, 0.8) 40%,
        rgba(0, 0, 0, 0.9) 50%,
        rgba(0, 0, 0, 0.7) 60%, 
        rgba(0, 0, 0, 0.4) 75%, 
        rgba(0, 0, 0, 0.2) 85%, 
        rgba(0, 0, 0, 0) 100%);
    transform: scale(1.0);
    clip-path: inset(2% 2% 2% 2%);
    -webkit-clip-path: inset(2% 2% 2% 2%);
    /* Zusätzlicher Overlay-Effekt für Verschmelzung */
    mix-blend-mode: soft-light;
    transition: filter 0.1s ease-out, opacity 0.1s ease-out;
    /* 3D-Transform für besseren Parallax-Effekt */
    transform-style: preserve-3d;
    perspective: 1000px;
}

.concept-art-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
        rgba(26, 26, 46, 0.4) 0%,
        transparent 30%,
        transparent 70%,
        rgba(26, 26, 46, 0.4) 100%
    );
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: multiply;
}

.concept-art-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center,
        transparent 0%,
        rgba(31, 42, 58, 0.3) 50%,
        rgba(26, 26, 46, 0.5) 100%
    );
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: overlay;
}

/* Concept Art Gallery */
.concept-art-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.concept-art-gallery .screenshot-item {
    aspect-ratio: 16 / 9;
    background: rgba(31, 42, 58, 0.5);
    border: 1px solid rgba(74, 144, 226, 0.3);
    transition: all var(--transition-normal);
    will-change: transform;
    transform-style: preserve-3d;
}

.concept-art-gallery .screenshot-item:hover {
    border-color: rgba(135, 206, 235, 0.8);
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.3);
}

/* Float & Fly Feature Items */
.feature-item-ff {
    background: rgba(31, 42, 58, 0.4);
    border-left: 3px solid rgba(135, 206, 235, 0.6);
}

.feature-item-ff:hover {
    background: rgba(31, 42, 58, 0.6);
    border-left-color: rgba(135, 206, 235, 1);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.2);
}

.feature-item-ff h3 {
    color: rgba(135, 206, 235, 0.9);
}

/* Float & Fly Game Card */
.game-card-ff {
    background: rgba(31, 42, 58, 0.5);
    border: 1px solid rgba(74, 144, 226, 0.3);
}

.game-card-ff:hover {
    border-color: rgba(135, 206, 235, 0.8);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.2);
}

/* Float & Fly Buttons */
.btn-ff {
    border-color: rgba(135, 206, 235, 0.6);
    color: rgba(135, 206, 235, 0.9);
}

.btn-ff::before {
    background: rgba(135, 206, 235, 0.8);
}

.btn-ff:hover {
    color: var(--color-bg-primary);
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.4);
}

.btn-primary.btn-ff {
    background: rgba(135, 206, 235, 0.8);
    color: var(--color-bg-primary);
}

.btn-primary.btn-ff::before {
    background: rgba(74, 144, 226, 0.9);
}

/* Section Title für Float & Fly */
.float-and-fly-section .section-title::after {
    background: linear-gradient(90deg, transparent, rgba(135, 206, 235, 0.8), transparent);
}

/* Hero Content für Float & Fly */
.hero-float-and-fly .hero-content {
    z-index: 10;
}

.hero-float-and-fly .hero-content h1 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(135, 206, 235, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-float-and-fly .hero-content .hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.3));
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-float-and-fly .hero-content .subtitle {
    color: rgba(135, 206, 235, 0.9);
}

/* Responsive für Float & Fly */
@media (max-width: 768px) {
    .cloud {
        filter: blur(30px);
    }
    
    .hero-float-and-fly .hero-content .hero-logo {
        max-width: 280px;
    }
    
    .concept-art-gallery {
        grid-template-columns: 1fr;
    }
    
    .concept-art-image {
        max-height: 50vh;
    }
    
    .water-ripple {
        height: 60px;
    }
    
    .water-ripple:nth-child(2) {
        height: 50px;
    }
    
    .water-ripple:nth-child(3) {
        height: 40px;
    }
    
    .airplane-image {
        width: 120px;
    }
    
    .parcel {
        width: 40px;
    }
}
