/* ====================================================================
   CONFLICT STUDIOS - MAIN STYLESHEET
   ====================================================================
   NOTE: All button and control styles are now centralized in controls.css
   This file contains layout, colors, and component-specific styles.
   ==================================================================== */

.agb-category.webdev h2::after {
    content: '';
    display: block;
    margin-top: 8px;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--webdev-primary), transparent);
    border-radius: 2px;
}

/* ======================== WEBDEV VARIANTEN FÜR PARTNER/AGB ======================== */

/* WebDev-AGB-Hero: wie agb-hero, aber in WebDev-Farben */
.agb-hero.webdev {
    padding: 80px 0 50px 0;
    border-bottom: 3px solid var(--webdev-secondary);
    text-align: center;
    position: relative;
    z-index: 1;
}

.agb-hero.webdev h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #fff;
    letter-spacing: 1px;
}

.agb-hero.webdev h1 .highlight {
    color: var(--webdev-primary);
}

.agb-hero.webdev .desc {
    font-size: 20px;
    color: #eaf6fb;
    margin: 0 auto;
    max-width: 700px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .agb-hero.webdev {
        padding: 60px 25px 40px 25px;
    }

    .agb-hero.webdev h1 {
        font-size: 36px;
    }

    .agb-hero.webdev .desc {
        font-size: 16px;
    }
}

.agb-category.webdev {
    background: rgba(52, 152, 219, 0.07);
    border-left: 5px solid var(--webdev-primary);
}

.agb-category.webdev h2,
.agb-category.webdev h2 .material-icons {
    color: var(--webdev-primary);
}

.agb-link-card.webdev {
    border-left: 4px solid var(--webdev-primary);
}

.agb-link-card.webdev .material-icons {
    color: var(--webdev-primary);
}

.agb-link-card.webdev h3 {
    color: var(--webdev-primary);
}

.agb-link-card.webdev p {
    color: #eaf6fb;
}


/* WebDev-AGB-Important: wie agb-important, aber in Blau statt Rot */
.agb-important.webdev {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.10), rgba(52, 152, 219, 0.05));
    border-radius: 16px;
    padding: 30px;
    margin: 40px 0;
    border: 1px solid rgba(52, 152, 219, 0.3);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.agb-important.webdev .material-icons {
    font-size: 32px;
    color: var(--webdev-primary);
    margin-top: 5px;
}

.agb-important.webdev .agb-important-content h3 {
    font-size: 22px !important;
    margin-bottom: 12px !important;
    color: var(--webdev-primary);
}

.agb-important.webdev .agb-important-content p {
    font-size: 16px !important;
    color: #fff !important;
    line-height: 1.6 !important;
}

.agb-important.webdev.agb-contact-variant {
    background: linear-gradient(135deg, var(--webdev-accent) 0%, var(--webdev-light) 100%);
    border: 1px solid var(--webdev-primary);
}

.agb-important.webdev.agb-contact-variant .material-icons,
.agb-important.webdev.agb-contact-variant h3 {
    color: var(--webdev-primary);
}

.agb-important.webdev.agb-contact-variant p {
    color: #eaf6fb;
}

.agb-important.webdev.agb-contact-variant .cta-button {
    background: var(--webdev-primary);
    color: #fff;
}

.legal-partner.webdev {
    background: rgba(52, 152, 219, 0.07);
    border: 1px solid var(--webdev-primary);
}

.legal-partner.webdev .legal-partner-title {
    color: var(--webdev-primary);
}

:root {
    --webdev-primary: #3498db;
    --webdev-secondary: #2980b9;
    --webdev-accent: #5dade2;
    --webdev-light: #85c1e9;

    --gaming-primary: #e74c3c;
    --gaming-secondary: #c0392b;
    --gaming-accent: #a93226;
    --gaming-light: #ec7063;
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #fff;
    margin: 0;
    padding: 0;

}

* {
    caret-color: transparent;
}

/* Stripe portal button styles moved to controls.css */
.stripe-portal-button {
    position: fixed;
    right: -180px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 20px 0 0 20px;
    box-shadow: -5px 0 20px rgba(99, 102, 241, 0.4);
    z-index: 1000;
    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: 7px 20px 7px 20px;
    background-color: #000;
    border-bottom: 2px solid;
    border-color: var(--gaming-primary);
}

