        :root {
            --bg-color: #0f0a0a;
            --curtain-red: #581818;
            --gold: #dfb76c;
            --text-light: #f5eded;
            --text-muted: #a39999;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--bg-color);
            color: var(--text-light);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            overflow-x: hidden;
            position: relative;
        }

        /* Subtile Theater-Atmosphäre im Hintergrund */
        body::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: 
                radial-gradient(circle at 50% 30%, rgba(88, 24, 24, 0.4) 0%, transparent 70%),
                linear-gradient(to bottom, rgba(15, 10, 10, 0.2), rgba(15, 10, 10, 0.9));
            z-index: -1;
        }

        .container {
            max-width: 800px;
            width: 100%;
            padding: 40px 20px;
            text-align: center;
            z-index: 1;
        }

        .logo-area {
            margin-bottom: 30px;
        }

        .icon {
            font-size: 3.5rem;
            margin-bottom: 10px;
            display: inline-block;
            /*animation: float 4s ease-in-out infinite;*/
        }

        h1 {
            font-size: 3rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-light);
            margin-bottom: 10px;
        }

        h1 span {
            color: var(--gold);
        }

        .subtitle {
            font-size: 1.25rem;
            color: var(--text-muted);
            margin-bottom: 40px;
            font-weight: 300;
        }

        /* Countdown-Zähler */
        .countdown {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 50px;
        }

        .countdown-item {
            background: rgba(88, 24, 24, 0.2);
            border: 1px solid rgba(223, 183, 108, 0.3);
            border-radius: 8px;
            padding: 15px;
            min-width: 90px;
            backdrop-filter: blur(5px);
        }

        .countdown-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--gold);
            display: block;
        }

        .countdown-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
        }

        /* Newsletter / Benachrichtigung */
        .cta-box {
            background: rgba(255, 255, 255, 0.03);
            padding: 30px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            max-width: 550px;
            margin: 0 auto 40px auto;
        }

        .cta-box p {
            margin-bottom: 20px;
            color: var(--text-light);
        }

        .form-group {
            /*display: flex;*/
            gap: 10px;
        }

        input[type="email"] {
            flex: 1;
            padding: 15px 20px;
            border-radius: 6px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(0, 0, 0, 0.3);
            color: var(--text-light);
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }

        input[type="email"]:focus {
            border-color: var(--gold);
        }

        button {
            padding: 15px 25px;
            border-radius: 6px;
            border: none;
            background: linear-gradient(135deg, var(--gold) 0%, #b89149 100%);
            color: #000;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(223, 183, 108, 0.3);
        }

        /* Footer / Kontakt */
        footer {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        footer a {
            color: var(--gold);
            text-decoration: none;
            cursor: pointer;
        }

        footer a:hover {
            text-decoration: underline;
        }

        /* Animation für das Icon */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* Rechtliche Overlays (Modals) */
        .legal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(15, 10, 10, 0.95);
            backdrop-filter: blur(8px);
            z-index: 100;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .legal-overlay.visible {
            opacity: 1;
            pointer-events: auto;
        }

        .legal-content {
            background-color: rgba(88, 24, 24, 0.15);
            border: 1px solid rgba(223, 183, 108, 0.2);
            border-radius: 12px;
            max-width: 650px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            padding: 40px 30px;
            position: relative;
            text-align: left;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .legal-content h2 {
            color: var(--gold);
            margin-bottom: 20px;
            font-size: 1.8rem;
            border-bottom: 1px solid rgba(223, 183, 108, 0.2);
            padding-bottom: 10px;
        }

        .legal-content h3 {
            color: var(--text-light);
            margin: 20px 0 10px 0;
            font-size: 1.2rem;
        }

        .legal-content p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 2rem;
            color: var(--text-muted);
            cursor: pointer;
            line-height: 1;
            transition: color 0.2s;
        }

        .close-btn:hover {
            color: var(--gold);
        }

        /* Responsive Anpassung */
        @media (max-width: 600px) {
            h1 { font-size: 2rem; }
            .countdown { gap: 10px; }
            .countdown-item { min-width: 70px; padding: 10px; }
            .countdown-number { font-size: 1.8rem; }
            .form-group { flex-direction: column; }
            button { width: 100%; }
            .legal-content { padding: 30px 20px; }
        }
