    /* ... אותו עיצוב בדיוק כמו קודם ... */
    .gam-overlay {
        position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(8px);
        z-index: 99999;
        display: flex; align-items: center; justify-content: center;
        animation: gamFadeIn 0.2s ease-out;
    }
    .gam-card {
        background: #1a1d26; width: 90%; max-width: 400px; padding: 40px 30px;
        border-radius: 16px; position: relative; text-align: center;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(255,255,255,0.08);
    }
    .gam-close {
        position: absolute; top: 15px; left: 15px; background: none; border: none; color: #666;
        font-size: 24px; cursor: pointer; transition: 0.2s;
    }
    .gam-close:hover { color: #fff; }
    .gam-icon-wrapper { margin-bottom: 20px; }
    .gam-icon-circle {
        width: 70px; height: 70px; background: #3a1121;
        border-radius: 50%; display: flex; align-items: center; justify-content: center;
        margin: 0 auto; box-shadow: 0 0 20px rgba(255, 45, 85, 0.2);
    }
    .gam-icon-circle i { color: #ff2d55; font-size: 28px; }
    .gam-title { color: #fff; font-size: 1.8rem; margin: 0 0 10px 0; font-family: 'Rajdhani', sans-serif; font-weight: 700; }
    .gam-subtitle { color: #a0aec0; font-size: 1rem; line-height: 1.5; margin-bottom: 30px; }
    .gam-buttons { display: flex; flex-direction: column; gap: 12px; }
    .gam-btn {
        display: flex; align-items: center; justify-content: center; gap: 12px;
        padding: 12px; border-radius: 8px; font-weight: 600; font-size: 1rem;
        text-decoration: none; transition: all 0.2s; border: none; cursor: pointer;
    }
    .gam-btn:hover { transform: translateY(-2px); filter: brightness(1.1); }
    .gam-btn-discord { background: #5865F2; color: #fff; }
    .gam-btn-google { background: #fff; color: #000; }
    .gam-btn-twitch { background: #9146FF; color: #fff; }
    @keyframes gamFadeIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }