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

        html {
            overflow-x: hidden;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 50%, #0d1b2a 100%);
            color: white;
            overflow-x: hidden;
            min-height: 100vh;
        }

        .dashboard {
            display: grid;
            grid-template-columns: 1fr 400px;
            grid-template-rows: auto 1fr;
            min-height: 100vh;
            position: relative;
        }

        .main-panel {
            grid-row: 1 / -1;
            grid-column: 1;
            display: flex;
            flex-direction: column;
            padding: 20px;
            position: relative;
            gap: 20px;
        }

        .ai-representative {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 24px;
            position: relative;
        }

        .ai-interaction-panel {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .ai-status {
            font-size: 20px;
            font-weight: 500;
            color: #06b6d4;
            text-align: center;
            padding: 15px;
            background: rgba(6, 182, 212, 0.1);
            border-radius: 10px;
            border: 1px solid rgba(6, 182, 212, 0.3);
        }

        .ai-speech {
            max-width: 100%;
            text-align: left;
            font-size: 16px;
            line-height: 1.6;
            color: #e2e8f0;
            background: rgba(15, 23, 42, 0.8);
            padding: 25px;
            border-radius: 15px;
            border: 1px solid rgba(6, 182, 212, 0.3);
            backdrop-filter: blur(10px);
            min-height: 120px;
            position: relative;
        }

        .ai-speech::before {
            content: '💬';
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 24px;
            background: #0f172a;
            padding: 5px;
            border-radius: 50%;
        }

        .interaction-buttons {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .interaction-btn {
            background: rgba(6, 182, 212, 0.1);
            border: 1px solid rgba(6, 182, 212, 0.3);
            color: #06b6d4;
            padding: 12px 8px;
            border-radius: 8px;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .interaction-btn:hover {
            background: rgba(6, 182, 212, 0.2);
            border-color: #06b6d4;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(6, 182, 212, 0.2);
        }

        .content-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal-content {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            border-radius: 20px;
            padding: 30px;
            max-width: 90%;
            max-height: 90%;
            overflow-y: auto;
            border: 1px solid rgba(6, 182, 212, 0.3);
            position: relative;
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            color: #64748b;
            font-size: 24px;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .modal-close:hover {
            color: #ef4444;
        }

        .metrics-panel {
            grid-row: 1 / -1;
            grid-column: 2;
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(20px);
            border-left: 1px solid rgba(6, 182, 212, 0.3);
            padding: 20px;
            overflow-y: auto;
            position: relative;
        }

        .logo-section {
            text-align: center;
            margin-bottom: 25px;
            padding: 20px;
            background: rgba(6, 182, 212, 0.05);
            border-radius: 15px;
            border: 1px solid rgba(6, 182, 212, 0.2);
        }



        .company-logo {
            font-size: 28px;
            font-weight: 700;
            background: linear-gradient(135deg, #06b6d4, #3b82f6, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
            letter-spacing: 2px;
        }

        .company-subtitle {
            font-size: 11px;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 600;
        }

        .avatar-section {
            text-align: center;
            margin-bottom: 25px;
            padding: 20px;
            background: rgba(6, 182, 212, 0.05);
            border-radius: 15px;
            border: 1px solid rgba(6, 182, 212, 0.2);
        }

        .asi-avatar-container {
            position: relative;
            width: 200px;
            height: 200px;
            margin: 0 auto 20px auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .asi-glow-cloud {
            width: 180px;
            height: 180px;
            position: relative;
            background: radial-gradient(ellipse at center, rgba(13, 148, 136, 0.1) 0%, rgba(6, 182, 212, 0.05) 50%, transparent 80%);
            border-radius: 50%;
            overflow: hidden;
            filter: drop-shadow(0 0 30px rgba(13, 148, 136, 0.4));
        }

        .asi-particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: radial-gradient(circle, #14b8a6 0%, #06b6d4 50%, #3b82f6 100%);
            border-radius: 50%;
            box-shadow: 0 0 8px currentColor;
            transition: all 0.5s ease;
            animation: asi-particle-glow 3s infinite ease-in-out;
        }

        .asi-particle.glow {
            width: 6px;
            height: 6px;
            box-shadow: 0 0 12px currentColor;
            filter: brightness(1.3);
        }

        .asi-particle.face-feature {
            width: 5px;
            height: 5px;
            background: radial-gradient(circle, #67e8f9 0%, #06b6d4 30%, #0891b2 70%, #0e7490 100%);
            box-shadow: 0 0 15px #06b6d4, 0 0 25px rgba(6, 182, 212, 0.6);
            animation: asi-face-glow 2s infinite alternate;
        }

        .asi-particle.face-feature.eye {
            background: radial-gradient(circle, #a5f3fc 0%, #06b6d4 20%, #0891b2 50%, #0e7490 100%);
            width: 6px;
            height: 6px;
            box-shadow: 0 0 20px #06b6d4, 0 0 30px rgba(6, 182, 212, 0.7);
            animation: asi-eye-pulse 1.5s infinite alternate;
        }

        .asi-particle.data-stream {
            background: radial-gradient(circle, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
            box-shadow: 0 0 10px #8b5cf6, 0 0 20px rgba(139, 92, 246, 0.4);
            animation: asi-data-wave 4s infinite ease-in-out;
        }

        .asi-particle.speaking {
            background: radial-gradient(circle, #f59e0b 0%, #ef4444 50%, #dc2626 100%);
            box-shadow: 0 0 15px #ef4444, 0 0 25px rgba(239, 68, 68, 0.5);
            animation: asi-voice-pulse 0.4s infinite;
        }

        .ai-name {
            font-size: 24px;
            font-weight: 700;
            color: #14b8a6;
            margin: 10px 0 5px 0;
            text-shadow: 0 0 20px rgba(20, 184, 166, 0.5);
        }

        .ai-title {
            font-size: 14px;
            color: #06b6d4;
            font-weight: 400;
            opacity: 0.9;
        }

        .ai-status-light {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: radial-gradient(circle, #22c55e 0%, #16a34a 100%);
            margin: 10px auto 0 auto;
            box-shadow: 0 0 15px #22c55e;
            animation: asi-status-pulse 2s infinite;
        }

        .ai-status-light.consensus-active {
            background: radial-gradient(circle, #f59e0b 0%, #d97706 100%);
            box-shadow: 0 0 15px #f59e0b;
            animation: asi-consensus-pulse 0.8s infinite;
        }

        @keyframes asi-particle-glow {
            0%, 100% { 
                opacity: 0.6; 
                transform: scale(1) translateY(0px); 
            }
            33% { 
                opacity: 0.8; 
                transform: scale(1.05) translateY(-2px); 
            }
            66% { 
                opacity: 0.9; 
                transform: scale(1.1) translateY(-1px); 
            }
        }

        @keyframes asi-face-glow {
            0% { 
                filter: brightness(1) drop-shadow(0 0 10px #06b6d4); 
                transform: scale(1);
            }
            100% { 
                filter: brightness(1.2) drop-shadow(0 0 18px #06b6d4, 0 0 28px rgba(6, 182, 212, 0.4)); 
                transform: scale(1.05);
            }
        }

        @keyframes asi-eye-pulse {
            0% { 
                filter: brightness(1) drop-shadow(0 0 15px #06b6d4); 
                transform: scale(1);
            }
            100% { 
                filter: brightness(1.4) drop-shadow(0 0 25px #06b6d4, 0 0 35px rgba(6, 182, 212, 0.8)); 
                transform: scale(1.15);
            }
        }

        @keyframes asi-data-wave {
            0%, 100% { 
                opacity: 0.7; 
                transform: scale(1) rotate(0deg); 
            }
            25% { 
                opacity: 1; 
                transform: scale(1.1) rotate(90deg); 
            }
            50% { 
                opacity: 0.8; 
                transform: scale(0.9) rotate(180deg); 
            }
            75% { 
                opacity: 1; 
                transform: scale(1.05) rotate(270deg); 
            }
        }

        @keyframes asi-voice-pulse {
            0%, 100% { 
                transform: scale(1); 
                box-shadow: 0 0 15px #ef4444; 
            }
            50% { 
                transform: scale(1.3); 
                box-shadow: 0 0 20px #ef4444, 0 0 30px rgba(239, 68, 68, 0.6); 
            }
        }

        @keyframes asi-status-pulse {
            0%, 100% { 
                transform: scale(1); 
                box-shadow: 0 0 10px #22c55e; 
            }
            50% { 
                transform: scale(1.1); 
                box-shadow: 0 0 20px #22c55e, 0 0 30px rgba(34, 197, 94, 0.4); 
            }
        }

        @keyframes asi-consensus-pulse {
            0%, 100% { 
                transform: scale(1); 
                box-shadow: 0 0 10px #f59e0b; 
            }
            25% { 
                transform: scale(1.2); 
                box-shadow: 0 0 20px #f59e0b; 
            }
            50% { 
                transform: scale(1.4); 
                box-shadow: 0 0 25px #f59e0b, 0 0 35px rgba(245, 158, 11, 0.6); 
            }
            75% { 
                transform: scale(1.2); 
                box-shadow: 0 0 20px #f59e0b; 
            }
        }

        .adaptive-metrics {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-bottom: 25px;
        }

        .metric-group {
            background: rgba(6, 182, 212, 0.05);
            border-radius: 12px;
            padding: 18px;
            border: 1px solid rgba(6, 182, 212, 0.1);
            transition: all 0.3s ease;
        }

        .metric-group:hover {
            background: rgba(6, 182, 212, 0.1);
            border-color: rgba(6, 182, 212, 0.3);
        }

        .metric-title {
            font-size: 15px;
            font-weight: 600;
            color: #06b6d4;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .metric-row {
            display: grid;
            grid-template-columns: 1fr auto auto;
            gap: 10px;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px solid rgba(6, 182, 212, 0.05);
        }

        .metric-row:last-child {
            border-bottom: none;
        }

        .metric-label {
            font-size: 13px;
            color: #cbd5e1;
            font-weight: 500;
        }

        .metric-value {
            font-weight: 600;
            font-size: 13px;
            min-width: 50px;
            text-align: right;
        }

        .metric-trend {
            font-size: 10px;
            min-width: 32px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
        }

        .metric-trend::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            display: inline-block;
        }

        .metric-trend::after {
            content: '';
            font-weight: bold;
            font-size: 12px;
        }

        .metric-trend.up::before {
            background-color: #10b981;
            box-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
        }

        .metric-trend.up::after {
            content: '↑';
            color: #10b981;
        }

        .metric-trend.down::before {
            background-color: #ef4444;
            box-shadow: 0 0 6px rgba(239, 68, 68, 0.6);
        }

        .metric-trend.down::after {
            content: '↓';
            color: #ef4444;
        }

        .metric-trend.stable::before {
            background-color: #64748b;
            box-shadow: 0 0 6px rgba(100, 116, 139, 0.4);
        }

        .metric-trend.stable::after {
            content: '→';
            color: #64748b;
        }

        .data-processing-block {
            background: rgba(15, 23, 42, 0.8);
            border: 1px solid #1e293b;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
        }

        .data-processing-title {
            color: #00ffff;
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 15px;
            text-align: center;
        }

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

        .data-type-item {
            background: rgba(30, 41, 59, 0.5);
            border: 1px solid #334155;
            border-radius: 6px;
            padding: 12px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .data-type-item:hover {
            border-color: #00ffff;
            transform: translateY(-2px);
        }

        .data-type-icon {
            font-size: 20px;
            margin-bottom: 8px;
            display: block;
        }

        .data-type-label {
            color: #e2e8f0;
            font-size: 12px;
            margin-bottom: 4px;
        }

        .data-type-value {
            color: #00ffff;
            font-size: 14px;
            font-weight: bold;
        }

        .training-progress {
            background: rgba(15, 23, 42, 0.8);
            border: 1px solid #1e293b;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
        }

        .progress-item {
            margin-bottom: 15px;
        }

        .progress-label {
            display: flex;
            justify-content: space-between;
            color: #e2e8f0;
            font-size: 14px;
            margin-bottom: 5px;
        }

        .progress-bar {
            width: 100%;
            height: 8px;
            background: rgba(30, 41, 59, 0.5);
            border-radius: 4px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #00ffff, #10b981);
            border-radius: 4px;
            transition: width 0.5s ease;
        }

        .status-indicator {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            margin-right: 8px;
        }

        .status-active {
            background-color: #10b981;
            box-shadow: 0 0 4px rgba(16, 185, 129, 0.6);
        }

        .status-training {
            background-color: #f59e0b;
            box-shadow: 0 0 4px rgba(245, 158, 11, 0.6);
        }

        .status-idle {
            background-color: #64748b;
            box-shadow: 0 0 4px rgba(100, 116, 139, 0.4);
        }

        .adaptive-bar {
            width: 100%;
            height: 4px;
            background: rgba(6, 182, 212, 0.1);
            border-radius: 2px;
            overflow: hidden;
            margin-top: 5px;
        }

        .adaptive-fill {
            height: 100%;
            background: linear-gradient(90deg, #06b6d4, #3b82f6);
            border-radius: 2px;
            transition: width 1s ease;
        }

        .model-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
            margin-top: 10px;
        }
        .model-item {
            background: rgba(6, 182, 212, 0.1);
            padding: 10px 8px;
            border-radius: 8px;
            text-align: center;
            font-size: 11px;
            border: 1px solid rgba(6, 182, 212, 0.2);
            transition: all 0.3s ease;
        }

        .model-item:hover {
            background: rgba(6, 182, 212, 0.2);
            transform: scale(1.02);
        }

        .model-item.active {
            border-color: #10b981;
            background: rgba(16, 185, 129, 0.1);
            box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
        }
        .consensus-visual {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
            margin-top: 12px;
        }

        .tier-item {
            text-align: center;
            padding: 8px 4px;
            border-radius: 6px;
            font-size: 10px;
            background: rgba(6, 182, 212, 0.1);
            border: 1px solid rgba(6, 182, 212, 0.2);
        }

        .tier-item.active {
            background: rgba(16, 185, 129, 0.2);
            border-color: #10b981;
            animation: tier-pulse 2s infinite;
        }

        @keyframes tier-pulse {
            0%, 100% { box-shadow: 0 0 5px rgba(16, 185, 129, 0.3); }
            50% { box-shadow: 0 0 15px rgba(16, 185, 129, 0.6); }
        }

        .ai-webgl-avatar {
            text-align: center;
            padding: 20px;
        }
        

        .webgl-title {
            font-size: 24px;
            font-weight: bold;
            color: #00ffff;
            margin-bottom: 20px;
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .asi-status-badge {
            font-size: 13px;
            padding: 4px 12px;
            border-radius: 999px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
            background: rgba(234, 179, 8, 0.2);
            color: #fde68a;
            border: 1px solid rgba(234, 179, 8, 0.4);
            transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
        }

        .asi-status-badge.asi-status-active {
            background: rgba(16, 185, 129, 0.2);
            border-color: rgba(16, 185, 129, 0.4);
            color: #a7f3d0;
        }

        .asi-status-badge.asi-status-inactive {
            background: rgba(234, 179, 8, 0.2);
            border-color: rgba(234, 179, 8, 0.4);
            color: #fde68a;
        }

        .webgl-container {
            margin-bottom: 20px;
            width: 100%;
            max-width: 300px; /* Диаметр круга на дашборде */
            aspect-ratio: 1 / 1; /* Квадрат → круг */
            border-radius: 50%;
            overflow: hidden;
            margin-left: auto;
            margin-right: auto;
            cursor: pointer;
        }

        .ai-voice-panel {
            margin-top: 12px;
            text-align: left;
            color: #bfdbfe;
            line-height: 1.4;
        }

        .ai-status-text {
            font-size: 14px;
            color: #38bdf8;
            margin-bottom: 4px;
        }

        .ai-speech-text {
            font-size: 13px;
            color: #e0f2fe;
        }

        #aiWebglCanvas {
            width: 100% !important;
            height: 100% !important;
            display: block;
        }

        .chat-area-placeholder {
            transition: all 0.3s ease;
        }

        .chat-area-placeholder:hover {
            border-color: rgba(0, 255, 65, 0.5);
            box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
        }

        .interactive-commands {
            margin-top: 20px;
            padding: 20px;
            background: rgba(6, 182, 212, 0.05);
            border-radius: 15px;
            border: 1px solid rgba(6, 182, 212, 0.2);
        }

        .command-title {
            font-size: 14px;
            font-weight: 600;
            color: #06b6d4;
            margin-bottom: 15px;
            text-align: center;
        }

        .command-buttons {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .command-btn {
            background: rgba(6, 182, 212, 0.1);
            border: 1px solid rgba(6, 182, 212, 0.3);
            color: #06b6d4;
            padding: 12px 8px;
            border-radius: 8px;
            font-size: 11px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }

        .command-btn:hover {
            background: rgba(6, 182, 212, 0.2);
            border-color: #06b6d4;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(6, 182, 212, 0.2);
        }

        /* Стили для контента модальных окон */
        .code-content {
            background: #1e293b;
            border-radius: 10px;
            padding: 20px;
            font-family: 'Courier New', monospace;
            font-size: 13px;
            color: #10b981;
            overflow-x: auto;
        }

        .presentation-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .slide {
            background: rgba(6, 182, 212, 0.05);
            border-radius: 10px;
            padding: 20px;
            border: 1px solid rgba(6, 182, 212, 0.2);
        }

        .slide h3 {
            color: #06b6d4;
            margin-bottom: 10px;
        }

        .video-placeholder {
            background: linear-gradient(135deg, #1e293b, #334155);
            border-radius: 10px;
            padding: 40px 20px;
            text-align: center;
            color: #64748b;
            border: 2px dashed rgba(6, 182, 212, 0.3);
        }

        .dashboard-content {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .mini-widget {
            background: rgba(6, 182, 212, 0.05);
            border-radius: 10px;
            padding: 15px;
            border: 1px solid rgba(6, 182, 212, 0.2);
        }

        .mini-widget h4 {
            color: #06b6d4;
            font-size: 13px;
            margin-bottom: 8px;
        }

        .widget-value {
            font-size: 18px;
            font-weight: 600;
            color: #10b981;
        }

        .ai-assistant-chat {
            background: rgba(15, 23, 42, 0.8);
            border: 1px solid rgba(6, 182, 212, 0.3);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
        }

        .ai-assistant-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(6, 182, 212, 0.2);
        }

        .ai-assistant-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(6, 182, 212, 0.35);
            background: radial-gradient(circle at center, rgba(20, 184, 166, 0.35), rgba(15, 23, 42, 0.9));
            overflow: hidden;
        }

        .ai-assistant-avatar canvas {
            width: 100%;
            height: 100%;
            display: block;
            border-radius: 50%;
        }

        .ai-webgl-avatar.mobile-hidden {
            display: none !important;
        }

        .ai-assistant-title {
            font-size: 20px;
            font-weight: 600;
            color: #00ff41;
        }

        .ai-assistant-status {
            font-size: 14px;
            color: #64748b;
        }

        .ai-chat-container {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 15px;
            align-items: end;
        }

        .ai-chat-input {
            background: rgba(6, 182, 212, 0.1);
            border: 1px solid rgba(6, 182, 212, 0.3);
            border-radius: 10px;
            padding: 15px;
            color: white;
            font-size: 14px;
            resize: none;
            min-height: 50px;
            max-height: 120px;
            transition: all 0.3s ease;
        }

        .ai-chat-input:focus {
            outline: none;
            border-color: #06b6d4;
            box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
            background: rgba(6, 182, 212, 0.15);
        }

        .ai-chat-input::placeholder {
            color: #64748b;
        }

        .ai-send-button {
            background: linear-gradient(135deg, #06b6d4, #3b82f6);
            border: none;
            border-radius: 10px;
            padding: 15px 20px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 80px;
        }

        .ai-send-button:hover {
            background: linear-gradient(135deg, #0891b2, #2563eb);
            box-shadow: 0 4px 20px rgba(6, 182, 212, 0.4);
            transform: translateY(-2px);
        }

        .ai-send-button:active {
            transform: translateY(0);
        }

        .quick-prompts {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }

        /* Расширенный блок обработки данных */
        .enhanced-data-processing {
            background: rgba(15, 23, 42, 0.8);
            border: 1px solid rgba(6, 182, 212, 0.3);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
        }

        .enhanced-data-title {
            font-size: 20px;
            font-weight: 600;
            color: #00ff41;
            margin-bottom: 20px;
            text-align: center;
        }

        .data-period-selector {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
            justify-content: center;
        }

        .period-btn {
            background: rgba(6, 182, 212, 0.1);
            border: 1px solid rgba(6, 182, 212, 0.3);
            border-radius: 8px;
            padding: 8px 15px;
            color: #00ff41;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .period-btn:hover {
            background: rgba(6, 182, 212, 0.2);
            border-color: #06b6d4;
            transform: translateY(-1px);
        }

        .period-btn.active {
            background: linear-gradient(135deg, #06b6d4, #3b82f6);
            border-color: #06b6d4;
            color: white;
        }

        .date-range-selector {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            padding: 15px;
            background: rgba(6, 182, 212, 0.05);
            border-radius: 8px;
        }

        .date-input {
            background: rgba(6, 182, 212, 0.1);
            border: 1px solid rgba(6, 182, 212, 0.3);
            border-radius: 5px;
            padding: 8px 12px;
            color: white;
            font-size: 12px;
            width: 120px;
        }

        .date-input:focus {
            outline: none;
            border-color: #06b6d4;
            background: rgba(6, 182, 212, 0.15);
        }

        .departments-section {
            margin-bottom: 20px;
        }

        .departments-title {
            font-size: 16px;
            font-weight: 600;
            color: #00ff41;
            margin-bottom: 15px;
        }

        .departments-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 10px;
            margin-bottom: 20px;
        }

        .department-item {
            background: rgba(6, 182, 212, 0.1);
            border: 1px solid rgba(6, 182, 212, 0.3);
            border-radius: 8px;
            padding: 12px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .department-item:hover {
            background: rgba(6, 182, 212, 0.15);
            border-color: #06b6d4;
        }

        .dept-name {
            font-size: 12px;
            color: #64748b;
            margin-bottom: 5px;
        }

        .dept-count {
            font-size: 18px;
            font-weight: 600;
            color: #00ff41;
            margin-bottom: 3px;
        }

        .dept-trend {
            font-size: 10px;
            color: #10b981;
        }

        .data-analytics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .analytics-data-item {
            background: rgba(6, 182, 212, 0.1);
            border: 1px solid rgba(6, 182, 212, 0.3);
            border-radius: 10px;
            padding: 15px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .analytics-data-item:hover {
            background: rgba(6, 182, 212, 0.15);
            border-color: #06b6d4;
            transform: translateY(-2px);
        }

        .data-icon {
            font-size: 20px;
            display: block;
            margin-bottom: 8px;
        }

        .data-label {
            font-size: 11px;
            color: #64748b;
            margin-bottom: 5px;
        }

        .data-value {
            font-size: 16px;
            font-weight: 600;
            color: #00ff41;
            margin-bottom: 3px;
        }

        .data-trend {
            font-size: 10px;
            color: #10b981;
        }

        .processing-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 10px;
            margin-top: 15px;
        }

        .processing-stat {
            background: rgba(6, 182, 212, 0.1);
            border: 1px solid rgba(6, 182, 212, 0.3);
            border-radius: 6px;
            padding: 10px;
            text-align: center;
        }

        .stat-value {
            font-size: 14px;
            font-weight: 600;
            color: #00ff41;
        }

        .stat-label {
            font-size: 10px;
            color: #64748b;
            margin-top: 3px;
        }

        .quick-prompt {
            background: rgba(6, 182, 212, 0.1);
            border: 1px solid rgba(6, 182, 212, 0.3);
            border-radius: 8px;
            padding: 8px 15px;
            color: #00ff41;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .quick-prompt:hover {
            background: rgba(6, 182, 212, 0.2);
            border-color: #06b6d4;
            transform: translateY(-1px);
        }

        .footer {
            text-align: center;
            padding: 20px;
            color: #64748b;
            font-size: 11px;
            border-top: 1px solid rgba(6, 182, 212, 0.2);
            margin-top: 20px;
        }

        /* --- Strategy & Governance layout moved to css/strategy.css --- */
        @media (max-width: 1024px) {
            .dashboard {
                grid-template-columns: 1fr;
                grid-template-rows: auto auto 1fr;
                width: 100%;
                max-width: 100vw;
                overflow-x: hidden;
            }
            
            .metrics-panel {
                grid-column: 1;
                grid-row: auto;
                border-left: none;
                border-top: 1px solid rgba(6, 182, 212, 0.3);
                padding: 16px 12px 24px;
                max-width: 100%;
                overflow-x: hidden;
            }
            
            .ai-representative {
                grid-template-columns: 1fr;
                grid-template-rows: auto auto;
                text-align: center;
            }

            .main-panel {
                grid-row: auto;
                grid-column: 1;
                padding: 16px 12px 24px;
                max-width: 100%;
                overflow-x: hidden;
            }

            .ai-webgl-avatar {
                grid-column: 1;
                max-width: 100%;
                display: none;
            }
            
            .voxel-face-container {
                margin: 0 auto;
            }
            
            .voxel-face {
                width: 250px;
                height: 250px;
            }

            .interaction-buttons,
            .command-buttons,
            .model-grid,
            .analytics-grid,
            .departments-grid,
            .data-grid,
            .data-analytics-grid,
            .processing-stats,
            .consensus-visual,
            .recommendation-impact,
            .energy-buildings-grid,
            .training-progress .progress-item {
                grid-template-columns: 1fr;
            }

            .energy-metrics-grid {
                grid-template-columns: 1fr;
            }

            .analytics-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .department-item-enhanced,
            .metric-group,
            .video-analytics-block,
            .enhanced-data-processing,
            .ai-recommendations-block,
            .energy-efficiency-block,
            .strategy-cluster-block,
            .strategy-status-block,
            .ai-assistant-chat,
            .ai-assistant-framed,
            .video-analytics-framed,
            .enhanced-data-framed,
            .data-types-framed,
            .hr-ai-agent-metrics,
            .metrics-panel .metric-group {
                width: 100%;
            }

            .strategy-status-columns {
                grid-template-columns: 1fr;
            }

            .hr-ai-agent-metrics {
                grid-template-columns: 1fr;
            }

            .department-item-enhanced {
                margin-left: 0;
                margin-right: 0;
            }

            .gauge-arc {
                padding: 6px;
            }

            .ai-chat-container {
                grid-template-columns: 1fr;
            }

            .ai-chat-input {
                min-height: 80px;
            }

            .ai-send-button {
                width: 100%;
                min-width: unset;
                justify-self: stretch;
            }

            .ai-assistant-avatar {
                margin: 0;
            }

            .transport-analytics-block {
                padding: 20px 16px;
            }

            .transport-summary-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .transport-summary-card {
                padding: 16px;
            }

            .transport-detail-grid {
                grid-template-columns: 1fr;
            }

            .dashcam-metric-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .access-log-header,
            .access-log-row {
                grid-template-columns: 150px 90px 1fr 120px 150px;
                gap: 8px;
                font-size: 11px;
            }


        }
        
        /* Стили для блока видеоаналитики */
        .video-analytics-block {
            background: rgba(15, 23, 42, 0.8);
            border: 1px solid #1e293b;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
        }

        .video-analytics-title {
            color: #00ffff;
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 15px;
            text-align: center;
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
        }

        .analytics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 15px;
        }

        .analytics-card {
            background: rgba(6, 182, 212, 0.1);
            border: 1px solid rgba(6, 182, 212, 0.3);
            border-radius: 6px;
            padding: 15px;
            transition: all 0.3s ease;
        }

        .analytics-card:hover {
            border-color: #00ffff;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
        }

        .analytics-icon {
            font-size: 24px;
            margin-bottom: 8px;
            display: block;
        }

        .analytics-label {
            color: #94a3b8;
            font-size: 12px;
            margin-bottom: 5px;
        }

        .analytics-value {
            color: #00ffff;
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 3px;
        }

        .analytics-trend {
            font-size: 11px;
            color: #64748b;
        }

        .analytics-trend.positive {
            color: #10b981;
        }

        .analytics-trend.negative {
            color: #ef4444;
        }

.transport-analytics-block {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 16px;
    padding: 26px;
    margin: 24px 0;
    box-shadow: 0 12px 35px rgba(8, 47, 73, 0.35);
}

.transport-analytics-title {
    font-size: 20px;
    font-weight: 600;
    color: #38bdf8;
    text-align: center;
    margin-bottom: 22px;
    text-shadow: 0 0 14px rgba(56, 189, 248, 0.4);
}

.transport-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.transport-summary-card {
    background: rgba(8, 47, 73, 0.55);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 14px;
    padding: 18px;
    box-shadow: inset 0 0 0 1px rgba(15, 118, 110, 0.25);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.transport-summary-card:hover {
    transform: translateY(-4px);
    border-color: rgba(165, 243, 252, 0.6);
}

.transport-summary-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.transport-summary-label {
    font-size: 13px;
    color: #a5b4fc;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.transport-summary-value {
    font-size: 26px;
    font-weight: 600;
    color: #f8fafc;
    margin: 6px 0;
}

.transport-summary-trend {
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.transport-summary-trend.positive {
    color: #34d399;
}

.transport-summary-trend.attention {
    color: #fbbf24;
}

.transport-summary-trend.critical {
    color: #f87171;
}

.transport-detail-grid {
    display: grid;
    grid-template-columns: minmax(360px, 2fr) minmax(260px, 1.5fr) minmax(260px, 1.5fr);
    gap: 22px;
}

.transport-card {
    background: rgba(8, 15, 33, 0.75);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 16px;
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.36);
}

.transport-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #93c5fd;
    display: flex;
    align-items: center;
    gap: 8px;
}

.transport-card-subtitle {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.5;
}

.access-stats,
.route-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 14px;
}

.access-stat,
.route-stat {
    background: rgba(30, 64, 175, 0.2);
    border: 1px solid rgba(96, 165, 250, 0.28);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.access-label,
.route-label {
    font-size: 12px;
    font-weight: 600;
    color: #c7d2fe;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.access-value,
.route-value {
    font-size: 20px;
    font-weight: 600;
    color: #f1f5f9;
}

.access-value.attention,
.route-value.attention,
.dashcam-metric-value.attention,
.metric-value.attention {
    color: #fbbf24;
}

.access-value.critical,
.route-value.critical,
.dashcam-metric-value.critical,
.metric-value.critical {
    color: #f87171;
}

.access-log {
    background: rgba(12, 24, 49, 0.85);
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.access-log-header,
.access-log-row {
    display: grid;
    grid-template-columns: 150px 110px 120px 140px 1fr;
    font-size: 12px;
    gap: 12px;
    padding: 10px 16px;
    align-items: center;
}

.access-log-header {
    background: rgba(51, 65, 85, 0.4);
    color: #cbd5f5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.access-log-row:nth-child(even) {
    background: rgba(15, 23, 42, 0.45);
}

.access-log-row.attention {
    background: rgba(251, 191, 36, 0.12);
    border-left: 3px solid rgba(251, 191, 36, 0.6);
}

.access-log-row.critical {
    background: rgba(248, 113, 113, 0.12);
    border-left: 3px solid rgba(248, 113, 113, 0.65);
}

.route-progress {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.route-progress-item {
    background: rgba(30, 64, 175, 0.18);
    border-radius: 12px;
    border: 1px solid rgba(96, 165, 250, 0.25);
    padding: 14px 18px;
}

.route-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #e2e8f0;
    margin-bottom: 10px;
}

.route-progress-title {
    font-weight: 600;
    color: #fde68a;
}

.route-progress-value {
    font-weight: 600;
    color: #38bdf8;
}

.route-progress-bar {
    position: relative;
    height: 8px;
    border-radius: 9999px;
    background: rgba(22, 78, 99, 0.45);
    overflow: hidden;
}

.route-progress-bar.critical {
    background: rgba(127, 29, 29, 0.45);
}

.route-progress-fill {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #22d3ee, #38bdf8);
    border-radius: inherit;
    transition: width 0.4s ease;
}

.route-progress-bar.critical .route-progress-fill {
    background: linear-gradient(90deg, #f97316, #ef4444);
}

.route-progress-note {
    margin-top: 10px;
    font-size: 12px;
    color: #9ca3af;
}

.route-progress-note.critical {
    color: #fca5a5;
}

.route-warnings {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.route-warning {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: rgba(30, 41, 59, 0.75);
    border-radius: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(59, 130, 246, 0.18);
}

.route-warning-icon {
    font-size: 20px;
}

.route-warning-title {
    font-size: 13px;
    font-weight: 600;
    color: #f8fafc;
}

.route-warning-meta {
    font-size: 12px;
    color: #cbd5f5;
    margin-top: 4px;
}

.dashcam-metrics {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dashcam-metric {
    background: rgba(30, 41, 59, 0.65);
    border-radius: 14px;
    border: 1px solid rgba(165, 243, 252, 0.2);
    padding: 16px 18px;
}

.dashcam-metric-title {
    font-size: 14px;
    color: #facc15;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.03em;
}

.dashcam-metric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}

.dashcam-metric-label {
    font-size: 12px;
    color: #cbd5f5;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.dashcam-metric-value {
    font-size: 16px;
    font-weight: 600;
    color: #e0f2fe;
    margin-top: 4px;
}

.dashcam-alerts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dashcam-alert {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: rgba(30, 64, 175, 0.24);
    border-radius: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(96, 165, 250, 0.28);
}

.dashcam-alert.critical {
    background: rgba(127, 29, 29, 0.3);
    border-color: rgba(239, 68, 68, 0.4);
}

.dashcam-alert.attention {
    background: rgba(217, 119, 6, 0.18);
    border-color: rgba(251, 191, 36, 0.35);
}

.dashcam-alert-icon {
    font-size: 22px;
    line-height: 1;
}

.dashcam-alert-title {
    font-size: 13px;
    font-weight: 600;
    color: #f8fafc;
}

.dashcam-alert-meta {
    font-size: 12px;
    color: #cbd5f5;
    margin-top: 4px;
}

.attention {
    color: #fbbf24;
}

.critical {
    color: #f87171;
}

.metric-trend.attention {
    color: #fbbf24;
}

.metric-trend.critical {
    color: #f87171;
}

.route-warning.attention {
    border-color: rgba(251, 191, 36, 0.35);
    background: rgba(120, 53, 15, 0.2);
}

.route-warning.critical {
    border-color: rgba(248, 113, 113, 0.45);
    background: rgba(127, 29, 29, 0.3);
}
        .production-zones {
            margin-top: 15px;
        }

        .zone-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px solid rgba(6, 182, 212, 0.1);
        }
        .zone-item:last-child {
            border-bottom: none;
        }

        .zone-name {
            color: #cbd5e1;
            font-size: 14px;
        }

        .zone-status {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        .status-dot.active {
            background-color: #10b981;
            box-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
        }

        .status-dot.warning {
            background-color: #f59e0b;
            box-shadow: 0 0 6px rgba(245, 158, 11, 0.6);
        }

        .status-dot.inactive {
            background-color: #64748b;
            box-shadow: 0 0 4px rgba(100, 116, 139, 0.4);
        }

        .zone-metric {
            font-size: 12px;
            color: #94a3b8;
        }

        .safety-metrics {
            background: rgba(16, 185, 129, 0.05);
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: 6px;
            padding: 12px;
            margin-top: 15px;
        }

        .safety-title {
            color: #10b981;
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .safety-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 8px;
        }

        .safety-stat {
            text-align: center;
        }

        .safety-stat-value {
            color: #10b981;
            font-size: 16px;
            font-weight: bold;
        }

        .safety-stat-label {
            color: #64748b;
            font-size: 11px;
        }

        /* Стили для биометрии и дисциплины */
        .biometric-disciplina {
            background: rgba(139, 92, 246, 0.05);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 6px;
            padding: 15px;
            margin-top: 15px;
        }

        .biometric-title {
            color: #8b5cf6;
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 12px;
            text-align: center;
        }

        .biometric-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 10px;
        }

        .biometric-stat {
            background: rgba(139, 92, 246, 0.1);
            border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 4px;
            padding: 10px;
            text-align: center;
        }

        .biometric-stat-value {
            color: #8b5cf6;
            font-size: 16px;
            font-weight: bold;
        }

        .biometric-stat-label {
            color: #a78bfa;
            font-size: 10px;
            margin-top: 3px;
        }

        .disciplinary-log {
            margin-top: 15px;
        }

        .log-title {
            color: #f59e0b;
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 8px;
            text-align: center;
        }

        .violation-item {
            background: rgba(239, 68, 68, 0.05);
            border: 1px solid rgba(239, 68, 68, 0.2);
            border-radius: 4px;
            padding: 8px 12px;
            margin-bottom: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .violation-item:last-child {
            margin-bottom: 0;
        }

        .violation-info {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .violation-icon {
            font-size: 14px;
        }

        .violation-employee {
            color: #fecaca;
            font-size: 12px;
            font-weight: 500;
        }

        .violation-time {
            color: #fbbf24;
            font-size: 11px;
        }
        .violation-status {
            font-size: 10px;
            padding: 2px 6px;
            border-radius: 10px;
        }

        .status-pending {
            background: rgba(245, 158, 11, 0.2);
            color: #fbbf24;
        }

        .status-resolved {
            background: rgba(16, 185, 129, 0.2);
            color: #10b981;
        }

        .evidence-gallery {
            margin-top: 15px;
        }

        .evidence-title {
            color: #06b6d4;
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 8px;
            text-align: center;
        }

        .evidence-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 8px;
        }

        .evidence-item {
            background: rgba(6, 182, 212, 0.1);
            border: 1px solid rgba(6, 182, 212, 0.3);
            border-radius: 4px;
            padding: 8px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .evidence-item:hover {
            border-color: #00ffff;
            transform: scale(1.02);
        }

        .evidence-icon {
            font-size: 20px;
            margin-bottom: 4px;
        }

        .evidence-label {
            color: #67e8f9;
            font-size: 10px;
        }

        .employee-ranking {
            margin-top: 15px;
        }

        .ranking-title {
            color: #10b981;
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 8px;
            text-align: center;
        }

        .employee-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 6px 0;
            border-bottom: 1px solid rgba(16, 185, 129, 0.1);
        }

        .employee-item:last-child {
            border-bottom: none;
        }

        .employee-name {
            color: #a7f3d0;
            font-size: 12px;
        }

        .employee-discipline {
            font-size: 11px;
        }

        .discipline-excellent {
            color: #10b981;
        }

        .discipline-good {
            color: #3b82f6;
        }

        .discipline-warning {
            color: #f59e0b;
        }

        .discipline-poor {
            color: #ef4444;
        }

        /* Спидометры эффективности отделов */
        .efficiency-gauge {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            margin: 0 auto 8px auto;
            position: relative;
        }

        .gauge-arc {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            position: relative;
            background: conic-gradient(
                from 0deg,
                #ef4444 0deg,
                #f59e0b 120deg,
                #10b981 240deg,
                #10b981 360deg
            );
            padding: 8px;
        }

        .gauge-inner {
            width: 100%;
            height: 100%;
            background: #0f172a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .gauge-value {
            position: absolute;
            top: 5px;
            right: 8px;
            font-size: 13px;
            font-weight: 700;
            color: #00ff41;
            text-align: center;
            background: rgba(0, 255, 65, 0.15);
            padding: 3px 6px;
            border-radius: 4px;
            border: 1px solid rgba(0, 255, 65, 0.4);
            min-width: 32px;
            box-shadow: 0 0 8px rgba(0, 255, 65, 0.3);
            text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
        }

        .gauge-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 8px;
            height: 8px;
            background: #00ff41;
            border-radius: 50%;
            z-index: 10;
            box-shadow: 0 0 5px rgba(0, 255, 65, 0.8);
        }

        .gauge-arrow {
            position: absolute;
            width: 2px;
            height: 32px;
            background: #ef4444;
            top: 50%;
            left: 50%;
            transform-origin: bottom center;
            transform: translate(-50%, -100%) rotate(0deg);
            border-radius: 1px;
            box-shadow: 0 0 10px rgba(239, 68, 68, 0.8);
            z-index: 5;
        }

        .gauge-arrow::after {
            content: '';
            position: absolute;
            top: -3px;
            left: -2px;
            width: 6px;
            height: 6px;
            background: var(--arrow-color, #ef4444);
            border-radius: 50%;
            box-shadow: 0 0 8px var(--arrow-head-shadow, rgba(239, 68, 68, 0.8));
        }

        /* Улучшенные карточки отделов со спидометрами */
        .department-item-enhanced {
            background: rgba(6, 182, 212, 0.1);
            border: 1px solid rgba(6, 182, 212, 0.3);
            border-radius: 12px;
            padding: 15px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .department-item-enhanced:hover {
            background: rgba(6, 182, 212, 0.15);
            border-color: #06b6d4;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
        }

        .dept-name-enhanced {
            font-size: 13px;
            color: #64748b;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .dept-stats-enhanced {
            font-size: 12px;
            color: #00ff41;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .dept-efficiency-enhanced {
            font-size: 11px;
            color: #10b981;
            margin-top: 5px;
        }

        .dept-issues {
            margin-top: 8px;
            padding: 6px;
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            border-radius: 6px;
            font-size: 10px;
        }

        .issue-item {
            margin: 2px 0;
            color: #fbbf24;
            display: flex;
            align-items: center;
        }

        .dept-metrics {
            margin-top: 8px;
            padding: 6px;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: 6px;
            font-size: 10px;
        }

        .metric-item {
            margin: 2px 0;
            color: #00ff41;
            display: flex;
            align-items: center;
        }

        .hr-department-full {
            margin-top: 24px;
        }

        .hr-ai-agent {
            margin-top: 14px;
            padding: 16px;
            background: rgba(56, 189, 248, 0.08);
            border: 1px solid rgba(56, 189, 248, 0.35);
            border-radius: 12px;
            box-shadow: inset 0 0 18px rgba(14, 165, 233, 0.1);
        }

        .hr-ai-agent-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 10px;
        }

        .hr-ai-agent-title {
            font-size: 13px;
            font-weight: 600;
            color: #38bdf8;
            letter-spacing: 0.03em;
        }

        .hr-ai-agent-status {
            padding: 4px 10px;
            border-radius: 999px;
            font-size: 10px;
            font-weight: 600;
            background: rgba(16, 185, 129, 0.15);
            border: 1px solid rgba(16, 185, 129, 0.4);
            color: #10b981;
            box-shadow: 0 0 12px rgba(16, 185, 129, 0.25);
        }

        .hr-ai-agent-description {
            font-size: 11px;
            color: #94a3b8;
            line-height: 1.6;
            margin-bottom: 12px;
        }

        .hr-ai-agent-metrics {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 10px;
        }

        .hr-ai-metric {
            font-size: 11px;
            color: #cbd5f5;
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(56, 189, 248, 0.25);
            border-radius: 8px;
            padding: 8px 10px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* Заголовок для типов данных */
        .data-types-header {
            background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(13, 148, 136, 0.1));
            border: 1px solid rgba(6, 182, 212, 0.4);
            border-radius: 10px;
            padding: 15px;
            margin: 20px 0 15px 0;
            text-align: center;
            box-shadow: 0 4px 20px rgba(6, 182, 212, 0.1);
        }

        .data-types-title {
            font-size: 18px;
            font-weight: 600;
            color: #00ff41;
            margin-bottom: 5px;
            text-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
        }

        .data-types-subtitle {
            font-size: 13px;
            color: #64748b;
            font-weight: 400;
        }

        /* Блок рекомендаций ИИ */
        .ai-recommendations-block {
            background: rgba(15, 23, 42, 0.85);
            border: 2px solid #00ff41;
            border-radius: 16px;
            padding: 26px;
            margin: 24px 0;
            box-shadow: 0 12px 32px rgba(8, 47, 73, 0.35);
        }

        .ai-recommendations-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(148, 163, 184, 0.18);
        }

        .ai-recommendations-icon {
            font-size: 26px;
            color: #38bdf8;
        }

        .ai-recommendations-title {
            font-size: 20px;
            font-weight: 700;
            color: #00ff41;
            margin: 0;
        }

        .ai-recommendations-subtitle {
            font-size: 14px;
            color: #94a3b8;
            margin: 2px 0 0 0;
        }

        .recommendation-item {
            background: rgba(30, 41, 59, 0.55);
            border: 1px solid rgba(148, 163, 184, 0.18);
            border-radius: 12px;
            padding: 18px;
            margin-bottom: 15px;
            transition: all 0.3s ease;
            position: relative;
        }

        .recommendation-item:hover {
            background: rgba(30, 41, 59, 0.7);
            border-color: rgba(148, 163, 184, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 8px 18px rgba(15, 23, 42, 0.35);
        }

        .recommendation-priority {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .priority-critical {
            background: rgba(239, 68, 68, 0.2);
            color: #ef4444;
            border: 1px solid #ef4444;
        }

        .priority-high {
            background: rgba(245, 158, 11, 0.2);
            color: #f59e0b;
            border: 1px solid #f59e0b;
        }

        .priority-medium {
            background: rgba(6, 182, 212, 0.2);
            color: #06b6d4;
            border: 1px solid #06b6d4;
        }

        .recommendation-title {
            font-size: 16px;
            font-weight: 600;
            color: #00ff41;
            margin-bottom: 8px;
        }

        .recommendation-description {
            font-size: 13px;
            color: #cbd5e1;
            line-height: 1.5;
            margin-bottom: 12px;
        }

        .recommendation-impact {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid rgba(148, 163, 184, 0.16);
        }

        .impact-section {
            font-size: 12px;
        }

        .impact-negative {
            color: #ef4444;
        }

        .impact-positive {
            color: #10b981;
        }

        .impact-title {
            font-weight: 600;
            margin-bottom: 5px;
        }

        .ai-confidence {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 15px;
            padding: 10px;
            background: rgba(30, 41, 59, 0.55);
            border: 1px solid rgba(148, 163, 184, 0.18);
            border-radius: 10px;
        }

        .confidence-bar {
            flex: 1;
            height: 6px;
            background: rgba(6, 182, 212, 0.2);
            border-radius: 3px;
            overflow: hidden;
        }

        .confidence-fill {
            height: 100%;
            background: linear-gradient(90deg, #06b6d4, #10b981);
            border-radius: 3px;
            transition: width 1s ease;
        }

        .confidence-text {
            font-size: 11px;
            color: #64748b;
            min-width: 60px;
        }

        /* Стратегический кластер */
        .strategy-cluster-block,
        .strategy-status-block {
            background: rgba(15, 23, 42, 0.85);
            border: 2px solid #00ff41;
            border-radius: 18px;
            padding: 28px;
            margin: 28px 0;
            box-shadow: 0 18px 40px rgba(8, 47, 73, 0.35);
        }

        .strategy-cluster-header {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-bottom: 24px;
            padding-bottom: 18px;
            border-bottom: 1px solid rgba(148, 163, 184, 0.18);
        }

        .strategy-cluster-icon {
            width: 56px;
            height: 56px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            background: linear-gradient(135deg, rgba(56, 189, 248, 0.85), rgba(14, 165, 233, 0.6));
            box-shadow: 0 18px 40px rgba(56, 189, 248, 0.35);
        }

        .strategy-cluster-title {
            margin: 0;
            font-size: 20px;
            font-weight: 700;
            color: #00ff41;
        }

        .strategy-cluster-subtitle {
            font-size: 13px;
            color: #94a3b8;
            letter-spacing: 0.02em;
            margin-top: 4px;
        }

        .strategy-status-block .strategy-cluster-title {
            color: #38bdf8;
        }

        .strategy-status-columns {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .strategy-status-block .metric-group {
            margin: 0;
            background: rgba(15, 23, 42, 0.55);
            border-color: rgba(56, 189, 248, 0.18);
        }

        .strategy-status-block .metric-group:hover {
            background: rgba(15, 23, 42, 0.7);
            border-color: rgba(56, 189, 248, 0.35);
        }

        /* Стили для блока энергоэффективности */
        .energy-efficiency-block {
            background: rgba(15, 23, 42, 0.85);
            border: 2px solid #00ff41;
            border-radius: 16px;
            padding: 26px;
            margin: 24px 0;
            box-shadow: 0 12px 32px rgba(8, 47, 73, 0.35);
        }

        .energy-efficiency-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(148, 163, 184, 0.18);
        }

        .energy-efficiency-icon {
            font-size: 26px;
            color: #38bdf8;
        }

        .energy-efficiency-title {
            font-size: 20px;
            font-weight: 700;
            color: #00ffff;
            margin: 0;
        }

        .energy-efficiency-subtitle {
            font-size: 14px;
            color: #94a3b8;
            margin: 2px 0 0 0;
        }

        .energy-metrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 15px;
            margin-bottom: 20px;
        }

        .energy-metric-item {
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(30, 41, 59, 0.55);
            border: 1px solid rgba(148, 163, 184, 0.18);
            border-radius: 12px;
            padding: 16px;
            transition: all 0.3s ease;
            position: relative;
        }

        .energy-metric-item:hover {
            background: rgba(30, 41, 59, 0.7);
            border-color: rgba(148, 163, 184, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 8px 18px rgba(15, 23, 42, 0.35);
        }

        .energy-metric-icon {
            font-size: 24px;
            min-width: 40px;
            text-align: center;
        }

        .energy-metric-content {
            flex: 1;
        }

        .energy-metric-label {
            font-size: 13px;
            color: #94a3b8;
            margin-bottom: 4px;
        }

        .energy-metric-value {
            font-size: 18px;
            font-weight: 600;
            color: #00ffff;
            margin-bottom: 2px;
        }

        .energy-metric-trend {
            font-size: 12px;
            font-weight: 500;
        }

        .energy-metric-trend.up {
            color: #10b981;
        }

        .energy-metric-trend.down {
            color: #ef4444;
        }

        .energy-metric-trend.stable {
            color: #64748b;
        }

        .energy-efficiency-summary {
            padding: 16px;
            background: rgba(30, 41, 59, 0.6);
            border: 1px solid rgba(148, 163, 184, 0.18);
            border-radius: 12px;
        }

        .energy-efficiency-alert {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .energy-alert-icon {
            font-size: 20px;
            color: #38bdf8;
        }

        .energy-alert-text {
            font-size: 13px;
            color: #e2e8f0;
            line-height: 1.4;
        }

        /* Стили для секций энергоблока */
        .energy-section {
            margin-bottom: 25px;
        }

        .energy-section-title {
            font-size: 16px;
            font-weight: 600;
            color: #00ffff;
            margin: 0 0 15px 0;
            padding-bottom: 8px;
            border-bottom: 1px solid rgba(148, 163, 184, 0.16);
        }

        /* Стили для сетки зданий */
        .energy-buildings-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
        }

        .building-energy-item {
            background: rgba(30, 41, 59, 0.55);
            border: 1px solid rgba(148, 163, 184, 0.18);
            border-radius: 12px;
            padding: 16px;
            transition: all 0.3s ease;
        }

        .building-energy-item:hover {
            background: rgba(30, 41, 59, 0.7);
            border-color: rgba(148, 163, 184, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 8px 18px rgba(15, 23, 42, 0.35);
        }

        .building-energy-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 1px solid rgba(148, 163, 184, 0.16);
        }

        .building-energy-name {
            font-size: 15px;
            font-weight: 600;
            color: #10b981;
        }

        .building-energy-status {
            font-size: 12px;
            font-weight: 500;
            padding: 4px 8px;
            border-radius: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .building-energy-status.active {
            background: rgba(56, 189, 248, 0.16);
            color: #38bdf8;
            border: 1px solid rgba(56, 189, 248, 0.35);
        }

        .building-energy-status.maintenance {
            background: rgba(245, 158, 11, 0.18);
            color: #fbbf24;
            border: 1px solid rgba(245, 158, 11, 0.35);
        }

        .building-energy-metrics {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .building-energy-metric {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .building-metric-label {
            font-size: 12px;
            color: #94a3b8;
        }

        .building-metric-value {
            font-size: 14px;
            font-weight: 600;
            color: #10b981;
        }

        .building-metric-trend {
            font-size: 11px;
            font-weight: 500;
            padding: 2px 4px;
            border-radius: 4px;
            background: rgba(56, 189, 248, 0.12);
        }

        .building-metric-trend.up {
            color: #38bdf8;
        }

        .building-metric-trend.down {
            color: #ef4444;
            background: rgba(239, 68, 68, 0.1);
        }

        .building-metric-trend.stable {
            color: #94a3b8;
            background: rgba(148, 163, 184, 0.12);
        }

        /* Стили для других блоков с рамкой */

        /* Стили для других блоков с рамкой */
        .video-analytics-framed {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e293b 100%);
            border: 2px solid #00ff41;
            border-radius: 15px;
            padding: 25px;
            margin: 20px 0;
            box-shadow: 0 0 30px rgba(0, 255, 65, 0.3), inset 0 0 20px rgba(0, 255, 65, 0.05);
            position: relative;
            overflow: hidden;
        }

        .video-analytics-framed::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #00ff41, transparent);
            animation: scan-line 3s linear infinite;
        }

        .ai-assistant-framed {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e293b 100%);
            border: 2px solid #00ff41;
            border-radius: 15px;
            padding: 25px;
            margin: 20px 0;
            box-shadow: 0 0 30px rgba(0, 255, 65, 0.3), inset 0 0 20px rgba(0, 255, 65, 0.05);
            position: relative;
            overflow: hidden;
        }

        .ai-assistant-framed::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #00ff41, transparent);
            animation: scan-line 3s linear infinite;
        }
        .enhanced-data-framed {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e293b 100%);
            border: 2px solid #00ff41;
            border-radius: 15px;
            padding: 25px;
            margin: 20px 0;
            box-shadow: 0 0 30px rgba(0, 255, 65, 0.3), inset 0 0 20px rgba(0, 255, 65, 0.05);
            position: relative;
            overflow: hidden;
        }

        .enhanced-data-framed::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #00ff41, transparent);
            animation: scan-line 3s linear infinite;
        }

        .data-types-framed {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e293b 100%);
            border: 2px solid #00ff41;
            border-radius: 15px;
            padding: 25px;
            margin: 20px 0;
            box-shadow: 0 0 30px rgba(0, 255, 65, 0.3), inset 0 0 20px rgba(0, 255, 65, 0.05);
            position: relative;
            overflow: hidden;
        }

        .data-types-framed::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #00ff41, transparent);
            animation: scan-line 3s linear infinite;
        }

        /* ========== УПРАВЛЕНЧЕСКИЙ РАДАР СНАБЖЕНИЯ ========== */
        .procurement-radar-framed {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e293b 100%);
            border: 2px solid #00ff41;
            border-radius: 15px;
            padding: 30px;
            margin: 20px 0;
            box-shadow: 0 0 30px rgba(0, 255, 65, 0.3), inset 0 0 20px rgba(0, 255, 65, 0.05);
            position: relative;
            overflow: hidden;
        }

        .procurement-radar-framed::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #3b82f6, transparent);
            animation: scan-line 4s linear infinite;
        }

        .procurement-radar-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid rgba(59, 130, 246, 0.3);
        }

        .procurement-radar-icon {
            font-size: 48px;
            animation: pulse 2s ease-in-out infinite;
        }

        .procurement-radar-title {
            font-size: 32px;
            font-weight: 700;
            color: #3b82f6;
            text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
            margin: 0;
        }

        .procurement-radar-subtitle {
            font-size: 14px;
            color: #94a3b8;
            margin-top: 5px;
        }

        /* Executive Dashboard KPI */
        .procurement-executive-dashboard {
            margin-bottom: 30px;
        }

        .executive-kpi-title {
            font-size: 20px;
            font-weight: 600;
            color: #f59e0b;
            margin-bottom: 20px;
            padding: 12px 20px;
            background: rgba(245, 158, 11, 0.1);
            border-left: 4px solid #f59e0b;
            border-radius: 8px;
        }

        .executive-kpi-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .executive-kpi-card {
            background: rgba(15, 23, 42, 0.6);
            border: 2px solid rgba(59, 130, 246, 0.3);
            border-radius: 12px;
            padding: 20px;
            display: flex;
            gap: 15px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .executive-kpi-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .executive-kpi-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
            border-color: #3b82f6;
        }

        .executive-kpi-card:hover::before {
            opacity: 1;
        }

        .executive-kpi-card.kpi-critical {
            border-color: rgba(239, 68, 68, 0.4);
        }

        .executive-kpi-card.kpi-success {
            border-color: rgba(34, 197, 94, 0.4);
        }

        .executive-kpi-card.kpi-warning {
            border-color: rgba(245, 158, 11, 0.4);
        }

        .executive-kpi-card.kpi-info {
            border-color: rgba(59, 130, 246, 0.4);
        }

        .kpi-card-icon {
            font-size: 36px;
            line-height: 1;
        }

        .kpi-card-body {
            flex: 1;
        }

        .kpi-card-label {
            font-size: 13px;
            color: #94a3b8;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .kpi-card-value {
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 5px;
        }

        .kpi-card-trend {
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .kpi-card-trend.positive {
            color: #22c55e;
        }

        .kpi-card-trend.attention {
            color: #f59e0b;
        }

        .kpi-card-note {
            font-size: 12px;
            color: #64748b;
        }

        /* Predictive Section */
        .procurement-predictive-section,
        .procurement-integration-section,
        .procurement-consensus-section,
        .procurement-compliance-section,
        .procurement-l5-board-section {
            margin-bottom: 40px;
            padding: 25px;
            background: rgba(15, 23, 42, 0.4);
            border-radius: 12px;
            border: 1px solid rgba(59, 130, 246, 0.2);
        }

        .predictive-section-header,
        .integration-section-header,
        .consensus-section-header,
        .compliance-section-header,
        .l5-board-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid rgba(59, 130, 246, 0.2);
        }

        .predictive-section-icon,
        .integration-section-icon,
        .consensus-section-icon,
        .compliance-section-icon,
        .l5-board-icon {
            font-size: 32px;
        }

        .predictive-section-title,
        .integration-section-title,
        .consensus-section-title,
        .compliance-section-title,
        .l5-board-title {
            font-size: 24px;
            font-weight: 600;
            color: #3b82f6;
            margin: 0;
        }

        .predictive-section-subtitle,
        .integration-section-subtitle,
        .consensus-section-subtitle,
        .compliance-section-subtitle,
        .l5-board-subtitle {
            font-size: 13px;
            color: #94a3b8;
            margin-top: 5px;
        }

        /* Predictive Alerts */
        .predictive-alerts-grid {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .predictive-alert {
            background: rgba(15, 23, 42, 0.8);
            border-radius: 12px;
            padding: 20px;
            border-left: 4px solid;
        }

        .predictive-alert.alert-critical {
            border-left-color: #ef4444;
            background: rgba(239, 68, 68, 0.05);
        }

        .predictive-alert.alert-high {
            border-left-color: #f59e0b;
            background: rgba(245, 158, 11, 0.05);
        }

        .predictive-alert.alert-medium {
            border-left-color: #3b82f6;
            background: rgba(59, 130, 246, 0.05);
        }

        .alert-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        .alert-icon {
            font-size: 24px;
        }

        .alert-badge {
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        .alert-badge.badge-critical {
            background: rgba(239, 68, 68, 0.2);
            color: #ef4444;
            border: 1px solid #ef4444;
        }

        .alert-badge.badge-high {
            background: rgba(245, 158, 11, 0.2);
            color: #f59e0b;
            border: 1px solid #f59e0b;
        }

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

        .alert-time {
            margin-left: auto;
            font-size: 12px;
            color: #64748b;
        }

        .alert-title {
            font-size: 18px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 15px;
        }

        .alert-body {
            padding-left: 15px;
        }

        .alert-description {
            font-size: 14px;
            line-height: 1.6;
            color: #cbd5e1;
            margin-bottom: 15px;
        }

        .alert-metrics {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 20px;
            padding: 15px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 8px;
        }

        .alert-metric {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
        }

        .metric-label {
            font-size: 13px;
            color: #94a3b8;
        }

        .metric-value {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
        }

        .metric-value.critical {
            color: #ef4444;
        }

        /* AI Recommendation */
        .alert-ai-recommendation {
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 10px;
            padding: 20px;
            margin-top: 15px;
        }

        .ai-rec-icon {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .ai-rec-title {
            font-size: 15px;
            font-weight: 600;
            color: #3b82f6;
            margin-bottom: 15px;
        }

        .ai-rec-options {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 15px;
        }

        .ai-rec-option {
            padding: 15px;
            background: rgba(15, 23, 42, 0.6);
            border-radius: 8px;
            border-left: 3px solid;
        }

        .ai-rec-option.primary {
            border-left-color: #22c55e;
        }

        .ai-rec-option.secondary {
            border-left-color: #f59e0b;
        }

        .option-badge {
            display: inline-block;
            padding: 3px 10px;
            background: rgba(34, 197, 94, 0.2);
            color: #22c55e;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .option-text {
            display: block;
            font-size: 14px;
            color: #e2e8f0;
            margin-bottom: 8px;
            line-height: 1.5;
        }

        .option-impact {
            display: block;
            font-size: 12px;
            color: #94a3b8;
        }

        .ai-rec-action {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .action-btn {
            padding: 10px 20px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .action-btn.primary {
            background: #22c55e;
            color: #fff;
        }

        .action-btn.primary:hover {
            background: #16a34a;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(34, 197, 94, 0.4);
        }

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

        .action-btn.secondary:hover {
            background: rgba(59, 130, 246, 0.3);
        }

        .action-btn.tertiary {
            background: rgba(148, 163, 184, 0.2);
            color: #94a3b8;
            border: 1px solid #64748b;
        }

        .action-btn.tertiary:hover {
            background: rgba(148, 163, 184, 0.3);
        }

        .action-btn.escalate {
            background: rgba(245, 158, 11, 0.2);
            color: #f59e0b;
            border: 1px solid #f59e0b;
        }

        /* Data Mesh Visualization */
        .data-mesh-visualization {
            display: flex;
            align-items: center;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
            padding: 30px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 12px;
            margin-bottom: 25px;
            position: relative;
        }

        .data-mesh-node {
            background: rgba(15, 23, 42, 0.8);
            border: 2px solid rgba(59, 130, 246, 0.4);
            border-radius: 12px;
            padding: 20px;
            min-width: 180px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .data-mesh-node:hover {
            transform: scale(1.05);
            border-color: #3b82f6;
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
        }

        .node-icon {
            font-size: 32px;
            margin-bottom: 10px;
        }

        .node-title {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;
        }

        .node-status {
            display: inline-block;
            padding: 4px 12px;
            background: rgba(34, 197, 94, 0.2);
            color: #22c55e;
            border-radius: 12px;
            font-size: 11px;
            margin-bottom: 10px;
        }

        .node-metrics {
            font-size: 12px;
            color: #94a3b8;
        }

        .node-metric {
            margin: 5px 0;
        }

        .data-flow-arrow {
            font-size: 24px;
            color: #3b82f6;
            position: relative;
        }

        .data-flow-arrow::before {
            content: '→';
            font-size: 32px;
        }

        .arrow-label {
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 11px;
            color: #64748b;
            white-space: nowrap;
        }


        /* Integration Stats */
        .integration-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }

        .integration-stat {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: rgba(15, 23, 42, 0.6);
            border-radius: 10px;
            border: 1px solid rgba(59, 130, 246, 0.2);
        }

        .stat-icon {
            font-size: 28px;
        }

        .stat-label {
            font-size: 12px;
            color: #94a3b8;
            margin-bottom: 5px;
        }

        .stat-value {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 3px;
        }

        .stat-note {
            font-size: 11px;
            color: #64748b;
        }

        /* Consensus Visualization */
        .consensus-scenario {
            background: rgba(15, 23, 42, 0.6);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 25px;
        }

        .scenario-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid rgba(59, 130, 246, 0.2);
        }

        .scenario-icon {
            font-size: 28px;
        }

        .scenario-title {
            font-size: 18px;
            font-weight: 600;
            color: #fff;
            flex: 1;
        }

        .scenario-id {
            font-size: 12px;
            color: #64748b;
        }

        .consensus-participants {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 25px;
        }

        .participant-agent {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 10px;
            padding: 20px;
            border: 2px solid rgba(59, 130, 246, 0.3);
        }

        .agent-avatar {
            font-size: 36px;
            text-align: center;
            margin-bottom: 10px;
        }

        .agent-name {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            text-align: center;
            margin-bottom: 5px;
        }

        .agent-role {
            font-size: 12px;
            color: #94a3b8;
            text-align: center;
            margin-bottom: 15px;
        }

        .agent-vote {
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 8px;
            padding: 12px;
            margin-bottom: 12px;
            text-align: center;
        }

        .vote-choice {
            font-size: 15px;
            font-weight: 600;
            color: #3b82f6;
            margin-bottom: 5px;
        }

        .vote-confidence {
            font-size: 12px;
            color: #94a3b8;
        }

        .agent-reasoning {
            font-size: 13px;
            color: #cbd5e1;
            line-height: 1.5;
            font-style: italic;
            padding: 10px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 6px;
        }

        /* Consensus Result */
        .consensus-result {
            background: rgba(59, 130, 246, 0.05);
            border: 2px solid rgba(59, 130, 246, 0.3);
            border-radius: 12px;
            padding: 25px;
        }

        .result-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .result-icon {
            font-size: 28px;
        }

        .result-title {
            font-size: 18px;
            font-weight: 600;
            color: #fff;
            flex: 1;
        }

        .result-confidence {
            font-size: 14px;
            color: #22c55e;
            font-weight: 600;
        }

        .result-decision {
            margin-bottom: 20px;
        }

        .decision-badge {
            display: inline-block;
            padding: 8px 16px;
            background: rgba(34, 197, 94, 0.2);
            color: #22c55e;
            border: 1px solid #22c55e;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .decision-reasoning {
            font-size: 14px;
            line-height: 1.6;
            color: #cbd5e1;
        }

        .result-alternatives {
            background: rgba(245, 158, 11, 0.05);
            border-left: 3px solid #f59e0b;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .alternative-title {
            font-size: 14px;
            font-weight: 600;
            color: #f59e0b;
            margin-bottom: 8px;
        }

        .alternative-text {
            font-size: 13px;
            color: #cbd5e1;
            line-height: 1.5;
        }

        .result-actions {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .result-human-control {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px;
            background: rgba(148, 163, 184, 0.1);
            border: 1px solid rgba(148, 163, 184, 0.3);
            border-radius: 8px;
        }

        .human-control-icon {
            font-size: 24px;
        }

        .human-control-text {
            font-size: 13px;
            color: #94a3b8;
            line-height: 1.5;
        }

        /* Consensus History */
        .consensus-history {
            margin-top: 25px;
        }

        .consensus-history-title {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 15px;
        }

        .consensus-history-table,
        .compliance-audit-dashboard .validation-log-table {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 10px;
            overflow: hidden;
        }

        .history-row {
            display: grid;
            grid-template-columns: 100px 1fr 150px 100px 180px;
            gap: 15px;
            padding: 12px 20px;
            border-bottom: 1px solid rgba(59, 130, 246, 0.1);
            align-items: center;
        }

        .validation-row {
            display: grid;
            grid-template-columns: 80px 1fr 2fr 1.5fr 80px;
            gap: 15px;
            padding: 12px 20px;
            border-bottom: 1px solid rgba(59, 130, 246, 0.1);
            align-items: center;
        }

        .history-row.header,
        .validation-row.header {
            background: rgba(59, 130, 246, 0.1);
            font-weight: 600;
            color: #3b82f6;
            font-size: 13px;
        }

        .history-row:last-child,
        .validation-row:last-child {
            border-bottom: none;
        }

        .consensus-badge {
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
        }

        .consensus-badge.success {
            background: rgba(34, 197, 94, 0.2);
            color: #22c55e;
        }

        .consensus-badge.warning {
            background: rgba(245, 158, 11, 0.2);
            color: #f59e0b;
        }

        .badge-success {
            background: rgba(34, 197, 94, 0.2);
            color: #22c55e;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
        }

        .badge-progress {
            background: rgba(59, 130, 246, 0.2);
            color: #3b82f6;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
        }

        .badge-warning {
            background: rgba(245, 158, 11, 0.2);
            color: #f59e0b;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
        }

        /* Compliance Audit Dashboard */
        .audit-summary-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .audit-summary-card {
            background: rgba(15, 23, 42, 0.6);
            border: 2px solid rgba(59, 130, 246, 0.3);
            border-radius: 12px;
            padding: 20px;
            display: flex;
            gap: 15px;
        }

        .audit-card-icon {
            font-size: 32px;
        }

        .audit-card-label {
            font-size: 12px;
            color: #94a3b8;
            margin-bottom: 8px;
        }

        .audit-card-value {
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
        }

        .audit-card-breakdown {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .breakdown-item {
            font-size: 12px;
            color: #cbd5e1;
        }

        /* Critical Contracts */
        .compliance-critical-contracts {
            margin-bottom: 30px;
        }

        .critical-contracts-title {
            font-size: 18px;
            font-weight: 600;
            color: #ef4444;
            margin-bottom: 20px;
            padding: 12px 20px;
            background: rgba(239, 68, 68, 0.1);
            border-left: 4px solid #ef4444;
            border-radius: 8px;
        }

        .critical-contract-item {
            background: rgba(15, 23, 42, 0.6);
            border: 2px solid rgba(239, 68, 68, 0.3);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
        }

        .contract-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(239, 68, 68, 0.2);
            flex-wrap: wrap;
            gap: 10px;
        }

        .contract-id {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
        }

        .contract-badges {
            display: flex;
            gap: 10px;
        }

        .contract-badge {
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: 600;
        }

        .contract-badge.badge-critical {
            background: rgba(239, 68, 68, 0.2);
            color: #ef4444;
            border: 1px solid #ef4444;
        }

        .contract-badge.badge-high {
            background: rgba(245, 158, 11, 0.2);
            color: #f59e0b;
            border: 1px solid #f59e0b;
        }

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

        .contract-risks {
            margin-bottom: 20px;
        }

        .risk-item {
            display: flex;
            gap: 15px;
            padding: 15px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 8px;
            margin-bottom: 15px;
            border-left: 3px solid;
        }

        .risk-item.risk-critical {
            border-left-color: #ef4444;
        }

        .risk-item.risk-high {
            border-left-color: #f59e0b;
        }

        .risk-icon {
            font-size: 24px;
        }

        .risk-content {
            flex: 1;
        }

        .risk-title {
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 10px;
        }

        .risk-description {
            font-size: 13px;
            color: #cbd5e1;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .risk-legal-ref {
            font-size: 12px;
            color: #94a3b8;
            padding: 8px 12px;
            background: rgba(59, 130, 246, 0.1);
            border-radius: 6px;
        }

        .contract-ai-recommendation {
            background: rgba(59, 130, 246, 0.05);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 10px;
            padding: 20px;
        }

        .ai-rec-text {
            font-size: 13px;
            color: #cbd5e1;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .ai-rec-actions {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        /* Validation Log */
        .validation-log-title {
            font-size: 16px;
            font-weight: 600;
            color: #22c55e;
            margin-bottom: 15px;
        }

        .checks-list {
            font-size: 12px;
            line-height: 1.8;
            color: #cbd5e1;
        }

        .btn-link {
            background: transparent;
            border: none;
            color: #3b82f6;
            cursor: pointer;
            font-size: 13px;
            padding: 5px 8px;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .btn-link:hover {
            color: #60a5fa;
            text-decoration: underline;
        }

        /* L5 Board Strategic KPIs */
        .l5-board-strategic-kpis {
            margin-bottom: 30px;
        }

        .strategic-kpi-card {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
            border: 2px solid rgba(59, 130, 246, 0.4);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 25px;
        }

        .kpi-primary-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .kpi-primary-icon {
            font-size: 40px;
        }

        .kpi-primary-title {
            font-size: 22px;
            font-weight: 600;
            color: #fff;
        }

        .kpi-primary-value {
            font-size: 48px;
            font-weight: 700;
            color: #3b82f6;
            text-align: center;
            margin-bottom: 10px;
        }

        .kpi-primary-trend {
            text-align: center;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 25px;
        }

        .kpi-primary-components {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .component-bar {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .component-label {
            font-size: 14px;
            color: #94a3b8;
            min-width: 180px;
        }

        .component-progress {
            flex: 1;
            height: 30px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 15px;
            overflow: hidden;
            position: relative;
        }

        .component-fill {
            height: 100%;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding-right: 12px;
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            transition: width 1s ease;
        }

        .strategic-kpi-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 25px;
        }

        .strategic-kpi-item {
            background: rgba(15, 23, 42, 0.6);
            border: 2px solid rgba(59, 130, 246, 0.3);
            border-radius: 12px;
            padding: 20px;
        }

        .kpi-item-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .kpi-item-icon {
            font-size: 24px;
        }

        .kpi-item-label {
            font-size: 13px;
            color: #94a3b8;
            font-weight: 600;
        }

        .kpi-item-value {
            font-size: 32px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 5px;
        }

        .kpi-item-subtext {
            font-size: 12px;
            color: #64748b;
            margin-bottom: 15px;
        }

        .kpi-item-breakdown {
            display: flex;
            flex-direction: column;
            gap: 5px;
            font-size: 12px;
            color: #94a3b8;
        }

        /* Strategic Insights */
        .strategic-insights-title {
            font-size: 20px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 20px;
        }

        .strategic-insight-item {
            background: rgba(15, 23, 42, 0.6);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            border-left: 4px solid;
        }

        .strategic-insight-item.insight-critical {
            border-left-color: #ef4444;
        }

        .strategic-insight-item.insight-opportunity {
            border-left-color: #22c55e;
        }

        .insight-badge {
            display: inline-block;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .insight-critical .insight-badge {
            background: rgba(239, 68, 68, 0.2);
            color: #ef4444;
        }

        .insight-opportunity .insight-badge {
            background: rgba(34, 197, 94, 0.2);
            color: #22c55e;
        }

        .insight-title {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 12px;
        }

        .insight-text {
            font-size: 14px;
            color: #cbd5e1;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .insight-action {
            display: flex;
            gap: 10px;
        }

        /* Quick Actions */
        .procurement-quick-actions {
            margin-top: 30px;
            padding: 25px;
            background: rgba(59, 130, 246, 0.05);
            border: 2px solid rgba(59, 130, 246, 0.2);
            border-radius: 12px;
        }

        .quick-actions-title {
            font-size: 18px;
            font-weight: 600;
            color: #3b82f6;
            margin-bottom: 20px;
        }

        .quick-actions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }

        .quick-action-btn {
            background: rgba(59, 130, 246, 0.1);
            border: 2px solid rgba(59, 130, 246, 0.3);
            color: #3b82f6;
            padding: 15px 20px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }

        .quick-action-btn:hover {
            background: rgba(59, 130, 246, 0.2);
            border-color: #3b82f6;
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }
    
