/* لودینگ (اسپینر) */
.gdm-loading-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(2px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}
.gdm-spinner {
    width: 60px;
    height: 60px;
    border: 6px solid rgba(255,255,255,0.2);
    border-top-color: #00f2fe;
    border-radius: 50%;
    animation: gdm-spin 0.8s linear infinite;
}
@keyframes gdm-spin {
    to { transform: rotate(360deg); }
}

/* Overlay مودال */
.gdm-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    animation: gdmFadeIn 0.3s ease;
}
@keyframes gdmFadeIn { from { opacity: 0; } to { opacity: 1; } }

.gdm-modal {
    background: #141e30;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    width: 90%;
    max-width: 450px;
    text-align: center;
    color: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    direction: rtl;
}
.gdm-close {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 28px;
    color: #aaa;
    cursor: pointer;
}
.gdm-close:hover { color: #fff; }

/* المان‌های بازی */
.gdm-title { font-size: 1.8rem; color: #00f2fe; margin-bottom: 20px; }
.gdm-lives { font-size: 1.5rem; margin-bottom: 15px; letter-spacing: 5px; }
.gdm-target { font-size: 1.3rem; margin-bottom: 20px; background: rgba(0,0,0,0.2); padding: 10px; border-radius: 10px; }
.gdm-target-number { font-size: 2.5rem; font-weight: bold; color: #ff0055; margin-right: 10px; }
.gdm-moving-box {
    background: rgba(0,0,0,0.5);
    border: 2px solid #00f2fe;
    border-radius: 15px;
    padding: 30px;
    margin: 20px 0;
    font-size: 5rem;
    font-weight: bold;
    color: #00f2fe;
    text-shadow: 0 0 20px rgba(0,242,254,0.8);
    box-shadow: inset 0 0 20px rgba(0,242,254,0.2);
    transition: all 0.3s;
}
.gdm-msg { margin-top: 15px; font-size: 1.1rem; min-height: 30px; }
.gdm-msg.win { color: #00ff87; } .gdm-msg.lose { color: #ff4b2b; } .gdm-msg.warn { color: #feca57; }

.gdm-btn {
    border: none;
    padding: 15px 20px;
    font-size: 1.2rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}
.gdm-btn-stop { background: linear-gradient(45deg, #ff416c, #ff4b2b); color: white; }
.gdm-btn-primary { background: linear-gradient(45deg, #00c6ff, #0072ff); color: white; }
.gdm-btn-secondary { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.3); }