/* Allgemeine Stile */
body {
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #fff;
    margin: 0;
    padding: 0;
    /* entferne padding-top, da Banner nicht mehr fixed ist */
}

* {
    caret-color: transparent; /* Versteckt den blinkenden Cursor */
}

/* Stripe Kundenportal Button - Vereinfachte Version */
.stripe-portal-button {
    position: fixed;
    right: -180px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
    border: none;
    padding: 15px 35px 15px 15px;
    border-radius: 20px 0 0 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    box-shadow: -5px 0 20px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
    min-width: 180px;
}

.stripe-portal-button:hover {
    right: -30px;
    box-shadow: -8px 0 25px rgba(99, 102, 241, 0.6);
}

.stripe-portal-button .icon {
    font-family: 'Material Icons';
    font-size: 20px;
    color: white;
}

.stripe-portal-button .text {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    letter-spacing: 0.3px;
    font-weight: 600;
}

/* Header-Stile */
header {
    display: flex;
    justify-content: space-between;
    align-items: center; /* <-- von 'right' auf 'center' ändern */
    padding: 20px;
    background-color: #000;
    border-bottom: 2px solid;
    border-color: #ff1616;
}

/* Hide navbar on mobile devices */
/*
@media (max-width: 768px) {
    header {
        display: none !important;
    }
}   
*/

/* ======================== MOBILE OPTIMIZATION ======================== */

