/* --- VARIABLEN & RESET (Globales Design) --- */
        :root {
            --bg-dark: #050505;
            --bg-gradient: linear-gradient(180deg, #050505 0%, #121212 100%);
            --accent-gradient: linear-gradient(135deg, #ffd27a 0%, #ffb86b 100%);
            --glass-bg: rgba(255, 255, 255, 0.03);
            --glass-border: rgba(255, 255, 255, 0.06);
            --glass-highlight: rgba(255, 255, 255, 0.1);
            --text-main: #eaeaea;
            --text-muted: #a0a0a0;
            --font-main: 'Inter', sans-serif;
            --container-width: 1100px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scrollbar-width: none;
            -ms-overflow-style: none;
            scroll-behavior: smooth;
        }
        
        html::-webkit-scrollbar {
            display: none;
        }

        body {
            min-height: 100vh;
            font-family: var(--font-main);
            background: var(--bg-gradient);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
        }

        /* --- LAYOUT UTILITIES --- */
        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.2s ease;
        }

        /* --- HEADER --- */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--glass-border);
            background: rgba(5, 5, 5, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .header-inner {
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 800;
            font-size: 1.25rem;
            letter-spacing: -0.02em;
        }
        
        .brand .logo {
            height: 32px;
            width: auto;
        }

        .nav {
            display: flex;
            gap: 4px;
        }

        .nav a {
            position: relative;
            color: var(--text-muted);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 8px 16px;
            border-radius: 99px;
            transition: color 0.3s ease, background 0.3s ease;
        }

        .nav a:hover, .nav a.active {
            color: #fff;
            background: var(--glass-bg);
        }

        /* --- MAIN CONTENT --- */
        main {
            padding-top: 140px;
            padding-bottom: 80px;
            flex-grow: 1; /* Drückt Footer nach unten */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .coming-soon-card {
            background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 60px 40px;
            max-width: 600px;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        /* Deko-Element (Glow) */
        .coming-soon-card::before {
            content: '';
            position: absolute;
            top: -50px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 150px;
            background: var(--accent-gradient);
            filter: blur(80px);
            opacity: 0.2;
            pointer-events: none;
        }

        h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 16px;
            background: linear-gradient(to bottom right, #ffffff, #b0b0b0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }

        .icon-large {
            font-size: 4rem;
            margin-bottom: 24px;
            display: inline-block;
            animation: float 6s ease-in-out infinite;
        }

        p.lead {
            color: var(--text-muted);
            font-size: 1.1rem;
            margin-bottom: 32px;
            position: relative;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.2s ease;
            border: 1px solid transparent;
            text-decoration: none;
        }
        
        .btn.secondary {
            background: var(--glass-bg);
            border-color: var(--glass-border);
            color: #fff;
        }

        .btn.secondary:hover {
            background: var(--glass-highlight);
            transform: translateY(-2px);
        }

        /* --- ANIMATION --- */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        /* --- FOOTER --- */
        .site-footer {
            margin-top: auto; /* Footer am Seitenende */
            border-top: 1px solid var(--glass-border);
            padding: 40px 0;
            background: rgba(0,0,0,0.2);
            text-align: center;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            .header-inner {
                flex-direction: column;
                height: auto;
                padding: 16px 0;
                gap: 16px;
            }
            .nav {
                flex-wrap: wrap;
                justify-content: center;
            }
            main {
                padding-top: 160px;
            }
            h1 {
                font-size: 2.5rem;
            }
            .coming-soon-card {
                margin-top: 100px;
            }
        }