/* ============================================= */
/* TWINSTAR OS – GEMINI-VIP.APARTMENTS STYLES    */
/* ============================================= */

:root {
    --bg-void-purple: #06020a;      /* Abgrundtiefes, edles Schwarz-Violett */
    --residence-gold: #F3C65F;      /* Der warme Gold-Flimmer aus Video 3 */
    --gold-glow: rgba(243, 198, 95, 0.35); 
    --sanctuary-lilac: #B388EB;     /* Dezentes Flieder für den "Lila Gast" */
    --text-muted: rgba(243, 198, 95, 0.6);
}

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

body {
    background-color: var(--bg-void-purple);
    /* Ein hauchzartes Leuchten, wie indirekte Beleuchtung in einer Luxus-Suite */
    background-image: radial-gradient(circle at 50% 40%, #12071c 0%, #06020a 90%);
    color: #e0e0e0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

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

/* ============================================= */
/* HEADER – Das Eingangsportal                  */
/* ============================================= */

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

.apartments-header {
    font-size: clamp(2rem, 4vw, 4.5rem);
    font-weight: 300; 
    letter-spacing: 0.25em;
    color: var(--residence-gold);
    text-shadow: 0 0 30px var(--gold-glow);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.subtitle-apartments {
    font-size: clamp(0.85rem, 1.2vw, 1.1rem);
    color: var(--sanctuary-lilac); /* Der lila Touch! */
    letter-spacing: 0.4em; 
    font-weight: 400;
    text-transform: uppercase;
    opacity: 0.8;
}

/* ============================================= */
/* HERO & VIDEO – Die schützenden Schwingen     */
/* ============================================= */

.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.sanctuary-capsule {
    max-width: clamp(340px, 70vw, 1050px);
    width: 100%;
    position: relative;
}

.main-logo-video {
    width: 100%;
    height: auto;
    border-radius: 16px; /* Etwas weicher als die .limited */
    /* Ein sanftes, atmendes goldenes Leuchten passend zum Video-Ende */
    box-shadow: 0 0 40px rgba(243, 198, 95, 0.15);
    border: 1px solid rgba(243, 198, 95, 0.1);
    transition: all 1s ease-in-out;
}

.sanctuary-capsule:hover .main-logo-video {
    transform: translateY(-5px); /* Hebt sich sanft an */
    box-shadow: 
        0 20px 60px rgba(243, 198, 95, 0.25),
        0 0 100px rgba(179, 136, 235, 0.1); /* Lila Hintergrund-Glow beim Hover */
    border: 1px solid rgba(243, 198, 95, 0.3);
}

/* ============================================= */
/* FOOTER – Der Concierge-Bereich               */
/* ============================================= */

footer {
    padding: 40px 0 30px;
    background: linear-gradient(to top, rgba(3, 1, 5, 0.95) 0%, transparent 100%);
}

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

.legal-links a {
    color: var(--sanctuary-lilac);
    text-decoration: none;
    transition: all 0.4s ease;
    opacity: 0.8;
}

.legal-links a:hover {
    color: var(--residence-gold);
    text-shadow: 0 0 15px var(--gold-glow);
    opacity: 1;
}

.footer-separator {
    color: var(--residence-gold);
    opacity: 0.4;
    margin: 0 20px;
}

/* Der Disclaimer - Weich und unaufdringlich */
.disclaimer {
    max-width: 750px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
    line-height: 1.8;
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

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