/* ==========================================================================
   GEMINI-VIP.LIMITED // EXECUTIVE ACCESS
   DESIGN LANGUAGE: PURE BLACK, NEON CYAN, MICRO-GOLD, FACETED GEOMETRY
   ========================================================================= */

: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;
}

/* ==========================================================================
   PULSERENDE ANIMATION FÜR CYAN-HALO
   ========================================================================= */
@keyframes pulseCyanHalo {
    0% { filter: drop-shadow(0 0 20px var(--cyan-glow)); }
    50% { filter: drop-shadow(0 0 35px var(--cyan-glow)); }
    100% { filter: drop-shadow(0 0 20px var(--cyan-glow)); }
}

/* ==========================================================================
   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 HERO & FACETED DIAMOND VIDEO
   ========================================================================= */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.hero {
    /* Der filter: drop-shadow erzeugt den Cyan-Glow HINTER dem Element, 
       selbst wenn es mit clip-path zerschnitten wurde. Wir fügen eine 
       pulsierende Animation hinzu. */
    animation: pulseCyanHalo 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Die Goldfassung (Der äußere Diamant) */
.video-capsule {
    position: relative;
    width: 100%;
    max-width: 800px;
    background-color: var(--pure-gold);
    /* Das Padding definiert die Dicke des Goldrahmens. Ein echter Goldblock. */
    padding: 2px; 
    /* Der komplexe Sechseck/Diamant-Schnitt */
    clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-capsule:hover {
    transform: scale(1.03);
}

/* Das Video (Der innere Diamant) */
.main-logo-video {
    width: 100%;
    height: auto;
    display: block;
    background-color: var(--void-black);
    /* Exakt gleicher Schnitt wie die Kapsel, um den goldenen Rand freizulegen. */
    clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
    object-fit: cover;
}

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

.rabbit-hole 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 {
    color: var(--neon-cyan);
    text-shadow: 0 0 15px var(--neon-cyan), 0 0 30px var(--cyan-glow);
    letter-spacing: 0.2em; /* Leichtes Ausdehnen beim Hover */
}

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

.legal-links {
    margin-bottom: 25px;
}

.legal-links a {
    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 {
    color: #ffffff;
    text-shadow: 0 0 10px var(--neon-cyan);
}

.footer-separator {
    color: var(--pure-gold);
    margin: 0 15px;
}

.disclaimer {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    max-width: 600px;
    margin: 0 auto 30px auto;
    padding: 15px;
    border: 1px dashed rgba(255, 215, 0, 0.2);
    letter-spacing: 0.05em;
}

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

.grok-credit {
    display: block;
    margin-top: 10px;
    color: var(--gold-dim);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================= */
@media (max-width: 768px) {
    .main-title {
        font-size: 1.8rem;
    }
    .subtitle {
        font-size: 0.8rem;
    }
    .video-capsule {
        /* Passt den Diamantschnitt für schmalere Bildschirme leicht an */
        clip-path: polygon(50% 0%, 100% 20%, 100% 80%, 50% 100%, 0% 80%, 0% 20%);
    }
    .main-logo-video {
        clip-path: polygon(50% 0%, 100% 20%, 100% 80%, 50% 100%, 0% 80%, 0% 20%);
    }
}