/* Grundaufbau & Perfekte Zentrierung */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px 100px 20px;
    overflow-x: hidden;
    position: relative;
}

/* Sanfter Goldschein im Hintergrund */
body::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    max-width: 95vw;
    max-height: 95vw;
    background: radial-gradient(circle, rgba(222, 172, 45, 0.08) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* Hauptinhalt Container mit Dezentem Fade-in */
.container {
    max-width: 900px;
    text-align: center;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInSlight 1.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* Das Logo oben (ohne Bogen, kompakt) */
.logo-container {
    width: 100%;
    max-width: 580px; 
    margin: 0 auto 10px auto;
    display: block;
}

/* Text-Stile */
.manifest {
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 0.04em;
    padding: 0 20px;
    max-width: 750px;
    margin: 0 auto 45px auto;
}

/* Video-Bereich mit Randlicht-Glow */
.video-section {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Format */
    height: 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #000000;
    
    /* Der Randlicht-Glow um das Video */
    box-shadow: 0 0 25px rgba(222, 172, 45, 0.25), 
                0 0 50px rgba(222, 172, 45, 0.1);
    border: 1px solid rgba(222, 172, 45, 0.3);
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

/* Verstärkter Glow beim Drüberfahren */
.video-wrapper:hover {
    box-shadow: 0 0 35px rgba(222, 172, 45, 0.4), 
                0 0 70px rgba(222, 172, 45, 0.2);
    border-color: rgba(222, 172, 45, 0.6);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Styling für den Beschreibungstext unter dem Video */
.video-description {
    margin-top: 22px;
    font-size: 0.98rem;
    line-height: 1.6;
    font-weight: 300;
    color: #d1d1d1;
    letter-spacing: 0.02em;
    max-width: 650px;
    text-align: center;
}

/* YouTube-Link unter dem Video */
.youtube-link {
    display: inline-block;
    margin-top: 16px;
    color: #deac2d;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.youtube-link:hover {
    opacity: 1;
    color: #fff0b8;
    text-shadow: 0 0 10px rgba(222, 172, 45, 0.5);
}

/* Fußzeile */
footer {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 300;
    color: #777777;
    letter-spacing: 0.05em;
    z-index: 2;
    padding: 0 20px;
    opacity: 0;
    animation: fadeInSlight 2.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.4s;
}

footer a {
    color: #777777;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #deac2d;
    border-bottom: 1px solid rgba(222, 172, 45, 0.4);
}

/* Animation Keyframes */
@keyframes fadeInSlight {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobil-Optimierung */
@media (max-width: 768px) {
    body {
        padding-top: 20px;
        padding-bottom: 120px;
    }
    .logo-container {
        width: 100%;
        margin-bottom: 10px;
    }
    .manifest {
        font-size: 1.05rem;
        line-height: 1.7;
        padding: 0 10px;
        margin-bottom: 30px;
    }
    .video-description {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    footer {
        position: relative;
        margin-top: 60px;
        bottom: 15px;
        font-size: 0.85rem;
    }
}