/* Mobile Base Styles */
@media (max-width: 768px) {
    header {
        height: 30px;
    }

    body {
        font-size: 16px !important;
        line-height: 1.5 !important;
        overflow-x: hidden !important;
    }

    /* Main container mobile adjustments */
    main {
        padding: 20px 15px !important; 
        padding-top: 20px !important;
    }

    /* Logo adjustments for mobile */
    .floating-logo {
        position: fixed !important;
        top: 15px !important;
        left: 15px !important;
        width: 120px !important;
        z-index: 1001 !important;
    }

    /* Hero section mobile optimization */
    .hero {
        padding: 40px 20px !important;
        margin-top: 80px !important; /* Space for floating logo */
    }

    .hero h1 {
        font-size: 32px !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
    }

    .hero .desc {
        font-size: 16px !important;
        line-height: 1.6 !important;
        margin-bottom: 30px !important;
        padding: 0 10px !important;
    }

    .hero .buttons {
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
        margin-top: 30px !important;
    }

    .cta-button, .cta-button-outline {
        width: 80% !important;
        max-width: 250px !important;
        padding: 15px 20px !important;
        font-size: 14px !important;
        text-align: center !important;
        justify-content: center !important;
    }

    /* Portfolio section mobile */
    .portfolio-preview {
        margin-top: 40px !important;
    }

    .portfolio-preview h2 {
        font-size: 28px !important;
        margin-bottom: 25px !important;
    }

    .portfolio-items {
        flex-direction: column !important;
        gap: 2px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .portfolio-item {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        flex: none !important;
    }

    .portfolio-item img,
    .portfolio-item video.portfolio-video {
        width: 100% !important;
        height: auto !important;
        border-radius: 8px !important;
        max-width: 100% !important;
        display: block !important;
    }

    .portfolio-item p {
        font-size: 16px !important;
        margin-top: 15px !important;
    }

    /* Our Goal section mobile */
    .our-goal {
        margin-top: 40px !important;
        padding: 25px 20px !important;
    }

    .our-goal h2 {
        font-size: 28px !important;
        margin-bottom: 20px !important;
        letter-spacing: 1px !important;
    }

    .our-goal p {
        font-size: 16px !important;
        line-height: 1.7 !important;
        padding: 0 10px !important;
    }

    /* Store CTA section mobile */
    .store-cta {
        margin-top: 30px !important;
        height: auto !important;
        min-height: 350px !important;
        padding: 20px 10px !important;
        border-radius: 10px !important;
    }

    .store-background {
        background-attachment: scroll !important;
        background-position: center center !important;
    }

    .store-overlay {
        padding: 10px;
        background: rgba(0, 0, 0, 0.7) !important;
    }

    .store-content {
        padding: 30px 15px !important;
        max-width: 100% !important;
    }

    .store-content h2 {
        font-size: 24px !important;
        margin-bottom: 20px !important;
        line-height: 1.3 !important;
        text-align: center !important;
    }

    .store-content p {
        font-size: 15px !important;
        margin-bottom: 25px !important;
        line-height: 1.6 !important;
        text-align: center !important;
    }

    .store-buttons {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        margin-top: 30px !important;
    }

    .store-buttons .cta-button,
    .store-buttons .cta-button-outline {
        width: 200px !important;
        text-align: center !important;
        font-size: 16px !important;
        padding: 12px 20px !important;
    }

    /* Product Teaser mobile */
    .product-teaser {
        margin-top: 40px !important;
        padding: 25px 15px !important;
    }

    .product-teaser h2 {
        font-size: 26px !important;
        margin-bottom: 25px !important;
        letter-spacing: 1px !important;
    }

    .product-slider-container {
        position: relative !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }

    .product-slider-container::-webkit-scrollbar {
        display: none !important;
    }

    .product-slider {
        display: flex !important;
        gap: 15px !important;
        padding: 10px 0 !important;
        flex-wrap: nowrap !important;
    }

    .product-slide {
        flex: 0 0 250px !important;
        min-width: 250px !important;
        padding: 20px 15px !important;
        background-color: #333 !important;
        border-radius: 10px !important;
        text-align: center !important;
    }

    .product-slide img {
        width: 100px !important;
        height: auto !important;
        margin-bottom: 10px !important;
    }

    .product-slide p {
        font-size: 14px !important;
        line-height: 1.4 !important;
    }

    .slider-btn {
        display: none !important; /* Hide slider buttons on mobile for touch scrolling */
    }

    /* Hide Tebex Banner on mobile */
    .tebex-banner {
        display: none !important;
    }

    /* Stripe Portal Button mobile adjustments */
    .stripe-portal-button {
        right: -150px !important;
        padding: 12px 25px 12px 12px !important;
        font-size: 12px !important;
        border-radius: 15px 0 0 15px !important;
        min-width: 150px !important;
    }

    .stripe-portal-button:hover {
        right: -20px !important;
    }

    .stripe-portal-button .text {
        font-size: 14px !important;
    }

    .stripe-portal-button .icon {
        font-size: 16px !important;
    }
}

/* Mobile Small Screens (max-width: 480px) */
@media (max-width: 480px) {
    .floating-logo {
        width: 100px !important;
        top: 10px !important;
        left: 10px !important;
    }

    .hero {
        padding: 30px 15px !important;
        margin-top: 70px !important;
    }

    .hero h1 {
        font-size: 28px !important;
    }

    .hero .desc {
        font-size: 15px !important;
        padding: 0 5px !important;
    }

    .our-goal h2,
    .portfolio-preview h2,
    .store-content h2,
    .product-teaser h2 {
        font-size: 24px !important;
    }

    .our-goal p,
    .store-content p {
        font-size: 15px !important;
    }

    .portfolio-item,
    .our-goal,
    .store-cta,
    .product-teaser {
        margin-top: 30px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .portfolio-item {
        padding: 20px 15px !important;
    }

    .store-cta {
        height: 390px !important;
    }

    .product-slide {
        flex: 0 0 220px !important;
        min-width: 220px !important;
        padding: 15px 10px !important;
    }

    .product-slide img {
        width: 80px !important;
    }

    .tebex-banner {
        padding: 8px 12px !important;
        font-size: 13px !important;
    }

    .stripe-portal-button {
        display: none !important; /* Hide on very small screens */
    }

    /* Store CTA specific optimizations for very small screens */
    .store-cta {
        min-height: 300px !important;
        margin-top: 20px !important;
        padding: 15px 5px !important;
    }

    .store-content {
        padding: 20px 10px !important;
    }

    .store-content h2 {
        font-size: 20px !important;
        margin-bottom: 15px !important;
    }

    .store-content p {
        font-size: 14px !important;
        margin-bottom: 20px !important;
    }

    .store-buttons .cta-button,
    .store-buttons .cta-button-outline {
        width: 180px !important;
        font-size: 14px !important;
        padding: 10px 15px !important;
    }
}

/* Mobile Landscape Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        margin-top: 60px !important;
        padding: 25px 20px !important;
    }

    .hero h1 {
        font-size: 30px !important;
    }

    .store-cta {
        height: 300px !important;
        min-height: 300px !important;
    }

    .our-goal,
    .product-teaser {
        padding: 20px 15px !important;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .portfolio-item:hover,
    .our-goal:hover,
    .product-slide:hover,
    .member-card:hover {
        transform: none;
        box-shadow: inherit;
    }

    .cta-button:hover,
    .cta-button-outline:hover {
        background: inherit;
        color: inherit;
    }

    .cta-button:hover::before,
    .cta-button-outline:hover::before {
        opacity: 0;
    }

    /* Add better touch targets */
    .cta-button,
    .cta-button-outline,
    .banner-close {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* High DPI screens (Retina) mobile optimization */
@media (-webkit-min-device-pixel-ratio: 2) and (max-width: 768px) {
    .hero h1,
    .our-goal h2,
    .portfolio-preview h2,
    .store-content h2,
    .product-teaser h2 {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* ======================== END MOBILE OPTIMIZATION ======================== */

header .logo {
    font-size: 24px;
    color: #ff1616; /* Updated */
}

/* Division Navigation Styles */
.navbar-divisions {
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.division-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 4px;
    gap: 2px;
}

.division-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    background: transparent;
    color: #ccc;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.division-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.division-btn.active {
    color: white;
    font-weight: 600;
}

.division-btn.gaming-btn.active {
    background: #ff1616;
    box-shadow: 0 4px 15px rgba(255, 22, 22, 0.3);
}

.division-btn.webdev-btn.active {
    background: linear-gradient(135deg, #3498db, #2980b9);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.division-btn .material-icons {
    font-size: 18px;
}

nav {
    display: flex;
    align-items: center; /* Neu: sorgt für vertikale Zentrierung */
    margin-left: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    margin-right: 0; /* entfernt das große rechte Margin */
    align-items: center; /* Neu: vertikale Zentrierung */
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: semibold;
    font-family: 'DM Sans', sans-serif;
}

nav ul li a.active {
    font-weight: bold;
}

/* Hauptinhalt */
main {
    padding: 100px;
    padding-top: 50px; /* Platz für den Header */
}

.about h1 {
    text-align: center;
    color: red;
}

.hero {
    background-position: center;
    padding: 0px 300px 0px 300px;
    text-align: center;
}

.hero .desc{
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    color: #ffffff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    margin-top: 20px;
}

.hero h1 {
    font-family: 'DM Sans', sans-serif;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
}

.hero h1 .highlight {
    font-weight: 900;
    color: #ff1616; /* Updated */
}

.hero h1.highlight {
    font-size: 100px;
    color: #ff1616; /* Updated */
    margin-bottom: 20px;
}

.hero .desc {
    font-size: 24px;
    margin-bottom: 40px;
}

.hero .buttons {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 90px;
}

.features {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

/* Mobile optimization for features */
@media (max-width: 768px) {
    .features {
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
        margin-top: 30px !important;
    }
}

.feature {
    background-color: #222;
    padding: 20px;
    border: 1px solid #ff1616; /* Updated */
    border-radius: 5px;
    width: 30%;
    text-align: center;
}

/* Mobile optimization for individual features */
@media (max-width: 768px) {
    .feature {
        width: 90% !important;
        max-width: 350px !important;
        padding: 25px 20px !important;
        border-radius: 10px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    }

    .feature h3 {
        font-size: 18px !important;
        margin-bottom: 15px !important;
        color: #ff1616 !important;
    }

    .feature p {
        font-size: 15px !important;
        line-height: 1.6 !important;
        color: #ccc !important;
    }
}

@media (max-width: 480px) {
    .feature {
        width: 95% !important;
        padding: 20px 15px !important;
    }

    .feature h3 {
        font-size: 16px !important;
        margin-bottom: 12px !important;
    }

    .feature p {
        font-size: 14px !important;
    }
}

.floating-logo {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    width: 170px;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 1));
}

.floating-logo img {
    width: 100%;
    height: auto;
}


.cta-button, .cta-button-outline {
    position: relative;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    width: 120px;
    text-transform: uppercase;
    cursor: pointer;
    transform: skew(-21deg);
    color: #ffffff;
    transition: color 0.5s;
    text-decoration: none;
    text-align: left;
    gap: 10px; 
}

.cta-button span, .cta-button-outline span {
    display: inline-block;
    transform: skew(21deg);
}

.cta-button::before, .cta-button-outline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    left: 0;
    background: rgb(53, 3, 3);
    opacity: 0;
    z-index: -1;
    transition: all 0.5s;
}

.cta-button:hover, .cta-button-outline:hover {
    color: #fff;
}

.cta-button:hover::before, .cta-button-outline:hover::before {
    left: 0;
    right: 0;
    opacity: 1;
}

.portfolio-preview {
    text-align: center;
    margin-top: 50px;
}

.portfolio-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.portfolio-item {
    background-color: #222;
    padding: 15px;
    border-radius: 5px;
    width: 30%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}

.portfolio-item img {
    width: 100%;
    border-radius: 5px;
}

.portfolio-item video.portfolio-video {
    width: 100%;
    border-radius: 5px;
    display: block;
}

/* Styles for Unser Ziel Section */
.our-goal {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #333, #111);
    border-radius: 10px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.our-goal:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}

.our-goal h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 40px;
    color: red;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.our-goal p {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    line-height: 1.8;
    color: #ccc;
    margin: 0 auto;
    max-width: 800px;
}

.store-cta {
    margin-top: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    padding: 20px;
    height: 500px; /* Höhe des Containers */
}

.store-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../data/Fotos/Helikopter_Person_Bild.jpg') no-repeat center center; /* Hintergrundbild */
    background-size: cover; /* Bild skaliert, um den gesamten Bereich abzudecken */
    z-index: 1;
}

.store-video {
    display: none; /* Video wird deaktiviert, da das Bild verwendet wird */
}

.store-image {
    display: none; /* Fallback für Browser ohne Video-Unterstützung */
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Halbtransparenter Overlay */
    z-index: 0;
}

.store-content {
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.store-content h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 36px;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
}

.store-content .highlight {
    color: #F00000;
}

.store-content p {
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.store-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 70px;
}

.cta-button, .cta-button-outline {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-button {
    background: #ff1616; /* Updated */
    color: #fff;
    border: 2px solid #ff1616; /* Updated */
}

.cta-button:hover {
    background: #fff;
    color: #ff1616; /* Updated */
}

.cta-button-outline {
    background: transparent;
    color: #ff1616; /* Updated */
    border: 3px solid #ff1616; /* Updated */
}

.cta-button-outline:hover {
    background: #ff1616;
    color: #fff;
}

.store-buttons .cta-button{
    width: 150px;
}

.store-buttons .cta-button-outline{
    width: 300px;
    color: #ffffff;
    border-color: #5DE3E2;
    background: #5de3e300;
}

.store-buttons .cta-button-outline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    left: 0;
    background: rgb(10, 177, 189);
    opacity: 0;
    z-index: -1;
    transition: all 0.5s;
}

.store-buttons .cta-button-outline:hover {
    color: #fff;
}

.portfolio-preview {
    text-align: center;
    margin-top: 50px;
}

.portfolio-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.portfolio-item {
    background-color: #222;
    padding: 15px;
    border-radius: 5px;
    width: 30%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}

.portfolio-item img {
    width: 100%;
    border-radius: 5px;
}

.portfolio-item video.portfolio-video {
    width: 100%;
    border-radius: 5px;
    display: block;
}

/* Styles for Unser Ziel Section */
.our-goal {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #333, #111);
    border-radius: 10px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.our-goal:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}

.our-goal h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 40px;
    color: red;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.our-goal p {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    line-height: 1.8;
    color: #ccc;
    margin: 0 auto;
    max-width: 800px;
}

.store-cta {
    margin-top: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    padding: 20px;
    height: 500px; /* Höhe des Containers */
}

.store-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../data/Fotos/Helikopter_Person_Bild.jpg') no-repeat center center; /* Hintergrundbild */
    background-size: cover; /* Bild skaliert, um den gesamten Bereich abzudecken */
    z-index: 1;
}

.store-video {
    display: none; /* Video wird deaktiviert, da das Bild verwendet wird */
}

.store-image {
    display: none; /* Fallback für Browser ohne Video-Unterstützung */
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Halbtransparenter Overlay */
    z-index: 0;
}

.store-content {
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.store-content h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 36px;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
}

.store-content .highlight {
    color: #F00000;
}

.store-content p {
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.store-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 70px;
}

.cta-button, .cta-button-outline {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-button {
    background: #ff1616; /* Updated */
    color: #fff;
    border: 2px solid #ff1616; /* Updated */
}

.cta-button:hover {
    background: #fff;
    color: #ff1616; /* Updated */
}

.cta-button-outline {
    background: transparent;
    color: #ff1616; /* Updated */
    border: 3px solid #ff1616; /* Updated */
}

.cta-button-outline:hover {
    background: #ff1616;
    color: #fff;
}

.store-buttons .cta-button{
    width: 150px;
}

.store-buttons .cta-button-outline{
    width: 300px;
    color: #ffffff;
    border-color: #5DE3E2;
    background: #5de3e300;
}

.store-buttons .cta-button-outline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    left: 0;
    background: rgb(10, 177, 189);
    opacity: 0;
    z-index: -1;
    transition: all 0.5s;
}

.store-buttons .cta-button-outline:hover {
    color: #fff;
}

.portfolio-preview {
    text-align: center;
    margin-top: 50px;
}

.portfolio-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.portfolio-item {
    background-color: #222;
    padding: 15px;
    border-radius: 5px;
    width: 30%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}

.portfolio-item img {
    width: 100%;
    border-radius: 5px;
}

.portfolio-item video.portfolio-video {
    width: 100%;
    border-radius: 5px;
    display: block;
}

/* Styles for Unser Ziel Section */
.our-goal {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #333, #111);
    border-radius: 10px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.our-goal:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}

.our-goal h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 40px;
    color: red;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.our-goal p {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    line-height: 1.8;
    color: #ccc;
    margin: 0 auto;
    max-width: 800px;
}

.store-cta {
    margin-top: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    padding: 20px;
    height: 500px; /* Höhe des Containers */
}

.store-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../data/Fotos/Helikopter_Person_Bild.jpg') no-repeat center center; /* Hintergrundbild */
    background-size: cover; /* Bild skaliert, um den gesamten Bereich abzudecken */
    z-index: 1;
}

