
body {
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #fff;
    text-align: center;
}

h1 {
    margin-top: 20px;
}

.search-form {
    margin: 20px;
}

input[type="text"] {
    padding: 10px;
    width: 300px;
}

button {
    padding: 10px;
    background-color: #00bfff;
    color: #fff;
    border: none;
    cursor: pointer;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.video-item {
    width: 200px;
    text-align: center;
}

.thumb {
    width: 200px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #00bfff;
    cursor: pointer;
}