/* 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,

    /* Klassischer, stark abgerundeter Button für .cta-button */
    .cta-button {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-family: 'DM Sans', Arial, sans-serif;
        font-size: 17px;
        font-weight: 600;
        letter-spacing: 0.2px;
        padding: 13px 32px;
        border-radius: 999px;
        border: none;
        cursor: pointer;
        background: var(--webdev-primary);
        color: #fff;
        box-shadow: 0 2px 12px rgba(52, 152, 219, 0.18);
        text-decoration: none;
        transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    }

    .cta-button:hover {
        background: var(--webdev-secondary);
        color: #fff;
        box-shadow: 0 4px 18px rgba(52, 152, 219, 0.22);
    }

    .cta-button span {
        position: relative;
        z-index: 1;
    }
}

.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: var(--gaming-primary);
    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;
    align-items: center;
    padding: 0;
    transition:
        background 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        padding 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        border-radius 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Floating nav pill appear animation ─────────────── */
@keyframes navPillIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ── Floating nav pill (scrolled state) ─────────────── */
body.nav-scrolled header nav ul,
body.nav-scrolled .desktop-nav ul,
body.nav-scrolled nav.desktop-nav ul {
    position: fixed;
    top: 10px;
    right: 20px;
    z-index: 1001;
    background: rgba(8, 8, 12, 0.58);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 32px;
    padding: 6px 16px;
    gap: 10px;
    box-shadow:
        0 4px 28px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.03);
    animation: navPillIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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: 56px 40px;
    padding-top: 36px;
    /* Platz für den Header */
}

.about h1 {
    text-align: center;
    color: red;
}

.hero {
    background-position: center;
    padding: 0px 60px;
    text-align: center;
}

.hero .desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    margin-top: 16px;
    line-height: 1.65;
}

.hero h1 {
    font-family: 'DM Sans', sans-serif;
    font-size: 38px;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    margin-bottom: 14px;
}

.hero h1 .highlight {
    font-weight: 900;
    color: var(--gaming-primary);
    /* Updated */
}

.hero h1.highlight {
    font-size: 100px;
    color: var(--gaming-primary);
    /* Updated */
    margin-bottom: 20px;
}


.hero .buttons {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.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 var(--gaming-primary);
    /* 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: var(--gaming-primary) !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;
}


/* Button styles moved to controls.css */

.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-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: var(--gaming-primary);
}

.store-content p {
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}


/* Button styles moved to controls.css */


.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: var(--gaming-primary);
}

.store-content p {
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

/* Button styles moved to controls.css */

.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-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: var(--gaming-primary);
}

.store-content p {
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}


/* Button styles moved to controls.css */


.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-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: var(--gaming-primary);
}

.store-content p {
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

/* Button styles moved to controls.css */

.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: var(--gaming-primary);
    /* 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: var(--gaming-primary) !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: 50px 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: 19px;
    color: #ddd;
    margin-top: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.about-us,
.experience,
.unique,
.team,
.cta {
    margin: 40px 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);
}

/* Button styles moved to controls.css */

@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: var(--gaming-primary);
    /* 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 var(--gaming-primary);
    /* Updated */
}

.member h3 {
    font-size: 20px;
    color: var(--gaming-primary);
    /* Updated */
    margin-bottom: 5px;
}

.member p {
    font-size: 16px;
    color: #ccc;
    line-height: 19px;
}

/* .cta-button styles moved to controls.css */


/* 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 #143b56;
    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 var(--gaming-primary), 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 rgba(231, 76, 60, 0.667));
    box-shadow: 0 0 0 6px var(--gaming-primary), 0 4px 24px rgba(231, 76, 60, 0.333);
}

.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, var(--gaming-primary) 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: var(--gaming-primary);
    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: var(--webdev-primary);
    line-height: 20px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Kontaktformular Styles */
.contact-section {
    max-width: 600px;
    margin: 40px auto 50px 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: var(--gaming-primary);
    /* 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 var(--gaming-primary);
    /* 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 styles moved to controls.css */



/* 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: var(--gaming-primary);
    margin-bottom: 20px;
}





/* Tebex Banner Styles */
.tebex-banner {
    background: linear-gradient(135deg, var(--gaming-primary), #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, var(--gaming-primary), #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: var(--gaming-primary);
        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 var(--gaming-primary);
}

.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: var(--gaming-primary);
}

.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: var(--gaming-primary);
}

