:root {
    --gold: rgb(255, 174, 0);
}

body, html {
    margin: 0; padding: 0; width: 100%; height: 100vh;
    background: linear-gradient(135deg, #000d1a, #001a33, #00264d, #001a33);
    background-size: 400% 400%;
    animation: backgroundWobble 18s ease-in-out infinite;
    color: white; font-family: 'Segoe UI', sans-serif; overflow: hidden;
}

@keyframes backgroundWobble {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Header & Nav */
.vagisen-header {
    position: fixed; top: 0; width: 100%; height: 100px;
    display: flex; justify-content: flex-end; align-items: center;
    padding: 0 60px; z-index: 9999; box-sizing: border-box;
}
.vagisen-nav { display: flex; gap: 40px; align-items: center; }
.nav-item { opacity: 0; animation: fastFadeIn 1s forwards; }
.item-1 { animation-delay: 0.5s; }
.item-2 { animation-delay: 0.7s; }
.item-3 { animation-delay: 0.9s; }

.vagisen-nav a {
    color: rgba(255,255,255,0.7); text-decoration: none; text-transform: uppercase;
    font-size: 13px; letter-spacing: 2px; transition: 0.3s;
}
.vagisen-nav a:hover { color: var(--gold); }

/* Login */
.vagisen-login-container {
    display: flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 2px;
}
.vagisen-login-input {
    background: transparent; border: none; color: white; width: 70px; outline: none; font-size: 12px; padding: 2px 5px;
}
.vagisen-login-button {
    background: transparent; border: none; color: var(--gold); cursor: pointer; font-size: 14px;
}

/* Brand */
#vagisen-brand-wrapper {
    position: fixed; z-index: 5000; transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
#vagisen-brand-wrapper.state-hero { top: 50%; left: 50%; transform: translate(-50%, -50%); }
#vagisen-brand-wrapper.state-nav { top: 35px; left: 60px; transform: translate(0, 0); }

.vagisen-buchstabe {
    font-size: clamp(50px, 10vw, 110px); font-weight: bold; color: var(--gold);
    display: inline-block; opacity: 0; letter-spacing: -0.08em;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.7));
    animation: vBounce 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: calc(var(--n) * 0.1s);
}
#vagisen-brand-wrapper.state-nav .vagisen-buchstabe { font-size: 30px; opacity: 1; animation: none; }

.vagisen-subline { opacity: 0; margin-top: 15px; text-align: center; }
.vagisen-subline::before {
    content: "Magical Experience | Unforgettable";
    text-transform: uppercase; letter-spacing: 0.4em; color: rgba(255,255,255,0.4); font-size: 12px;
}
#vagisen-brand-wrapper.state-hero .vagisen-subline { animation: fastFadeIn 0.8s ease 1s forwards; }

@keyframes vBounce { 0% { transform: translateY(40px); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } }
@keyframes fastFadeIn { 0% { opacity: 0; transform: translateY(-10px); } 100% { opacity: 1; transform: translateY(0); } }

/* Contentbereich */
.vagisen-main-content { padding-top: 100px; height: 100vh; display: flex; box-sizing: border-box; }
.vagisen-section { display: none; width: 100%; height: calc(100vh - 141px); }
.vagisen-section.active { display: block; animation: fastFadeIn 0.5s forwards; }

.legal-text-container {
    padding: 60px 100px 60px 150px; width: 100%; height: 100%;
    box-sizing: border-box; overflow-y: auto; background: rgba(0,0,0,0.4);
}
.legal-text-container h1, .legal-text-container h2 { color: var(--gold); margin-bottom: 30px; }
.legal-text-container h3 { color: var(--gold); margin-top: 35px; margin-bottom: 15px; border-left: 2px solid var(--gold); padding-left: 15px; }
.legal-divider { border: 0; border-top: 1px solid rgba(255,174,0,0.2); margin: 40px 0; }

/* Bot-Schutz */
.impressum-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.anti-bot { unicode-bidi: bidi-override; direction: rtl; display: inline-block; }
.label { color: var(--gold); font-weight: bold; margin-right: 10px; }

/* Footer */
.vagisen-footer { position: fixed; bottom: 0; width: 100%; z-index: 9999; background: rgba(0,0,0,0.85); }
.vagisen-effekt-goldstreifen { height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); background-size: 200% 100%; animation: goldShim 4s linear infinite; }
@keyframes goldShim { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.vagisen-footer-content { display: flex; justify-content: space-between; padding: 15px 60px; font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; }
.vagisen-footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; margin-right: 25px; cursor: pointer; transition: 0.3s; }
.vagisen-footer-links a:hover { color: var(--gold); }