.store-video {
    display: none; /* Video wird deaktiviert, da das Bild verwendet wird */
}

.store-image {
    display: none; /* Fallback für Browser ohne Video-Unterstützung */
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Halbtransparenter Overlay */
    z-index: 0;
}

.store-content {
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.store-content h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 36px;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
}

.store-content .highlight {
    color: #F00000;
}

.store-content p {
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.store-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 70px;
}

.cta-button, .cta-button-outline {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-button {
    background: #ff1616; /* Updated */
    color: #fff;
    border: 2px solid #ff1616; /* Updated */
}

.cta-button:hover {
    background: #fff;
    color: #ff1616; /* Updated */
}

.cta-button-outline {
    background: transparent;
    color: #ff1616; /* Updated */
    border: 3px solid #ff1616; /* Updated */
}

.cta-button-outline:hover {
    background: #ff1616;
    color: #fff;
}

.store-buttons .cta-button{
    width: 150px;
}

.store-buttons .cta-button-outline{
    width: 300px;
    color: #ffffff;
    border-color: #5DE3E2;
    background: #5de3e300;
}

.store-buttons .cta-button-outline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    left: 0;
    background: rgb(10, 177, 189);
    opacity: 0;
    z-index: -1;
    transition: all 0.5s;
}

.store-buttons .cta-button-outline:hover {
    color: #fff;
}

