        /* User's waitlist entries */
        .user-entry-card {
            background: rgba(139, 92, 246, 0.1);
            border: 1px solid rgba(139, 92, 246, 0.3);
            margin-bottom: 12px;
        }

        .entry-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .entry-position {
            background: var(--bp-purple);
            color: white;
            width: 44px;
            height: 44px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: var(--bp-fs-h3);
            font-weight: 700;
        }

        .entry-details { flex: 1; }
        .entry-details .status { color: white; font-weight: 600; font-size: var(--bp-fs-body); }
        .entry-details .slot-info { color: #94a3b8; font-size: var(--bp-fs-secondary); }

        .cancel-btn {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.2);
            color: #94a3b8;
            border-radius: 8px;
            padding: 8px 12px;
            font-size: var(--bp-fs-caption);
            cursor: pointer;
        }

        @media (hover: hover) and (pointer: fine) {
            .cancel-btn:hover { background: rgba(255,255,255,0.05); color: white; }
        }

        /* Success overlay */
        .success-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }

        .success-card {
            background: #1e293b;
            border-radius: 20px;
            padding: var(--bp-space-8) 24px;
            text-align: center;
            max-width: 320px;
        }

        .success-checkmark {
            width: 80px;
            height: 80px;
            background: var(--bp-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
            margin: 0 auto 16px;
        }

        .success-card h2 { color: white; margin-bottom: 4px; }
        .success-card .success-city { color: var(--bp-green); font-weight: 600; margin-bottom: 12px; }
        .success-card p { color: #94a3b8; margin-bottom: 4px; }
        .success-card .subtitle { font-size: var(--bp-fs-secondary); }
        .success-card .countdown { color: #64748b; font-size: var(--bp-fs-secondary); margin-top: 16px; }

        /* Loading */
        .loading-state {
            text-align: center;
            padding: var(--bp-space-8) 20px;
            color: #94a3b8;
        }

        .loading-state .spinner-border {
            width: 2.5rem;
            height: 2.5rem;
            border-width: 3px;
            color: var(--bp-green);
        }

        /* Slots skeleton — mirrors the real layout (group header + 4-col grid
           of slot-sized tiles) so the content swap doesn't jump. A tiny
           spinner here reflowed the whole section on every load. */
        @keyframes sk-shimmer {
            from { background-position: 200% 0; }
            to   { background-position: -200% 0; }
        }
        .slots-skeleton .sk-line,
        .slots-skeleton .sk-tile {
            background: linear-gradient(90deg,
                rgba(255, 255, 255, 0.045) 25%,
                rgba(255, 255, 255, 0.10) 37%,
                rgba(255, 255, 255, 0.045) 63%);
            background-size: 400% 100%;
            animation: sk-shimmer 1.4s ease infinite;
        }
        /* Полоса скелетона стоит на месте заголовка группы и носит ЕГО
           отступы: разойдутся — сетка поедет в момент подмены, ровно тот
           сдвиг, ради которого скелетон и заведён (пара — `.slot-group-header`). */
        .slots-skeleton .sk-line {
            height: 14px;
            width: 38%;
            margin: var(--bp-space-6) 2px var(--bp-space-2);
            border-radius: 6px;
        }
        /* Первая полоса стоит на месте ПЕРВОГО заголовка, а тот воздуха сверху
           не получает — его отбивает паддинг карточки. */
        .slots-skeleton .sk-line:first-child {
            margin-top: 0;
        }
        .slots-skeleton .sk-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
        }
        .slots-skeleton .sk-tile {
            height: 52px; /* ≈ .slot-btn (two text rows + padding) */
            border-radius: 8px;
        }
        /* Общий минимум скелетона и готовой сетки: подмена не меняет высоту */
        .slots-area {
            min-height: 270px;
        }

        .error-state {
            text-align: center;
            padding: var(--bp-space-8) 20px;
        }

        .stale-warning {
            background: rgba(245, 158, 11, 0.15);
            border: 1px solid rgba(245, 158, 11, 0.3);
            border-radius: 8px;
            padding: var(--bp-space-3) 16px;
            margin-bottom: 12px;
            font-size: var(--bp-fs-secondary);
            color: #f59e0b;
            text-align: center;
        }
