body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212; /* Dark background */
    color: #ffffff; /* White text for contrast */
    text-align: center;
}

h1 {
    margin-top: 20px;
    font-size: 36px;
    color: #ff9800; /* Bright orange for the heading */
}

.video-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

.video-item {
    width: 100%;
    max-width: 600px;
    margin-bottom: 35px;
    background-color: #1e1e1e; /* Slightly lighter dark background */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.video-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
}

.video-item h2 {
    font-size: 20px;
    margin: 10px 15px;
    color: #ff9800; /* Orange for titles */
}

.video-item p {
    font-size: 18px;
    margin: 10px 15px;
    color: #ff9800; /* Orange for titles */
}

.video-item iframe {
    width: 100%;
    height: 315px;
    border: none;
}

.fallback-text {
    margin-top: 10px;
    font-size: 14px;
    color: #ff9800; /* Bright orange text for visibility */
}

.fallback-text a {
    color: #ff9800;
    text-decoration: underline;
}

.fallback-text a:hover {
    color: #ffd740; /* Lighter orange on hover */
    text-decoration: none;
}

@media (max-width: 600px) {
    .video-item iframe {
        height: 200px;
    }
}