.portfolio-preview {
    text-align: center;
    margin-top: 50px;
}

.portfolio-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.portfolio-item {
    background-color: #222;
    padding: 15px;
    border-radius: 5px;
    width: 30%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}

.portfolio-item img {
    width: 100%;
    border-radius: 5px;
}

.portfolio-item video.portfolio-video {
    width: 100%;
    border-radius: 5px;
    display: block;
}

/* Styles for Unser Ziel Section */
.our-goal {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #333, #111);
    border-radius: 10px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.our-goal:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}

.our-goal h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 40px;
    color: red;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.our-goal p {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    line-height: 1.8;
    color: #ccc;
    margin: 0 auto;
    max-width: 800px;
}

.store-cta {
    margin-top: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    padding: 20px;
    height: 500px; /* Höhe des Containers */
}

.store-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../data/Fotos/Helikopter_Person_Bild.jpg') no-repeat center center; /* Hintergrundbild */
    background-size: cover; /* Bild skaliert, um den gesamten Bereich abzudecken */
    z-index: 1;
}

.store-video {
    display: none; /* Video wird deaktiviert, da das Bild verwendet wird */
}

.store-image {
    display: none; /* Fallback für Browser ohne Video-Unterstützung */
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Halbtransparenter Overlay */
    z-index: 0;
}

.store-content {
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.store-content h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 36px;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
}

.store-content .highlight {
    color: #F00000;
}

.store-content p {
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.store-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 70px;
}

