        :root { 
            --gold: #FFD700; 
            --gold-dim: rgba(255, 215, 0, 0.6); /* Zartes, gedimmtes Gold */
            --cyan: #00E5FF;
            --bg: #040811; /* ==========================================================================
   GEMINI-VIP.LIMITED // STYLE-2 (LEGAL / INFO PAGES)
   DESIGN LANGUAGE: PURE BLACK, NEON CYAN, MICRO-GOLD, STEALTH TERMINAL
   ========================================================================= */

:root {
    /* Absolute Nullpunkt-Architektur */
    --void-black: #000000;
    --deep-space: #03080e;
    
    /* Klingen-Highlights */
    --neon-cyan: #00E5FF;
    --cyan-glow: rgba(0, 229, 255, 0.7);
    --cyan-dim: rgba(0, 229, 255, 0.15);
    
    /* Repräsentative Macht */
    --pure-gold: #FFD700;
    --gold-dim: rgba(255, 215, 0, 0.4);
    
    /* Stealth-Terminal */
    --ghost-text: #112233;
    
    /* Typografie */
    --font-exec: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-term: 'Courier New', Courier, monospace;
}

/* ==========================================================================
   RESET & FUNDAMENT
   ========================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--void-black);
    color: #ffffff;
    font-family: var(--font-exec);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* ==========================================================================
   HEADER / EXECUTIVE TITLE
   ========================================================================= */
header {
    padding: 60px 0 40px;
}

.main-title {
    color: var(--pure-gold);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0 0 20px var(--gold-dim);
}

.subtitle {
    color: var(--neon-cyan);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-shadow: 0 0 10px var(--cyan-dim);
}

.header-line {
    width: 100%;
    max-width: 600px;
    height: 1px;
    background-color: var(--pure-gold);
    margin: 0 auto;
    box-shadow: 0 0 15px var(--pure-gold);
}

/* ==========================================================================
   MAIN CONTENT / LEGAL TEXT BOX
   ========================================================================= */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0 60px;
}

.legal-box {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--void-black);
    /* Hauchdünne Einfassung passend zur Video-Kapsel */
    border: 1px solid var(--gold-dim); 
    padding: 40px;
    text-align: left; /* Juristische Texte erfordern Linksbündigkeit */
    box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.05); /* Minimaler innerer Glow */
}

.gold-heading {
    color: var(--pure-gold);
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 40px 0 15px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding-bottom: 10px;
}

.gold-heading:first-child {
    margin-top: 0;
}

.cyan-heading {
    color: var(--neon-cyan);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 25px 0 10px 0;
}

.legal-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-box strong {
    color: #ffffff;
    font-weight: 600;
}

.legal-box em {
    color: var(--gold-dim);
    font-style: normal;
}

.legal-box a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-box a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px var(--neon-cyan);
}

/* ==========================================================================
   MICRO-INTERACTION: THE STEALTH TERMINAL
   ========================================================================= */
.rabbit-hole {
    margin-top: 40px;
}

.rabbit-hole a,
.back-link-container a {
    font-family: var(--font-term);
    font-size: 0.85rem;
    color: var(--ghost-text);
    text-decoration: none;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.rabbit-hole a:hover,
.back-link-container a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 15px var(--neon-cyan), 0 0 30px var(--cyan-glow);
    letter-spacing: 0.2em;
}

/* ==========================================================================
   FOOTER / LEGAL
   ========================================================================= */
footer {
    padding: 40px 0;
    background-color: var(--void-black);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.legal-links,
.footer-link {
    margin-bottom: 25px;
    display: inline-block;
    color: var(--neon-cyan);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.legal-links a:hover,
.footer-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px var(--neon-cyan);
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    line-height: 2;
    margin-top: 15px;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================= */
@media (max-width: 768px) {
    .main-title {
        font-size: 1.8rem;
    }
    .subtitle {
        font-size: 0.8rem;
    }
    .legal-box {
        padding: 25px;
        border-left: none;
        border-right: none;
    }
}
        }
        body {
            background-color: var(--bg);
            background-image: radial-gradient(circle at 50% 20%, #0a1118 0%, #02050b 100%);
            color: #e0e0e0; 
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            margin: 0; padding: 0; display: flex; flex-direction: column; min-height: 100vh;
        }
        .container { width: 90%; max-width: 750px; margin: 0 auto; text-align: center; }
        
        header { padding-top: 80px; padding-bottom: 40px; }
        
        /* ZARTES GOLD IM TITEL */
        .main-title {
            font-size: clamp(2.5rem, 5vw, 4rem); 
            font-weight: 200; 
            letter-spacing: 0.35em; 
            color: var(--gold); 
            text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
            margin: 0 0 15px 0; 
            text-transform: uppercase;
        }
        
        /* ZARTES GOLD IM UNTERTITEL - KEIN MONDSTAB-WEISS MEHR! */
        .subtitle {
            font-size: clamp(0.85rem, 1.2vw, 1.1rem);
            color: var(--gold-dim); /* Gedimmtes Gold */
            letter-spacing: 0.5em; 
            font-weight: 400;
            text-transform: uppercase; 
            margin: 0;
        }
        
        main { flex: 1; padding: 0 20px 40px; display: flex; justify-content: center; }
        
        /* DIE BOX MIT DEM VERFLIXTEN GOLDRAHMEN! */
        .legal-box {
            background: rgba(2, 5, 11, 0.4); 
            border: 1px solid var(--gold); /* 1px Goldrahmen, ungedimmt! */
            border-radius: 8px; 
            padding: 35px 40px;
            width: 100%; 
            text-align: left;
            box-shadow: 0 0 40px rgba(255, 215, 0, 0.1); 
        }
        
        .gold-heading { color: var(--gold); font-size: 1.1rem; font-weight: 400; margin-top: 25px; margin-bottom: 8px; letter-spacing: 0.05em; }
        .gold-heading:first-child { margin-top: 0; }
        .cyan-heading { color: var(--cyan); font-size: 1.05rem; font-weight: 400; margin-top: 25px; margin-bottom: 8px; letter-spacing: 0.05em; }
        p { color: #e0e0e0; font-size: 0.9rem; line-height: 1.6; margin-bottom: 15px; }
        strong { color: #ffffff; font-weight: bold; }
        a { color: var(--cyan); text-decoration: none; }
        a:hover { text-decoration: underline; }
        
        .back-link-container { text-align: center; margin-top: 50px; }
        .back-link {
            display: inline-block; padding: 12px 30px; border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 4px; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.2em;
            color: rgba(255, 255, 255, 0.6) !important; transition: all 0.3s;
        }
        .back-link:hover { border-color: var(--gold); color: var(--gold) !important; text-decoration: none; }

        /* VOLLSTÄNDIGER FOOTER MIT LINK */
        footer { padding: 30px 0 50px; text-align: center; }
        .footer-link { color: var(--cyan); font-size: 0.95rem; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; display: inline-block; margin-bottom: 25px; }
        .footer-link:hover { text-shadow: 0 0 10px var(--cyan); }
        .copyright { font-size: 0.8rem; color: rgba(255, 255, 255, 0.3); line-height: 1.8; }