/* Основные стили для всего приложения */
        :root {
            --content-offset: 0px;
            /* Контролируем верхний отступ фона игр */
            --roulette-top-gap: 25px;  /* по умолчанию как top шапки */
            --blackjack-top-gap: 25px; /* по умолчанию как top шапки */
            /* Вертикальный сдвиг PNG-фона в блэкджеке */
            --blackjack-bg-offset-y: 12px; /* слегка опущен фон по умолчанию */
            /* Отступ фона слотов от верха (под шапку) */
            --slots-top-gap: 25px;
        }
        /* Переопределяем отступ фона на iOS/Android под реальные top шапки */
        html[data-platform="ios"] {
            --roulette-top-gap: 90px;
            --blackjack-top-gap: 90px;
            --blackjack-bg-offset-y: 0px; /* опускаем PNG на iOS */
            --slots-top-gap: 35px;
        }
        html[data-platform="android"] {
            --roulette-top-gap: 70px;
            --blackjack-top-gap: 70px;
            --blackjack-bg-offset-y: 0px; /* опускаем PNG на Android */
            --slots-top-gap: 35px;
        }
        
        /* Скрываем внутренние кнопки "Назад" — используем только Telegram BackButton */
        #back-to-lobby-btn,
        #back-to-lobby-from-roulette-btn,
        #back-to-lobby-from-hilo-btn,
        #back-to-lobby-from-scratch-btn,
        #back-to-lobby-from-blackjack-btn,
        #back-to-lobby-from-profile-btn,
        #back-from-inventory-btn,
        #back-to-profile-from-settings-btn,
        #back-to-profile-from-referral-btn,
        #back-to-admin-from-settings-btn,
        #back-to-lobby-from-season-btn {
            display: none !important;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background: #0d0d0d; color: #f0f0f0;
            overflow-x: hidden; /* Запрещаем горизонтальную прокрутку на уровне body */
            min-height: 100vh; /* Use min-height instead of height */
            width: 100vw;
            -webkit-touch-callout: none; /* iOS Safari */
            -webkit-user-select: none;   /* Safari */
            -moz-user-select: none;      /* Firefox */
            -ms-user-select: none;       /* Internet Explorer/Edge */
            user-select: none;           /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
            /* Убираем центрирование, чтобы контейнер мог занять все пространство */
                    overscroll-behavior-y: none; /* блокируем оверсролл вниз */
                    overscroll-behavior: contain;
                    -webkit-overflow-scrolling: touch;
                    touch-action: manipulation;
        }
        #app-container {
            overscroll-behavior: contain; /* не отдаём свайпы вверх/вниз родителю */
        }
        
        /* Анимация загрузки - прыгающие кости */
        .dice-loader {
            display: flex;
            gap: 12px;
        }
        .dice {
            font-size: 2.5rem;
            animation: dice-bounce 0.6s ease-in-out infinite;
        }
        .dice-1 { animation-delay: 0s; }
        .dice-2 { animation-delay: 0.15s; }
        .dice-3 { animation-delay: 0.3s; }
        @keyframes dice-bounce {
            0%, 100% { 
                transform: translateY(0) rotate(0deg); 
            }
            50% { 
                transform: translateY(-20px) rotate(180deg); 
            }
        }
        
        /* Скрываем скроллбары для Webkit (Chrome, Safari) и Firefox */
        ::-webkit-scrollbar {
            display: none;
        }
        * {
            scrollbar-width: none; /* Firefox */
            -webkit-touch-callout: none; /* iOS Safari */
            -webkit-user-select: none;   /* Safari */
            -moz-user-select: none;      /* Firefox */
            -ms-user-select: none;       /* Internet Explorer/Edge */
            -ms-overflow-style: none;  /* IE and Edge */
        }
        /* Safety: если Tailwind не подключен, класс hidden должен скрывать элементы */
        .hidden { display: none !important; }
        /* ВАЖНО: Разрешаем редактирование и выделение текста в формах.
           Глобальный user-select: none выше мешал ставить каретку/редактировать. */
        input, textarea, select, [contenteditable="true"] {
            -webkit-user-select: text;
            -moz-user-select: text;
            -ms-user-select: text;
            user-select: text;
            pointer-events: auto;
        }

        /* Стили для экранов */
        .screen {
            display: none;
            width: 100%;
            /* min-height: 100%; */ /* Удалено, чтобы избежать конфликтов */
            flex-direction: column;
            align-items: center; /* Этот стиль может быть переопределен для конкретных экранов, если нужно выравнивание по левому краю */
            padding: 1rem;
            padding-top: calc(1rem + 25px);
            padding-bottom: 80px; /* Добавляем отступ снизу, чтобы контент не перекрывался навигацией */
            box-sizing: border-box; overflow-y: auto; overflow-x: hidden; /* Включаем верт. прокрутку, отключаем гориз. */
            position: relative;
            min-height: calc(100vh - 80px); /* Ensure content fills the screen, minus nav height */
            justify-content: flex-start; /* Выравниваем контент по верху для корректной прокрутки */
            contain: content; /* ограничиваем влияние внутреннего layout/paint */
            content-visibility: auto; /* пропускаем отрисовку вне экрана */
            contain-intrinsic-size: 800px 1200px; /* резерв для раскладки при пропуске отрисовки */
        }

        .screen.active {
            display: flex;
        }
        
        /* Опустить все заголовки (топ бары) вместе с контентом */
        .screen header {
            top: 35px !important;
        }

        /* Дополнительный фон для header вверх, не меняя его позицию и ширину */
        .screen header::before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: -100px;        /* насколько вверх вытянуть фон */
            height: 100px;       /* высота продолжения */
            background: inherit;/* тот же фон, что у header */
            z-index: -1;        /* под контентом шапки */
        }

        /* Для рулетки: верхняя полоса без градиента вниз, только чистый фон */
        #roulette-screen header::before {
            background: rgba(0, 0, 0, 0.7); /* однородный тёмный фон вместо градиента */
        }

        /* Единая верхняя тёмная полоса, как в лобби, для игровых экранов */
        #game-screen::before,
        #roulette-screen::before,
        /* убраны #scratch-screen::before и #hilo-screen::before - там свои фоновые картинки */
        #blackjack-screen::before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            height: 170px;                 /* высота верхней полосы */
            background: rgba(0, 0, 0, 0.7); /* как bg-black/70 */
            z-index: -2;                    /* ниже header и его ::before */
        }
        
        /* Лобби экран - опускаем бар еще ниже (по умолчанию) */
        #lobby-screen header {
            top: 45px !important;
        }
        
        /* Лобби - фон казино */
        #lobby-screen {
            min-height: 100vh;
            background: 
                url('assets/bg-lobby.svg') center top / cover no-repeat fixed,
                linear-gradient(135deg, #0f0a1a 0%, #1a1025 30%, #151020 60%, #0a0812 100%) !important;
        }
        
        /* Android: убираем fixed attachment - тяжелый для WebView */
        html[data-platform="android"] #lobby-screen {
            background: 
                url('assets/bg-lobby.svg') center top / cover no-repeat,
                linear-gradient(135deg, #0f0a1a 0%, #1a1025 30%, #151020 60%, #0a0812 100%) !important;
            background-attachment: scroll !important;
        }
        
        /* iOS: более высокая позиция (меньше отступ) */
        html[data-platform="ios"] #lobby-screen header {
            top: 75px !important;
        }
        
        /* Android: еще ниже (больше отступ) */
        html[data-platform="android"] #lobby-screen header {
            top: 60px !important;
        }
        
        /* Экраны без смещения (рейтинги, магазин, задания, админка) */
        #leaderboard-screen header,
        #shop-screen header,
        #quests-screen header,
        #admin-screen header {
            top: 0 !important;
        }

        /* ========== ЛАЙВ ЛЕНТА ========== */
        #live-feed-container {
            top: 80px !important;
        }
        
        /* iOS: лайв-лента повыше */
        html[data-platform="ios"] #live-feed-container {
            top: 120px !important;
        }
        
        /* Android: лайв-лента пониже */
        html[data-platform="android"] #live-feed-container {
            top: 105px !important;
        }

        /* ========== РУЛЕТКА (Колесо Фортуны) - ПЛАТФОРМО-ЗАВИСИМЫЕ ПОЗИЦИИ ========== */
        
        /* По умолчанию */
        #roulette-screen {
            padding-top: calc(1rem + 25px) !important;
        }
        
        #roulette-screen header {
            top: 25px !important;
            background: transparent !important; /* убираем фон хедера */
        }

        /* Убираем расширенный фон у шапки рулетки */
        #roulette-screen header::before { display: none !important; }

        /* Отключаем верхнюю тёмную полосу экрана рулетки */
        #roulette-screen::before { display: none !important; }

        /* Тусклый плавный градиент на фоне всего экрана рулетки */
        #roulette-screen {
            min-height: 100vh;
            /* Растягиваем фон до самого верха без прозрачного промежутка */
            background: linear-gradient(
                180deg,
                rgba(16,18,24,0.95) 0%,
                rgba(12,12,16,0.92) 100%
            ) !important;
        }
        
        #roulette-info-btn {
            top: 70px !important;
        }
        
        /* iOS: настройка позиций для рулетки */
        html[data-platform="ios"] #roulette-screen {
            padding-top: calc(1rem + 90px) !important;
        }
        
        html[data-platform="ios"] #roulette-screen header {
            top: 90px !important;
        }
        
        html[data-platform="ios"] #roulette-info-btn {
            top: 100px !important;
        }
        
        /* Android: настройка позиций для рулетки */
        html[data-platform="android"] #roulette-screen {
            padding-top: calc(1rem + 90px) !important;
        }
        
        html[data-platform="android"] #roulette-screen header {
            top: 70px !important;
        }
        
        html[data-platform="android"] #roulette-info-btn {
            top: 70px !important;
        }

        /* ========== БОЛЬШЕ-МЕНЬШЕ - ПЛАТФОРМО-ЗАВИСИМЫЕ ПОЗИЦИИ ========== */
        
        /* По умолчанию */
        #hilo-screen {
            padding-top: calc(1rem + 25px) !important;
        }

        #hilo-screen header {
            top: 50px !important;
        }
        
        /* iOS: настройка позиций для хило */
        html[data-platform="ios"] #hilo-screen {
            padding-top: calc(1rem + 70px) !important;
        }
        
        html[data-platform="ios"] #hilo-screen header {
            top: 90px !important;
        }
        
        /* Android: настройка позиций для хило */
        html[data-platform="android"] #hilo-screen {
            padding-top: calc(1rem + 80px) !important;
        }
        
        html[data-platform="android"] #hilo-screen header {
            top: 70px !important;
        }

        /* ========== СКРЕТЧ-КАРТЫ - ПЛАТФОРМО-ЗАВИСИМЫЕ ПОЗИЦИИ ========== */
        
        /* По умолчанию */
        #scratch-screen {
            padding-top: 0 !important; /* убираем дополнительный отступ, поднимаем всё выше */
        }

        #scratch-screen header {
            top: 0 !important; /* поднимаем header максимально вверх */
            background: transparent !important; /* прячем фон шапки */
            z-index: 10; /* поверх игровых блоков */
        }
        #scratch-screen header::before { display: none !important; }
        
        /* iOS: настройка позиций для скретча */
        html[data-platform="ios"] #scratch-screen {
            padding-top: 70px !important; /* единообразно для iOS */
        }
        
        html[data-platform="ios"] #scratch-screen header {
            top: 20px !important;
        }
        
        /* Android: настройка позиций для скретча */
        html[data-platform="android"] #scratch-screen {
            padding-top: 50px !important;
        }
        
        html[data-platform="android"] #scratch-screen header {
            top: 15px !important;
        }

                /* Фон для скретч-экрана (как у блэкджека) */
                /* Полноэкранный фон для скретч-экрана (как в блэкджеке) */
                #scratch-screen { position: relative; min-height: 100vh; }
                #scratch-screen::before {
                    content: '';
                    position: absolute;
                    inset: 0;
                    /* Фолбэк */
                    background-image: url('content/scratch-cards.png');
                    /* Современные форматы */
                    background-image: image-set(
                        url('content/scratch-cards.avif') type('image/avif'),
                        url('content/scratch-cards.webp') type('image/webp'),
                        url('content/scratch-cards.png') type('image/png')
                    );
                    background-repeat: no-repeat;
                    background-size: cover;
                    /* регулируемый вертикальный сдвиг фоновой картинки */
                    background-position: center calc(var(--scratch-bg-offset-y, 0px));
                    opacity: 0.8;
                    pointer-events: none;
                    z-index: 0;
                }
                #scratch-screen::after {
                    content: '';
                    position: absolute;
                    inset: 0;
                    background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25));
                    pointer-events: none;
                    z-index: 1;
                }
                #scratch-screen > * { position: relative; z-index: 2; }
                /* Карточка внутри без собственного фонового градиента теперь полупрозрачна */
                #scratch-card-container::before {
                    background: rgba(0,0,0,0.35); /* упрощённый затемнённый фон без изображения */
                }

        /* ========== БЛЭКДЖЕК - ПЛАТФОРМО-ЗАВИСИМЫЕ ПОЗИЦИИ ========== */
        
        /* По умолчанию */
        #blackjack-screen {
            padding-top: calc(1rem + 25px) !important;
        }

        #blackjack-screen header {
            top: 25px !important;
            background: transparent !important; /* убираем фон шапки */
        }
        
        /* iOS: настройка позиций для блэкджека */
        html[data-platform="ios"] #blackjack-screen {
            padding-top: calc(1rem + 50px) !important;
        }
        
        html[data-platform="ios"] #blackjack-screen header {
            top: 90px !important;
            background: transparent !important;
        }
        
        /* Android: настройка позиций для блэкджека */
        html[data-platform="android"] #blackjack-screen {
            padding-top: calc(1rem + 30px) !important;
        }
        
        html[data-platform="android"] #blackjack-screen header {
            top: 70px !important;
            background: transparent !important;
        }

        /* Отключаем расширенный фон у шапки блэкджека */
        #blackjack-screen header::before { display: none !important; }

        /* Отключаем верхнюю тёмную полосу всего экрана блэкджека */
        #blackjack-screen::before { display: none !important; }

        /* Добавляем тусклый градиент с небольшим прозрачным отступом сверху */
        #blackjack-screen {
            min-height: 100vh;
            /* Убираем прозрачную полоску сверху — фон заполняет полностью */
            background: linear-gradient(
                180deg,
                rgba(16,18,24,0.95) 0%,
                rgba(12,12,16,0.92) 100%
            ) !important;
        }

        /* ========== PLINKO - ПЛАТФОРМО-ЗАВИСИМЫЕ ПОЗИЦИИ ========== */
        
        /* По умолчанию */
        #plinko-screen {
            padding-top: calc(1rem + 25px) !important;
            min-height: 100vh;
            background: 
                linear-gradient(180deg, rgba(10,10,26,0.95) 0%, rgba(26,26,58,0.92) 50%, rgba(10,10,26,0.95) 100%),
                url('content/plinko-bg.svg') center/cover no-repeat !important;
        }

        #plinko-screen header {
            top: 25px !important;
            background: transparent !important;
        }
        
        /* iOS: настройка позиций для Plinko */
        html[data-platform="ios"] #plinko-screen {
            padding-top: calc(1rem + 50px) !important;
        }
        
        html[data-platform="ios"] #plinko-screen header {
            top: 90px !important;
            background: transparent !important;
        }
        
        /* Android: настройка позиций для Plinko */
        html[data-platform="android"] #plinko-screen {
            padding-top: calc(1rem + 30px) !important;
        }
        
        html[data-platform="android"] #plinko-screen header {
            top: 70px !important;
            background: transparent !important;
        }

        /* Отключаем расширенный фон у шапки Plinko */
        #plinko-screen header::before { display: none !important; }

        /* Отключаем верхнюю тёмную полосу всего экрана Plinko */
        #plinko-screen::before { display: none !important; }

        /* Стили для игрового поля Plinko */
        #plinko-canvas {
            background: rgba(0, 0, 0, 0.4);
            border: 2px solid rgba(139, 92, 246, 0.3);
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.2), inset 0 0 30px rgba(0, 0, 0, 0.5);
        }

        /* Кнопки выбора в Plinko */
        .plinko-balls-btn.active,
        .plinko-rows-btn.active,
        .plinko-risk-btn.active {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
            color: #000 !important;
            font-weight: bold;
        }

        /* Множители под полем */
        #plinko-multipliers span {
            padding: 4px 6px;
            border-radius: 4px;
            font-size: 0.65rem;
            min-width: 28px;
            text-align: center;
        }

        /* ========== ЛОББИ КОНТЕНТ - ПРЯМЫЕ CSS СЕЛЕКТОРЫ ДЛЯ ПЛАТФОРМ ========== */
        
        /* По умолчанию (Default) */
        #open-season-pass-btn {
            margin-top: 0 !important;
        }
        
        #events-banner {
            margin-top: 2px !important;
        }
        
        #lobby-screen main > div:nth-of-type(2) {
            margin-top: 0 !important;
        }
        
        #lobby-screen main > div:nth-of-type(2) > div {
            margin-top: 0 !important;
        }
        
        #game-selection {
            margin-top: 0 !important;
        }
        
        /* iOS: настройка позиций элементов лобби */
        html[data-platform="ios"] #open-season-pass-btn {
            margin-top: 45px !important;
        }
        
        html[data-platform="ios"] #events-banner {
            margin-top: 10px !important;
        }
        
        html[data-platform="ios"] #lobby-screen main > div:nth-of-type(2) {
            margin-top: 15px !important;
        }
        
        html[data-platform="ios"] #lobby-screen main > div:nth-of-type(2) > div {
            margin-top: 8px !important;
        }
        
        html[data-platform="ios"] #game-selection {
            margin-top: 12px !important;
        }
        
        /* Android: настройка позиций элементов лобби */
        html[data-platform="android"] #open-season-pass-btn {
            margin-top: 30px !important;
        }
        
        html[data-platform="android"] #events-banner {
            margin-top: 10px !important;
        }
        
        html[data-platform="android"] #lobby-screen main > div:nth-of-type(2) {
            margin-top: 15px !important;
        }
        
        html[data-platform="android"] #lobby-screen main > div:nth-of-type(2) > div {
            margin-top: 8px !important;
        }
        
        html[data-platform="android"] #game-selection {
            margin-top: 8px !important;
        }

        /* ========== ИГРОВЫЕ АВТОМАТЫ (СЛОТЫ) - ПЛАТФОРМО-ЗАВИСИМЫЕ ПОЗИЦИИ ========== */
        
        /* По умолчанию (Default) */
        #game-screen {
            padding-top: calc(1rem + 25px) !important;
            min-height: 100vh;
            background: linear-gradient(
                180deg,
                rgba(16,18,24,0.95) 0%,
                rgba(12,12,16,0.92) 100%
            ) !important;
        }

        #game-screen header {
            top: 25px !important;
            background: transparent !important; /* убираем фон хедера слотов */
        }
        #game-screen header::before { display: none !important; }
        
        #slot-machine {
            margin-top: 0 !important;
        }
        
        /* iOS: настройка позиций для слотов */
        html[data-platform="ios"] #game-screen {
            padding-top: calc(1rem + 35px) !important;
        }
        
        html[data-platform="ios"] #game-screen header {
            top: 90px !important;
            background: transparent !important;
        }
        
        html[data-platform="ios"] #slot-machine {
            margin-top: 80px !important;
        }
        
        /* Android: настройка позиций для слотов */
        html[data-platform="android"] #game-screen {
            padding-top: calc(1rem + 35px) !important;
        }
        
        html[data-platform="android"] #game-screen header {
            top: 70px !important;
            background: transparent !important;
        }
        
        html[data-platform="android"] #slot-machine {
            margin-top: 65px !important;
        }
        
        /* ========== НИЖНИЙ КОНТЕНТ СЛОТОВ - ЕДИНАЯ УПРАВЛЯЕМАЯ ПОЗИЦИЯ ========== */
        
        /* По умолчанию */
        #game-screen main {
            margin-bottom: 0 !important;
        }
        
        /* iOS: опускаем/поднимаем весь нижний контент слотов */
        html[data-platform="ios"] #game-screen main {
            margin-bottom: -28px !important;
        }
        
        /* Android: опускаем/поднимаем весь нижний контент слотов */
        html[data-platform="android"] #game-screen main {
            margin-bottom: -28px !important;
        }

        /* Отключаем верхнюю тёмную полосу у слотов */
        #game-screen::before { display: none !important; }

        /* ========== ПРОФИЛЬ - ПЛАТФОРМО-ЗАВИСИМЫЕ ПОЗИЦИИ ========== */
        
        /* По умолчанию (Default) */
        #profile-screen {
            padding-top: calc(1rem + 25px) !important;
        }
        
        #back-to-lobby-from-profile-btn {
            top: 16px !important;
            left: 16px !important;
        }
        
        #locale-switch-btn {
            top: 16px !important;
            right: 60px !important;
        }
        
        #profile-settings-btn {
            top: 16px !important;
            right: 16px !important;
        }
        
        /* iOS: настройка позиций для профиля */
        html[data-platform="ios"] #profile-screen {
            padding-top: calc(1rem + 53px) !important;
        }
        
        html[data-platform="ios"] #back-to-lobby-from-profile-btn {
            top: 100px !important;
            left: 16px !important;
        }
        
        html[data-platform="ios"] #locale-switch-btn {
            top: 100px !important;
            right: 60px !important;
        }
        
        html[data-platform="ios"] #profile-settings-btn {
            top: 100px !important;
            right: 16px !important;
        }
        
        /* Android: настройка позиций для профиля */
        html[data-platform="android"] #profile-screen {
            padding-top: calc(1rem + 43px) !important;
        }
        
        html[data-platform="android"] #back-to-lobby-from-profile-btn {
            top: 80px !important;
            left: 16px !important;
        }
        
        html[data-platform="android"] #locale-switch-btn {
            top: 80px !important;
            right: 60px !important;
        }
        
        html[data-platform="android"] #profile-settings-btn {
            top: 80px !important;
            right: 16px !important;
        }

        /* ========== SVG ФОНЫ ДЛЯ ЭКРАНОВ ========== */
        
        /* Профиль - технологичный синий */
        #profile-screen {
            min-height: 100vh;
            background: 
                url('assets/bg-profile.svg') center top / cover no-repeat fixed,
                linear-gradient(180deg, #0a1628 0%, #1a2744 50%, #0d1829 100%) !important;
        }
        
        /* Сезонный пропуск - космическая тема */
        #season-screen {
            min-height: 100vh;
            background: 
                url('assets/bg-season.svg') center top / cover no-repeat fixed,
                linear-gradient(180deg, #0a0a1f 0%, #1a1035 50%, #0a0a1a 100%) !important;
        }
        
        /* Квесты - энергичные лучи */
        #quests-screen {
            min-height: 100vh;
            background: 
                url('assets/bg-quests.svg') center top / cover no-repeat fixed,
                linear-gradient(180deg, #0f172a 0%, #1e1b4b 50%, #0c0a1d 100%) !important;
        }
        
        /* Лидерборд - пьедестал почёта */
        #leaderboard-screen {
            min-height: 100vh;
            background: 
                url('assets/bg-leaders.svg') center top / cover no-repeat fixed,
                linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f0f1a 100%) !important;
        }
        
        /* Магазин - роскошный фиолетовый */
        #shop-screen {
            min-height: 100vh;
            background: 
                url('assets/bg-shop.svg') center top / cover no-repeat fixed,
                linear-gradient(180deg, #1a0a1a 0%, #2d1b3d 50%, #150a18 100%) !important;
        }

        /* ========== ПОЛЬЗОВАТЕЛЬСКИЕ НАСТРОЙКИ - ПЛАТФОРМО-ЗАВИСИМЫЕ ПОЗИЦИИ ========== */
        
        /* Настройки профиля - технологичный индиго */
        #user-settings-screen {
            padding-top: calc(1rem + 25px) !important;
            min-height: 100vh;
            background: 
                url('assets/bg-settings.svg') center top / cover no-repeat fixed,
                linear-gradient(135deg, #0c1220 0%, #1a2035 50%, #0a0f1a 100%) !important;
        }
        
        /* iOS: настройка позиций для пользовательских настроек */
        html[data-platform="ios"] #user-settings-screen {
            padding-top: calc(1rem + 80px) !important;
        }
        
        /* Android: настройка позиций для пользовательских настроек */
        html[data-platform="android"] #user-settings-screen {
            padding-top: calc(1rem + 60px) !important;
        }

        /* ========== ИНВЕНТАРЬ - ПЛАТФОРМО-ЗАВИСИМЫЕ ПОЗИЦИИ ========== */
        
        /* Инвентарь - тёплые сокровища */
        #inventory-screen {
            padding-top: calc(1rem + 25px) !important;
            min-height: 100vh;
            background: 
                url('assets/bg-inventory.svg') center top / cover no-repeat fixed,
                linear-gradient(135deg, #1a1510 0%, #2a2018 50%, #151008 100%) !important;
        }
        
        #back-from-inventory-btn {
            top: 16px !important;
            left: 16px !important;
        }
        
        /* iOS: настройка позиций для инвентаря */
        html[data-platform="ios"] #inventory-screen {
            padding-top: calc(1rem + 80px) !important;
        }
        
        html[data-platform="ios"] #back-from-inventory-btn {
            top: 100px !important;
            left: 16px !important;
        }
        
        /* Android: настройка позиций для инвентаря */
        html[data-platform="android"] #inventory-screen {
            padding-top: calc(1rem + 60px) !important;
        }
        
        html[data-platform="android"] #back-from-inventory-btn {
            top: 80px !important;
            left: 16px !important;
        }

        /* ========== РЕФЕРАЛЬНАЯ ПРОГРАММА - ПЛАТФОРМО-ЗАВИСИМЫЕ ПОЗИЦИИ ========== */
        
        /* Реферальная программа - сетевой зелёный */
        #referral-screen {
            padding-top: calc(1rem + 25px) !important;
            min-height: 100vh;
            background: 
                url('assets/bg-referral.svg') center top / cover no-repeat fixed,
                linear-gradient(135deg, #0a1a15 0%, #102820 50%, #081510 100%) !important;
        }
        
        #back-to-profile-from-referral-btn {
            top: 16px !important;
            left: 16px !important;
        }
        
        /* iOS: настройка позиций для реферальной программы */
        html[data-platform="ios"] #referral-screen {
            padding-top: calc(1rem + 80px) !important;
        }
        
        html[data-platform="ios"] #back-to-profile-from-referral-btn {
            top: 24px !important;
            left: 16px !important;
        }
        
        /* Android: настройка позиций для реферальной программы */
        html[data-platform="android"] #referral-screen {
            padding-top: calc(1rem + 60px) !important;
        }
        
        html[data-platform="android"] #back-to-profile-from-referral-btn {
            top: 20px !important;
            left: 16px !important;
        }

        /* ========== СЕЗОННЫЙ ПРОПУСК - ПЛАТФОРМО-ЗАВИСИМЫЕ ПОЗИЦИИ (как у реферальной) ========== */
        /* По умолчанию */
        #season-screen {
            padding-top: calc(1rem + 25px) !important;
        }

        #back-to-lobby-from-season-btn {
            top: 16px !important;
            left: 16px !important;
        }

        /* iOS: как у реферальной программы */
        html[data-platform="ios"] #season-screen {
            padding-top: calc(1rem + 80px) !important;
        }

        html[data-platform="ios"] #back-to-lobby-from-season-btn {
            top: 24px !important;
            left: 16px !important;
        }

        /* Android: как у реферальной программы */
        html[data-platform="android"] #season-screen {
            padding-top: calc(1rem + 60px) !important;
        }

        html[data-platform="android"] #back-to-lobby-from-season-btn {
            top: 20px !important;
            left: 16px !important;
        }

        /* Стили для кнопок */
        .btn-golden {
            background: linear-gradient(145deg, #ffd700, #f0c000);
            color: #1a1a1a;
            font-weight: bold;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-golden:hover, .btn-golden:focus {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
        }
        
        .btn-golden:disabled,
        .btn-danger:disabled {
            background: #555;
            color: #888;
            box-shadow: none;
            cursor: not-allowed;
            transform: none;
        }

        .btn-danger {
            background: linear-gradient(145deg, #ff4141, #e02020);
            color: #fff;
            font-weight: bold;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(255, 65, 65, 0.3);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-danger:hover, .btn-danger:focus {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 65, 65, 0.5);
        }

        /* Отменяем эффекты наведения для заблокированных кнопок */
        .btn-golden:disabled:hover,
        .btn-danger:disabled:hover {
            transform: none;
            box-shadow: none;
        }
        /* Стили для полей ввода */
        .input-field {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid #ffd700;
            color: #fff;
            border-radius: 0.5rem;
            padding: 0.75rem;
            transition: all 0.3s ease;
            appearance: textfield; /* стандартное свойство */
            -moz-appearance: textfield; /* Firefox */
        }
        .input-field::-webkit-outer-spin-button,
        .input-field::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        .input-field:focus {
            outline: none;
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        
        /* Стили для логотипа */
        .logo-font {
            font-family: 'Bebas Neue', cursive;
            font-size: 3rem;
            color: #ffd700;
            text-shadow: 0 0 10px #ffd700, 0 0 20px #ffae00;
        }

        /* Стили слотов перенесены в css/slots.css */

        /* Модальное окно */
        .modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); align-items: center; justify-content: center; }
        .modal-content { background: #1a1a1a; padding: 2rem; border-radius: 1rem; border: 2px solid #ffd700; text-align: center; box-shadow: 0 0 30px rgba(255, 215, 0, 0.5); animation: fadeIn 0.3s ease; max-width: 90%; max-height: 80vh; overflow-y: auto;}
        @keyframes fadeIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
        
        /* Дополнительные анимации для улучшенного UI */
        @keyframes animate-pulse-subtle {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.95; transform: scale(1.02); }
        }
        .animate-pulse-subtle {
            animation: animate-pulse-subtle 3s ease-in-out infinite;
        }
        
        /* Эффект свечения активной кнопки */
        .btn-golden:not(:disabled) {
            animation: btn-ready-glow 2s ease-in-out infinite;
        }
        @keyframes btn-ready-glow {
            0%, 100% { box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3); }
            50% { box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.3); }
        }
        
        /* Анимация монет */
        #coin-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; pointer-events: none; z-index: 999; }
        .coin { position: absolute; width: 20px; height: 20px; background-color: gold; border-radius: 50%; animation: fall linear; opacity: 0; }
        @keyframes fall { 0% { transform: translateY(-100px) rotate(0deg); opacity: 1; } 100% { transform: translateY(100vh) rotate(720deg); opacity: 0; } }
        /* Хинты для производительности эффектов */
        .coin, .jackpot-content, .jackpot-title, .reel, .reels-container {
            will-change: transform, opacity;
            backface-visibility: hidden;
            /* не задаём transform тут, чтобы не перетирать существующие translate() */
        }
        
        /* Джекпот стили перенесены в css/slots.css */
        
        /* Стили профиля */
        .profile-stat { background: rgba(0,0,0,0.2); padding: 0.5rem 1rem; border-radius: 0.5rem; display: flex; justify-content: space-between; }
        .profile-avatar { 
            width: 100px; 
            height: 100px; 
            border-radius: 50%; 
            background-size: cover;
            background-position: center;
        }
        
        /* Рамка аватара overlay */
        #profile-avatar-frame {
            pointer-events: none;
            z-index: 10;
        }
        #profile-avatar-frame img {
            pointer-events: none;
        }
        
        /* Кнопки быстрых ставок */
        .quick-bet-btn, .line-btn {
            background: rgba(255, 215, 0, 0.2);
            border: 1px solid #ffd700;
            color: #ffd700;
            transition: all 0.3s ease;
        }
        .quick-bet-btn.active, .line-btn.active {
            background: #ffd700;
            color: #1a1a1a;
            font-weight: bold;
        }

        /* Общие стили для карточек выбора игры в лобби */
        .game-card {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: flex-end; /* Прижимаем текст к низу */
            height: 180px; /* Фиксированная высота для карточек */
            padding: 1rem;
            border-radius: 0.5rem;
            overflow: hidden;
            background-size: cover;
            background-position: center;
            color: white;
            text-shadow: 0 1px 3px rgba(0,0,0,0.8);
            text-align: center;
            -webkit-tap-highlight-color: transparent;
        }
        .game-card:not(.disabled):hover {
            box-shadow: 0 0 0 2px #facc15; /* yellow-400 */
        }
        .game-card:not(.disabled):active {
            box-shadow: 0 0 0 3px #facc15;
            transform: scale(0.98);
        }
        /* Большая карточка (главная игра) */
        .game-card-large {
            height: 140px;
        }
        /* Маленькая карточка (сетка 2x3) */
        .game-card-small {
            height: 100px;
            padding: 0.75rem;
            background-size: calc(100% + 50px) auto;
            background-position: center;
        }
        .game-card-small h3 {
            font-size: 1rem;
            line-height: 1.2;
        }
        .game-card-small p {
            font-size: 0.7rem;
        }
        /* Затемняющий оверлей для читаемости текста */
        .game-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: -1px;
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 60%);
            border-radius: inherit;
            pointer-events: none;
        }
        .game-card > * {
            position: relative; /* Чтобы текст был над оверлеем */
        }
        #play-slots-btn.game-card {
            background-image: url('content/slots.png');
            background-image: image-set(
                url('content/slots.avif') type('image/avif'),
                url('content/slots.webp') type('image/webp'),
                url('content/slots.png') type('image/png')
            );
            background-position: center calc(50% + 9px);
        }
        #play-roulette-btn.game-card {
            background-image: url('content/roulete.png');
            background-image: image-set(
                url('content/roulete.avif') type('image/avif'),
                url('content/roulete.webp') type('image/webp'),
                url('content/roulete.png') type('image/png')
            );
        }
        #coming-soon-card.game-card {
            background-image: url('content/soon.png');
            background-image: image-set(
                url('content/soon.avif') type('image/avif'),
                url('content/soon.webp') type('image/webp'),
                url('content/soon.png') type('image/png')
            );
        }
        #play-hilo-btn.game-card {
            background-image: url('content/hight-low.png');
            background-image: image-set(
                url('content/hight-low.avif') type('image/avif'),
                url('content/hight-low.webp') type('image/webp'),
                url('content/hight-low.png') type('image/png')
            );
        }
        #play-scratch-cards-btn.game-card {
            background-image: url('content/scratch-cards.png');
            background-image: image-set(
                url('content/scratch-cards.avif') type('image/avif'),
                url('content/scratch-cards.webp') type('image/webp'),
                url('content/scratch-cards.png') type('image/png')
            );
        }
        #play-blackjack-btn.game-card {
            background-image: url('content/blackjack.png');
            background-image: image-set(
                url('content/blackjack.avif') type('image/avif'),
                url('content/blackjack.webp') type('image/webp'),
                url('content/blackjack.png') type('image/png')
            );
        }
        /* Plinko стили вынесены в css/plinko.css */
        #play-crash-btn.game-card {
            background-image: url('content/crash.png');
            background-image: image-set(
                url('content/crash.avif') type('image/avif'),
                url('content/crash.webp') type('image/webp'),
                url('content/crash.png') type('image/png')
            );
            background-size: 100%;
            background-position: center 34%;
            background-repeat: no-repeat;
            background-color: #1a1a2e;
        }
        #play-mines-btn.game-card {
            background-image: url('content/mines.png');
            background-image: image-set(
                url('content/mines.avif') type('image/avif'),
                url('content/mines.webp') type('image/webp'),
                url('content/mines.png') type('image/png')
            );
            background-size: 100%;
            background-position: center 34%;
            background-repeat: no-repeat;
            background-color: #1a1a2e;
        }
        /* Бейдж NEW для игровых карточек */
        .game-new-badge {
            position: absolute;
            top: 8px;
            right: 8px;
            padding: 3px 8px;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.5px;
            color: #fff;
            background: linear-gradient(135deg, #22c55e, #16a34a);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 9999px;
            text-shadow: 0 1px 0 rgba(0,0,0,0.4);
            box-shadow: 0 0 0 2px rgba(0,0,0,0.3), 0 4px 10px rgba(34, 197, 94, 0.35);
            pointer-events: none;
            z-index: 10;
            will-change: transform, box-shadow;
        }
        /* Бейдж SOON для игровых карточек (оранжевый) */
        .game-soon-badge {
            position: absolute;
            top: 8px;
            right: 8px;
            padding: 3px 8px;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.5px;
            color: #fff;
            background: linear-gradient(135deg, #f97316, #ea580c);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 9999px;
            text-shadow: 0 1px 0 rgba(0,0,0,0.4);
            box-shadow: 0 0 0 2px rgba(0,0,0,0.3), 0 4px 10px rgba(249, 115, 22, 0.35);
            pointer-events: none;
            z-index: 10;
            will-change: transform, box-shadow;
            animation: game-badge-pulse 1.8s ease-in-out infinite;
        }
        @keyframes game-badge-pulse {
            0% {
                transform: scale(1) rotate(0deg);
                box-shadow: 0 0 0 2px rgba(0,0,0,0.3), 0 4px 10px rgba(249, 115, 22, 0.35);
            }
            50% {
                transform: scale(1.1) rotate(-1deg);
                box-shadow: 0 0 0 2px rgba(0,0,0,0.3), 0 8px 20px rgba(249, 115, 22, 0.55);
            }
            100% {
                transform: scale(1) rotate(0deg);
                box-shadow: 0 0 0 2px rgba(0,0,0,0.3), 0 4px 10px rgba(249, 115, 22, 0.35);
            }
        }
        /* Android: упрощённая анимация для SOON бейджа */
        html[data-platform="android"] .game-soon-badge {
            animation: game-badge-pulse-simple 2.5s ease-in-out infinite;
        }
        @keyframes game-badge-pulse-simple {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.05); opacity: 0.9; }
        }
        /* Бейдж HOT (🔥) для популярных игр */
        .game-hot-badge {
            position: absolute;
            top: 8px;
            left: 8px;
            padding: 2px 6px;
            font-size: 14px;
            background: linear-gradient(135deg, #ef4444, #dc2626);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 6px;
            box-shadow: 0 2px 8px rgba(239, 68, 68, 0.5);
            pointer-events: none;
            z-index: 10;
            animation: hot-glow 1.5s ease-in-out infinite;
            /* GPU optimization */
            transform: translateZ(0);
        }
        @keyframes hot-glow {
            0%, 100% { box-shadow: 0 2px 8px rgba(239, 68, 68, 0.5); }
            50% { box-shadow: 0 2px 16px rgba(239, 68, 68, 0.8), 0 0 20px rgba(239, 68, 68, 0.4); }
        }
        /* Android: упрощённая анимация для бейджа HOT */
        html[data-platform="android"] .game-hot-badge {
            animation: hot-glow-simple 2s ease-in-out infinite;
        }
        @keyframes hot-glow-simple {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }
        /* Staggered fade-in анимация для карточек */
        .game-card {
            opacity: 0;
            transform: translateY(30px);
            animation: card-fade-in 0.6s ease-out forwards;
            /* GPU acceleration hint */
            will-change: opacity, transform;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
        }
        .game-card-large { animation-delay: 0.1s; }
        .game-card-small:nth-child(1) { animation-delay: 0.15s; }
        .game-card-small:nth-child(2) { animation-delay: 0.2s; }
        .game-card-small:nth-child(3) { animation-delay: 0.25s; }
        .game-card-small:nth-child(4) { animation-delay: 0.3s; }
        .game-card-small:nth-child(5) { animation-delay: 0.35s; }
        .game-card-small:nth-child(6) { animation-delay: 0.4s; }
        .game-card-small:nth-child(7) { animation-delay: 0.45s; }
        .game-card-small:nth-child(8) { animation-delay: 0.5s; }
        @keyframes card-fade-in {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        /* Android: ускоренная анимация карточек и сброс will-change после анимации */
        html[data-platform="android"] .game-card {
            animation-duration: 0.35s;
        }
        html[data-platform="android"] .game-card-small:nth-child(1) { animation-delay: 0.08s; }
        html[data-platform="android"] .game-card-small:nth-child(2) { animation-delay: 0.1s; }
        html[data-platform="android"] .game-card-small:nth-child(3) { animation-delay: 0.12s; }
        html[data-platform="android"] .game-card-small:nth-child(4) { animation-delay: 0.14s; }
        html[data-platform="android"] .game-card-small:nth-child(5) { animation-delay: 0.16s; }
        html[data-platform="android"] .game-card-small:nth-child(6) { animation-delay: 0.18s; }
        html[data-platform="android"] .game-card-small:nth-child(7) { animation-delay: 0.2s; }
        html[data-platform="android"] .game-card-small:nth-child(8) { animation-delay: 0.22s; }
        /* Skeleton loading для карточек */
        .game-card.skeleton {
            opacity: 1 !important;
            transform: translateY(0) !important;
            background: linear-gradient(90deg, #2a2a3a 25%, #3a3a4a 50%, #2a2a3a 75%) !important;
            background-size: 200% 100% !important;
            animation: skeleton-shimmer 1.5s infinite !important;
        }
        .game-card.skeleton::before {
            display: none !important;
        }
        .game-card.skeleton > * {
            visibility: hidden !important;
        }
        @keyframes skeleton-shimmer {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }
        /* Стили для заблокированных игровых карточек */
        .game-card.disabled {
            pointer-events: none; /* Отключаем все события мыши */
        }
        .game-card.disabled > *:not(.game-soon-badge):not(.game-new-badge) {
            opacity: 0.7;
            filter: grayscale(100%);
        }
        .game-card.disabled::after {
            content: '🔒'; /* Иконка замка */
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 3rem;
            color: #fff;
            text-shadow: 0 0 10px rgba(0,0,0,0.8);
            z-index: 2; /* Поверх оверлея */
        }
        .game-card-small.disabled::after {
            font-size: 2rem; /* Меньший замок для маленьких карточек */
        }
        .game-card.disabled::before {
            background: rgba(0,0,0,0.7); /* Более темный оверлей */
            filter: grayscale(100%);
        }
        /* Бейджи остаются цветными на заблокированных карточках */
        .game-card.disabled .game-soon-badge,
        .game-card.disabled .game-new-badge {
            filter: none !important;
            opacity: 1 !important;
        }

        /* Стили рулетки перенесены в css/roulette.css */

        /* Стили для лайв-ленты */
        .feed-item {
            position: absolute;
            width: 100%;
            text-align: center;
            font-size: 0.75rem; /* 12px */
            color: #a0aec0; /* gray-500 */
            transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
            white-space: nowrap; /* Prevent text from wrapping */
            transform: translateY(100%); /* Начинает за пределами видимости снизу */
            opacity: 0;
            /* GPU acceleration для плавности */
            will-change: transform, opacity;
            backface-visibility: hidden;
        }
        /* Android: ускоренная анимация ленты */
        html[data-platform="android"] .feed-item {
            transition: transform 0.3s ease-out, opacity 0.3s ease-out;
        }
        .feed-item .username { color: #fff; font-weight: 600; }
        .feed-item .amount { color: #f6e05e; /* yellow-400 */ font-weight: 600; }

        .feed-item.visible {
            transform: translateY(0); /* Появляется в контейнере */
            opacity: 1;
        }

        /* Стили для нижней навигации */
        .nav-btn {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: none;
            border: none;
            color: #888;
            font-size: 0.8rem;
            transition: all 0.3s ease;
            padding: 0.5rem;
            cursor: pointer;
        }
        .nav-btn .nav-text, .nav-btn .nav-icon {
            transition: all 0.3s ease;
        }
        .nav-btn .nav-icon {
            position: absolute;
            font-size: 1.5rem;
            opacity: 0;
            transform: translateY(10px);
        }
        .nav-btn.active {
            color: #ffd700;
            transform: translateY(-5px);
        }
        .nav-btn.active .nav-text {
            opacity: 0;
            transform: translateY(-10px);
        }
        .nav-btn.active .nav-icon {
            opacity: 1;
            transform: translateY(0);
        }
        #bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 100;
            /* Фиксированная высота чтобы не прыгала при скролле */
            min-height: 60px;
            box-sizing: border-box;
            /* Отступ для safe area, но с фиксированным минимумом */
            padding-bottom: env(safe-area-inset-bottom, 8px);
        }
        
        /* Android: фиксированный отступ вместо динамического */
        html[data-platform="android"] #bottom-nav {
            padding-bottom: 12px;
        }

        /* Стили для таблицы лидеров */
        .leaderboard-item {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
        }
        .leaderboard-item.rank-1 { border-color: #ffd700; box-shadow: 0 0 10px #ffd700; }
        .leaderboard-item.rank-2 { border-color: #c0c0c0; box-shadow: 0 0 8px #c0c0c0; }
        .leaderboard-item.rank-3 { border-color: #cd7f32; box-shadow: 0 0 6px #cd7f32; }
        .leaderboard-avatar { width: 32px; height: 32px; }

        /* Стили для индикатора онлайна */
        .online-indicator {
            width: 10px;
            height: 10px;
            background-color: #48bb78; /* green-500 */
            border-radius: 50%;
            animation: pulse-green 2s infinite;
        }

        @keyframes pulse-green {
            0% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(72, 187, 120, 0.7);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 0 0 10px rgba(72, 187, 120, 0);
            }
        }

        /* Анимация для предпросмотра косметики в магазине */
        @keyframes pulse-slow {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.8;
                transform: scale(1.05);
            }
        }

        .animate-pulse-slow {
            animation: pulse-slow 3s ease-in-out infinite;
        }

        .cosmetic-preview {
            transition: all 0.3s ease;
        }

        .cosmetic-preview:hover {
            transform: scale(1.1);
        }

        /* Стили hilo перенесены в css/hilo.css */

        /* Затемнение фона изображения стола Блэкджека через overlay */
        .blackjack-table { position: relative; overflow: hidden; }
        .blackjack-table::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.55); /* затемняем фон для читаемости текста */
            pointer-events: none;
        }

        /* Стили scratch перенесены в css/scratch.css */

        /* Стили для вкладок заданий/достижений */
        .tabs {
            display: flex;
            gap: 4px;
        }

        .tab-btn, .admin-tab-btn {
            background: transparent;
            color: #888;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .tab-btn.active, .admin-tab-btn.active {
            background: linear-gradient(145deg, #ffd700, #f0c000);
            color: #1a1a1a;
        }

        .tab-content, .admin-tab-content {
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Стили редкости косметики */
        .rarity-common {
            border: 2px solid #9ca3af !important;
            box-shadow: 0 0 10px rgba(156, 163, 175, 0.3);
        }

        .rarity-uncommon {
            border: 2px solid #3b82f6 !important;
            box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
        }

        .rarity-rare {
            border: 2px solid #8b5cf6 !important;
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
        }

        .rarity-epic {
            border: 2px solid #f59e0b !important;
            box-shadow: 0 0 25px rgba(245, 158, 11, 0.6);
        }

        .rarity-legendary {
            border: 2px solid #fbbf24 !important;
            box-shadow: 0 0 30px rgba(251, 191, 36, 0.7);
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.1));
        }

        /* Статус косметики (активна/куплена) */
        .cosmetic-item.owned {
            opacity: 0.9;
        }

        .cosmetic-item.active-item {
            border-width: 3px !important;
            transform: scale(1.05);
        }

        /* Кнопки магазина */
        .shop-tabs {
                    display: flex;
                    gap: 10px;
                    margin-bottom: 20px;
                    overflow: hidden; /* предотвращает выход текста за фон */
        }

        .shop-tab-btn {
                    background: transparent;
                    color: #888;
                    font-weight: 600;
                    transition: all 0.3s ease;
                    border: none;
                    cursor: pointer;
                    padding: 10px 12px; /* еще меньше боковые отступы */
                    border-radius: 8px;
                    flex: 1 1 0; /* равномерное распределение */
                    min-width: 0; /* позволяем сжиматься */
                    white-space: nowrap; /* не переносим текст */
                    overflow: hidden; /* обрезаем излишки */
                    text-overflow: ellipsis; /* троеточие при нехватке места */
                    font-size: 0.95rem; /* чуть меньше шрифт */
                    letter-spacing: -0.3px; /* компактнее */
        }

        .shop-tab-btn.active {
            background: linear-gradient(145deg, #ffd700, #f0c000);
            color: #1a1a1a;
        }

        .shop-tab-content {
            animation: fadeIn 0.3s ease;
        }

        /* Стили для Блэкджека */
        .blackjack-card {
            width: 90px;
            height: 128px;
            transition: all 0.3s ease;
        }

        .blackjack-card img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .blackjack-table {
            background-size: cover;
            /* управляем вертикальным положением PNG-фона стола */
            background-position: center calc(var(--blackjack-bg-offset-y, 0px)) !important;
            /* дополнительный трекер Y-позиции для совместимости */
            background-position-y: calc(var(--blackjack-bg-offset-y, 0px)) !important;
        }

        .dealer-area, .player-area {
            position: relative;
        }

        @media (max-width: 640px) {
            .blackjack-card {
                width: 75px;
                height: 107px;
            }
            
            /* Улучшение читаемости на малых экранах */
            .blackjack-controls {
                padding: 0.5rem;
            }
            
            .blackjack-controls button {
                padding: 0.5rem 1rem;
                font-size: 0.875rem;
            }
        }

        /* Дополнительные проверки для очень малых экранов */
        @media (max-width: 375px) {
            .blackjack-card {
                width: 65px;
                height: 93px;
            }
            
            #blackjack-result-message {
                font-size: 1.5rem !important;
            }
        }

        /* Toggle Switch стили для настроек */
        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 24px;
        }

        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #4a4a4a;
            transition: 0.3s;
            border-radius: 24px;
            border: 2px solid #666;
        }

        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 16px;
            width: 16px;
            left: 2px;
            bottom: 2px;
            background-color: white;
            transition: 0.3s;
            border-radius: 50%;
        }

        input:checked + .toggle-slider {
            background: linear-gradient(145deg, #ffd700, #f0c000);
            border-color: #ffd700;
        }

        input:checked + .toggle-slider:before {
            transform: translateX(26px);
            background-color: #1a1a1a;
        }

        .toggle-slider:hover {
            opacity: 0.9;
        }

        /* Классы для управления анимациями через настройки */
        .no-transitions * {
            transition: none !important;
        }

        .reduce-animations * {
            animation-duration: 0.1s !important;
            transition-duration: 0.1s !important;
        }

        /* Режим экономии эффектов (в настройках можно включить класс .lite-mode на body) */
        .lite-mode *, .lite-mode .game-card, .lite-mode .wheel-container, .lite-mode .modal-content {
            box-shadow: none !important;
            filter: none !important;
            text-shadow: none !important;
        }
        .lite-mode .jackpot-title, .lite-mode .wheel-sector.glow .sector-content::after, .lite-mode .btn-golden {
            animation: none !important;
        }
        /* Лобби: отключаем анимации карточек и бейджей в lite-mode */
        .lite-mode .game-card {
            animation: none !important;
            opacity: 1 !important;
            transform: none !important;
            will-change: auto !important;
        }
        .lite-mode .game-hot-badge,
        .lite-mode .game-soon-badge,
        .lite-mode .game-new-badge {
            animation: none !important;
        }
        .lite-mode .online-indicator {
            animation: none !important;
        }
        .lite-mode .feed-item {
            transition: none !important;
        }
        /* lite-mode: упрощённый фон лобби */
        .lite-mode #lobby-screen {
            background: linear-gradient(135deg, #0f0a1a 0%, #1a1025 50%, #0a0812 100%) !important;
            background-attachment: scroll !important;
        }
        /* В lite-mode оставляем фоновые изображения, но убираем дорогие оверлеи */
        .lite-mode #scratch-screen::after,
        .lite-mode .scratch-foil-overlay,
        .lite-mode .blackjack-table::before {
            display: none !important; /* убираем полупрозрачные/блюр-оверлеи */
        }
        /* В lite-mode отключаем лишь параллакс и вторичные эффекты, не убирая основной фон */
        .lite-mode .reel-parallax-back { display: none !important; }
        .lite-mode .coin { animation: none !important; }
        .lite-mode .wheel-container { animation: none !important; }

        /* Уважение системной настройки снижения движения */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation: none !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

        /* Стили для range-слайдеров (громкость) с поддержкой iOS */
        input[type="range"] {
            -webkit-appearance: none;
            appearance: none;
            width: 100%;
            height: 6px;
            border-radius: 3px;
            background: linear-gradient(to right, #ffd700 0%, #ffd700 60%, #4a4a4a 60%, #4a4a4a 100%);
            outline: none;
            cursor: pointer;
            /* iOS specific */
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
            pointer-events: auto;
            user-select: none;
            -webkit-user-select: none;
        }

        /* Thumb стили для Webkit (Chrome, Safari, iOS) */
        input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: linear-gradient(145deg, #ffd700, #f0c000);
            cursor: pointer;
            border: 2px solid #1a1a1a;
            box-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
            /* iOS specific */
            -webkit-tap-highlight-color: transparent;
        }

        /* Thumb стили для Firefox */
        input[type="range"]::-moz-range-thumb {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: linear-gradient(145deg, #ffd700, #f0c000);
            cursor: pointer;
            border: 2px solid #1a1a1a;
            box-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
        }

        /* Track стили для Webkit */
        input[type="range"]::-webkit-slider-runnable-track {
            width: 100%;
            height: 6px;
            border-radius: 3px;
            background: transparent;
        }

        /* Track стили для Firefox */
        input[type="range"]::-moz-range-track {
            width: 100%;
            height: 6px;
            border-radius: 3px;
            background: #4a4a4a;
        }

        /* Активное состояние для iOS */
        input[type="range"]:active::-webkit-slider-thumb {
            transform: scale(1.2);
            box-shadow: 0 4px 12px rgba(255, 215, 0, 0.7);
        }

/* ===================================
   REFERRAL SYSTEM STYLES
   =================================== */

.referral-screen {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.referral-screen h2 {
    font-size: 28px;
    font-weight: bold;
    color: #ffd700;
    text-align: center;
    margin-bottom: 30px;
}

.referral-screen h3 {
    font-size: 20px;
    font-weight: 600;
    color: #f0c000;
    margin-bottom: 15px;
}

/* Блок приглашения */
.referral-invite-section {
    background: rgba(30, 30, 30, 0.8);
    border: 2px solid #ffd700;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.referral-invite-section p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.5;
}

.referral-link-container {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.referral-link-container input {
    flex: 1;
    background: #1a1a1a;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 12px;
    color: #fff;
    font-size: 14px;
    min-width: 0;
}

.referral-link-container .btn-primary {
    min-width: 50px;
    padding: 12px 16px;
    flex-shrink: 0;
}

.btn-success {
    background: linear-gradient(145deg, #10b981, #059669);
    color: white;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
    background: linear-gradient(145deg, #059669, #047857);
    box-shadow: 0 6px 15px rgba(16, 185, 129, 0.5);
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(145deg, #3b82f6, #2563eb);
    color: white;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(145deg, #2563eb, #1d4ed8);
    box-shadow: 0 6px 15px rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
}

.btn-primary.copied {
    background: linear-gradient(145deg, #10b981, #059669);
}

.btn-secondary {
    background: rgba(75, 85, 99, 0.8);
    color: white;
    font-weight: bold;
    padding: 12px 24px;
    border: 1px solid #4b5563;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(107, 114, 128, 0.9);
    transform: translateY(-2px);
}

.btn-back {
    background: rgba(30, 30, 30, 0.8);
    color: #ffd700;
    border: 1px solid #ffd700;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: rgba(50, 50, 50, 0.9);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

/* Статистика */
.referral-stats-section {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid #444;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.referral-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 15px;
}

.stat-card {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #ffd700;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
    transform: translateY(-3px);
}

.stat-value {
    font-size: 28px;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
}

/* Список рефералов */
.referral-list-section {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid #444;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.referral-table {
    width: 100%;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
}

.referral-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 10px;
    padding: 10px;
    background: rgba(40, 40, 40, 0.8);
    border-radius: 8px;
    font-weight: bold;
    color: #ffd700;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.referral-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 10px;
    padding: 12px 10px;
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid #333;
    border-radius: 6px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
}

.referral-table-row:hover {
    background: rgba(30, 30, 30, 0.8);
    border-color: #555;
}

.referral-user {
    color: #fff;
    font-weight: 500;
}

.referral-level {
    color: #60a5fa;
    font-weight: 600;
}

.referral-status {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
}

.status-donated {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid #10b981;
}

.status-active {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid #3b82f6;
}

.referral-donation {
    color: #fbbf24;
    font-weight: 500;
}

.no-referrals {
    text-align: center;
    color: #999;
    padding: 30px;
    font-style: italic;
}

/* Информационная секция */
.referral-info-section {
    text-align: center;
    margin-bottom: 20px;
}

/* Модальное окно с информацией */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.referral-info-modal {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 2px solid #ffd700;
    border-radius: 16px;
    padding: 30px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.referral-info-modal h3 {
    font-size: 24px;
    color: #ffd700;
    text-align: center;
    margin-bottom: 25px;
}

.referral-info-content {
    margin-bottom: 25px;
}

.info-block {
    background: rgba(40, 40, 40, 0.6);
    border: 1px solid #444;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.info-block h4 {
    font-size: 16px;
    color: #ffd700;
    margin-bottom: 10px;
}

.info-block p {
    color: #ccc;
    line-height: 1.6;
    font-size: 14px;
}

.info-block strong {
    color: #10b981;
    font-weight: 600;
}

.info-highlight {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
}

.info-highlight h4 {
    color: #10b981;
}

.close-modal {
    width: 100%;
    margin-top: 10px;
}

/* Адаптивность */
@media (max-width: 600px) {
    .referral-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .referral-table-header,
    .referral-table-row {
        grid-template-columns: 2fr 1fr 1.2fr 1fr;
        font-size: 11px;
        gap: 5px;
        padding: 10px 8px;
    }
    
    .referral-screen h2 {
        font-size: 22px;
    }
    
    .referral-screen h3 {
        font-size: 18px;
    }

    .referral-link-container {
        flex-direction: row;
    }

    .referral-link-container input {
        font-size: 12px;
        padding: 10px 8px;
    }

    .referral-link-container .btn-primary {
        font-size: 18px;
        padding: 10px 12px;
        min-width: 50px;
    }

    .btn-success, .btn-secondary, .btn-back {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }

    .stat-card {
        padding: 12px;
    }

    .stat-value {
        font-size: 22px;
    }

    .stat-label {
        font-size: 10px;
    }
}

/* Анимация для shimmer эффекта */
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.animate-shimmer {
    animation: shimmer 3s infinite;
}

/* Анимация для бирки первой покупки */
@keyframes pulse-slow {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
    }
}

.animate-pulse-slow {
    animation: pulse-slow 2s ease-in-out infinite;
}

.first-purchase-badge {
    transition: transform 0.3s ease;
}

.first-purchase-badge:hover {
    transform: scale(1.1);
}

/* Стили для модального окна призов рулетки */
#roulette-info-modal .prize-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#roulette-info-modal .prize-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* VIP: бейдж SOON на вкладке, как у бандлов (красный, пульсация) */
.vip-soon-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #fff;
    background: linear-gradient(135deg, #ef4444, #b91c1c);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9999px;
    text-shadow: 0 1px 0 rgba(0,0,0,0.5);
    box-shadow: 0 0 0 2px rgba(0,0,0,0.35), 0 6px 14px rgba(239, 68, 68, 0.25);
    pointer-events: none;
    will-change: transform, box-shadow;
    animation: vip-badge-pulse 1.8s ease-in-out infinite;
}

@keyframes vip-badge-pulse {
    0% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 0 2px rgba(0,0,0,0.35), 0 6px 14px rgba(239,68,68,0.25);
    }
    50% {
        transform: scale(1.1) rotate(-1deg);
        box-shadow: 0 0 0 2px rgba(0,0,0,0.35), 0 10px 24px rgba(239,68,68,0.45);
    }
    100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 0 2px rgba(0,0,0,0.35), 0 6px 14px rgba(239,68,68,0.25);
    }
}

/* VIP карточки (минимальный акцент) */
.vip-card {
    backdrop-filter: blur(2px);
}

/* VIP tier enhanced visuals */
.vip-card.bronze {
    background: linear-gradient(135deg,#3a2a1a,#5c3b1d 40%,#7a5023 80%) !important;
    border: 2px solid #c2925a !important;
    box-shadow: 0 0 8px rgba(194,146,90,0.35), 0 0 20px rgba(0,0,0,0.4);
}
.vip-card.silver {
    background: linear-gradient(135deg,#2d2f36,#444a55 45%,#5e6672 85%) !important;
    border: 2px solid #bfc7d4 !important;
    box-shadow: 0 0 10px rgba(191,199,212,0.3), 0 0 24px rgba(0,0,0,0.5);
    position: relative;
}
.vip-card.silver::after {
    content:"";
    position:absolute; inset:0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.15), rgba(255,255,255,0));
    pointer-events:none;
}
.vip-card.gold {
    background: linear-gradient(135deg,#3b2e00,#7a5400 40%,#c9a400 70%,#ffdc5e) !important;
    border: 2px solid #ffd84d !important;
    box-shadow: 0 0 12px rgba(255,215,0,0.45), 0 0 34px rgba(255,215,0,0.18);
    position: relative; overflow:hidden;
}
.vip-card.gold::after {
    content:""; position:absolute; inset:0;
    background: linear-gradient(120deg, rgba(255,255,255,0) 35%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0) 65%);
    animation: goldShine 5s linear infinite; pointer-events:none;
}
@keyframes goldShine { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.vip-card.gold h3 { text-shadow: 0 0 8px rgba(255,215,0,0.6); }
.vip-ribbon {
    position:absolute; top:0; right:0;
    background: linear-gradient(180deg,#ffed9a,#e8b000);
    color:#3b2e00; font-size:10px; font-weight:700; padding:4px 8px;
    border-bottom-left-radius:6px; letter-spacing:0.5px;
    box-shadow:0 2px 6px rgba(0,0,0,0.4);
}
/* Subtle pulse for Gold */
@keyframes goldPulse { 0% { box-shadow: 0 0 10px rgba(255,215,0,0.35); } 50% { box-shadow: 0 0 18px rgba(255,215,0,0.75); } 100% { box-shadow: 0 0 10px rgba(255,215,0,0.35); } }
.vip-card.gold { animation: goldPulse 6s ease-in-out infinite; }

/* Price badge */
.vip-price {
    background:linear-gradient(135deg,rgba(0,0,0,0.55),rgba(0,0,0,0.25));
    border:1px solid rgba(255,255,255,0.15);
    padding:3px 9px; border-radius:12px;
    font-size:11px; font-weight:600; letter-spacing:0.5px;
    color:#e2e8f0; backdrop-filter:blur(3px);
    box-shadow:0 1px 4px rgba(0,0,0,0.4);
    display:inline-block; white-space:nowrap;
}
.vip-card.bronze .vip-price { border-color: rgba(194,146,90,0.5); color:#f5d2a1; }
.vip-card.silver .vip-price { border-color: rgba(191,199,212,0.5); color:#dbe5f0; }
.vip-card.gold .vip-price { border-color: rgba(255,215,0,0.6); color:#ffe89a; }