body {
    background: #121212;
    color: white;
    font-family: Arial, sans-serif;
}

h2 {
    color: #ffcc00;
    font-weight: bold;
}

.video-card {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: transform 0.3s;
}

.video-card:hover {
    transform: scale(1.05);
}

.video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: black; /* Prevent white background if aspect ratio differs */
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-btn {
    font-size: 40px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}














