        .genai-wrapper {
            max-width: 1280px;
            margin: 2rem auto;
            padding: 0 1.5rem;
        }

        .genai-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }

        .genai-header-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
            background: var(--bg-accent-1);
            border-bottom: 1px solid var(--border-ui);
            flex-wrap: wrap;
            gap: 1rem;
        }

        .engine-status-group {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: rgba(34, 197, 94, 0.15);
            color: #16a34a;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-weight: 600;
            font-size: 0.825rem;
        }

        :root[data-theme="dark"] .status-badge {
            background: rgba(34, 197, 94, 0.2);
            color: #4ade80;
        }

        .status-dot-pulse {
            width: 8px;
            height: 8px;
            background-color: currentColor;
            border-radius: 50%;
            display: inline-block;
            box-shadow: 0 0 8px currentColor;
        }

        .controls-group {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .action-btn {
            background: linear-gradient(135deg, var(--accent), #6366f1);
            color: #ffffff;
            border: none;
            padding: 0.55rem 1.2rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.875rem;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            text-decoration: none;
        }

        .action-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
        }

        .iframe-container {
            position: relative;
            width: 100%;
            height: 880px;
            min-height: 650px;
            background: var(--bg);
        }

        .genai-iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }

        @media (max-width: 768px) {
            .iframe-container {
                height: 650px;
            }
        }