/* Game Modal */
.game-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 0;
}

.game-modal {
    width: 100%;
    height: 100%;
    position: relative;
    background: var(--bg-darker);
    display: flex;
    flex-direction: column;
}

.game-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    transition: all 0.3s;
}

.game-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.game-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px 20px 40px;
    background: rgba(30, 41, 59, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.game-modal-header h3 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.game-fullscreen-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.game-fullscreen-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.game-iframe {
    flex: 1;
    width: 100%;
    border: none;
    background: #000;
}