 :root {
            --primary: #8b5cf6;
            --primary-hover: #7c3aed;
            --secondary: #06d6a0;
            --accent: #f59e0b;
            --danger: #ef4444;
            --background: #0f0f23;
            --surface: #1a1b2f;
            --surface-light: #252642;
            --text-primary: #f0f0ff;
            --text-secondary: #a0a0c0;
            --border: #2d2d50;
            --border-light: #3a3a5f;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
            --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.4);
            --radius: 16px;
            --radius-sm: 8px;
            --gradient: linear-gradient(135deg, #8b5cf6 0%, #06d6a0 100%);
            --gradient-hover: linear-gradient(135deg, #7c3aed 0%, #05b586 100%);
        }

        [data-theme="light"] {
            --background: #f5f7ff;
            --surface: #ffffff;
            --surface-light: #f0f2ff;
            --text-primary: #1a1a2e;
            --text-secondary: #4a4a6a;
            --border: #d0d4e6;
            --border-light: #e2e6f6;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--background);
            color: var(--text-primary);
            transition: all 0.3s ease;
            min-height: 100vh;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
        }

        /* Неоновый эффект */
        .neon-glow {
            box-shadow: 0 0 10px rgba(139, 92, 246, 0.3), 0 0 20px rgba(139, 92, 246, 0.2);
        }

        .app-container {
            max-width: 1920px;
            margin: 0 auto;
            padding: 20px;
            flex: 1;
        }

        /* Header */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding: 1.5rem 2rem;
            background: var(--surface);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient);
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.75rem;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .logo-icon {
            font-size: 2rem;
        }

        .nav {
            display: flex;
            gap: 10px;
        }

        .nav-item {
            padding: 10px 20px;
            border-radius: var(--radius-sm);
            background: var(--surface-light);
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-item:hover {
            background: rgba(139, 92, 246, 0.1);
            color: var(--primary);
        }

        .nav-item.active {
            background: var(--gradient);
            color: white;
        }

        .header-controls {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        /* Control Panel */
        .control-panel {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
            position: relative;
        }

        .search-container {
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 16px 20px 16px 52px;
            border: 2px solid var(--border);
            border-radius: var(--radius);
            background: var(--surface-light);
            color: var(--text-primary);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
        }

        .search-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-secondary);
        }

        .filters-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .filter-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .filter-label {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text-secondary);
        }

        .filter-select {
            padding: 14px 16px;
            border: 2px solid var(--border);
            border-radius: var(--radius-sm);
            background: var(--surface-light);
            color: var(--text-primary);
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-select:focus {
            outline: none;
            border-color: var(--primary);
        }

        .action-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 14px 24px;
            border: none;
            border-radius: var(--radius-sm);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--gradient);
            color: white;
        }

        .btn-primary:hover {
            background: var(--gradient-hover);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: var(--surface-light);
            color: var(--text-primary);
        }

        .btn-secondary:hover {
            background: var(--border-light);
        }

        .btn-status {
            position: relative;
        }

        .btn-status::after {
            content: attr(data-count);
              position: absolute;
              top: -4px;
              right: 0px;
              background: var(--accent);
              color: white;
              font-size: 0.75rem;
              padding: 2px 7px;
              border-radius: 5px;
              min-width: 20px;
              text-align: center;
        }

        .btn-status-new::after {
            background: var(--accent);
        }

        .btn-status-processed::after {
            background: var(--secondary);
        }

        .btn-status-approved::after {
            background: var(--primary);
        }

        /* Table */
        .table-container {
            background: var(--surface);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
            overflow-x: auto;
        }

        .table {
            width: 100%;
            border-collapse: collapse;
            min-width: 1000px;
        }

        .table th {
            background: var(--surface-light);
            padding: 1.25rem 1rem;
            text-align: left;
            font-weight: 600;
            color: var(--text-secondary);
            border-bottom: 2px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .table td {
            padding: 1.25rem 1rem;
            border-bottom: 1px solid var(--border);
            transition: all 0.2s ease;
        }

        .table tr {
            transition: all 0.3s ease;
        }

        .table tr:hover {
            background: rgba(139, 92, 246, 0.05);
        }

        .table tr.selected {
            background: rgba(139, 92, 246, 0.1);
        }

        .checkbox-cell {
            width: 50px;
            text-align: center;
        }

        .checkbox {
            width: 20px;
            height: 20px;
            cursor: pointer;
            accent-color: var(--primary);
        }

        .theme-select {
            padding: 8px 12px;
            border: 2px solid var(--border);
            border-radius: var(--radius-sm);
            background: var(--surface-light);
            color: var(--text-primary);
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .theme-select:focus {
            outline: none;
            border-color: var(--primary);
        }

        .domain-cell {
            max-width: 200px;
        }

        .domain-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s ease;
        }

        .domain-link:hover {
            color: var(--primary-hover);
            text-decoration: underline;
        }

        .editable-cell {
            position: relative;
            outline: none;
            border-radius: 4px;
            transition: all 0.2s ease;
        }

        .editable-cell:focus {
            background: rgba(139, 92, 246, 0.05);
            box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.3);
        }

        .status-badge {
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
        }

        .status-new {
            background: rgba(245, 158, 11, 0.15);
            color: var(--accent);
        }

        .status-processed {
            background: rgba(6, 214, 160, 0.15);
            color: var(--secondary);
        }

        .status-approved {
            background: rgba(139, 92, 246, 0.15);
            color: var(--primary);
        }

        .action-cell {
            display: flex;
            gap: 0.5rem;
        }

        .btn-icon {
            padding: 8px;
            border: none;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: all 0.3s ease;
            background: var(--surface-light);
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-icon:hover {
            background: var(--primary);
            color: white;
            transform: scale(1.05);
        }

        /* Bulk Actions */
        .bulk-actions {
            position: fixed;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            background: var(--surface);
            padding: 1.5rem 2rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            gap: 1.5rem;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            border: 1px solid var(--border-light);
        }

        .bulk-actions.visible {
            opacity: 1;
            visibility: visible;
        }

        /* Footer */
        .footer {
            text-align: center;
            padding: 2rem;
            margin-top: auto;
            color: var(--text-secondary);
            font-size: 0.9rem;
            border-top: 1px solid var(--border);
        }

        .footer a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer a:hover {
            color: var(--primary-hover);
            text-decoration: underline;
        }

        /* API Settings */
        .api-settings {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 1.5rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }

        .api-toggle {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .toggle-label {
            font-weight: 600;
            color: var(--text-primary);
        }

        .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: var(--border);
            transition: .4s;
            border-radius: 24px;
        }

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

        input:checked + .toggle-slider {
            background-color: var(--primary);
        }

        input:checked + .toggle-slider:before {
            transform: translateX(26px);
        }

        .api-description {
            font-size: 0.875rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }
        /* Stats Panel */
        .stats-panel {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 1.5rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .stat-card {
            background: var(--surface-light);
            border-radius: var(--radius-sm);
            padding: 1.5rem;
            text-align: center;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .stat-icon {
            font-size: 2rem;
            margin-bottom: 0.75rem;
        }

        .stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .stat-label {
            font-size: 0.875rem;
            color: var(--text-secondary);
            font-weight: 600;
        }

        .stat-yandex .stat-icon { color: #ffcc00; }
        .stat-gpt .stat-icon { color: var(--primary); }
        .stat-google .stat-icon { color: var(--secondary); }

        /* Модальное окно */
        .modal-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: 10000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            padding: 20px;
        }

        .modal-overlay.visible {
            opacity: 1;
            visibility: visible;
        }

        .modal {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 0;
            max-width: 95vw;
            width: 1200px;
            max-height: 95vh;
            overflow: hidden;
            transform: scale(0.9);
            opacity: 0;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border-light);
            display: flex;
            flex-direction: column;
        }

        .modal.visible {
            transform: scale(1);
            opacity: 1;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 2rem;
            background: var(--surface-light);
            border-bottom: 1px solid var(--border);
            position: relative;
        }

        .modal-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient);
        }

        .modal-title {
            font-size: 1.5rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .modal-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 8px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-close:hover {
            background: var(--border);
            color: var(--text-primary);
        }

        .modal-content {
            overflow-y: auto;
            max-height: calc(95vh - 80px);
            padding: 2rem;
        }

        /* Основная информация */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .info-item {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .info-label {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .info-value {
            font-size: 1rem;
            color: var(--text-primary);
            padding: 12px 14px;
            background: var(--surface-light);
            border-radius: var(--radius-sm);
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            min-height: 48px;
            display: flex;
            align-items: center;
        }

        .info-value.editable {
            cursor: text;
            background: var(--surface);
        }

        .info-value.editable:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
            background: var(--surface-light);
        }

        .hint {
            font-size: 0.75rem;
            color: var(--secondary);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 4px;
            margin-top: 4px;
        }

        .text-muted {
            font-size: 0.75rem;
            color: var(--text-secondary);
            margin-top: 4px;
            line-height: 1.4;
        }

        /* Стилизация Select2 */
        .select2-container--default .select2-selection--single {
            background: var(--surface-light);
            border: 2px solid var(--border);
            border-radius: var(--radius-sm);
            height: 48px;
            transition: all 0.3s ease;
        }

        .select2-container--default.select2-container--focus .select2-selection--single {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
            outline: none;
        }

        .select2-container--default .select2-selection--single .select2-selection__rendered {
            color: var(--text-primary);
            line-height: 44px;
            padding-left: 14px;
            padding-right: 30px;
            font-size: 1rem;
        }

        .select2-container--default .select2-selection--single .select2-selection__placeholder {
            color: var(--text-secondary);
        }

        .select2-container--default .select2-selection--single .select2-selection__arrow {
            height: 46px;
            right: 8px;
        }

        .select2-container--default .select2-selection--single .select2-selection__arrow b {
            border-color: var(--text-secondary) transparent transparent transparent;
            border-width: 6px 6px 0 6px;
        }

        .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
            border-color: transparent transparent var(--text-secondary) transparent;
            border-width: 0 6px 6px 6px;
        }

        /* Dropdown стили */
        .select2-container--default .select2-dropdown {
            background: var(--surface);
            border: 2px solid var(--border);
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-lg);
            z-index: 10000;
        }

        .select2-container--default .select2-results__option {
            padding: 12px 14px;
            color: var(--text-primary);
            background: var(--surface);
            transition: all 0.2s ease;
            border-bottom: 1px solid var(--border);
        }

        .select2-container--default .select2-results__option:last-child {
            border-bottom: none;
        }

        .select2-container--default .select2-results__option--highlighted[aria-selected] {
            background: var(--primary);
            color: white;
        }

        .select2-container--default .select2-results__option[aria-selected=true] {
            background: rgba(139, 92, 246, 0.1);
            color: var(--primary);
            font-weight: 600;
        }

        .select2-container--default .select2-results__option:hover {
            background: var(--surface-light);
            color: var(--text-primary);
        }

        .select2-container--default .select2-search--dropdown .select2-search__field {
            background: var(--surface-light);
            border: 2px solid var(--border);
            border-radius: var(--radius-sm);
            color: var(--text-primary);
            padding: 10px 12px;
            margin: 8px;
            width: calc(100% - 16px);
        }

        .select2-container--default .select2-search--dropdown .select2-search__field:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
        }

        /* Multiple selection */
        .select2-container--default .select2-selection--multiple {
            background: var(--surface-light);
            border: 2px solid var(--border);
            border-radius: var(--radius-sm);
            min-height: 48px;
            transition: all 0.3s ease;
        }

        .select2-container--default.select2-container--focus .select2-selection--multiple {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
        }

        .select2-container--default .select2-selection--multiple .select2-selection__choice {
            background: var(--primary);
            border: 1px solid var(--primary-hover);
            border-radius: 20px;
            color: white;
            padding: 4px 12px;
            margin: 6px 0 6px 6px;
            font-size: 0.875rem;
        }

        .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
            color: white;
            margin-right: 6px;
            border: none;
            background: none;
            font-size: 1rem;
            line-height: 1;
        }

        .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
            color: rgba(255, 255, 255, 0.8);
            background: none;
        }

        .select2-container--default .select2-selection--multiple .select2-selection__rendered {
            padding: 4px 8px;
        }

        .select2-container--default .select2-selection--multiple .select2-search__field {
            color: var(--text-primary);
            background: transparent;
            border: none;
            margin: 8px;
            padding: 6px 0;
        }

        .select2-container--default .select2-selection--multiple .select2-search__field::placeholder {
            color: var(--text-secondary);
        }

        /* Иконки для опций */
        .select2-icon-option {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .option-icon {
            font-size: 1.125rem;
            width: 20px;
            text-align: center;
        }

        .option-text {
            flex: 1;
        }

        .option-badge {
            background: var(--surface-light);
            color: var(--text-secondary);
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .select2-container--default .select2-selection--single .select2-selection__clear {
            cursor: pointer;
            float: right;
            font-weight: bold;
            height: 26px;
            margin-right: 35px;
            padding-right: 0px;
            margin-top: 6px;
        }

        /* Кастомные варианты */
        .select2-theme-modern .select2-selection--single {
            background: linear-gradient(135deg, var(--surface-light) 0%, var(--surface) 100%);
            border: 2px solid transparent;
            background-clip: padding-box;
            position: relative;
        }

        .select2-theme-modern .select2-selection--single::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: var(--gradient);
            border-radius: var(--radius-sm);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .select2-theme-modern.select2-container--focus .select2-selection--single::before {
            opacity: 1;
        }

        /* Кнопки действий */
        .action-buttons {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }

        .btn {
            padding: 12px 20px;
            border: none;
            border-radius: var(--radius-sm);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            position: relative;
            overflow: hidden;
            justify-content: center;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--gradient);
            color: white;
        }

        .btn-primary:hover {
            background: var(--gradient-hover);
            transform: translateY(-1px);
        }

        .btn-secondary {
            background: var(--surface-light);
            color: var(--text-primary);
        }

        .btn-secondary:hover {
            background: var(--border-light);
        }

        .btn-accent {
            background: var(--accent);
            color: white;
        }

        .btn-accent:hover {
            background: #e67e22;
            transform: translateY(-1px);
        }

        /* Секции */
        .section-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin: 2rem 0 1rem;
            padding-bottom: 0.75rem;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* Телефоны и Email */
        .phones-section, .emails-section {
            margin-bottom: 2rem;
        }

        .phones-grid, .emails-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 0.75rem;
            margin-top: 1rem;
        }

        .phone-item, .email-item {
            padding: 12px 14px;
            background: var(--surface-light);
            border-radius: var(--radius-sm);
            border: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .phone-item:hover, .email-item:hover {
            border-color: var(--primary);
            transform: translateY(-1px);
        }

        .copy-btn {
            background: none;
            border: none;
            color: var(--text-secondary);
            cursor: pointer;
            transition: color 0.3s ease;
            padding: 6px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .copy-btn:hover {
            background: rgba(139, 92, 246, 0.1);
            color: var(--primary);
        }

        /* Учредители */
        .founders-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 1.5rem;
            margin-bottom: 1rem;
        }

        .founder-card {
            background: var(--surface-light);
            border-radius: var(--radius-sm);
            padding: 1.5rem;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .founder-card:hover {
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .founder-title {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border);
        }

        .founder-field {
            font-size: 0.875rem;
            min-height: 40px;
        }

        /* Статусы */
        .status-badge {
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .status-new {
            background: rgba(245, 158, 11, 0.15);
            color: var(--accent);
        }

        .status-processed {
            background: rgba(6, 214, 160, 0.15);
            color: var(--secondary);
        }

        .status-approved {
            background: rgba(139, 92, 246, 0.15);
            color: var(--primary);
        }

        /* Анимации */
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(139, 92, 246, 0); }
            100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .modal {
                width: 95vw;
                margin: 10px;
            }
            
            .modal-content {
                padding: 1.5rem;
            }
            
            .info-grid {
                grid-template-columns: 1fr;
            }
            
            .action-buttons {
                grid-template-columns: 1fr;
            }
            
            .phones-grid, .emails-grid {
                grid-template-columns: 1fr;
            }
            
            .founders-grid {
                grid-template-columns: 1fr;
            }
        }
        /* Page-specific styles */
        .page-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .domains-toolbar {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .domains-search {
            flex: 1;
            min-width: 300px;
        }

        /* Animations */
        .js .fade-in {
            opacity: 0;
            transform: translateY(20px);
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(139, 92, 246, 0); }
            100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0); }
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .filters-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            
            .info-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .app-container {
                padding: 10px;
            }
            
            .header {
                flex-direction: column;
                gap: 1rem;
                align-items: flex-start;
            }
            
            .nav {
                width: 100%;
                justify-content: space-between;
            }
            
            .nav-item {
                flex: 1;
                justify-content: center;
            }
            
            .action-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .btn {
                justify-content: center;
            }
            
            .bulk-actions {
                flex-direction: column;
                width: 90%;
            }
            
            .domains-toolbar {
                flex-direction: column;
            }
            
            .domains-search {
                min-width: 100%;
            }
        }

        .neon-glow {
            box-shadow: 0 0 10px rgba(139, 92, 246, 0.3), 0 0 20px rgba(139, 92, 246, 0.2);
        }

        .app-container {
            width: 1200px;
            margin: 0 auto;
            padding: 20px;
            flex: 1;
        }

        /* Header */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding: 1.5rem 2rem;
            background: var(--surface);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient);
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.75rem;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .logo-icon {
            font-size: 2rem;
        }

        .nav {
            display: flex;
            gap: 10px;
        }

        .nav-item {
            padding: 10px 20px;
            border-radius: var(--radius-sm);
            background: var(--surface-light);
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-item:hover {
            background: rgba(139, 92, 246, 0.1);
            color: var(--primary);
        }

        .nav-item.active {
            background: var(--gradient);
            color: white;
        }

        .header-controls {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        /* Control Panel */
        .control-panel {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
            position: relative;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-label {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text-secondary);
        }

        .form-input {
            padding: 14px 16px;
            border: 2px solid var(--border);
            border-radius: var(--radius-sm);
            background: var(--surface-light);
            color: var(--text-primary);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .checkbox-group {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .checkbox-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .checkbox {
            width: 18px;
            height: 18px;
            accent-color: var(--primary);
            cursor: pointer;
        }

        .checkbox-label {
            font-size: 0.875rem;
            color: var(--text-primary);
            cursor: pointer;
        }

        .fieldset {
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 1.5rem;
        }

        .legend {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text-secondary);
            padding: 0 0.5rem;
            background: var(--surface);
            margin-left: -0.5rem;
        }

        .btn {
            padding: 14px 24px;
            border: none;
            border-radius: var(--radius-sm);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--gradient);
            color: white;
        }

        .btn-primary:hover {
            background: var(--gradient-hover);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: var(--surface-light);
            color: var(--text-primary);
        }

        .btn-secondary:hover {
            background: var(--border-light);
        }

        /* Results */
        .results-container {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }

        .results-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .log-container {
            background: var(--surface-light);
            border-radius: var(--radius-sm);
            padding: 1.5rem;
            border: 1px solid var(--border);
            max-height: 300px;
            overflow-y: auto;
        }

        .log-entry {
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--border);
            font-size: 0.875rem;
            color: var(--text-secondary);
        }

        .log-entry:last-child {
            border-bottom: none;
        }

        .log-time {
            color: var(--primary);
            font-weight: 600;
            margin-right: 0.5rem;
        }

        /* Footer */
        .footer {
            text-align: center;
            padding: 2rem;
            margin-top: auto;
            color: var(--text-secondary);
            font-size: 0.9rem;
            border-top: 1px solid var(--border);
        }

        .footer a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer a:hover {
            color: var(--primary-hover);
            text-decoration: underline;
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(139, 92, 246, 0); }
            100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .app-container {
                padding: 10px;
            }
            
            .header {
                flex-direction: column;
                gap: 1rem;
                align-items: flex-start;
            }
            
            .nav {
                width: 100%;
                justify-content: space-between;
            }
            
            .nav-item {
                flex: 1;
                justify-content: center;
                font-size: 0.875rem;
                padding: 8px 12px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .fieldset {
                padding: 1rem;
            }
        }