        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

        /* Design Tokens */
        :root {
            /* Primary (Brand Colors - Unchanged) */
            --primary-500: #f59e0b;
            --primary-600: #d97706;

            /* Success */
            --success-500: #10b981;

            /* Danger */
            --danger-500: #ef4444;

            /* Neutral Dark Mode */
            --dark-bg: #0a0a0a;
            --dark-surface: #1a1a1a;
            --dark-border: #2d2d2d;
            --dark-text: #f5f5f5;
            --dark-text-muted: #9ca3af;

            /* Neutral Light Mode */
            --light-bg: #f5f5f5;
            --light-surface: #ffffff;
            --light-border: #e5e5e5;
            --light-text: #323232;
            --light-text-muted: #6b6b6b;

            /* Spacing */
            --space-1: 0.25rem;
            --space-2: 0.5rem;
            --space-3: 0.75rem;
            --space-4: 1rem;
            --space-6: 1.5rem;
            --space-8: 2rem;
        }

        body {
            font-family: 'Newsreader', Georgia, serif;
            margin: 0;
            padding: 0;
        }

        /* Subtle background pattern */
        .dark {
            background-image: radial-gradient(circle at 1px 1px, rgba(245, 158, 11, 0.03) 1px, transparent 0);
            background-size: 40px 40px;
        }

        /* Brand gradients */
        .gradient-bg {
            background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
        }

        .gradient-text {
            background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }

        .dark ::-webkit-scrollbar-track {
            background: #1a1a1a;
        }

        .light ::-webkit-scrollbar-track {
            background: #f5f5f5;
        }

        .dark ::-webkit-scrollbar-thumb {
            background: #3f3f3f;
            border-radius: 4px;
        }

        .light ::-webkit-scrollbar-thumb {
            background: #d1d1d1;
            border-radius: 4px;
        }

        /* Smooth transitions */
        * {
            transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
        }

        /* Prevent transition on page load */
        .preload * {
            transition: none !important;
        }

        /* Sidebar - Collapsible with smooth animations */
        .sidebar {
            width: 72px;
            position: fixed;
            left: 0;
            top: 0;
            bottom: 0;
            z-index: 90;
            transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
            will-change: width;
        }

        .sidebar:hover {
            width: 240px;
            box-shadow: 4px 0 20px rgba(0, 0, 0, 0.25);
        }

        .sidebar::-webkit-scrollbar {
            width: 4px;
        }

        .sidebar::-webkit-scrollbar-thumb {
            background: rgba(245, 158, 11, 0.3);
            border-radius: 2px;
        }

        .sidebar::-webkit-scrollbar-thumb:hover {
            background: rgba(245, 158, 11, 0.5);
        }

        .sidebar-inner {
            overflow-y: auto;
            overflow-x: hidden;
            height: 100%;
            background: inherit;
        }

        /* Ensure sidebar has solid background when expanded */
        .sidebar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: inherit;
            z-index: -1;
        }

        .main-content {
            margin-left: 72px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 1;
        }

        /* Fixed header inside main-content */
        .main-content > header {
            position: fixed !important;
            top: 0;
            left: 72px;
            right: 0;
            z-index: 100;
            height: 72px;
        }

        /* Main content area should account for fixed header */
        .main-content > main {
            padding-top: 88px !important;
            flex: 1;
            min-height: calc(100vh - 72px);
        }

        /* Ensure smooth scroll behavior */
        html {
            scroll-behavior: smooth;
        }

        /* Prevent horizontal overflow */
        body {
            overflow-x: hidden;
        }

        /* Nav item label animation */
        .nav-label {
            opacity: 0;
            max-width: 0;
            overflow: hidden;
            white-space: nowrap;
            transition: opacity 0.15s ease 0.08s, max-width 0.25s ease;
        }

        .sidebar:hover .nav-label {
            opacity: 1;
            max-width: 200px;
        }

        /* Prevent content shift when sidebar expands */
        .sidebar-nav-item {
            transition: padding 0.25s ease, background-color 0.15s ease;
        }

        /* Logo animation with smooth transition */
        .logo-collapsed {
            display: block;
            transition: opacity 0.15s ease;
        }

        .logo-expanded {
            display: none;
            transition: opacity 0.15s ease;
            max-width: 90%;  /* Prevent logo from being too wide */
        }

        .sidebar:hover .logo-collapsed {
            display: none;
        }

        .sidebar:hover .logo-expanded {
            display: block;
        }

        /* Mobile sidebar */
        @media (max-width: 768px) {
            .sidebar {
                width: 240px;
                transform: translateX(-100%);
            }

            .sidebar.mobile-open {
                transform: translateX(0);
            }

            .sidebar .nav-label {
                opacity: 1;
                max-width: 200px;
            }

            .sidebar .logo-collapsed {
                display: none;
            }

            .sidebar .logo-expanded {
                display: block;
            }

            .main-content {
                margin-left: 0;
            }

            .main-content > header {
                left: 0;
            }
        }

        /* Enhanced card designs */
        .premium-card {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(239, 68, 68, 0.05) 100%);
            border: 1px solid;
            border-image: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(239, 68, 68, 0.3)) 1;
            border-radius: 12px;
        }

        .glass-effect {
            backdrop-filter: blur(12px) saturate(180%);
            background: rgba(26, 26, 26, 0.8);
        }

        /* Stat card enhancement with gradient accent */
        .stat-card {
            position: relative;
            overflow: hidden;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #f59e0b, #ef4444);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .stat-card:hover::before {
            transform: scaleX(1);
        }

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

        /* Hot account glow */
        .hot-account-card {
            position: relative;
        }

        .hot-account-card::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 0.75rem;
            padding: 1px;
            background: linear-gradient(135deg, #f59e0b, #ef4444);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0.5;
        }

        /* Skeleton loader */
        .skeleton {
            background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
            background-size: 200% 100%;
            animation: skeleton-loading 1.5s infinite;
        }

        @keyframes skeleton-loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        /* Progress bar animation */
        .progress-bar {
            transition: width 1s ease-out;
        }

        /* Card hover effect */
        .card-hover {
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .dark .card-hover:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(245, 158, 11, 0.15);
        }

        .light .card-hover:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(245, 158, 11, 0.2);
        }

        /* Dropdown menu */
        .dropdown-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .dropdown-menu.open {
            max-height: 300px;
        }

        /* Fade-in animation */
        @keyframes fade-in {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-in {
            animation: fade-in 0.5s ease-out;
        }

        /* Spin animation for loading indicators */
        @keyframes spin {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        /* Enrichment indicator hover for cancel button */
        .enrichment-indicator:hover .cancel-btn {
            opacity: 1 !important;
            margin-left: 0.25rem !important;
        }

        .cancel-btn:hover {
            background-color: #fef2f2 !important;
        }

        /* Config enrichment indicator hover effect */
        .config-enrichment-indicator {
            transition: all 0.2s ease;
        }

        .config-enrichment-indicator:hover {
            background-color: rgba(239, 68, 68, 0.1) !important;
            border-color: rgba(239, 68, 68, 0.3) !important;
        }

        .config-enrichment-indicator:hover .enrichment-spinner {
            display: none !important;
        }

        .config-enrichment-indicator:hover .enrichment-text {
            display: none !important;
        }

        .config-enrichment-indicator:hover .enrichment-cancel-text {
            display: inline !important;
        }

        /* Modal slide-in animation */
        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: scale(0.95) translateY(-10px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        /* Pulse animation for hot accounts */
        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.6;
            }
        }

        .animate-pulse {
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        /* Selection styling */
        ::selection {
            background-color: rgba(245, 158, 11, 0.3);
            color: #ffffff;
        }

        /* Company Modal Styles */
        .company-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            padding: 20px;
            animation: fadeIn 0.2s;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .company-modal-content {
            width: 100%;
            max-width: 1100px;
            max-height: 90vh;
            overflow-y: auto;
            border-radius: 12px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            animation: slideUp 0.3s;
            padding: 2rem;
        }

        @keyframes slideUp {
            from { transform: translateY(20px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .signal-card-full {
            padding: 16px;
            border-radius: 10px;
            margin-bottom: 12px;
            font-size: 0.8125rem;
        }

        .signal-card-full:last-child {
            margin-bottom: 0;
        }

        .signal-item-with-source {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 8px;
            padding: 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }

        .signal-item-with-source:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .signal-source-link {
            font-size: 0.7rem;
            color: #60a5fa;
            text-decoration: none;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .signal-source-link:hover {
            text-decoration: underline;
        }

        .score-explainer {
            padding: 16px;
            border-radius: 10px;
            margin-bottom: 16px;
        }

        .icp-breakdown-bar {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }

        .icp-bar-bg {
            flex: 1;
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            overflow: hidden;
        }

        .icp-bar-fill {
            height: 100%;
            border-radius: 4px;
            transition: width 0.3s;
        }

        .metadata-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-bottom: 20px;
        }

        .metadata-item {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .metadata-label {
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            opacity: 0.7;
        }

        .metadata-value {
            font-size: 0.875rem;
            font-weight: 500;
        }

        .link-cell {
            color: #60a5fa;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .link-cell:hover {
            text-decoration: underline;
        }

        /* Razorpay Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            animation: fadeIn 0.2s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                transform: translateY(20px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Toast notification animation */
        @keyframes toastSlideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes toastSlideOut {
            from {
                transform: translateX(0);
                opacity: 1;
            }
            to {
                transform: translateX(100%);
                opacity: 0;
            }
        }

        /* Blaze Onboarding Animations */
        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: scale(0.95) translateY(20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        @keyframes bounce {
            0%, 60%, 100% {
                transform: translateY(0);
            }
            30% {
                transform: translateY(-6px);
            }
        }

        /* AI Agent animated gradient */
        @keyframes gradient-shift {
            0% { background-position: 0% 50%; }
            100% { background-position: 200% 50%; }
        }

        /* AI Agent typing indicator */
        @keyframes typing-dots {
            0%, 20% { opacity: 0; }
            50% { opacity: 1; }
            100% { opacity: 0; }
        }

        /* Glow pulse for active elements */
        @keyframes glow-pulse {
            0%, 100% {
                box-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
            }
            50% {
                box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
            }
        }

        /* =====================================================
           SETTINGS TAB V2 - ENHANCED UI STYLES
           ===================================================== */

        /* Signal Card V2 Styles */
        .signal-card-v2 {
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .signal-card-v2:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.1);
        }

        .signal-card-v2.enabled {
            box-shadow: 0 4px 12px -2px rgba(245, 158, 11, 0.15);
        }

        .signal-card-v2.disabled {
            opacity: 0.7;
        }

        /* Toggle Switch Animation */
        .toggle-switch-v2 input:checked + .toggle-slider-v2 {
            background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
        }

        /* Section Navigation V2 */
        .settings-section-nav-v2 {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            padding: 16px 0;
            border-bottom: 1px solid var(--dark-border);
            margin-bottom: 24px;
        }

        .light .settings-section-nav-v2 {
            border-color: var(--light-border);
        }

        .settings-section-nav-v2 button {
            padding: 10px 16px;
            border: 1px solid var(--dark-border);
            border-radius: 8px;
            background: transparent;
            color: var(--dark-text-muted);
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .light .settings-section-nav-v2 button {
            border-color: var(--light-border);
            color: var(--light-text-muted);
        }

        .settings-section-nav-v2 button:hover {
            background: var(--dark-surface);
            color: var(--dark-text);
        }

        .light .settings-section-nav-v2 button:hover {
            background: var(--light-surface);
            color: var(--light-text);
        }

        .settings-section-nav-v2 button.active {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
            border-color: #f59e0b;
            color: #f59e0b;
        }

        /* Config Progress Bar V2 */
        .config-progress-v2 {
            background: var(--dark-surface);
            border: 1px solid var(--dark-border);
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 24px;
        }

        .light .config-progress-v2 {
            background: var(--light-surface);
            border-color: var(--light-border);
        }

        .config-progress-bar-v2 {
            height: 12px;
            background: var(--dark-border);
            border-radius: 6px;
            overflow: hidden;
            margin: 16px 0;
        }

        .light .config-progress-bar-v2 {
            background: var(--light-border);
        }

        .config-progress-fill-v2 {
            height: 100%;
            background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
            border-radius: 6px;
            transition: width 0.5s ease;
        }

        /* AI Agent Status Bar V2 */
        .ai-agent-status-v2 {
            background: var(--dark-surface);
            border: 1px solid var(--dark-border);
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 24px;
        }

        .light .ai-agent-status-v2 {
            background: var(--light-surface);
            border-color: var(--light-border);
        }

        .ai-agent-grid-v2 {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 8px;
        }

        @media (max-width: 768px) {
            .ai-agent-grid-v2 {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .ai-agent-item-v2 {
            padding: 12px;
            border-radius: 8px;
            text-align: center;
            transition: all 0.2s ease;
        }

        .ai-agent-item-v2.pending {
            background: var(--dark-border);
        }

        .light .ai-agent-item-v2.pending {
            background: var(--light-border);
        }

        .ai-agent-item-v2.working {
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.3);
        }

        .ai-agent-item-v2.completed {
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.3);
        }

        .ai-agent-item-v2.error {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
        }

        /* Empty State V2 */
        .empty-state-v2 {
            text-align: center;
            padding: 48px 24px;
            border: 2px dashed var(--dark-border);
            border-radius: 16px;
            background: var(--dark-surface);
        }

        .light .empty-state-v2 {
            border-color: var(--light-border);
            background: var(--light-surface);
        }

        .empty-state-v2 .icon {
            font-size: 3rem;
            margin-bottom: 16px;
            filter: grayscale(0.5);
            opacity: 0.8;
        }

        /* Stats Card V2 */
        .stats-card-v2 {
            background: var(--dark-surface);
            border: 1px solid var(--dark-border);
            border-radius: 12px;
            padding: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .light .stats-card-v2 {
            background: var(--light-surface);
            border-color: var(--light-border);
        }

        .stats-card-v2:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.1);
        }

        .stats-card-v2 .icon-wrapper {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        /* Section Header V2 */
        .section-header-v2 {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--dark-border);
        }

        .light .section-header-v2 {
            border-color: var(--light-border);
        }

        .section-header-v2 h2 {
            margin: 0;
            font-size: 1.25rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .section-header-v2 p {
            margin: 4px 0 0 0;
            font-size: 0.875rem;
            color: var(--dark-text-muted);
        }

        .light .section-header-v2 p {
            color: var(--light-text-muted);
        }

        /* Primary Button V2 */
        .btn-primary-v2 {
            padding: 10px 20px;
            border: none;
            border-radius: 8px;
            background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
            color: white;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .btn-primary-v2:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
        }

        /* Secondary Button V2 */
        .btn-secondary-v2 {
            padding: 8px 16px;
            border: 1px solid var(--dark-border);
            border-radius: 8px;
            background: transparent;
            color: var(--dark-text);
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .light .btn-secondary-v2 {
            border-color: var(--light-border);
            color: var(--light-text);
        }

        .btn-secondary-v2:hover {
            background: var(--dark-surface);
        }

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

        /* Priority Badges V2 */
        .badge-tier-1 {
            background: rgba(239, 68, 68, 0.1);
            color: #ef4444;
            border: 1px solid rgba(239, 68, 68, 0.3);
        }

        .badge-tier-2 {
            background: rgba(245, 158, 11, 0.1);
            color: #f59e0b;
            border: 1px solid rgba(245, 158, 11, 0.3);
        }

        .badge-tier-3 {
            background: rgba(59, 130, 246, 0.1);
            color: #3b82f6;
            border: 1px solid rgba(59, 130, 246, 0.3);
        }

        /* Spinner Animation */
        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .spinner-v2 {
            display: inline-block;
            animation: spin 1s linear infinite;
        }

        /* Cards Grid Layout V2 */
        .cards-grid-v2 {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 16px;
        }

        @media (max-width: 768px) {
            .cards-grid-v2 {
                grid-template-columns: 1fr;
            }
        }

        /* Stats Grid V2 */
        .stats-grid-v2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
            margin-bottom: 24px;
        }

        /* Tooltip V2 */
        .tooltip-v2 {
            position: relative;
        }

        .tooltip-v2::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            padding: 6px 12px;
            background: var(--dark-surface);
            border: 1px solid var(--dark-border);
            border-radius: 6px;
            font-size: 0.75rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.2s ease, visibility 0.2s ease;
            z-index: 1000;
        }

        .light .tooltip-v2::after {
            background: var(--light-surface);
            border-color: var(--light-border);
        }

        .tooltip-v2:hover::after {
            opacity: 1;
            visibility: visible;
        }