.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: var(--gaming-primary);
    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: var(--gaming-primary);
    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, .btn-secondary, .btn-disabled styles moved to controls.css */

.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: var(--gaming-primary);
    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: var(--gaming-primary);
}

.error-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--gaming-primary);
    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 ======================== */

/* ======================== AGB PAGE STYLES ======================== */

/* AGB Page Specific Styles */
.agb-page main {
    max-width: 1400px;
    margin: 0 auto;
}

.agb-hero {
    padding: 80px 50px !important;
    margin-bottom: 60px;
    text-align: center;
}

.agb-hero h1 {
    font-size: 64px !important;
    margin-bottom: 20px !important;
    background: linear-gradient(135deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.agb-hero h1 .highlight {
    background: linear-gradient(135deg, var(--gaming-primary), var(--gaming-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.agb-hero .desc {
    font-size: 20px !important;
    color: #aaa !important;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

.agb-section {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 50px;
}

.agb-category {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)) !important;
    border-radius: 24px !important;
    padding: 40px !important;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease !important;
}

.agb-category:hover {
    transform: translateY(-5px) !important;
    border-color: rgba(255, 22, 22, 0.2) !important;
    box-shadow: 0 20px 60px rgba(255, 22, 22, 0.1) !important;
}

.agb-category h2 {
    font-size: 36px !important;
    margin-bottom: 30px !important;
    font-weight: 700 !important;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.agb-category h2 .material-icons {
    font-size: 40px;
    color: var(--gaming-primary);
}

.agb-category h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gaming-primary), transparent);
    border-radius: 2px;
}

.agb-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.agb-link-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px 30px;
    border-radius: 16px;
    border-left: 4px solid var(--gaming-primary);
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.agb-link-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    border-left-width: 6px;
    box-shadow: 0 4px 20px rgba(255, 22, 22, 0.2);
}

.agb-link-card .material-icons {
    font-size: 32px;
    color: var(--gaming-primary);
    transition: transform 0.3s ease;
}

.agb-link-card:hover .material-icons {
    transform: scale(1.2);
}

.agb-link-content {
    flex: 1;
}

.agb-link-content h3 {
    font-size: 20px !important;
    margin-bottom: 8px !important;
    font-weight: 600 !important;
}

.agb-link-content p {
    font-size: 14px !important;
    color: #aaa !important;
    line-height: 1.5 !important;
    margin: 0;
}

.agb-important {
    background: linear-gradient(135deg, rgba(255, 22, 22, 0.1), rgba(255, 22, 22, 0.05));
    border-radius: 16px;
    padding: 30px;
    margin: 40px 0;
    border: 1px solid rgba(255, 22, 22, 0.3);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.agb-important .material-icons {
    font-size: 32px;
    color: var(--gaming-primary);
}

.agb-important-content h3 {
    font-size: 22px !important;
    margin-bottom: 12px !important;
    color: var(--gaming-primary);
}

.agb-important-content p {
    font-size: 16px !important;
    color: #ccc !important;
    line-height: 1.6 !important;
}

/* AGB Contact Section Variant */
.agb-important.agb-contact-variant {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(52, 152, 219, 0.05));
    border-color: rgba(52, 152, 219, 0.3);
}

.agb-important.agb-contact-variant .material-icons {
    color: #3498db;
}

.agb-important.agb-contact-variant .cta-button .material-icons {
    color: #ffffff;
}

.agb-important.agb-contact-variant .agb-important-content h3 {
    color: #3498db;
}

.agb-important.agb-contact-variant .cta-button {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Legal Partner Section */
.legal-partner {
    text-align: center;
    margin-top: 60px;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-partner-title {
    font-size: 14px;
    color: #888;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.legal-partner-logos a {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.legal-partner-logos a:hover {
    transform: translateY(-5px);
}

.legal-partner-logos img {
    height: 80px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.legal-partner-logos a:hover img {
    opacity: 1;
}

/* Banner Material Icons Inline Style */
.banner-icon-inline {
    vertical-align: middle;
}

/* AGB Page Mobile Optimization */
@media (max-width: 768px) {
    .agb-hero {
        padding: 60px 25px 40px !important;
    }

    .agb-hero h1 {
        font-size: 36px !important;
    }

    .agb-hero .desc {
        font-size: 16px !important;
    }

    .agb-section {
        padding: 0 25px;
    }

    .agb-category {
        padding: 25px !important;
    }

    .agb-category h2 {
        font-size: 24px !important;
    }

    .agb-links {
        grid-template-columns: 1fr;
    }

    .agb-important {
        flex-direction: column;
        padding: 20px;
    }
}

/* ======================== END AGB PAGE STYLES ======================== */

/* ======================== KONTAKT PAGE STYLES ======================== */

/* Mobile Navigation for Kontakt Page */
.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;
    }
}

/* Main Layout Styles */
.page-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease;
}

.page-header h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    margin: 24px auto;
    border-radius: 2px;
}

