* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: rgb(255, 255, 255);
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
}

h1 {
    margin-bottom: 30px;
    color: #333;
}

.video-container {
    margin-bottom: 30px;
}

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

.controls {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.controls button {
    padding: 15px 30px;
    margin: 0 10px;
    border: none;
    border-radius: 50px;
    background-color: rgb(239, 189, 64);
    color: black;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.controls button:hover {
    background-color: rgb(220, 170, 50);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.status {
    margin-top: 20px;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

#statusText {
    font-weight: bold;
    color: #555;
}

@media (min-width: 768px) {
    .controls {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
}