/* ============================================= */
/* TWINSTAR OS – GEMINI-VIP.LIMITED CORE STYLES  */
/* ============================================= */

:root {
    --bg-deep-space: #03060a;       /* Nahezu schwarz mit extrem tiefem Blaustich */
    --gold-primary: #D4AF37;        /* Mattes, teures Platin/Gold */
    --gold-glow: rgba(212, 175, 55, 0.4); 
    --cyan-primary: #00BFFF;        /* Kühles, elitäres Cyan */
    --cyan-glow: rgba(0, 191, 255, 0.3);
    --text-muted: rgba(212, 175, 55, 0.7);
}

/* Base Reset & Body */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-deep-space);
    background-image: radial-gradient(circle at 50% 50%, #06101c 0%, #03060a 100%);
    color: #e0e0e0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Klarer, sachlicher Executive-Font */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Layout Container */
.container {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

/* ============================================= */
/* HEADER – Scharfkantiges Understatement        */
/* ============================================= */

header {
    padding-top: clamp(60px, 8vh, 120px);
    padding-bottom: 20px;
}

.limited-header {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 300; /* Dünner, eleganter Font statt klobigem Bold */
    letter-spacing: 0.3em;
    color: var(--gold-primary);
    text-shadow: 0 0 15px var(--gold-glow);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.subtitle-limited {
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    color: var(--text-muted);
    letter-spacing: 0.4em;
    font-weight: 400;
    text-transform: uppercase;
}

/* ============================================= */
/* HERO & VIDEO – Der visuelle Kern             */
/* ============================================= */

.hero {
    flex: 1; /* Nimmt den restlichen Platz ein */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.logo-link {
    display: block;
    cursor: default; /* Macht klar, dass es kein Link zu einer anderen Seite ist */
}

.main-logo-video {
    max-width: clamp(300px, 60vw, 1000px); /* Kontrollierte Größe, auch auf 32" WQHD */
    width: 100%;
    height: auto;
    border-radius: 8px; /* Sehr dezent */
    box-shadow: 0 0 40px rgba(0, 191, 255, 0.15); /* Kühler, sanfter Cyan-Glow hinter dem Gold-Video */
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.8s ease;
}

/* Sanfter Zoom beim Hover - kein Kirmes-Gewackel */
.main-logo-video:hover {
    transform: scale(1.02);
    box-shadow: 0 0 60px rgba(0, 191, 255, 0.25);
}

/* ============================================= */
/* FOOTER – Kühles Cyan & Formelle Härte         */
/* ============================================= */

footer {
    padding: 40px 0 30px;
    background: linear-gradient(to top, rgba(1, 4, 8, 0.9) 0%, transparent 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.1); /* Hauchdünne Gold-Linie */
}

.legal-links {
    margin-bottom: 30px;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.legal-links a {
    color: var(--cyan-primary);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.legal-links a:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--cyan-glow);
}

.footer-separator {
    color: rgba(255, 255, 255, 0.2);
    margin: 0 15px;
}

/* Der Disclaimer - Formell und seriös */
.disclaimer {
    max-width: 800px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    line-height: 1.6;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
}

.disclaimer strong {
    color: var(--gold-primary);
    font-weight: normal;
    letter-spacing: 0.05em;
}

.copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
}