/* Grund-Design mit dem Radial-Verlauf aus dem Bild */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: radial-gradient(circle, #33346d 0%, #262925 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    text-align: center;
    padding: 50px 20px;
}

header h1 {
    font-size: 2.5rem;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

header p {
    color: #bbb;
    margin-top: 10px;
}

/* Der äußere Container, der Platz für die Pfeile schafft */
.slider-container {
    position: relative;
    width: 95%;
    max-width: 1100px; /* Breit genug für Box + Pfeile */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

/* Die Video-Text-Box */
.slider-box {
    width: 100%;
    max-width: 900px;
    background-color: #232323;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.7);
    border: 1px solid #333;
    z-index: 1;
}

.video-section {
    background: #000;
    line-height: 0;
}

video {
    width: 100%;
    display: block;
}

.text-section {
    padding: 40px;
    text-align: left;
}

.text-section h2 {
    color: #e2b13c; /* Dein Gold-Ton */
    margin-top: 0;
    font-size: 1.8rem;
    border-bottom: 1px solid #3d3d3d;
    padding-bottom: 15px;
}

.text-section p {
    line-height: 1.6;
    color: #ccc;
    font-size: 1.1rem;
}

/* Pfeile außerhalb der Box */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: rgba(255, 255, 255, 0.4);
    border: none;
    font-size: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 20px;
    outline: none;
}

.nav-btn:hover {
    color: #e2b13c;
    transform: translateY(-50%) scale(1.2);
}

.prev { left: 0; }
.next { right: 0; }

/* Slide-Logik */
.slide {
    display: none;
}

.slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Mobile Optimierung: Pfeile nach innen verschieben */
@media (max-width: 1050px) {
    .nav-btn {
        font-size: 40px;
        color: white;
        background: rgba(0,0,0,0.5);
        padding: 10px;
    }
    .prev { left: 10px; border-radius: 50%; }
    .next { right: 10px; border-radius: 50%; }
}