/* Contact Grid Layout */
.contact-container {
    display: grid;
    gap: 30px;
    margin-bottom: 60px;
}

/* Quick Contact Cards */
.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title .material-icons {
    background: linear-gradient(135deg, #3498db, #2ecc71);
    border-radius: 10px;
    padding: 8px;
    font-size: 24px;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
    max-width: 100%;
}

.contact-card {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05), rgba(46, 204, 113, 0.02));
    border: 1px solid rgba(52, 152, 219, 0.2);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.8), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.contact-card:hover::before {
    transform: translateX(100%);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.2);
    border-color: rgba(52, 152, 219, 0.4);
}

/* WhatsApp Card - Grün */
.contact-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.05), rgba(18, 140, 126, 0.02));
    border-color: rgba(37, 211, 102, 0.2);
}

.contact-card:nth-child(3)::before {
    background: linear-gradient(90deg, transparent, rgba(37, 211, 102, 0.8), transparent);
}

.contact-card:nth-child(3):hover {
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.4);
}

.contact-card:nth-child(3) .card-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-card:nth-child(3) .contact-link {
    color: #25d366 !important;
}

.contact-card:nth-child(3) .contact-link:hover {
    color: #128c7e !important;
}

.contact-card:nth-child(3) .action-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon .material-icons,
.card-icon svg {
    color: white !important;
    font-size: 28px;
}

.card-title h3 {
    margin: 0 0 6px 0;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.card-title p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.contact-value {
    flex: 1;
}

.contact-link {
    color: #3498db !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #2ecc71 !important;
    text-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
}

.card-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: white !important;
    transition: all 0.3s ease;
}

.action-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
}

.action-btn .material-icons {
    font-size: 20px;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.1);
}

.copy-btn:hover {
    background: rgba(52, 152, 219, 0.2);
}

.copy-btn.copied {
    background: rgba(46, 204, 113, 0.3) !important;
    color: #2ecc71 !important;
}

/* Contact Form */
.form-section {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.03), rgba(46, 204, 113, 0.02));
    border: 1px solid rgba(52, 152, 219, 0.2);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(10px);
    margin-bottom: 60px;
}

.form-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    text-align: center;
}

.form-section .subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3498db;
    background: rgba(52, 152, 219, 0.1);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form option {
    background: #1a1a1a;
    color: white;
}

.form-section .cta-button {
    width: 100%;
    padding: 14px 30px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-section .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(52, 152, 219, 0.3);
}

.form-section .cta-button::after {
    content: '→';
    font-size: 20px;
    transition: transform 0.3s ease;
}

.form-section .cta-button:hover::after {
    transform: translateX(4px);
}

/* Social Media Section */
.social-section {
    margin-bottom: 60px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.social-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.5s ease;
}

.social-card:hover::before {
    left: 100%;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.15);
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.social-card:hover .social-icon {
    transform: scale(1.1);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.social-content h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
}

.social-content p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* Brand Colors */
.instagram-card:hover {
    border-color: rgba(253, 29, 29, 0.3);
}

