/* Grundlegende Stile */
body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a; /* Sehr dunkler Hintergrund */
    color: #cccccc; /* Helles Grau für den Text */
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background-color: #000;
    color: #e65100; /* Dunkelorange für Header-Titel */
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #e65100;
}

h1 {
    margin: 0;
    color: #e65100; /* Dunkelorange für Header-Titel */
}

main {
    padding: 20px;
    max-width: 1200px;
    margin: 20px auto;
}

h2 {
    color: #e65100; /* Dunkelorange für Hauptüberschriften */
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #e65100;
    padding-bottom: 10px;
}

h3 {
    color: #e65100; /* Dunkelorange für Unterüberschriften */
    margin-top: 25px;
}

/* Video-Sektion */
.video-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); /* Responsives Grid für Videos */
    gap: 20px;
    margin-bottom: 40px;
}

.video-item {
    background-color: #2a2a2a; /* Etwas helleres Dunkelgrau für Video-Boxen */
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.video-item iframe {
    width: 100%;
    height: 200px; /* Standardhöhe, wird responsiv angepasst */
    border-radius: 5px;
}

/* Responsivität für Videos */
@media (min-width: 768px) {
    .video-item iframe {
        height: 250px;
    }
}

@media (min-width: 1024px) {
    .video-item iframe {
        height: 300px;
    }
}

/* Konfliktinformationen */
.conflict-item {
    background-color: #2a2a2a; /* Etwas helleres Dunkelgrau für Konflikt-Boxen */
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.conflict-item p {
    margin: 5px 0;
}

/* Footer */
footer {
    background-color: #000;
    color: #cccccc;
    text-align: center;
    padding: 15px;
    border-top: 2px solid #e65100;
    margin-top: 40px;
}

/* Responsivität für allgemeine Layout-Elemente */
@media (max-width: 768px) {
    main {
        padding: 15px;
    }
    .video-container {
        grid-template-columns: 1fr; /* Eine Spalte auf kleineren Bildschirmen */
    }
}

