/**
 * Slot Demo Module - Visual Styles Only
 * Version: 2.0.0 - CLEANED (Visual Only)
 * 
 * СОДЕРЖИТ ТОЛЬКО ВИЗУАЛЬНЫЕ СТИЛИ:
 * - Цвета (background, color, border-color)
 * - Тени (box-shadow)
 * - Borders, border-radius
 * - Transitions
 * - Hover-эффекты
 * - Анимация loader
 * - Типографика (font-family, font-size, font-weight)
 * 
 * СТРУКТУРНЫЕ ЭЛЕМЕНТЫ (display, flex, position, width, height) → slot-single-layout.css
 * 
 * @package GamblingTheme
 * @version 2.0.0
 */

/* ============================================
   POPUP ДЛЯ ДЕМО-ИГРЫ
   ============================================ */

.slot-popup-overlay {
    background: rgba(0, 0, 0, 0.95);
}

.slot-popup {
    background: var(--bg-primary);
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

/* Заголовок popup */
.slot-popup__header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.slot-popup__title {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.slot-popup__close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.slot-popup__close:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

/* Контейнер iframe */
.slot-popup__iframe {
    border: none;
}

/* Loader */
.slot-popup__loader-spinner {
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.slot-popup__loader-text {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ============================================
   АДАПТИВНОСТЬ
   ============================================ */

@media (max-width: 768px) {
    .slot-popup {
        border-radius: 0;
    }
}