.cta-button, .cta-button-outline {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-button {
    background: #ff1616; /* Updated */
    color: #fff;
    border: 2px solid #ff1616; /* Updated */
}

.cta-button:hover {
    background: #fff;
    color: #ff1616; /* Updated */
}

.cta-button-outline {
    background: transparent;
    color: #ff1616; /* Updated */
    border: 3px solid #ff1616; /* Updated */
}

.cta-button-outline:hover {
    background: #ff1616;
    color: #fff;
}

.store-buttons .cta-button{
    width: 150px;
}

.store-buttons .cta-button-outline{
    width: 300px;
    color: #ffffff;
    border-color: #5DE3E2;
    background: #5de3e300;
}

.store-buttons .cta-button-outline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    left: 0;
    background: rgb(10, 177, 189);
    opacity: 0;
    z-index: -1;
    transition: all 0.5s;
}

.store-buttons .cta-button-outline:hover {
    color: #fff;
}

.product-teaser {
    margin-top: 50px;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #222, #111);
    border-radius: 10px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.product-teaser h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 36px;
    color: #ff1616; /* Updated */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.product-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.product-slide {
    margin: 5px;
    margin-right: 0px;
    flex: 0 0 300px;
    background-color: #333;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-slide:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.8));
}

.product-slide img {
    width: 130px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.product-slide p {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    color: #ccc;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    z-index: 10;
    font-size: 24px;
    border-radius: 5px;
}

.slider-btn:hover {
    background-color: rgba(255, 0, 0, 0.7);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* ======================== MOBILE OPTIMIZATION FOR SPECIFIC SECTIONS ======================== */

/* About Us Page Mobile Optimization */
@media (max-width: 768px) {
    .about-us, .experience, .unique, .team, .cta {
        margin: 30px 15px !important;
        padding: 25px 20px !important;
    }

    .about-us h2, .experience h2, .unique h2, .team h2, .cta h2 {
        font-size: 26px !important;
        margin-bottom: 20px !important;
        letter-spacing: 1px !important;
    }

    .about-us p, .experience p, .unique ul, .team p, .cta p {
        font-size: 16px !important;
        line-height: 1.7 !important;
        max-width: 100% !important;
    }

    .unique ul li {
        font-size: 16px !important;
        margin: 12px 0 !important;
        text-align: left !important;
        padding-left: 20px !important;
        position: relative !important;
    }

    .unique ul li::before {
        content: "•" !important;
        color: #ff1616 !important;
        font-weight: bold !important;
        position: absolute !important;
        left: 0 !important;
    }

    /* Team Members Mobile */
    .team-members {
        flex-direction: column !important;
        align-items: center !important;
        gap: 25px !important;
    }

    .member {
        width: 100% !important;
        max-width: 300px !important;
        padding: 25px !important;
    }

    .member img {
        width: 100px !important;
        height: 100px !important;
    }

    .member h3 {
        font-size: 18px !important;
        margin-bottom: 8px !important;
    }

    .member p {
        font-size: 15px !important;
        line-height: 1.5 !important;
    }

    /* Animated Team Members Mobile */
    .team-members-animated {
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
        perspective: none !important;
    }

    .member-card {
        width: 90% !important;
        max-width: 280px !important;
        padding: 25px 20px 20px 20px !important;
    }

    .member-card:hover {
        transform: translateY(-5px) scale(1.02) !important;
        box-shadow: 0 8px 25px 0 rgba(240,0,0,0.3) !important;
    }

    .member-shape {
        width: 150px !important;
        height: 150px !important;
        margin-bottom: 15px !important;
    }

    .member-info h3 {
        font-size: 20px !important;
        margin-bottom: 8px !important;
    }

    .member-info p {
        font-size: 14px !important;
        line-height: 1.4 !important;
    }

    /* Contact Section Mobile */
    .contact-section {
        margin: 40px 15px 60px 15px !important;
        padding: 30px 20px 25px 20px !important;
        max-width: none !important;
    }

    .contact-section h1 {
        font-size: 28px !important;
        margin-bottom: 25px !important;
        letter-spacing: 1px !important;
    }

    .form-row {
        flex-direction: column !important;
        gap: 18px !important;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 16px !important;
        padding: 14px 16px !important;
        border-radius: 8px !important;
    }

    .contact-form textarea {
        min-height: 100px !important;
    }

    .contact-form button.cta-button {
        font-size: 18px !important;
        padding: 16px 0 !important;
        border-radius: 8px !important;
        margin-top: 15px !important;
    }

    .contact-options {
        padding: 20px 15px !important;
        margin-bottom: 25px !important;
    }

    .contact-options h2 {
        font-size: 22px !important;
        margin-bottom: 15px !important;
    }
}

/* Small Mobile Screens for Specific Sections */
@media (max-width: 480px) {
    .about-us, .experience, .unique, .team, .cta {
        margin: 25px 10px !important;
        padding: 20px 15px !important;
    }

    .about-us h2, .experience h2, .unique h2, .team h2, .cta h2 {
        font-size: 22px !important;
    }

    .about-us p, .experience p, .unique ul, .team p, .cta p {
        font-size: 15px !important;
    }

    .member-card {
        width: 95% !important;
        padding: 20px 15px 15px 15px !important;
    }

    .member-shape {
        width: 130px !important;
        height: 130px !important;
    }

    .contact-section {
        margin: 30px 10px 50px 10px !important;
        padding: 25px 15px 20px 15px !important;
    }

    .contact-section h1 {
        font-size: 24px !important;
        margin-bottom: 20px !important;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 15px !important;
        padding: 12px 14px !important;
    }

    .contact-form button.cta-button {
        font-size: 16px !important;
        padding: 14px 0 !important;
    }
}

/* ======================== END MOBILE OPTIMIZATION FOR SPECIFIC SECTIONS ======================== */

/* Enhanced Styles for About Us Page */
.hero {
    background: linear-gradient(135deg, #444, #222);
    padding: 60px 20px;
    text-align: center;
    color: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    animation: fadeIn 1s ease-in-out;
}

.hero h1 {
    font-family: 'DM Sans', sans-serif;
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
}

.hero .desc {
    font-size: 22px;
    color: #ddd;
    margin-top: 20px;
    line-height: 1.6;
}

.about-us, .experience, .unique, .team, .cta {
    margin: 60px auto;
    padding: 40px;
    background: linear-gradient(135deg, #333, #111);
    border-radius: 15px;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    text-align: center;
    animation: slideIn 1s ease-in-out;
}

.about-us h2, .experience h2, .unique h2, .team h2, .cta h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.about-us p, .experience p, .unique ul, .team p, .cta p {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    line-height: 1.8;
    color: #ccc;
    margin: 0 auto;
    max-width: 900px;
}

.unique ul {
    list-style: none;
    padding: 0;
}

.unique ul li {
    margin: 15px 0;
    font-size: 20px;
    color: #ddd;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.cta-button {
    background: linear-gradient(135deg, #ff1616, #C00000);
    color: #fff;
    border: 2px solid #ff1616;
    padding: 20px 40px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.cta-button:hover {
    background: #fff;
    color: #ff1616;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Styles for About Us Page */
.hero {
    background: linear-gradient(135deg, #333, #111);
    padding: 50px 20px;
    text-align: center;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}


.about-us, .experience, .unique, .team, .cta {
    margin: 50px auto;
    padding: 30px;
    background: linear-gradient(135deg, #222, #111);
    border-radius: 10px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.about-us h2, .experience h2, .unique h2, .team h2, .cta h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 36px;
    color: #ff1616; /* Updated */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-us p, .experience p, .unique ul, .team p, .cta p {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #ccc;
    margin: 0 auto;
    max-width: 800px;
}

.unique ul {
    list-style: none;
    padding: 0;
}

.unique ul li {
    margin: 10px 0;
    font-size: 18px;
    color: #ccc;
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.member {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}

.member img {
    width: 120px;
    height: 120px;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    margin-bottom: 15px;
    background: #111;
    position: relative;
    border: none;
    box-shadow: 0 0 0 3px #ff1616; /* Updated */
}

.member h3 {
    font-size: 20px;
    color: #ff1616; /* Updated */
    margin-bottom: 5px;
}

.member p {
    font-size: 16px;
    color: #ccc;
    line-height: 19px;
}

.cta-button {
    background: #ff1616;
    color: #fff;
    border: 2px solid #ff1616;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #fff;
    color: #ff1616;
}

.cta .cta-button {
    width: 200px;
    display: inline-block;
    margin: 20px auto;
    text-align: center;
}

/* Neue Team Section Styles */
.team-members-animated {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
    perspective: 1200px;
}

.member-card {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.37);
    padding: 30px 20px 20px 20px;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.4s cubic-bezier(.25,.8,.25,1), box-shadow 0.4s;
    position: relative;
    overflow: visible;
    animation: teamCardFadeIn 1s cubic-bezier(.25,.8,.25,1);
}

.member-card:hover {
    transform: translateY(-18px) scale(1.07) rotateY(8deg);
    box-shadow: 0 16px 40px 0 rgba(240,0,0,0.25), 0 1.5px 8px 0 rgba(0,0,0,0.25);
    z-index: 2;
}

@keyframes teamCardFadeIn {
    from { opacity: 0; transform: translateY(40px) scale(0.9);}
    to { opacity: 1; transform: translateY(0) scale(1);}
}

.member-shape {
    width: 180px;
    height: 180px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: filter 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 0 4px #F00000, 0 2px 16px rgba(0,0,0,0.4);
    background: #181818;
}

.member-card:hover .member-shape {
    filter: brightness(1.15) drop-shadow(0 0 16px #F00000aa);
    box-shadow: 0 0 0 6px #F00000, 0 4px 24px #F0000055;
}

.member-shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hexagon Shape */
.member-shape.hexagon {
    clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
    background: linear-gradient(135deg, #F00000 0%, #232526 100%);
}

/* Circle Shape */
.member-shape.circle {
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #5DE3E2 0%, #232526 100%);
}

/* Diamond Shape */
.member-shape.diamond {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background: linear-gradient(135deg, #FFD700 0%, #232526 100%);
}

/* Member Info */
.member-info {
    text-align: center;
    margin-top: 0px;
    animation: memberInfoFadeIn 1.2s cubic-bezier(.25,.8,.25,1);
}

@keyframes memberInfoFadeIn {
    from { opacity: 0; transform: translateY(20px);}
    to { opacity: 1; transform: translateY(0);}
}

.member-info h3 {
    font-size: 22px;
    color: #F00000;
    margin-bottom: 6px;
    letter-spacing: 1px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    text-shadow: 1px 1px 8px #000a;
}

.member-info p {
    font-size: 15px;
    color: #fff;
    line-height: 20px;
    font-family: 'DM Sans', sans-serif;
    background: linear-gradient(90deg, #F00000 0%, #5DE3E2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Kontaktformular Styles */
.contact-section {
    max-width: 600px;
    margin: 60px auto 80px auto;
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.25);
    padding: 40px 30px 30px 30px;
    color: #fff;
    animation: fadeIn 1s;
}

.contact-section h1 {
    text-align: center;
    color: #ff1616; /* Updated */
    font-family: 'DM Sans', sans-serif;
    font-size: 38px;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row input,
.form-row select {
    flex: 1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    padding: 12px 14px;
    border-radius: 7px;
    border: 1.5px solid #ff1616; /* Updated */
    background: #181818;
    color: #fff;
    margin-bottom: 0;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(240,0,0,0.04);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border: 2px solid #5DE3E2;
    box-shadow: 0 0 0 2px #5DE3E2aa;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button.cta-button {
    margin-top: 10px;
    width: 100%;
    font-size: 20px;
    padding: 14px 0;
    border-radius: 7px;
    background: linear-gradient(135deg, #ff1616 0%, #C00000 100%); /* Updated */
    color: #fff;
    border: 2px solid #ff1616; /* Updated */
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(240,0,0,0.12);
}

.contact-form button.cta-button:hover {
    background: #fff;
    color: #ff1616; /* Updated */
}



/* Kontaktmöglichkeiten über dem Formular */
.contact-options {
    background: linear-gradient(135deg, #181a1b 0%, #232526 100%);
    border-radius: 12px;
    box-shadow: 0 2px 12px 0 rgba(31,38,135,0.10);
    padding: 22px 18px 10px 18px;
    margin-bottom: 28px;
    color: #fff;
    text-align: left;
    animation: fadeIn 0.7s;
}
.contact-options h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ff1616;
    margin-bottom: 20px;
}





/* Tebex Banner Styles */
.tebex-banner {
    background: linear-gradient(135deg, #ff1616, #5DE3E2);
    color: white;
    padding: 12px 20px;
    text-align: center;
    position: relative;
    font-family: 'DM Sans', sans-serif;
    animation: slideDown 0.5s ease-out;
}

.tebex-banner .banner-text {
    display: inline-block;
    margin-right: 40px;
}

.tebex-banner .banner-discord-link {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.tebex-banner .banner-discord-link:hover {
    color: #85c1e9;
}

.tebex-banner .banner-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 18px;
    transition: color 0.3s;
}

.tebex-banner .banner-close:hover {
    color: #85c1e9;
}

.tebex-banner-hide {
    animation: slideUp 0.7s ease-out forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}



/* Tebex Banner Styles */
.tebex-banner {
    background: linear-gradient(135deg, #ff1616, #3498db);
    color: white;
    padding: 12px 20px;
    text-align: center;
    position: relative;
    font-family: 'DM Sans', sans-serif;
    animation: slideDown 0.5s ease-out;
}

.tebex-banner .banner-text {
    display: inline-block;
    margin-right: 40px;
}

.tebex-banner .banner-discord-link {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.tebex-banner .banner-discord-link:hover {
    color: #85c1e9;
}

.tebex-banner .banner-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 18px;
    transition: color 0.3s;
}

.tebex-banner .banner-close:hover {
    color: #85c1e9;
}

.tebex-banner-hide {
    animation: slideUp 0.7s ease-out forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}




 /* Mobile Navigation Styles */
        .mobile-nav-container {
            display: none;
        }
        
        @media (max-width: 768px) {
            .mobile-nav-container {
                display: block;
                position: fixed;
                top: 20px;
                right: 20px;
                z-index: 1000;
            }
            
            .desktop-nav {
                display: none;
            }
            
            .mobile-menu-toggle {
                background: rgba(0, 0, 0, 0.8);
                border: none;
                border-radius: 8px;
                padding: 12px;
                cursor: pointer;
                display: flex;
                flex-direction: column;
                gap: 4px;
                transition: all 0.3s ease;
                backdrop-filter: blur(10px);
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            }
            
            .mobile-menu-toggle:hover {
                background: rgba(0, 0, 0, 0.9);
                transform: scale(1.05);
            }
            
            .hamburger-line {
                width: 24px;
                height: 3px;
                background: white;
                border-radius: 2px;
                transition: all 0.3s ease;
            }
            
            .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
                transform: rotate(45deg) translate(6px, 6px);
            }
            
            .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
                opacity: 0;
            }
            
            .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
                transform: rotate(-45deg) translate(6px, -6px);
            }
            
            .mobile-nav-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.7);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                z-index: 998;
            }
            
            .mobile-nav-overlay.active {
                opacity: 1;
                visibility: visible;
            }
            
            .mobile-nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100%;
                background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
                backdrop-filter: blur(20px);
                padding: 80px 30px 30px;
                transition: all 0.3s ease;
                z-index: 999;
                overflow-y: auto;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
            }
            
            .mobile-nav-menu.active {
                right: 0;
            }
            
            .mobile-division-toggle {
                display: flex;
                background: rgba(255, 255, 255, 0.1);
                border-radius: 25px;
                padding: 4px;
                gap: 2px;
                margin-bottom: 30px;
            }
            
            .mobile-division-btn {
                flex: 1;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 6px;
                padding: 12px 8px;
                border: none;
                border-radius: 20px;
                background: transparent;
                color: #ccc;
                font-family: 'DM Sans', sans-serif;
                font-size: 13px;
                font-weight: 500;
                cursor: pointer;
                transition: all 0.3s ease;
            }
            
            .mobile-division-btn:hover {
                color: white;
                background: rgba(255, 255, 255, 0.1);
            }
            
            .mobile-division-btn.active {
                color: white;
                font-weight: 600;
            }
            
            .mobile-division-btn.mobile-gaming-btn.active {
                background: #ff1616;
                box-shadow: 0 4px 15px rgba(255, 22, 22, 0.3);
            }
            
            .mobile-division-btn.mobile-webdev-btn.active {
                background: linear-gradient(135deg, #3498db, #2980b9);
                box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
            }
            
            .mobile-division-btn .material-icons {
                font-size: 18px;
            }
            
            .mobile-nav-links {
                display: flex;
                flex-direction: column;
                gap: 8px;
                margin-bottom: 30px;
            }
            
            .mobile-nav-link {
                display: flex;
                align-items: center;
                gap: 12px;
                padding: 15px 20px;
                color: #ccc;
                text-decoration: none;
                border-radius: 12px;
                font-family: 'DM Sans', sans-serif;
                font-size: 16px;
                font-weight: 500;
                transition: all 0.3s ease;
                background: rgba(255, 255, 255, 0.05);
            }
            
            .mobile-nav-link:hover {
                color: white;
                background: rgba(255, 255, 255, 0.1);
                transform: translateX(5px);
            }
            
            .mobile-nav-link.shop-link {
                color: #5DE3E2;
                background: rgba(93, 227, 226, 0.1);
            }
            
            .mobile-nav-link.shop-link:hover {
                background: rgba(93, 227, 226, 0.2);
                color: #5DE3E2;
            }
            
            .mobile-nav-link .material-icons {
                font-size: 20px;
            }
            
            .mobile-login-container {
                padding-top: 20px;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .mobile-login-container .navbar-login-btn {
                width: 100%;
                padding: 15px;
                border-radius: 12px;
                font-size: 16px;
                justify-content: center;
                display: flex;
                align-items: center;
                gap: 8px;
            }
            
            .mobile-login-container .navbar-profile-circle {
                width: 50px;
                height: 50px;
                margin: 0 auto 15px;
            }
        }

/* ======================== GAMES PAGE STYLES ======================== */

/* Games Page Specific Styles */
.games-hero {
    background: linear-gradient(135deg, #1a1a1a, #333);
    padding: 80px 20px;
    text-align: center;
    border-bottom: 3px solid #ff1616;
}

.games-hero h1 {
    font-family: 'DM Sans', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.games-hero .highlight {
    color: #ff1616;
}

.games-hero p {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.games-container {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.game-card {
    background: linear-gradient(135deg, #222, #111);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    border: 1px solid #333;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 22, 22, 0.2);
    border-color: #ff1616;
}

.game-image {
    width: 100%;
    height: 250px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.game-image img {
    width: 80%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-placeholder {
    color: #666;
    font-size: 48px;
    opacity: 0.5;
}

.game-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-released {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.status-development {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.status-upcoming {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.game-content {
    padding: 30px;
}

.game-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.game-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.game-features {
    margin-bottom: 25px;
}

.game-features h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ff1616;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: rgba(255, 22, 22, 0.1);
    color: #ff1616;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(255, 22, 22, 0.3);
}

.game-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.game-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff1616, #cc1111);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #cc1111, #aa0f0f);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 22, 22, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ccc;
    border: 2px solid #444;
}

.btn-secondary:hover {
    background: #444;
    color: white;
    border-color: #666;
}

.btn-disabled {
    background: #333;
    color: #666;
    cursor: not-allowed;
}

.btn-disabled:hover {
    transform: none;
    box-shadow: none;
}

.coming-soon-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    margin-top: 60px;
    border-radius: 15px;
}

.coming-soon-section h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.coming-soon-section p {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Games Page Mobile Optimizations */
@media (max-width: 768px) {
    .games-hero {
        padding: 60px 15px;
    }

    .games-hero h1 {
        font-size: 36px;
    }

    .games-hero p {
        font-size: 16px;
    }

    .games-container {
        padding: 40px 15px;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .game-card {
        margin: 0 10px;
    }

    .game-content {
        padding: 20px;
    }

    .game-actions {
        flex-direction: column;
    }

    .game-btn {
        width: 100%;
    }

    .coming-soon-section {
        padding: 60px 15px;
        margin-top: 40px;
    }

    .coming-soon-section h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .games-hero h1 {
        font-size: 28px;
    }

    .games-hero p {
        font-size: 14px;
    }

    .game-image {
        height: 200px;
    }

    .game-title {
        font-size: 20px;
    }

    .game-description {
        font-size: 14px;
    }
}

.btn-play {
    background: #ff1616;
    color: #fff;
}

.btn-play:hover {
    background: #e50000;
    transform: translateY(-2px);
}

.btn-info {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-info:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-wishlist {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.btn-wishlist:hover {
    background: rgba(255, 165, 0, 0.3);
    transform: translateY(-2px);
}

.btn-discord {
    background: rgba(88, 101, 242, 0.2);
    color: #5865f2;
    border: 1px solid rgba(88, 101, 242, 0.3);
}

.btn-discord:hover {
    background: rgba(88, 101, 242, 0.3);
    transform: translateY(-2px);
}

.btn-beta {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.btn-beta:hover {
    background: rgba(255, 165, 0, 0.3);
    transform: translateY(-2px);
}

.btn-newsletter {
    background: rgba(0, 255, 255, 0.2);
    color: #00ffff;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.btn-newsletter:hover {
    background: rgba(0, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Loading and Error States */
.loading-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #888;
    animation: pulse 2s infinite;
}

.loading-message h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ff1616;
}

.error-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #ff1616;
    background: rgba(255, 22, 22, 0.1);
    border: 1px solid rgba(255, 22, 22, 0.3);
    border-radius: 15px;
}

.error-message h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.4; }
}

/* ======================== END GAMES PAGE STYLES ======================== */