/* Reset basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0f0f0f;
    /* Dark background for cinema feel */
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

h1 {
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 1px;
}

p.description {
    margin-bottom: 30px;
    color: #aaaaaa;
    font-size: 1.1rem;
}

.video-wrapper {
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    overflow: hidden;
    background-color: #000;
}

video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 80vh;
    /* Prevent video from being too tall on large screens */
}

footer {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #555;
}

/* Controls for language selection */
.controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    background-color: #1a1a1a;
    border-bottom: 1px solid #333;
}

.lang-btn {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.lang-btn:hover {
    background-color: #555;
    transform: translateY(-2px);
}

.lang-btn.active {
    background-color: #007bff;
    /* Blue for active state */
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.lang-btn:active {
    transform: translateY(0);
}