body {
    font-family: Arial, sans-serif;
    background: #fafafa;
    padding: 20px;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
}

.video-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.video-card {
    width: 250px;
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s ease;
}

.video-card:hover {
    transform: scale(1.05);
}

.thumbnail {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.video-title {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}
