﻿video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/landing/assets/what-is-game-260113-cover.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transition: opacity 0.3s;
}

    .video-poster.hidden {
        opacity: 0;
        pointer-events: none;
    }

.video-poster-text {
    font-size: 1.3rem;
    color: white;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    padding: 0 20px;
}

.play-button {
    background: rgba(245, 158, 11, 0.9);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 20px;
}

    .play-button:hover {
        transform: scale(1.1);
        background: rgba(245, 158, 11, 1);
    }

.video-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 10;
}

.video-btn {
    background: rgba(15, 23, 42, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

    .video-btn:hover {
        background: rgba(245, 158, 11, 0.9);
        transform: scale(1.1);
    }