.instagram-card .social-icon {
    background: linear-gradient(135deg, #833AB4, #FD1D1D);
}

.instagram-card h4 {
    color: #FD1D1D;
}

.whatsapp-card:hover {
    border-color: rgba(37, 211, 102, 0.3);
}

.whatsapp-card .social-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.whatsapp-card h4 {
    color: #25d366;
}

.discord-card:hover {
    border-color: rgba(114, 137, 218, 0.3);
}

.discord-card .social-icon {
    background: linear-gradient(135deg, #7289da, #5865f2);
}

.discord-card h4 {
    color: #7289da;
}

.youtube-card:hover {
    border-color: rgba(255, 0, 0, 0.3);
}

.youtube-card .social-icon {
    background: linear-gradient(135deg, var(--gaming-primary), var(--gaming-secondary));
}

.youtube-card h4 {
    color: var(--gaming-primary);
}

.github-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.github-card .social-icon {
    background: linear-gradient(135deg, #333333, #24292e);
}

.twitter-card:hover {
    border-color: rgba(29, 161, 242, 0.3);
}

.twitter-card .social-icon {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.twitter-card h4 {
    color: #1da1f2;
}

/* Success Popup */
.success-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.success-popup-content {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border: 2px solid rgba(46, 204, 113, 0.3);
    border-radius: 24px;
    padding: 48px;
    max-width: 500px;
    text-align: center;
    position: relative;
    animation: slideUp 0.4s ease;
}

.success-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 28px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-popup-close:hover {
    color: #2ecc71;
    transform: rotate(90deg);
}

.success-popup-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
}

.success-popup h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2ecc71;
}

.success-popup p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Desig1300px) and (min-width: 1147px) {
    .quick-contact-grid {
        grid-template-columns: repeat(2, minmax(300px, 500px));
        justify-content: center;
    }
}

@media (max-width: 1146px) and (min-width: 769px) {
    .quick-contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 450px));
        justify-content: center;
    }
}

@media (max-width: n */
@media (max-width: 768px) {
    .page-header {
        margin-bottom: 60px;
    }

    .quick-contact-grid,
    .social-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-card,
    .form-section {
        padding: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .success-popup-content {
        margin: 20px;
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .card-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .card-actions {
        align-self: flex-end;
    }
}

/* ======================== END KONTAKT PAGE STYLES ======================== */

/* ======================== SERVICE DETAIL PAGE STYLES ======================== */

/* ── Detail Hero ─────────────────────────────────────── */
.detail-hero {
    padding: 80px 0 72px;
    text-align: center;
    border-bottom: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
}

.detail-hero .hero-badge {
    grid-column: 2;
    justify-self: center;
    margin: 0 0 22px;
}

.detail-hero .back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    grid-column: 1;
    justify-self: start;
    margin: 0 0 22px;
    transform: none;
    transition: color 0.2s;
}

.detail-hero .back-link:hover {
    color: var(--blue-soft);
}

.detail-hero .back-link .material-icons {
    font-size: 16px;
}

.detail-hero h1 {
    grid-column: 1 / -1;
    font-family: 'DM Sans', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1.1;
    margin: 16px 0 20px;
}

.detail-hero p {
    grid-column: 1 / -1;
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.detail-hero .price-tag {
    grid-column: 1 / -1;
    justify-self: center;
    width: fit-content;
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--blue);
    background: rgba(52, 152, 219, 0.08);
    border: 1px solid var(--border-blue);
    border-radius: 50px;
    padding: 8px 24px;
    margin-bottom: 36px;
}

.detail-hero .btn-row {
    grid-column: 1 / -1;
}

/* ── Detail Content Section ──────────────────────────── */
.detail-section {
    padding: var(--section-gap) 0;
    border-top: 1px solid var(--border);
}

/* ── Two-col layout ──────────────────────────────────── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.two-col .col-text h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    margin: 0 0 14px;
}

.two-col .col-text p {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75;
    margin: 0 0 16px;
}

/* ── Feature pills ───────────────────────────────────── */
.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--text);
    transition: border-color 0.2s, background 0.2s;
}

.feature-pill:hover {
    border-color: var(--border-blue);
    background: rgba(52, 152, 219, 0.07);
}

.feature-pill .material-icons {
    font-size: 15px;
    color: var(--blue);
}

/* ── Deep feature list ───────────────────────────────── */
.deep-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.deep-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.deep-list .dl-icon {
    flex: 0 0 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(52, 152, 219, 0.1);
    border: 1px solid var(--border-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.deep-list .dl-icon .material-icons {
    font-size: 18px;
    color: var(--blue);
}

.deep-list .dl-body h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 4px;
}

.deep-list .dl-body p {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

/* ── Tech stack grid ─────────────────────────────────── */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
}

.tech-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 18px;
    text-align: center;
    transition: border-color 0.25s, background 0.25s, transform 0.2s;
}

.tech-item:hover {
    border-color: var(--border-blue);
    background: var(--bg-card-hov);
    transform: translateY(-3px);
}

