.game-modal {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
}

.game-modal.active {
    display: flex;
}

.game-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.8);
    cursor: pointer;
}

.game-modal__content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 80vh;
    background: #1a1a2e;
    border-radius: 12px;
    overflow: hidden;
}

.game-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.6);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s;
}

.game-modal__close:hover {
    background: rgba(0,0,0,0.9);
}

.game-modal__iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.game-modal__title {
    position: absolute;
    top: 14px;
    left: 16px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    z-index: 10;
    background: rgba(0,0,0,0.5);
    padding: 4px 12px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .game-modal__content {
        width: 100%;
        height: 100%;
        border-radius: 0;
        max-width: 100%;
    }
}
