body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0f0f0f;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    margin-top: 20px;
}

.search-box {
    margin: 20px;
}

input {
    padding: 10px;
    width: 300px;
    border-radius: 5px;
    border: none;
}

button {
    padding: 10px;
    border: none;
    background: red;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.video-container {
    margin-top: 20px;
}

iframe {
    width: 800px;
    height: 450px;
    border: none;
}