body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
h1, h2 {
    color: #fff;
}
form {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
input[type="text"], input[type="password"] {
    padding: 10px;
    margin: 10px 0;
    width: 300px;
    border: none;
    border-radius: 4px;
}
button {
    padding: 10px 20px;
    background-color: #ff0000;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
button:hover {
    background-color: #cc0000;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.video {
    margin: 10px;
    text-align: center;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 2px 2px 12px rgba(255, 255, 255, 0.1);
    background-color: #222;
    position: relative;
    transition: transform 0.2s;
}
.video:hover {
    transform: scale(1.05);
}
.thumbnail {
    cursor: pointer;
    border-radius: 8px;
}
.thumbnail img {
    width: 100%;
    height: auto;
    max-width: 200px;
    border-radius: 8px;
}
.delete-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff0000;
    color: #fff;
    border: none;
    cursor: pointer;
    width: 11px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}
p {
    margin: 5px 0;
    color: #ccc;
}
@media (max-width: 600px) {
    .thumbnail img {
        max-width: 100%;
    }
    input[type="text"] {
        width: 100%;
    }
}