:root {
            --primary-blue: #1E51A4;
            --accent-grey: #6B6B6B;
            --white: #FFFFFF;
            --dark: #1a1a1a;
            --bg-light: #F4F7FA;
            --footer-bg: #232931;

            --gold: var(--primary-blue);
            --gold-matt: var(--accent-grey);
        }

        body {
            margin: 0;
            font-family: 'Inter', sans-serif;
            background-color: var(--dark);
            color: white;
            line-height: 1.6;
            font-weight: 300;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        @keyframes fadeInEffect {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero {
            background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(26, 26, 26, 0.8)),
                              url('https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1?auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 40px 20px;
            box-sizing: border-box;
        }

        .logo-top {
            font-weight: 300;
            color: white; /* KORREKTUR: Von Blau auf Weiß gesetzt für bessere Sichtbarkeit */
            letter-spacing: 4px;
            text-transform: uppercase;
            font-size: 1rem;
            margin-bottom: 25px;
            animation: fadeInEffect 0.8s ease-out forwards;
        }

        h1 {
            font-size: clamp(1.4rem, 5vw, 2.2rem);
            font-weight: 300;
            letter-spacing: 3px;
            margin: 0;
            text-transform: uppercase;
            animation: fadeInEffect 1s ease-out 0.2s forwards;
            opacity: 0;
        }

        .subline {
            font-size: clamp(0.8rem, 3vw, 0.95rem);
            letter-spacing: 2px;
            opacity: 0;
            margin-top: 15px;
            animation: fadeInEffect 1s ease-out 0.4s forwards;
            font-weight: 300;
        }

        .portal-grid {
            display: flex;
            gap: 20px;
            margin-top: 45px;
            flex-wrap: wrap;
            justify-content: center;
            animation: fadeInEffect 1s ease-out 0.6s forwards;
            opacity: 0;
        }

        .portal-card {
            border: 1px solid var(--gold);
            padding: 12px 35px;
            text-decoration: none;
            color: white;
            font-size: 0.85rem;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            background: rgba(0,0,0,0.4);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            min-width: 170px;
            font-weight: 300;
        }

        .portal-card:hover {
            background: var(--gold);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(30, 81, 164, 0.5);
        }

        footer {
            background: var(--footer-bg);
            color: white;
            padding: 35px 20px;
            text-align: center;
            z-index: 10;
        }

        .copyright {
            font-size: 0.7rem;
            letter-spacing: 1px;
            margin: 0;
            font-weight: 300;
            text-transform: uppercase;
            opacity: 0.6;
        }

        /* Cookie Banner Styles */
        .cookie-btn-accept {
            background: var(--primary-blue) !important;
            color: #fff;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 2px;
        }

        .cookie-link {
            font-size: 0.75rem;
            color: var(--primary-blue) !important;
            text-decoration: underline;
            margin-left: auto;
        }