 :root {
            --bg-primary: #0d0f12;
            --bg-card: #14161A;
            --border-color: #1E2127;
            --text-main: #E6EEF9;
            --text-muted: #7B818D;
            --accent-blue: #5A9CFF;
            --accent-gradient: linear-gradient(135deg, #5A9CFF, #2D7DFF);
            --radius-card: 16px;
            --radius-btn: 999px;
            --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: var(--bg-primary);
            color: var(--text-main);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            padding: 40px 20px;
        }

        .container {
            width: 100%;
            max-width: 600px;
        }

        /* ===== ШАПКА СПИСКА ===== */
        .list-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
            padding: 0 4px;
            opacity: 0;
            animation: fadeInDown 0.6s ease forwards;
        }

        .list-title {
            font-size: 24px;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .list-count {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-muted);
            background: rgba(255, 255, 255, 0.05);
            padding: 4px 12px;
            border-radius: var(--radius-btn);
            border: 1px solid rgba(255,255,255,0.05);
        }

        /* ===== КАРТОЧКА ПОДПИСЧИКА ===== */
        .follower-item {
            display: flex;
            align-items: center;
            gap: 16px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-card);
            padding: 16px;
            margin-bottom: 12px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            cursor: pointer;

            /* Начальное состояние для анимации появления */
            opacity: 0;
            transform: translateY(20px);
            animation: slideUpFade 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
        }

        /* Staggered Delay (Каскадное появление) */
        .follower-item:nth-child(1) { animation-delay: 0.05s; }
        .follower-item:nth-child(2) { animation-delay: 0.1s; }
        .follower-item:nth-child(3) { animation-delay: 0.15s; }
        .follower-item:nth-child(4) { animation-delay: 0.2s; }
        .follower-item:nth-child(5) { animation-delay: 0.25s; }
        .follower-item:nth-child(n+6) { animation-delay: 0.3s; }

        @keyframes slideUpFade {
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Эффект блика (Shine) */
        .follower-item::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 50%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
            transform: skewX(-20deg);
            transition: left 0.6s ease;
            pointer-events: none;
            z-index: 1;
        }

        /* Эффект нижнего свечения (Radial Glow) */
        .follower-item::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 60%;
            background: radial-gradient(circle at 50% 100%, rgba(90, 156, 255, 0.08), transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: 0;
        }

        .follower-item:hover {
            border-color: rgba(90, 156, 255, 0.4);
            transform: translateY(-3px) scale(1.01);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(90, 156, 255, 0.1);
        }

        .follower-item:hover::before { left: 150%; }
        .follower-item:hover::after { opacity: 1; }

        /* Аватарка */
        .avatar-wrap {
            position: relative;
            flex-shrink: 0;
            z-index: 2;
        }

        .avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--border-color);
            transition: var(--transition);
            background: #1a1d23;
        }

        .follower-item:hover .avatar {
            border-color: var(--accent-blue);
            box-shadow: 0 0 0 4px rgba(90, 156, 255, 0.15);
            transform: scale(1.05);
        }

        .online-dot {
            position: absolute;
            bottom: 2px; right: 2px;
            width: 12px; height: 12px;
            background: #22c55e;
            border: 2.5px solid var(--bg-card);
            border-radius: 50%;
            z-index: 3;
            box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
        }

        /* Информация о пользователе */
        .user-info {
            flex: 1;
            min-width: 0;
            z-index: 2;
        }

        .user-name {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            transition: color 0.2s ease;
        }

        .follower-item:hover .user-name {
            color: var(--accent-blue);
            text-shadow: 0 0 12px rgba(90, 156, 255, 0.3);
        }

        .user-nick {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* Кнопки действий */
        .action-btn {
            padding: 8px 20px;
            border-radius: var(--radius-btn);
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            border: none;
            transition: var(--transition);
            white-space: nowrap;
            z-index: 2;
            position: relative;
            overflow: hidden;
        }

        /* Подписаться */
        .btn-subscribe {
            background: var(--accent-gradient);
            color: #fff;
            box-shadow: 0 4px 12px rgba(90, 156, 255, 0.2);
        }

        .btn-subscribe:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(90, 156, 255, 0.4);
            filter: brightness(1.1);
        }

        .btn-subscribe:active { transform: scale(0.95); }

        /* Вы подписаны (с эффектом удаления) */
        .btn-following {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-muted);
            border: 1px solid var(--border-color);
        }

        .btn-following:hover {
            background: rgba(239, 68, 68, 0.1);
            color: #ef4444;
            border-color: rgba(239, 68, 68, 0.3);
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.1);
        }

        .btn-following:active { transform: scale(0.95); }

        /* Пустое состояние */
        .empty-state {
            text-align: center;
            padding: 60px 20px;
            color: var(--text-muted);
            animation: fadeIn 0.8s ease;
            background: var(--bg-card);
            border: 1px dashed var(--border-color);
            border-radius: var(--radius-card);
        }

        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

        /* Адаптив */
        @media (max-width: 480px) {
            body { padding: 20px 16px; }
            .list-title { font-size: 20px; }
            .follower-item { padding: 12px; gap: 12px; }
            .avatar { width: 48px; height: 48px; }
            .action-btn { padding: 8px 16px; font-size: 12px; }
            .user-name { font-size: 15px; }
        }