.game-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.game-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.game-modal-content {
    max-width: 1400px;
    width: 92vw;
    height: 85vh;
    position: relative;
}

.game-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-form);
}

.game-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

@media (max-width: 1023px) {
    .game-modal-content {
        width: 95%;
    }
}