.tech-item .material-icons {
    font-size: 28px;
    color: var(--blue);
    display: block;
    margin-bottom: 10px;
}

.tech-item span.name {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 4px;
}

.tech-item span.desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--muted);
}

/* ── Use case cards ──────────────────────────────────── */
.usecase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.usecase-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    transition: border-color 0.25s, transform 0.2s;
}

.usecase-card:hover {
    border-color: var(--border-blue);
    transform: translateY(-3px);
}

.usecase-card .material-icons {
    font-size: 24px;
    color: var(--blue);
    margin-bottom: 12px;
    display: block;
}

.usecase-card h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 8px;
}

.usecase-card p {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

/* ── FAQ accordion ───────────────────────────────────── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    gap: 16px;
    user-select: none;
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-question .material-icons {
    color: var(--blue);
    font-size: 20px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.faq-item.open .faq-question .material-icons {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 18px;
}

.faq-answer p {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* ── Pricing table ───────────────────────────────────── */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'DM Sans', sans-serif;
}

.pricing-table th,
.pricing-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.pricing-table thead th {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--muted);
}

.pricing-table tbody td {
    color: var(--text);
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.pricing-table .price-cell {
    color: var(--blue);
    font-weight: 700;
    white-space: nowrap;
}

/* ── Service detail responsive ───────────────────────── */
@media (max-width: 860px) {
    .two-col {
        grid-template-columns: 1fr;
    }

    .detail-hero h1 {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    .detail-hero {
        padding: 60px 0 52px;
        grid-template-columns: 1fr;
    }

    .detail-hero .back-link {
        grid-column: 1;
        grid-row: 1;
        justify-self: center;
        font-size: 12px;
        margin-bottom: 14px;
    }

    .detail-hero .hero-badge {
        grid-column: 1;
        grid-row: 2;
        justify-self: center;
    }

    .detail-hero h1 {
        font-size: 28px;
    }
}

/* ── Service Block (combined detail pages) ─── */
.service-block {
    padding: var(--section-gap) 0;
    border-top: 1px solid var(--border);
}

.tab-panel.service-block {
    border-top: none;
    padding-top: 0;
}

.service-block-header {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.service-block-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.service-block-badge.blue {
    background: rgba(52, 152, 219, 0.12);
    color: var(--blue);
    border: 1px solid var(--border-blue);
}

.service-block-badge.subtle {
    background: var(--bg-card);
    color: var(--muted);
    border: 1px solid var(--border);
}

.service-block-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    margin: 0;
}

.service-block-price {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--blue);
    margin-left: auto;
}

/* ── Service Divider ─── */
.service-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: calc(var(--section-gap) * 0.5) 0;
}

.service-divider::before,
.service-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.service-divider span {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--muted);
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ── Comparison Cards ─── */
.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.comparison-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color 0.25s, background 0.25s, transform 0.2s;
}

.comparison-card:hover {
    border-color: var(--border-blue);
    background: var(--bg-card-hov);
    transform: translateY(-3px);
}

.comparison-card.recommended {
    border-color: var(--border-blue);
}

.comparison-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.comparison-card p {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

.comparison-card .cc-price {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--blue);
    margin-top: 4px;
}

.comparison-card .cc-arrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--blue-soft);
    margin-top: auto;
    padding-top: 12px;
}

@media (max-width: 600px) {
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .service-block-title {
        font-size: 24px;
    }

    .service-block-price {
        margin-left: 0;
    }
}

/* ── Tab Bar ─── */
.tab-bar {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 0 0 48px;
    border-top: none;
}

.tab-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 28px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    text-align: left;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.tab-card:hover {
    border-color: var(--border-blue);
    background: var(--bg-card-hov);
    transform: translateY(-2px);
}

.tab-card.active {
    border-color: var(--blue);
    background: rgba(52, 152, 219, 0.08);
}

.tab-card .tc-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    transition: color 0.2s;
}

.tab-card.active .tc-title {
    color: var(--blue);
}

.tab-card .tc-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    flex: 1;
}

.tab-card .tc-price {
    font-size: 15px;
    font-weight: 800;
    color: var(--blue);
    margin-top: 4px;
}

.tab-panel[hidden] {
    display: none;
}

@media (max-width: 600px) {
    .tab-bar { flex-direction: column; }
    .tab-card { padding: 16px 18px; }
}

/* ======================== END SERVICE DETAIL PAGE STYLES ======================== */