/* ===========================
   MIRROR AI LANDING PAGE
   Complete Styles v4.0.0
   One file for all landing page styles
   =========================== */

        /* Enhanced CSS Variables */
        :root {
            --bg-primary: #0a0e27;

            --bg-secondary: #1a1f3a;
            --gradient-primary: linear-gradient(135deg, #764ba2 0%, #00f2fe 100%);
            --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-tertiary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --accent-cyan: #00f2fe;
            --accent-purple: #764ba2;
            --accent-neon: #00ffff;
            --text-primary: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.8);
            --text-muted: rgba(255, 255, 255, 0.6);
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
            --blur-intense: blur(20px);
            --blur-subtle: blur(10px);
            --glow-neon: 0 0 30px rgba(0, 242, 254, 0.5);
            --glow-purple: 0 0 30px rgba(118, 75, 162, 0.5);
            --shadow-deep: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
        }

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

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

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
            max-width: 100%;
            width: 100%;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: hidden;
            max-width: 100vw;
            width: 100%;
            line-height: 1.6;
            position: relative;
            margin: 0;
            padding: 0;
        }

        /* Enhanced Quantum Background */
        .quantum-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -1;
            pointer-events: none;
        }

        .quantum-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .quantum-layer-1 {
            background: radial-gradient(circle at 20% 30%, rgba(118, 75, 162, 0.3) 0%, transparent 50%),
                        radial-gradient(circle at 80% 70%, rgba(0, 242, 254, 0.2) 0%, transparent 50%);
            animation: quantumFloat1 15s ease-in-out infinite;
        }

        .quantum-layer-2 {
            background: radial-gradient(circle at 60% 20%, rgba(240, 147, 251, 0.2) 0%, transparent 40%),
                        radial-gradient(circle at 40% 80%, rgba(102, 126, 234, 0.15) 0%, transparent 40%);
            animation: quantumFloat2 20s ease-in-out infinite reverse;
        }

        @keyframes quantumFloat1 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -30px) rotate(120deg); }
            66% { transform: translate(-20px, 20px) rotate(240deg); }
        }

        @keyframes quantumFloat2 {
            0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
            50% { transform: translate(-40px, -40px) rotate(180deg) scale(1.1); }
        }

        /* Particle Canvas */
        #particle-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -1;
            opacity: 0.6;
        }

        /* Enhanced Navigation */
        .quantum-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: rgba(10, 14, 39, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .quantum-nav.scrolled {
            background: rgba(10, 14, 39, 0.98);
            backdrop-filter: blur(25px);
            border-bottom: 1px solid rgba(0, 242, 254, 0.2);
            padding: 14px 0;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
        }

        .nav-container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 clamp(20px, 4vw, 60px);
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            box-sizing: border-box;
            gap: 40px;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 700;
            font-size: 1.6rem;
            position: relative;
            z-index: 1;
        }

        .nav-brand-logo {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .nav-brand-logo img {
            width: 46px;
            height: 46px;
            object-fit: contain;
            filter: brightness(1.1);
            image-rendering: -webkit-optimize-contrast;
            image-rendering: auto;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            transform: translateZ(0);
            -webkit-transform: translateZ(0);
        }

        @keyframes logoPulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.4); }
            50% { transform: scale(1.05); box-shadow: 0 0 20px 5px rgba(0, 242, 254, 0.2); }
        }

        .nav-brand span {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShimmer 3s ease-in-out infinite;
        }

        @keyframes gradientShimmer {
            0%, 100% { filter: brightness(1); }
            50% { filter: brightness(1.2); }
        }

        .nav-brand-content {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .nav-brand-beta {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--accent-cyan);
            background: rgba(0, 242, 254, 0.1);
            border: 1px solid rgba(0, 242, 254, 0.3);
            border-radius: 12px;
            padding: 2px 8px;
            margin-top: 2px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            animation: betaPulse 2s ease-in-out infinite;
        }

        @keyframes betaPulse {
            0%, 100% { 
                box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.4);
                background: rgba(0, 242, 254, 0.1);
            }
            50% { 
                box-shadow: 0 0 8px 2px rgba(0, 242, 254, 0.2);
                background: rgba(0, 242, 254, 0.15);
            }
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: clamp(20px, 2.5vw, 35px);
            flex-wrap: nowrap;
            flex: 0 0 auto;
        }

        /* Hide mobile menu toggle by default (desktop) */
        .mobile-menu-toggle {
            display: none;
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            padding: 10px 4px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            white-space: nowrap;
            letter-spacing: 0.01em;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 6px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #00f2fe, #764ba2);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
        }

        .nav-link:hover {
            color: #ffffff;
            transform: translateY(-2px);
        }

        .nav-link:hover::before {
            width: 100%;
        }

        .nav-cta {
            padding: 16px 48px;
            border-radius: 28px;
            color: white !important;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            background: linear-gradient(90deg, #7b68ee 0%, #00d4ff 100%);
            border: none;
            white-space: nowrap;
            letter-spacing: 0.02em;
            box-shadow: 0 3px 10px rgba(0, 201, 219, 0.3);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            min-width: 160px;
        }

        .nav-cta:hover {
            background: linear-gradient(90deg, #8b7aff 0%, #00e0ff 100%);
            transform: translateY(-1px);
            box-shadow: 0 5px 15px rgba(0, 219, 237, 0.4);
        }

        .nav-cta:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(0, 201, 219, 0.3);
        }

        /* Get Started button - same gradient style */
        .btn-signup {
            background: linear-gradient(90deg, #7b68ee 0%, #00d4ff 100%);
            color: white !important;
            border: none;
        }

        .btn-signup:hover {
            background: linear-gradient(90deg, #8b7aff 0%, #00e0ff 100%);
        }

        /* Enhanced Hero Section */
        .hero-quantum {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 100px;
            padding-bottom: 60px;
            width: 100%;
            max-width: 100vw;
        }

        .hero-container {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            padding: 0 clamp(20px, 4vw, 60px);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(40px, 6vw, 100px);
            align-items: center;
            position: relative;
            z-index: 2;
            box-sizing: border-box;
        }

        .hero-content {
            animation: slideInLeft 1s ease-out;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, 
                rgba(0, 242, 254, 0.12) 0%, 
                rgba(118, 75, 162, 0.12) 100%);
            backdrop-filter: blur(15px);
            border: 2px solid rgba(0, 242, 254, 0.35);
            padding: 14px 28px;
            border-radius: 50px;
            font-size: 0.92rem;
            font-weight: 600;
            color: #00f2fe;
            width: fit-content;
            margin-bottom: 30px;
            animation: badgePulse 3s ease-in-out infinite;
            box-shadow: 
                0 6px 25px rgba(0, 242, 254, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            letter-spacing: 0.03em;
            text-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
        }

        @keyframes badgePulse {
            0%, 100% {
                box-shadow: 
                    0 6px 25px rgba(0, 242, 254, 0.2),
                    0 0 0 0 rgba(0, 242, 254, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1);
                transform: scale(1);
            }
            50% {
                box-shadow: 
                    0 8px 35px rgba(0, 242, 254, 0.3),
                    0 0 20px 4px rgba(0, 242, 254, 0.15),
                    inset 0 1px 0 rgba(255, 255, 255, 0.15);
                transform: scale(1.02);
            }
        }

        .hero-badge i {
            font-size: 1.1rem;
            animation: iconFloat 3s ease-in-out infinite;
            filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.5));
        }

        @keyframes iconFloat {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-3px);
            }
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 900;
            line-height: 1.15;
            margin-bottom: 30px;
            color: #ffffff;
            background: linear-gradient(135deg, 
                #ffffff 0%, 
                #00f2fe 20%, 
                #00f2fe 40%,
                #764ba2 60%, 
                #00f2fe 80%,
                #ffffff 100%);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientFlow 6s ease infinite;
            filter: drop-shadow(0 0 40px rgba(0, 242, 254, 0.3));
            letter-spacing: -0.02em;
        }

        @keyframes gradientFlow {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 400;
            margin-bottom: 35px;
            line-height: 1.7;
            max-width: 600px;
        }

        /* What is Mirror AI Section */
        .what-is-mirror-section {
            padding: 80px 0;
            background: linear-gradient(180deg, rgba(10, 14, 39, 0) 0%, rgba(10, 14, 39, 0.5) 100%);
        }

        /* Hero Description Section */
        .hero-description {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .description-header {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 2rem;
            letter-spacing: -0.02em;
        }

        .description-intro {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
            font-weight: 400;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Perfect For Section */
        .perfect-for-section-wrapper {
            padding: 100px 0;
            background: rgba(10, 14, 39, 0.3);
            position: relative;
        }

        .perfect-for-section-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(0, 242, 254, 0.3) 50%, transparent 100%);
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #ffffff 0%, #00f2fe 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 4rem;
            text-align: center;
            letter-spacing: -0.02em;
        }

        .use-case-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .use-case-card {
            background: linear-gradient(135deg, rgba(21, 26, 53, 0.9) 0%, rgba(30, 37, 64, 0.9) 100%);
            border: 1px solid rgba(0, 242, 254, 0.25);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            position: relative;
            overflow: hidden;
        }

        .use-case-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 242, 254, 0.05) 0%, rgba(79, 172, 254, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .use-case-card:hover::before {
            opacity: 1;
        }

        .use-case-card:hover {
            border-color: rgba(0, 242, 254, 0.5);
            transform: translateY(-8px);
            box-shadow: 0 16px 40px rgba(0, 242, 254, 0.25);
        }

        .use-case-header {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            margin-bottom: 2rem;
            padding-bottom: 1.25rem;
            border-bottom: 1px solid rgba(0, 242, 254, 0.2);
        }

        .use-case-header i {
            font-size: 2rem;
            color: #00f2fe;
            background: linear-gradient(135deg, rgba(0, 242, 254, 0.15) 0%, rgba(79, 172, 254, 0.15) 100%);
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 14px;
            flex-shrink: 0;
        }

        .use-case-header h5 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #ffffff;
            margin: 0;
            letter-spacing: -0.01em;
        }

        .use-case-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .use-case-list li {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.25rem;
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
        }

        .use-case-list li:last-child {
            margin-bottom: 0;
        }

        .use-case-list li i {
            color: #00f2fe;
            font-size: 0.95rem;
            margin-top: 0.3rem;
            flex-shrink: 0;
        }

        .typing-container {
            height: 40px;
            margin-bottom: 40px;
            display: flex;
            align-items: center;
        }

        .typing-text {
            font-size: 1.1rem;
            color: var(--accent-cyan);
            font-family: 'JetBrains Mono', monospace;
            font-weight: 500;
        }

        .typing-cursor {
            display: inline-block;
            background: var(--accent-cyan);
            width: 3px;
            height: 24px;
            margin-left: 4px;
            animation: blink 1s infinite;
        }

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        .hero-ctas {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .cta-primary {
            background: var(--gradient-primary);
            color: white;
            padding: 18px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(118, 75, 162, 0.4);
        }

        .cta-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--glow-neon), var(--shadow-deep);
        }

        .cta-primary:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-secondary {
            background: transparent;
            border: 2px solid var(--glass-border);
            color: var(--text-primary);
            padding: 16px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.05rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            backdrop-filter: var(--blur-subtle);
        }

        .cta-secondary:hover {
            border-color: var(--accent-cyan);
            background: var(--glass-bg);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 242, 254, 0.3);
        }

        /* Enhanced 3D Visualization */
        .hero-visual {
            position: relative;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: slideInRight 1s ease-out;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Holographic Logo Card Design */
        .logo-hologram-container {
            width: 500px;
            height: 500px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hologram-card {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, 
                rgba(10, 14, 39, 0.8) 0%, 
                rgba(118, 75, 162, 0.2) 50%,
                rgba(0, 242, 254, 0.2) 100%);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 242, 254, 0.3);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transform: rotateY(-15deg) rotateX(5deg);
            animation: cardFloat 6s ease-in-out infinite;
            box-shadow: 
                0 25px 50px -12px rgba(0, 242, 254, 0.25),
                inset 0 0 30px rgba(0, 242, 254, 0.1);
        }

        @keyframes cardFloat {
            0%, 100% { 
                transform: rotateY(-15deg) rotateX(5deg) translateY(0px);
            }
            50% { 
                transform: rotateY(-15deg) rotateX(5deg) translateY(-30px);
            }
        }

        .card-glow {
            position: absolute;
            inset: -20px;
            background: radial-gradient(circle, 
                rgba(0, 242, 254, 0.4) 0%, 
                transparent 70%);
            filter: blur(40px);
            animation: glowPulse 3s ease-in-out infinite;
        }

        @keyframes glowPulse {
            0%, 100% { opacity: 0.5; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.1); }
        }

        .hologram-logo {
            width: 240px;
            height: 150px;
            position: relative;
            z-index: 2;
            filter: brightness(1.4) contrast(1.2) saturate(1.3);
            animation: logoPulse 4s ease-in-out infinite;
            object-fit: contain;
            border-radius: 15px;
        }

        @keyframes gradientShift {
            0%, 100% { 
                background-position: 0% 50%; 
                border-color: rgba(0, 242, 254, 0.4);
            }
            25% { 
                background-position: 100% 0%; 
                border-color: rgba(118, 75, 162, 0.4);
            }
            50% { 
                background-position: 100% 100%; 
                border-color: rgba(240, 147, 251, 0.4);
            }
            75% { 
                background-position: 0% 100%; 
                border-color: rgba(102, 126, 234, 0.4);
            }
        }

        @keyframes logoPulse {
            0%, 100% { transform: scale(1); filter: brightness(1.5); }
            50% { transform: scale(1.05); filter: brightness(2); }
        }

        .data-streams {
            position: absolute;
            inset: 0;
            overflow: hidden;
            border-radius: 30px;
        }

        .stream {
            position: absolute;
            width: 2px;
            height: 100px;
            background: linear-gradient(to bottom, 
                transparent, 
                rgba(0, 242, 254, 0.8), 
                transparent);
            animation: dataFlow 3s linear infinite;
        }

        .stream-1 { left: 20%; animation-delay: 0s; }
        .stream-2 { left: 50%; animation-delay: 1s; }
        .stream-3 { left: 80%; animation-delay: 2s; }

        @keyframes dataFlow {
            0% { transform: translateY(-100px); opacity: 0; }
            20% { opacity: 1; }
            80% { opacity: 1; }
            100% { transform: translateY(400px); opacity: 0; }
        }

        .orbit-ring {
            position: absolute;
            width: 450px;
            height: 450px;
            border: 1px solid rgba(0, 242, 254, 0.2);
            border-radius: 50%;
            animation: orbitRotate 20s linear infinite;
        }

        .orbit-ring::before {
            content: '';
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--accent-cyan);
            border-radius: 50%;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 0 0 15px var(--accent-cyan);
        }

        .orbit-ring-2 {
            width: 350px;
            height: 350px;
            animation-duration: 15s;
            animation-direction: reverse;
            border-color: rgba(118, 75, 162, 0.2);
        }

        .orbit-ring-2::before {
            background: var(--accent-purple);
            box-shadow: 0 0 15px var(--accent-purple);
        }

        @keyframes orbitRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Hover effects for hologram card */
        .logo-hologram-container:hover .hologram-card {
            transform: rotateY(-15deg) rotateX(5deg) translateY(-20px) scale(1.05);
            border-color: rgba(0, 242, 254, 0.6);
            box-shadow: 
                0 35px 70px -12px rgba(0, 242, 254, 0.4),
                inset 0 0 50px rgba(0, 242, 254, 0.2);
        }

        .logo-hologram-container:hover .hologram-logo {
            filter: brightness(1.6) contrast(1.3) saturate(1.5);
            transform: scale(1.05);
        }

        .logo-hologram-container:hover .card-glow {
            opacity: 1;
            transform: scale(1.2);
        }

        .logo-hologram-container:hover .orbit-ring {
            animation-duration: 10s;
        }

        .logo-hologram-container:hover .orbit-ring-2 {
            animation-duration: 8s;
        }

        /* Enhanced Stats Section */
        .stats-quantum {
            padding: 100px 40px;
            position: relative;
            z-index: 2;
        }

        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .stat-card {
            background: var(--glass-bg);
            backdrop-filter: var(--blur-intense);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 242, 254, 0.1), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 242, 254, 0.2);
            border-color: var(--accent-cyan);
        }

        .stat-icon {
            font-size: 2rem;
            margin-bottom: 10px;
            opacity: 0.6;
            transition: all 0.3s ease;
        }

        .stat-card:hover .stat-icon {
            opacity: 1;
            transform: scale(1.1);
        }

        .stat-card[data-stat-type="fear-greed"] .stat-icon {
            color: #f39c12;
        }

        .stat-card[data-stat-type="btc-mcap"] .stat-icon {
            color: #f7931a;
        }

        .stat-card[data-stat-type="total-mcap"] .stat-icon {
            color: #00f2fe;
        }

        .stat-card[data-stat-type="btc-dominance"] .stat-icon {
            color: #764ba2;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin: 0;
            line-height: 1;
        }

        .stat-label {
            color: var(--text-secondary);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 0.9rem;
            margin: 5px 0;
        }

        .stat-sublabel {
            color: var(--text-muted);
            font-size: 0.75rem;
            opacity: 0.7;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .stat-change {
            font-size: 0.9rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 12px;
            display: inline-block;
            margin-top: 5px;
        }

        .stat-change.positive {
            color: #2ecc71;
            background: rgba(46, 204, 113, 0.1);
        }

        .stat-change.negative {
            color: #e74c3c;
            background: rgba(231, 76, 60, 0.1);
        }

        .stat-change.neutral {
            color: var(--text-muted);
            background: rgba(255, 255, 255, 0.05);
        }

        .stats-update-time {
            text-align: center;
            margin-top: 30px;
            color: var(--text-muted);
            font-size: 0.85rem;
            opacity: 0.7;
        }

        .stats-update-time i {
            margin-right: 8px;
        }

        /* Early Access CTA Section */
        .early-access-cta {
            padding: 80px 40px;
            position: relative;
            background: linear-gradient(180deg, transparent 0%, rgba(26, 31, 58, 0.3) 50%, transparent 100%);
            overflow: hidden;
            z-index: 1;
        }

        .cta-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 2;
        }

        /* Enhanced CTA Card Positioning */
        .cta-card {
            position: relative;
            z-index: 10;
            background: linear-gradient(135deg, 
                rgba(26, 31, 58, 0.95) 0%, 
                rgba(16, 21, 46, 0.95) 100%);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(0, 242, 254, 0.2);
            border-radius: 24px;
            padding: 48px 40px;
            text-align: center;
            overflow: hidden;
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(0, 242, 254, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
            width: 100%;
        }

        .cta-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 200%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(0, 242, 254, 0.05) 25%, 
                rgba(118, 75, 162, 0.05) 50%, 
                rgba(0, 242, 254, 0.05) 75%, 
                transparent 100%);
            animation: shimmerCta 4s ease-in-out infinite;
        }

        @keyframes shimmerCta {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .cta-card:hover {
            transform: translateY(-8px);
            border-color: rgba(0, 242, 254, 0.4);
            box-shadow: 
                0 35px 70px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(0, 242, 254, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
        }

        .cta-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #00f2fe 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 24px;
            color: white;
            box-shadow: 0 8px 24px rgba(0, 242, 254, 0.3);
            animation: iconPulse 3s ease-in-out infinite;
        }

        @keyframes iconPulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 8px 24px rgba(0, 242, 254, 0.3);
            }
            50% { 
                transform: scale(1.05);
                box-shadow: 0 12px 32px rgba(0, 242, 254, 0.4);
            }
        }

        .cta-heading {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ffffff 0%, #00f2fe 25%, #764ba2 75%, #ffffff 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
            animation: gradientShift 4s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .cta-description {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 32px;
            max-width: 480px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            background: linear-gradient(135deg, #00f2fe 0%, #764ba2 100%);
            color: white;
            padding: 18px 42px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 8px 24px rgba(0, 242, 254, 0.3);
            border: 2px solid transparent;
            cursor: pointer;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 242, 254, 0.4);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-button i:first-child {
            animation: starSpin 3s linear infinite;
        }

        .cta-button i:last-child {
            transition: transform 0.3s ease;
        }

        .cta-button:hover i:last-child {
            transform: translateX(4px);
        }

        @keyframes starSpin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Floating Background Elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
            z-index: 1;
        }

        .floating-particle {
            position: absolute;
            width: 8px;
            height: 8px;
            background: radial-gradient(circle, rgba(0, 242, 254, 0.8) 0%, rgba(118, 75, 162, 0.4) 100%);
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(0, 242, 254, 0.6);
        }

        .particle-1 {
            top: 20%;
            left: 10%;
            animation: floatUpDown 6s ease-in-out infinite;
        }

        .particle-2 {
            top: 60%;
            left: 15%;
            animation: floatUpDown 8s ease-in-out infinite reverse;
        }

        .particle-3 {
            top: 30%;
            right: 20%;
            animation: floatLeftRight 7s ease-in-out infinite;
        }

        .particle-4 {
            top: 70%;
            right: 10%;
            animation: floatUpDown 9s ease-in-out infinite;
        }

        .particle-5 {
            top: 40%;
            left: 85%;
            animation: floatLeftRight 5s ease-in-out infinite reverse;
        }

        .particle-6 {
            top: 80%;
            left: 80%;
            animation: floatUpDown 6s ease-in-out infinite;
        }

        @keyframes floatUpDown {
            0%, 100% { transform: translateY(0px); opacity: 0.6; }
            50% { transform: translateY(-30px); opacity: 1; }
        }

        @keyframes floatLeftRight {
            0%, 100% { transform: translateX(0px); opacity: 0.6; }
            50% { transform: translateX(20px); opacity: 1; }
        }

        /* Feature Badges */
        .feature-badges {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 1;
        }

        .feature-badge {
            position: absolute;
            background: linear-gradient(135deg, rgba(0, 242, 254, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 242, 254, 0.3);
            border-radius: 20px;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
            font-weight: 600;
            box-shadow: 0 4px 20px rgba(0, 242, 254, 0.2);
            animation: badgeFloat 4s ease-in-out infinite;
        }

        .feature-badge i {
            color: var(--accent-cyan);
            font-size: 1rem;
        }

        .badge-1 {
            top: 15%;
            left: 5%;
            animation-delay: 0s;
        }

        .badge-2 {
            top: 25%;
            right: 8%;
            animation-delay: 1s;
        }

        .badge-3 {
            bottom: 25%;
            left: 8%;
            animation-delay: 2s;
        }

        .badge-4 {
            bottom: 15%;
            right: 5%;
            animation-delay: 3s;
        }

        @keyframes badgeFloat {
            0%, 100% { 
                transform: translateY(0px) scale(1);
                box-shadow: 0 4px 20px rgba(0, 242, 254, 0.2);
            }
            50% { 
                transform: translateY(-15px) scale(1.05);
                box-shadow: 0 8px 30px rgba(0, 242, 254, 0.4);
            }
        }

        /* Animated Grid Background */
        .grid-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            opacity: 0.3;
        }

        .grid-line {
            position: absolute;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(0, 242, 254, 0.3) 50%, 
                transparent 100%);
            height: 1px;
        }

        .grid-line-1 {
            top: 20%;
            left: 0;
            right: 0;
            animation: lineGlow 3s ease-in-out infinite;
        }

        .grid-line-2 {
            top: 40%;
            left: 0;
            right: 0;
            animation: lineGlow 3s ease-in-out infinite;
            animation-delay: 0.5s;
        }

        .grid-line-3 {
            top: 60%;
            left: 0;
            right: 0;
            animation: lineGlow 3s ease-in-out infinite;
            animation-delay: 1s;
        }

        .grid-line-4 {
            top: 80%;
            left: 0;
            right: 0;
            animation: lineGlow 3s ease-in-out infinite;
            animation-delay: 1.5s;
        }

        @keyframes lineGlow {
            0%, 100% { 
                opacity: 0.1;
                transform: scaleX(0.8);
            }
            50% { 
                opacity: 0.6;
                transform: scaleX(1);
            }
        }

        /* Enhanced CTA Card Positioning */
        .cta-card {
            position: relative;
            z-index: 10;
        }

        /* Mobile Responsive for New Elements */
        

        /* Mobile Responsive for CTA */
        

        /* Enhanced Bento Grid */
        .features-bento {
            padding: 100px 40px;
            position: relative;
        }

        .section-header {
            text-align: center !important;
            margin-bottom: 80px;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: 1.3rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            text-align: center !important;
        }

        .bento-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 24px;
            min-height: auto;
        }

        .bento-card {
            background: var(--glass-bg);
            backdrop-filter: var(--blur-intense);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 36px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }

        .bento-card.large {
            grid-column: span 2;
            grid-row: span 1;
        }

        .bento-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .bento-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 242, 254, 0.3);
            border-color: var(--accent-cyan);
        }

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

        .card-icon {
            width: 64px;
            height: 64px;
            background: var(--gradient-primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: white;
            margin-bottom: 24px;
            box-shadow: 0 8px 16px rgba(118, 75, 162, 0.3);
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .card-description {
            color: var(--text-secondary);
            line-height: 1.6;
            flex-grow: 1;
        }

        /* Blog CTA Section */
        .blog-cta-section {
            padding: 120px 40px;
            position: relative;
            background: linear-gradient(180deg, rgba(26, 31, 58, 0.4) 0%, rgba(16, 21, 46, 0.6) 50%, rgba(26, 31, 58, 0.4) 100%);
            overflow: hidden;
            z-index: 1;
        }

        .blog-cta-container {
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .blog-cta-bg-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
            z-index: 1;
        }

        .blog-particle {
            position: absolute;
            width: 10px;
            height: 10px;
            background: radial-gradient(circle, rgba(118, 75, 162, 1) 0%, rgba(0, 242, 254, 0.6) 100%);
            border-radius: 50%;
            box-shadow: 0 0 25px rgba(118, 75, 162, 0.8), 0 0 40px rgba(0, 242, 254, 0.4);
        }

        .blog-particle-1 {
            top: 15%;
            left: 8%;
            width: 8px;
            height: 8px;
            animation: blogFloatUpDown 7s ease-in-out infinite;
        }

        .blog-particle-2 {
            top: 70%;
            left: 12%;
            width: 12px;
            height: 12px;
            animation: blogFloatUpDown 9s ease-in-out infinite reverse;
        }

        .blog-particle-3 {
            top: 25%;
            right: 15%;
            width: 10px;
            height: 10px;
            animation: blogFloatLeftRight 8s ease-in-out infinite;
        }

        .blog-particle-4 {
            top: 65%;
            right: 8%;
            width: 14px;
            height: 14px;
            animation: blogFloatUpDown 6s ease-in-out infinite;
        }

        .blog-particle-5 {
            top: 40%;
            left: 5%;
            width: 6px;
            height: 6px;
            animation: blogFloatLeftRight 10s ease-in-out infinite reverse;
        }

        .blog-particle-6 {
            top: 50%;
            right: 10%;
            width: 8px;
            height: 8px;
            animation: blogFloatUpDown 8s ease-in-out infinite;
        }

        @keyframes blogFloatUpDown {
            0%, 100% { transform: translateY(0px); opacity: 0.5; }
            50% { transform: translateY(-25px); opacity: 1; }
        }

        @keyframes blogFloatLeftRight {
            0%, 100% { transform: translateX(0px); opacity: 0.5; }
            50% { transform: translateX(15px); opacity: 1; }
        }

        .blog-accent-ring {
            position: absolute;
            border-radius: 50%;
            border: 2px solid;
            opacity: 0.15;
            animation: ringPulse 4s ease-in-out infinite;
            pointer-events: none;
        }

        .blog-ring-1 {
            width: 400px;
            height: 400px;
            border-color: rgba(118, 75, 162, 0.5);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: 0s;
        }

        .blog-ring-2 {
            width: 600px;
            height: 600px;
            border-color: rgba(0, 242, 254, 0.3);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: 2s;
        }

        @keyframes ringPulse {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.15;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.1);
                opacity: 0.3;
            }
        }

        .blog-cta-card {
            position: relative;
            z-index: 10;
            background: linear-gradient(135deg, 
                rgba(26, 31, 58, 0.95) 0%, 
                rgba(16, 21, 46, 0.95) 50%,
                rgba(26, 31, 58, 0.95) 100%);
            backdrop-filter: blur(30px);
            border: 3px solid rgba(118, 75, 162, 0.4);
            border-radius: 32px;
            padding: 80px 60px;
            text-align: center;
            overflow: hidden;
            box-shadow: 
                0 30px 60px rgba(0, 0, 0, 0.6),
                0 0 50px rgba(118, 75, 162, 0.2),
                0 0 100px rgba(0, 242, 254, 0.1),
                inset 0 2px 0 rgba(255, 255, 255, 0.15),
                inset 0 -2px 0 rgba(0, 0, 0, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .blog-cta-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 200%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(118, 75, 162, 0.1) 25%, 
                rgba(0, 242, 254, 0.05) 50%, 
                rgba(118, 75, 162, 0.1) 75%, 
                transparent 100%);
            animation: blogShimmer 4s ease-in-out infinite;
        }

        @keyframes blogShimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .blog-cta-card:hover {
            transform: translateY(-12px) scale(1.02);
            border-color: rgba(118, 75, 162, 0.7);
            box-shadow: 
                0 40px 80px rgba(0, 0, 0, 0.7),
                0 0 60px rgba(118, 75, 162, 0.4),
                0 0 120px rgba(0, 242, 254, 0.2),
                inset 0 2px 0 rgba(255, 255, 255, 0.2);
        }

        .blog-cta-icon {
            width: 96px;
            height: 96px;
            background: linear-gradient(135deg, #764ba2 0%, #00f2fe 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 32px;
            font-size: 40px;
            color: white;
            position: relative;
            box-shadow: 
                0 12px 40px rgba(118, 75, 162, 0.6),
                0 0 60px rgba(0, 242, 254, 0.4),
                inset 0 2px 4px rgba(255, 255, 255, 0.3);
            animation: blogIconFloat 3s ease-in-out infinite;
        }

        .blog-cta-icon .icon-glow {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(118, 75, 162, 0.4) 0%, transparent 70%);
            animation: iconGlowPulse 2s ease-in-out infinite;
        }

        @keyframes blogIconFloat {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg);
                box-shadow: 
                    0 12px 40px rgba(118, 75, 162, 0.6),
                    0 0 60px rgba(0, 242, 254, 0.4);
            }
            50% { 
                transform: translateY(-12px) rotate(5deg);
                box-shadow: 
                    0 20px 50px rgba(118, 75, 162, 0.8),
                    0 0 80px rgba(0, 242, 254, 0.6);
            }
        }

        @keyframes iconGlowPulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.5;
            }
            50% {
                transform: scale(1.5);
                opacity: 0.8;
            }
        }

        .blog-cta-heading {
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ffffff 0%, #764ba2 30%, #00f2fe 70%, #ffffff 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 24px;
            letter-spacing: -0.5px;
            text-shadow: 0 4px 20px rgba(118, 75, 162, 0.3);
            animation: blogGradientFlow 4s ease-in-out infinite;
        }

        @keyframes blogGradientFlow {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .blog-cta-description {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.25rem;
            line-height: 1.7;
            margin-bottom: 48px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 400;
        }

        .blog-cta-button {
            background: linear-gradient(135deg, #764ba2 0%, #00f2fe 100%);
            color: white;
            padding: 0;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            display: inline-block;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 
                0 10px 30px rgba(118, 75, 162, 0.4),
                0 0 40px rgba(0, 242, 254, 0.2);
            border: 3px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
        }

        .blog-cta-button .button-content {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 20px 50px;
        }

        .blog-cta-button .button-glow {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .blog-cta-button:hover {
            transform: translateY(-6px) scale(1.05);
            box-shadow: 
                0 20px 50px rgba(118, 75, 162, 0.6),
                0 0 60px rgba(0, 242, 254, 0.4);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .blog-cta-button:hover .button-glow {
            opacity: 1;
        }

        .blog-cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .blog-cta-button .button-content i:first-child {
            font-size: 1.3rem;
            animation: blogBookPulse 2s ease-in-out infinite;
        }

        .blog-cta-button .button-content i:last-child {
            font-size: 1.1rem;
            transition: transform 0.3s ease;
        }

        .blog-cta-button:hover .button-content i:last-child {
            transform: translateX(6px);
        }

        .blog-cta-button .button-text {
            font-size: 1.15rem;
            letter-spacing: 0.3px;
        }

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

        /* Enhanced Demo Section */
        .demo-section {
            padding: 100px 40px;
            background: linear-gradient(180deg, transparent 0%, rgba(118, 75, 162, 0.05) 50%, transparent 100%);
        }

        .demo-window {
            max-width: 1200px;
            margin: 0 auto;
            background: var(--bg-secondary);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-deep);
            border: 1px solid var(--glass-border);
        }

        .demo-titlebar {
            background: rgba(255, 255, 255, 0.05);
            padding: 16px 24px;
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 1px solid var(--glass-border);
        }

        .demo-title {
            flex: 1;
            text-align: center;
            color: var(--text-primary);
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.02em;
        }

        .demo-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .demo-dot.red { background: #ff5f56; }
        .demo-dot.yellow { background: #ffbd2e; }
        .demo-dot.green { background: #27ca3f; }

        .demo-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 500px;
        }

        .demo-input {
            padding: 40px;
            background: rgba(0, 0, 0, 0.3);
            border-right: 1px solid var(--glass-border);
        }

        .demo-output {
            padding: 40px;
            background: rgba(0, 0, 0, 0.2);
            position: relative;
        }

        .demo-textarea {
            width: 100%;
            height: 250px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            padding: 20px;
            color: var(--text-primary);
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.95rem;
            resize: none;
            outline: none;
            transition: all 0.3s ease;
        }

        .demo-textarea:focus {
            border-color: var(--accent-cyan);
            box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
        }

        .demo-analyze-btn {
            margin-top: 20px;
            background: var(--gradient-primary);
            border: none;
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .demo-analyze-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(118, 75, 162, 0.4);
        }

        .demo-results {
            background: var(--glass-bg);
            border-radius: 12px;
            padding: 8px 30px 30px 30px;
            min-height: 300px;
            border: 1px solid var(--glass-border);
        }

        .result-item {
            background: rgba(0, 242, 254, 0.05);
            border-left: 3px solid var(--accent-cyan);
            padding: 16px 20px;
            margin-bottom: 16px;
            border-radius: 8px;
            animation: slideIn 0.5s ease;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* About Section */
        .about-section {
            padding: 100px 40px;
            background: linear-gradient(135deg, rgba(118, 75, 162, 0.1) 0%, rgba(0, 242, 254, 0.05) 100%);
            position: relative;
        }

        /* Tech Stack / Powered By Section */
        .tech-stack-section {
            padding: 120px 0;
            background: linear-gradient(180deg, 
                rgba(10, 14, 39, 0) 0%, 
                rgba(15, 20, 45, 0.4) 50%,
                rgba(10, 14, 39, 0) 100%);
            position: relative;
            overflow: hidden;
        }

        .tech-stack-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(118, 75, 162, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0, 242, 254, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 50% 80%, rgba(240, 147, 251, 0.15) 0%, transparent 40%);
            pointer-events: none;
            animation: backgroundPulse 8s ease-in-out infinite;
        }

        .tech-stack-section::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 1000px;
            height: 1000px;
            background: radial-gradient(circle, 
                rgba(0, 242, 254, 0.05) 0%, 
                rgba(118, 75, 162, 0.05) 30%,
                transparent 70%);
            animation: rotateSlow 20s linear infinite;
            pointer-events: none;
        }

        @keyframes rotateSlow {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        @keyframes backgroundPulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .tech-stack-container {
            max-width: 100%;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .tech-stack-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 900;
            background: linear-gradient(135deg, #ffffff 0%, #00f2fe 30%, #764ba2 70%, #ffffff 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
            animation: gradientShift 6s ease-in-out infinite;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
        }

        .tech-stack-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
            border-radius: 2px;
        }

        .tech-stack-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 80px;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        /* Infinite Scrolling Container */
        .tech-logos-scroll-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding: 40px 0;
        }

        .tech-logos-scroll-container::before,
        .tech-logos-scroll-container::after {
            content: '';
            position: absolute;
            top: 0;
            width: 200px;
            height: 100%;
            z-index: 10;
            pointer-events: none;
        }

        .tech-logos-scroll-container::before {
            left: 0;
            background: linear-gradient(to right, 
                rgba(10, 14, 39, 1) 0%, 
                rgba(10, 14, 39, 0.8) 20%,
                transparent 100%);
        }

        .tech-logos-scroll-container::after {
            right: 0;
            background: linear-gradient(to left, 
                rgba(10, 14, 39, 1) 0%, 
                rgba(10, 14, 39, 0.8) 20%,
                transparent 100%);
        }

        .tech-logos-track {
            display: flex;
            gap: 80px;
            animation: infiniteScroll 30s linear infinite;
            width: fit-content;
        }

        .tech-logos-track:hover {
            animation-play-state: paused;
        }

        @keyframes infiniteScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .tech-logo-item {
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .tech-logo-wrapper {
            width: 120px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;  
            background: rgba(255, 255, 255, 0.02);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
        }

        .tech-logo {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            filter: 
                brightness(0.95)
                saturate(1.1)
                drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
            opacity: 0.9;
        }

        /* Dark mode specific - invert for logos on white backgrounds */
        .tech-logo-wrapper::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(102, 126, 234, 0.03);
            border-radius: 16px;
            opacity: 0;
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .tech-name {
            font-size: 0.85rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.6);
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            position: relative;
        }

        .tech-name::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, 
                transparent, 
                var(--accent-cyan), 
                transparent);
            transition: transform 0.3s ease;
        }

        .tech-logo-item:hover .tech-logo-wrapper {
            transform: translateY(-8px) scale(1.05);
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(102, 126, 234, 0.4);
            box-shadow: 
                0 8px 24px rgba(0, 0, 0, 0.4),
                0 0 32px rgba(102, 126, 234, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .tech-logo-item:hover .tech-logo-wrapper::before {
            opacity: 1;
        }

        .tech-logo-item:hover .tech-logo {
            filter: 
                brightness(1.1)
                saturate(1.3)
                drop-shadow(0 8px 20px rgba(102, 126, 234, 0.4));
            transform: scale(1.08);
            opacity: 1;
        }

        .tech-logo-item:hover .tech-name {
            color: rgba(255, 255, 255, 0.9);
            transform: translateY(-2px);
        }

        .tech-logo-item:hover .tech-name::after {
            transform: translateX(-50%) scaleX(1);
        }

        /* Mobile Responsive for Tech Stack */
        

        

        

        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-content h2 {
            font-size: 3rem;
            margin-bottom: 30px;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: left;
        }

        .about-content p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
            text-align: left;
        }

        .about-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .glass-logo-container {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, 
                rgba(255, 255, 255, 0.15) 0%, 
                rgba(0, 242, 254, 0.1) 30%, 
                rgba(10, 14, 39, 0.8) 70%, 
                rgba(10, 14, 39, 1) 100%);
            backdrop-filter: var(--blur-intense);
            border: 2px solid var(--glass-border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            animation: float 6s ease-in-out infinite;
            box-shadow: 
                0 0 40px rgba(0, 242, 254, 0.3),
                inset 0 0 60px rgba(255, 255, 255, 0.1);
        }

        .mirror-logo {
            width: 120px;
            height: 120px;
            object-fit: contain;
            filter: brightness(1.3) contrast(1.1);
            animation: logoPulse 4s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .glass-logo-container::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: var(--gradient-primary);
            border-radius: 50%;
            opacity: 0.5;
            filter: blur(20px);
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.3; }
        }

        /* CTA Section */
        .cta-section {
            padding: 120px 40px;
            background: var(--gradient-primary);
            position: relative;
            text-align: center;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
        }

        .cta-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
        }

        .cta-button-white {
            background: white;
            color: var(--accent-purple);
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .cta-button-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        /* Footer styles loaded from external quantum-footer.css file */

        /* ============================================ */
        /* PRODUCTION MOBILE NAVIGATION & CHAT FIXES   */
        /* ============================================ */

        /* ===== MOBILE RESPONSIVE (max-width: 968px) ===== */
        @media (max-width: 968px) {
            /* Navigation Container */
            .quantum-nav {
                padding: 15px 0;
                z-index: 10000;
            }
            
            .nav-container {
                padding: 0 15px;
                gap: 0;
                position: relative;
            }
            
            /* Logo */
            .nav-brand {
                font-size: 1.3rem;
                gap: 8px;
                flex: 1;
                z-index: 10001;
            }
            
            .nav-brand-logo {
                width: 40px;
                height: 40px;
            }
            
            .nav-brand-logo img {
                width: 36px;
                height: 36px;
            }
            
            /* Hamburger Menu Button */
            .mobile-menu-toggle {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                width: 44px;
                height: 44px;
                padding: 0;
                background: rgba(102, 126, 234, 0.1);
                border: 2px solid rgba(102, 126, 234, 0.3);
                border-radius: 10px;
                cursor: pointer;
                position: relative;
                margin-left: auto;
                transition: all 0.3s ease;
                z-index: 10001;
            }
            
            .mobile-menu-toggle span {
                display: block;
                width: 22px;
                height: 2px;
                background: #ffffff;
                border-radius: 2px;
                transition: all 0.3s ease;
                margin: 3px 0;
            }
            
            .mobile-menu-toggle:hover {
                background: rgba(102, 126, 234, 0.2);
                border-color: rgba(102, 126, 234, 0.5);
            }
            
            /* Hamburger Animation */
            .mobile-menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            
            .mobile-menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }
            
            .mobile-menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(6px, -6px);
            }
            
            /* Mobile Navigation Menu - FIXED VERSION */
            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                width: 100%;
                background: rgba(10, 14, 39, 0.98);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                border-top: 1px solid rgba(102, 126, 234, 0.2);
                border-bottom: 2px solid rgba(102, 126, 234, 0.3);
                padding: 20px;
                flex-direction: column;
                gap: 15px;
                z-index: 9999;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
                
                /* CRITICAL: Start hidden but maintain display flex */
                display: flex;
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                visibility: hidden;
                transition: max-height 0.4s ease, opacity 0.3s ease, visibility 0.3s ease;
            }
            
            /* Active state - FIXED */
            .nav-links.active {
                max-height: 500px; /* Enough for all menu items */
                opacity: 1;
                visibility: visible;
            }
            
            .nav-link {
                width: 100%;
                padding: 12px 16px;
                text-align: center;
                border-radius: 8px;
                background: rgba(255, 255, 255, 0.05);
                border: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .nav-link::before {
                display: none; /* Remove hover underline on mobile */
            }
            
            .nav-link:hover {
                background: rgba(102, 126, 234, 0.2);
                border-color: rgba(102, 126, 234, 0.4);
                transform: none;
            }
            
            .nav-cta {
                width: 100%;
                justify-content: center;
                padding: 14px 20px;
                margin: 0;
            }
            
            /* Prevent body scroll when menu is open */
            body.menu-open {
                overflow: hidden;
                position: fixed;
                width: 100%;
                height: 100%;
            }
            
            /* Hero Content */
            .hero-quantum {
                padding-top: 100px;
            }
            
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-visual {
                margin-top: 40px;
            }
            
            /* Mobile specific chat widget positioning */
            .chat-widget {
                position: fixed !important;
                bottom: 20px !important;
                right: 20px !important;
                left: auto !important;
                top: auto !important;
                z-index: 9990 !important;
                width: auto !important;
                height: auto !important;
            }
            
            .chat-bubble {
                width: 56px !important;
                height: 56px !important;
            }
            
            .chat-bubble i {
                font-size: 24px !important;
            }
            
            .chat-window {
                position: fixed !important;
                bottom: 90px !important;
                right: 20px !important;
                left: 20px !important;
                width: auto !important;
                max-width: calc(100vw - 40px) !important;
                height: 60vh !important;
                max-height: 500px !important;
            }
            
            /* Prevent body scroll when menu is open */
            body.menu-open {
                overflow: hidden;
                position: fixed;
                width: 100%;
            }
            
            /* Holographic card mobile optimization */
            .logo-hologram-container {
                width: 350px;
                height: 350px;
            }
            
            .hologram-card {
                width: 220px;
                height: 220px;
            }

            .hologram-logo {
                width: 180px;
                height: 110px;
            }

            .orbit-ring {
                width: 320px;
                height: 320px;
            }

            .orbit-ring-2 {
                width: 250px;
                height: 250px;
            }

            .stats-container {
                grid-template-columns: 1fr !important;
                gap: 16px !important;
            }

            .bento-grid {
                grid-template-columns: 1fr !important;
                gap: 16px !important;
            }

            .bento-card.large {
                grid-column: span 1 !important;
            }

            /* ===== MOBILE WIDGETS (768px and below) ===== */
            
            /* Demo Terminal */
            .demo-section {
                padding: 60px 20px;
            }

            .demo-window {
                border-radius: 16px;
            }

            .demo-titlebar {
                padding: 12px 16px;
            }

            .demo-content {
                grid-template-columns: 1fr;
                min-height: auto;
            }

            .demo-input,
            .demo-output {
                padding: 24px 16px;
                border-right: none;
                border-bottom: 1px solid var(--glass-border);
            }

            .demo-output {
                border-bottom: none;
            }

            .demo-textarea {
                height: 200px;
                font-size: 0.9rem;
            }

            .demo-analyze-btn {
                width: 100%;
                padding: 14px 24px;
                font-size: 0.95rem;
                justify-content: center;
            }

            /* Section Headers */
            .section-header {
                margin-bottom: 40px;
            }

            .section-title {
                font-size: 1.8rem;
                line-height: 1.2;
            }

            .section-subtitle {
                font-size: 0.95rem;
                text-align: center !important;
            }

            /* About Section */
            .about-section {
                padding: 60px 20px;
            }

            .about-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-content h2 {
                font-size: 1.8rem;
                text-align: center;
            }

            .about-content p {
                font-size: 0.95rem;
                text-align: center;
            }

            .glass-logo-container {
                width: 200px;
                height: 200px;
                margin: 0 auto;
            }

            /* Tech Stack */
            .tech-stack-section {
                padding: 60px 20px;
            }

            .tech-logo-item {
                min-width: 140px;
                padding: 20px 12px;
            }

            .tech-logo-wrapper {
                width: 80px;
                height: 80px;
            }

            .tech-logo {
                max-width: 60px;
                max-height: 60px;
            }

            /* Features Section */
            .features-section {
                padding: 60px 20px;
            }

            .features-grid {
                grid-template-columns: 1fr !important;
                gap: 20px !important;
            }

            .feature-card {
                padding: 28px 24px;
            }

            .feature-icon {
                width: 50px;
                height: 50px;
                font-size: 22px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
                align-items: center;
                padding-top: 30px;
            }

            .footer-brand {
                text-align: center;
                align-items: center;
            }

            .footer-description {
                text-align: center;
                max-width: 100%;
            }

            .footer-column {
                text-align: center;
            }

            .footer-column h4 {
                margin-bottom: 15px;
                font-size: 1rem;
            }

            .footer-links {
                align-items: center;
                gap: 10px;
            }

            .footer-link {
                padding: 8px 0;
                font-size: 0.9rem;
            }

            .social-links {
                justify-content: center;
                gap: 15px;
                flex-wrap: wrap;
            }

            .social-link {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }

            .footer-logo {
                justify-content: center;
                font-size: 1.4rem;
            }

            .footer-logo-icon {
                width: 28px;
                height: 28px;
            }

            .copyright-main {
                font-size: 0.9rem;
                line-height: 1.4;
            }

            .company-details {
                font-size: 0.8rem;
                line-height: 1.3;
            }

            .version-info {
                font-size: 0.75rem;
                line-height: 1.3;
            }

        /* Desktop - Hide Mobile Menu Toggle */
        

        /* Enhanced Mobile Responsiveness for Small Devices */
        

            .footer-logo-icon {
                width: 26px;
                height: 26px;
            }

            .footer-description {
                font-size: 0.9rem;
                line-height: 1.5;
            }

            .footer-column h4 {
                font-size: 0.95rem;
                margin-bottom: 12px;
            }

            .footer-links {
                gap: 8px;
            }

            .footer-link {
                font-size: 0.85rem;
                padding: 6px 0;
            }

            .social-links {
                gap: 12px;
                justify-content: center;
            }

            .social-link {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .footer-bottom {
                padding-top: 25px;
                gap: 15px;
            }

            .copyright-main {
                font-size: 0.85rem;
            }

            .company-details {
                font-size: 0.75rem;
            }

            .version-info {
                font-size: 0.7rem;
            }

            .social-links {
                gap: 15px;
                justify-content: center;
            }

            .social-link {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            /* Footer Improvements */
            .footer {
                padding: 40px 15px 20px;
            }

            .social-links {
                gap: 15px;
                justify-content: center;
                flex-wrap: wrap;
            }

            .social-link {
                width: 40px;
                height: 40px;
                font-size: 16px;
                flex-shrink: 0;
            }

            .footer-bottom {
                margin-top: 30px;
                padding-top: 20px;
            }

            .company-details,
            .version-info {
                text-align: center;
                font-size: 0.8rem;
                margin: 5px 0;
            }

            /* Chat Window Sizing */
            .chat-window {
                width: calc(100vw - 32px);
                height: 70vh;
                bottom: 90px;
                right: 16px;
            }

            .chat-header {
                padding: 15px;
            }

            .chat-body {
                padding: 15px;
            }

            .chat-input-container {
                padding: 15px;
            }

            .chat-input {
                font-size: 16px; /* Prevents zoom on iOS */
                padding: 12px 15px;
            }

            .chat-send {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            /* Typography Mobile Improvements */
            h1, h2, h3, h4, h5, h6 {
                line-height: 1.2;
                margin-bottom: 15px;
            }

            p {
                line-height: 1.5;
                margin-bottom: 15px;
            }

            /* Form Elements Mobile */
            input, textarea, select {
                font-size: 16px; /* Prevents zoom on iOS */
                min-height: 44px;
            }

            /* Accessibility Improvements */
            .sr-only {
                position: absolute;
                width: 1px;
                height: 1px;
                padding: 0;
                margin: -1px;
                overflow: hidden;
                clip: rect(0, 0, 0, 0);
                white-space: nowrap;
                border: 0;
            }

            /* Focus States for Mobile */
            button:focus,
            .btn:focus,
            .nav-link:focus,
            .social-link:focus {
                outline: 2px solid #00f2fe;
                outline-offset: 2px;
            }

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

            .container,
            .hero-container,
            .nav-container {
                max-width: 100%;
                overflow-x: hidden;
            }

            /* Typing Animation */
            .typing-container {
                font-size: 0.9rem;
                margin-top: 20px;
            }
        } /* End of Mobile Responsive @media (max-width: 968px) */

        /* Extra Small Devices (phones in portrait) */
        @media (max-width: 480px) {
            .quantum-nav {
                padding: 12px 8px !important;
            }
            
            .nav-container {
                padding: 0 10px !important;
            }
            
            .nav-brand {
                font-size: 1.2rem !important;
            }
            
            .nav-brand-logo {
                width: 35px !important;
                height: 35px !important;
            }
            
            .nav-brand-logo img {
                width: 32px !important;
                height: 32px !important;
            }
            
            .nav-brand-beta {
                font-size: 0.65rem !important;
                padding: 1px 6px !important;
            }
            
            .mobile-menu-toggle {
                width: 40px !important;
                height: 40px !important;
            }
            
            .mobile-menu-toggle span {
                width: 20px !important;
            }
            
            /* Extra small devices */
            .chat-widget {
                bottom: 15px !important;
                right: 15px !important;
            }
            
            .chat-bubble {
                width: 50px !important;
                height: 50px !important;
            }
            
            .chat-bubble i {
                font-size: 22px !important;
            }
            
            .chat-window {
                bottom: 75px !important;
                right: 15px !important;
                left: 15px !important;
                width: auto !important;
                height: 65vh !important;
            }
        }

        /* Ensure proper layering for mobile */
        @media (max-width: 968px) {
            /* Main content should not overlap */
            .hero-quantum {
                padding-top: 80px !important;
            }
            
            /* Prevent horizontal scroll */
            body {
                overflow-x: hidden !important;
                position: relative !important;
            }
            
            /* Ensure all containers respect viewport */
            .hero-container,
            .stats-container,
            .bento-grid,
            .demo-window,
            .about-container,
            .tech-stack-container,
            .footer-container {
                max-width: 100% !important;
                overflow-x: hidden !important;
            }
        }

        /* JavaScript helper classes */
        .mobile-menu-open {
            overflow: hidden !important;
        }

        .mobile-menu-open .quantum-nav {
            border-bottom: none !important;
        }

        /* Prevent body scroll when mobile menu is open */
        body.menu-open {
            overflow: hidden !important;
            position: fixed !important;
            width: 100% !important;
        }

        /* Extra small devices */
        @media (max-width: 480px) {
            .quantum-nav {
                padding: 12px 0;
            }
            
            .nav-container {
                padding: 0 10px;
            }
            
            .nav-brand {
                font-size: 1.2rem;
            }
            
            .nav-brand-logo {
                width: 35px;
                height: 35px;
            }
            
            .nav-brand-logo img {
                width: 32px;
                height: 32px;
            }
            
            .nav-brand-beta {
                font-size: 0.65rem;
                padding: 1px 6px;
            }
            
            .mobile-menu-toggle {
                width: 40px;
                height: 40px;
            }
            
            .mobile-menu-toggle span {
                width: 20px;
            }
            
            .chat-widget {
                bottom: 15px;
                right: 15px;
            }
            
            .chat-bubble {
                width: 50px;
                height: 50px;
            }
            
            .chat-bubble i {
                font-size: 22px;
            }
            
            .chat-window {
                bottom: 70px;
                right: 15px;
                width: calc(100vw - 30px);
                height: 65vh;
            }
        }

        /* Desktop - Ensure menu is always visible */
        @media (min-width: 969px) {
            .nav-links {
                display: flex !important;
                position: static !important;
                max-height: none !important;
                opacity: 1 !important;
                visibility: visible !important;
                flex-direction: row !important;
                background: transparent !important;
                border: none !important;
                padding: 0 !important;
                overflow: visible !important;
            }
            
            .mobile-menu-toggle {
                display: none !important;
            }
        }

        /* Extra Small Devices */
        

        /* ========================================
           TABLET OPTIMIZATION (768px - 1023px)
           ======================================== */
        

        /* ========================================
           DESKTOP OPTIMIZATION (1024px - 1439px)
           ======================================== */
        @media (min-width: 1024px) and (max-width: 1439px) {

            /* Stats - Desktop */
            .stats-container {
                grid-template-columns: repeat(4, 1fr) !important;
                padding: 60px 40px !important;
            }

            /* Bento Grid - Desktop */
            .bento-grid {
                grid-template-columns: repeat(3, 1fr) !important;
                gap: 30px !important;
            }

            .bento-card.large {
                grid-column: span 2 !important;
            }

            /* Features - Desktop */
            .features-grid {
                grid-template-columns: repeat(3, 1fr) !important;
                gap: 30px !important;
            }

            /* Tech Stack - Desktop */
            .tech-logo-item {
                min-width: 180px !important;
            }
        } /* End Desktop 1024-1439px */

        /* ========================================
           LARGE DESKTOP (1440px - 1919px)
           ======================================== */
        @media (min-width: 1440px) and (max-width: 1919px) {

            /* Hero - Large Desktop */
            .hero-title {
                font-size: 4rem !important;
            }

            .hero-subtitle {
                font-size: 1.4rem !important;
            }

            /* Stats - Large Desktop */
            .stat-value {
                font-size: 3.5rem !important;
            }

            .stat-label {
                font-size: 1.1rem !important;
            }

            /* Features - Large Desktop */
            .feature-card {
                padding: 40px 36px !important;
            }

            .feature-icon {
                width: 70px !important;
                height: 70px !important;
                font-size: 30px !important;
            }

            .feature-card h3 {
                font-size: 1.5rem !important;
            }

            .feature-card p {
                font-size: 1.05rem !important;
            }

            /* Bento Cards - Large Desktop */
            .bento-card {
                padding: 40px 36px !important;
            }

            .bento-card h3 {
                font-size: 1.6rem !important;
            }

            .bento-card p {
                font-size: 1.05rem !important;
            }

        /* ========================================
           ULTRA-WIDE DISPLAYS (1920px+)
           ======================================== */
            .demo-section {
                padding: 140px 100px !important;
            }

            .demo-window {
                max-width: 1600px !important;
            }

            .demo-content {
                min-height: 600px !important;
            }

            .demo-input,
            .demo-output {
                padding: 60px 50px !important;
            }

            .demo-textarea {
                height: 320px !important;
                font-size: 1.1rem !important;
            }

            .demo-analyze-btn {
                padding: 18px 48px !important;
                font-size: 1.1rem !important;
            }
        } /* End Large Desktop 1440-1919px */

        /* ========================================
           ULTRA-WIDE (1920px and above)
           ======================================== */
        @media (min-width: 1920px) {

            /* Section Headers - Ultra-Wide */
            .section-header {
                margin-bottom: 80px !important;
            }

            .section-title {
                font-size: 3.5rem !important;
                margin-left: auto;
                margin-right: auto;
            }
            
            .section-subtitle {
                font-size: 1.4rem !important;
                max-width: 800px;
                margin-left: auto;
                margin-right: auto;
                text-align: center !important;
            }

            /* Hero - Ultra-Wide */
            .hero-quantum {
                padding: 140px 100px !important;
            }

            .hero-title {
                font-size: 4.5rem !important;
            }

            .hero-subtitle {
                font-size: 1.6rem !important;
                max-width: 700px;
            }

            /* Stats - Ultra-Wide */
            .stats-container {
                padding: 80px 100px !important;
                max-width: 1600px;
                margin: 0 auto;
            }

            .stat-value {
                font-size: 4rem !important;
            }

            .stat-label {
                font-size: 1.2rem !important;
            }

            /* Bento Grid - Ultra-Wide */
            .bento-grid {
                max-width: 1600px;
                margin: 0 auto;
                gap: 40px !important;
            }

            .bento-card {
                padding: 50px 45px !important;
                min-height: 350px !important;
            }

            .bento-card h3 {
                font-size: 1.8rem !important;
            }

            .bento-card p {
                font-size: 1.1rem !important;
            }

            /* Features - Ultra-Wide */
            .features-grid {
                max-width: 1600px;
                margin: 0 auto;
                gap: 40px !important;
            }

            .feature-card {
                padding: 50px 45px !important;
            }

            .feature-icon {
                width: 80px !important;
                height: 80px !important;
                font-size: 36px !important;
            }

            .feature-card h3 {
                font-size: 1.7rem !important;
            }

            .feature-card p {
                font-size: 1.15rem !important;
            }

            /* About Section - Ultra-Wide */
            .about-container {
                max-width: 1600px;
                margin: 0 auto;
                gap: 80px !important;
            }

            .about-content h2 {
                font-size: 3rem !important;
            }

            .about-content p {
                font-size: 1.15rem !important;
                line-height: 1.8 !important;
            }

            /* Tech Stack - Ultra-Wide */
            .tech-stack-section {
                padding: 120px 100px !important;
            }

            .tech-logo-item {
                min-width: 200px !important;
                padding: 30px 20px !important;
            }

            .tech-logo-wrapper {
                width: 120px !important;
                height: 120px !important;
            }

            .tech-logo {
                max-width: 90px !important;
                max-height: 90px !important;
            }

            .tech-name {
                font-size: 1rem !important;
            }
        } /* End Ultra-Wide 1920px+ */

        /* ===== CHAT WIDGET POSITIONING - FIXED ===== */
        .chat-widget {
            position: fixed !important;
            bottom: 20px !important;
            right: 20px !important;
            top: auto !important;
            left: auto !important;
            z-index: 9990 !important;
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
            width: auto !important;
            height: auto !important;
            transform: none !important;
        }

        /* Enhanced Disclaimer Modal Styles */
        .disclaimer-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            z-index: 20000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            animation: overlayFadeIn 0.3s ease-out;
            cursor: pointer;
            will-change: opacity, backdrop-filter;
            pointer-events: auto;
        }

        @keyframes overlayFadeIn {
            from { 
                opacity: 0; 
                backdrop-filter: blur(0px);
                -webkit-backdrop-filter: blur(0px);
            }
            to { 
                opacity: 1; 
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
            }
        }

        .disclaimer-modal {
            background: linear-gradient(145deg, 
                rgba(25, 30, 50, 0.98) 0%, 
                rgba(30, 35, 55, 0.96) 50%,
                rgba(25, 30, 50, 0.98) 100%);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border: 2px solid rgba(255, 152, 0, 0.5);
            border-radius: 24px;
            max-width: 650px;
            width: 100%;
            max-height: 85vh;
            overflow: hidden;
            box-shadow: 
                0 25px 80px rgba(0, 0, 0, 0.8),
                0 0 60px rgba(255, 0, 0, 0.2),
                0 0 40px rgba(255, 152, 0, 0.15);
            animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            cursor: default;
            will-change: transform, opacity;
            pointer-events: all;
        }

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

        @keyframes shake {
            0%, 100% { transform: translateY(0) scale(1) translateX(0); }
            10%, 30%, 50%, 70%, 90% { transform: translateY(0) scale(1) translateX(-5px); }
            20%, 40%, 60%, 80% { transform: translateY(0) scale(1) translateX(5px); }
        }

        .disclaimer-modal::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: #ff0000;
            animation: redPulse 2s ease-in-out infinite alternate;
            box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
        }

        @keyframes redPulse {
            from { 
                opacity: 0.8;
                box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
            }
            to { 
                opacity: 1; 
                box-shadow: 0 0 30px rgba(255, 0, 0, 0.9);
            }
        }
        .disclaimer-header {
            background: rgba(255, 0, 0, 0.08);
            padding: 30px 40px 25px;
            border-bottom: 2px solid rgba(255, 0, 0, 0.3);
            display: flex;
            align-items: center;
            gap: 20px;
            position: relative;
        }

        .disclaimer-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: #ff0000;
        }

        .disclaimer-icon {
            width: 50px;
            height: 50px;
            background: #ff0000;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            box-shadow: 0 8px 25px rgba(255, 0, 0, 0.6);
            animation: iconPulse 2s ease-in-out infinite;
        }

        @keyframes iconPulse {
            0%, 100% {
                box-shadow: 0 8px 25px rgba(255, 0, 0, 0.6);
            }
            50% {
                box-shadow: 0 8px 35px rgba(255, 0, 0, 0.9);
            }
        }

        .disclaimer-title {
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
        }

        .disclaimer-content {
            padding: 35px 40px;
            overflow-y: auto;
            max-height: calc(85vh - 150px);
        }

        .beta-notice, .financial-warning {
            background: rgba(255, 152, 0, 0.08);
            border: 1px solid rgba(255, 152, 0, 0.35);
            border-radius: 16px;
            padding: 25px;
            margin-bottom: 25px;
            display: flex;
            align-items: flex-start;
            gap: 20px;
            position: relative;
            overflow: hidden;
        }

        .beta-notice::before, .financial-warning::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: #ff9800;
        }

        .financial-warning {
            border-color: rgba(255, 0, 0, 0.35);
            background: rgba(255, 0, 0, 0.08);
        }

        .financial-warning::before {
            background: #ff0000;
        }

        .notice-icon, .warning-icon {
            width: 45px;
            height: 45px;
            background: #ff9800;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            flex-shrink: 0;
            box-shadow: 0 6px 20px rgba(255, 152, 0, 0.5);
        }

        .warning-icon {
            background: #ff0000;
            color: white;
            box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6);
            animation: warningPulse 1.5s ease-in-out infinite;
        }

        @keyframes warningPulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 8px 30px rgba(255, 0, 0, 0.9);
            }
        }

        .notice-content h3, .warning-content h3 {
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            margin: 0 0 12px 0;
            line-height: 1.3;
        }

        .notice-content p, .warning-content p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.95rem;
            line-height: 1.5;
            margin: 0;
        }

        .acknowledgments {
            margin-top: 30px;
        }

        .acknowledgments h3 {
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0 0 20px 0;
            text-align: left;
        }

        .ack-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .ack-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 18px 20px;
            background: rgba(40, 40, 40, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .ack-item:hover {
            border-color: rgba(255, 152, 0, 0.4);
            background: rgba(50, 50, 50, 0.6);
            transform: translateX(4px);
        }

        .ack-item i {
            color: #4CAF50;
            font-size: 16px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .ack-item span {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
            line-height: 1.5;
            text-align: left;
        }

        .ack-item a {
            color: #ff9800;
            text-decoration: none;
            border-bottom: 1px solid rgba(255, 152, 0, 0.3);
            transition: all 0.3s ease;
        }

        .ack-item a:hover {
            color: #ffb74d;
            border-bottom-color: rgba(255, 183, 77, 0.6);
        }

        .risk-warning {
            background: rgba(255, 0, 0, 0.08);
            border: 1px solid rgba(255, 0, 0, 0.3);
            border-radius: 12px;
            padding: 20px;
            margin-top: 25px;
            position: relative;
        }

        .risk-warning::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: #ff0000;
        }

        .risk-warning h4 {
            color: #ff4444;
            font-size: 1rem;
            font-weight: 600;
            margin: 0 0 12px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .risk-warning p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.9rem;
            line-height: 1.5;
            margin: 0;
        }

        .acknowledgment-section {
            margin-top: 30px;
            padding: 25px;
            background: rgba(40, 40, 40, 0.4);
            border: 1px solid rgba(255, 152, 0, 0.25);
            border-radius: 16px;
            position: relative;
            overflow: hidden;
        }

        .acknowledgment-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: #ff9800;
        }

        .acknowledgment-section h3 {
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            margin: 0 0 20px 0;
            text-align: left;
            line-height: 1.3;
        }

        .disclaimer-footer {
            background: rgba(20, 25, 40, 0.9);
            padding: 25px 40px;
            border-top: 1px solid rgba(255, 0, 0, 0.25);
            display: flex;
            justify-content: flex-end;
            gap: 15px;
        }

        .disclaimer-footer .btn-secondary {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.8);
            padding: 12px 24px;
            border-radius: 10px;
            font-weight: 500;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            pointer-events: auto;
        }

        .disclaimer-footer .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.3);
            color: white;
            transform: translateY(-2px);
        }

        .disclaimer-footer .btn-primary {
            background: #ff0000;
            border: none;
            color: white;
            padding: 12px 28px;
            border-radius: 10px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
            cursor: pointer;
            pointer-events: auto;
        }

        .disclaimer-footer .btn-primary:hover {
            background: #cc0000;
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(255, 0, 0, 0.6);
        }

        /* Mobile Responsiveness for Disclaimer Modal */
        

        

        .disclaimer-header {
            background: linear-gradient(135deg, #4a90e2 0%, #667eea 100%);
            padding: 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            border-radius: 24px 24px 0 0;
            position: relative;
            overflow: hidden;
        }

        .disclaimer-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .disclaimer-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.25);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            position: relative;
            z-index: 1;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .disclaimer-title {
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
            position: relative;
            z-index: 1;
        }

        .disclaimer-content {
            padding: 32px;
        }

        .beta-notice, .financial-warning {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 24px;
            display: flex;
            gap: 16px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .beta-notice {
            border-left: 4px solid #4a90e2;
            background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(102, 126, 234, 0.08) 100%);
        }

        .financial-warning {
            border-left: 4px solid #ff6b6b;
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.08) 0%, rgba(255, 99, 132, 0.08) 100%);
        }

        .notice-icon, .warning-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }

        .notice-icon {
            background: linear-gradient(135deg, #4a90e2, #667eea);
            color: white;
            box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
        }

        .warning-icon {
            background: linear-gradient(135deg, #ff6b6b, #ff8a80);
            color: white;
            box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
        }

        .notice-content h3, .warning-content h3 {
            color: #ffffff;
            font-size: 1.2rem;
            font-weight: 600;
            margin: 0 0 8px 0;
        }

        .notice-content p, .warning-content p {
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.5;
        }

        .acknowledgments {
            margin-bottom: 24px;
        }

        .acknowledgments h3 {
            color: #4a90e2;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .ack-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .ack-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.5;
        }

        .ack-item i {
            color: #4ade80;
            font-size: 16px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .ack-item a {
            color: #4a90e2;
            text-decoration: none;
        }

        .ack-item a:hover {
            text-decoration: underline;
            color: #667eea;
        }

        .risk-warning {
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 99, 132, 0.1) 100%);
            border: 1px solid rgba(255, 107, 107, 0.3);
            border-radius: 12px;
            padding: 16px;
        }

        .risk-warning h4 {
            color: #ff6b6b;
            font-size: 1rem;
            font-weight: 600;
            margin: 0 0 8px 0;
        }

        .risk-warning p {
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.5;
            font-size: 0.9rem;
        }

        .disclaimer-footer {
            padding: 24px 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            display: flex;
            gap: 16px;
            justify-content: flex-end;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
            border-radius: 0 0 24px 24px;
        }

        .disclaimer-footer .btn-secondary {
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.25);
            color: rgba(255, 255, 255, 0.9);
            padding: 12px 24px;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .disclaimer-footer .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.18);
            color: #ffffff;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .disclaimer-footer .btn-primary {
            background: linear-gradient(135deg, #4a90e2 0%, #667eea 100%);
            border: none;
            color: white;
            padding: 12px 24px;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
        }

        .disclaimer-footer .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(74, 144, 226, 0.5);
            background: linear-gradient(135deg, #5ba3f5 0%, #7a8cfd 100%);
        }

        /* Mobile responsive for disclaimer */
        

        /* Base chat bubble - ensure it's visible */
        .chat-bubble {
            position: relative !important;
            width: 64px !important;
            height: 64px !important;
            background: linear-gradient(135deg, #764ba2 0%, #00f2fe 100%) !important;
            border-radius: 50% !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            cursor: pointer !important;
            border: 2px solid rgba(0, 242, 254, 0.2) !important;
            box-shadow: 0 4px 12px rgba(0, 242, 254, 0.25),
                        0 2px 6px rgba(118, 75, 162, 0.15) !important;
            transition: all 0.3s ease !important;
            visibility: visible !important;
            opacity: 1 !important;
            transform: none !important;
            animation: chatPulse 3s ease-in-out infinite;
        }

        @keyframes chatPulse {
            0%, 100% {
                box-shadow: 0 4px 12px rgba(0, 242, 254, 0.25),
                            0 2px 6px rgba(118, 75, 162, 0.15),
                            0 0 0 0 rgba(0, 242, 254, 0.4);
            }
            50% {
                box-shadow: 0 4px 12px rgba(0, 242, 254, 0.25),
                            0 2px 6px rgba(118, 75, 162, 0.15),
                            0 0 20px 10px rgba(0, 242, 254, 0);
            }
        }

        .chat-bubble:hover {
            transform: scale(1.1) !important;
            box-shadow: 0 6px 16px rgba(0, 242, 254, 0.35),
                        0 3px 8px rgba(118, 75, 162, 0.25) !important;
        }

        .chat-bubble i {
            color: white !important;
            font-size: 26px !important;
            filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3)) !important;
        }

        /* Chat window positioning */
        .chat-window {
            position: fixed !important;
            bottom: 100px !important;
            right: 20px !important;
            width: 380px;
            height: 500px;
            background: linear-gradient(135deg, 
                rgba(10, 14, 39, 0.98) 0%, 
                rgba(26, 31, 58, 0.95) 100%);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(0, 242, 254, 0.4);
            border-radius: 20px;
            box-shadow: 
                0 25px 80px rgba(0, 0, 0, 0.9),
                0 0 50px rgba(0, 242, 254, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            opacity: 0;
            visibility: hidden;
            display: none;
            transform: translateY(20px) scale(0.9);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            flex-direction: column;
            z-index: 9991 !important;
        }

        .chat-window.open {
            opacity: 1 !important;
            visibility: visible !important;
            display: flex !important;
            transform: translateY(0) scale(1) !important;
        }

        .chat-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            border-radius: 20px 20px 0 0;
            flex-shrink: 0;
        }

        .chat-avatar {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: white;
            font-size: 18px;
        }

        .chat-title-info {
            flex: 1;
        }

        .chat-title {
            color: white;
            font-size: 16px;
            font-weight: 600;
            margin: 0;
        }

        .chat-status {
            color: rgba(255, 255, 255, 0.8);
            font-size: 12px;
            margin: 0;
        }

        .chat-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: white;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .chat-close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        .chat-body {
            flex: 1;
            padding: 60px 20px 20px 20px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            min-height: 0;
        }

        .chat-intro {
            margin-bottom: 20px;
        }

        .chat-intro h3 {
            color: white;
            font-size: 18px;
            margin: 0 0 8px 0;
            font-weight: 600;
        }

        .chat-intro p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            margin: 0 0 20px 0;
            line-height: 1.5;
        }

        .demo-badge {
            background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
            color: white;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: inline-block;
            margin-bottom: 16px;
        }

        .conversation-starters {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .starter-button {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 12px 16px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
            text-align: left;
            cursor: pointer;
            transition: all 0.3s ease;
            line-height: 1.4;
        }

        .starter-button:hover {
            background: rgba(0, 242, 254, 0.1);
            border-color: rgba(0, 242, 254, 0.3);
            transform: translateX(4px);
        }

        .chat-input-area {
            padding: 16px 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.02);
            flex-shrink: 0;
        }

        .chat-input-container {
            display: flex;
            gap: 8px;
            align-items: flex-end;
        }

        .chat-input {
            flex: 1;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 12px 16px;
            color: white;
            font-size: 14px;
            resize: none;
            max-height: 80px;
            min-height: 40px;
            font-family: inherit;
        }

        .chat-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .chat-input:focus {
            outline: none;
            border-color: rgba(0, 242, 254, 0.5);
            box-shadow: 0 0 0 2px rgba(0, 242, 254, 0.1);
        }

        .chat-send {
            background: linear-gradient(135deg, #764ba2 0%, #00f2fe 100%);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: white;
            transition: all 0.3s ease;
        }

        .chat-send:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 15px rgba(0, 242, 254, 0.4);
        }

        .chat-send:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        /* Enhanced Chat Messages */
        .chat-message {
            margin-bottom: 16px;
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }

        .message-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 600;
            flex-shrink: 0;
        }

        .user-message .message-avatar,
        .user-avatar {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .bot-message .message-avatar,
        .bot-avatar {
            background: linear-gradient(135deg, #764ba2 0%, #00f2fe 100%);
            color: white;
        }

        .message-content {
            flex: 1;
            border-radius: 16px;
            padding: 12px 16px;
            font-size: 14px;
            line-height: 1.6;
            word-break: break-word;
            max-width: 100%;
        }

        .user-message .message-content {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
            border: 1px solid rgba(102, 126, 234, 0.3);
            color: rgba(255, 255, 255, 0.9);
        }

        .bot-message .message-content {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.9);
        }

        /* Improved markdown formatting in chat messages */
        .bot-message .markdown-wrapper {
            font-size: 14px;
            line-height: 1.6;
        }

        .bot-message .markdown-h2 {
            color: #00f2fe;
            margin: 16px 0 8px 0;
            font-size: 1.1rem;
            font-weight: 700;
            border-bottom: 1px solid rgba(0, 242, 254, 0.2);
            padding-bottom: 8px;
        }

        .bot-message .markdown-h3 {
            color: #00f2fe;
            margin: 14px 0 6px 0;
            font-size: 1rem;
            font-weight: 600;
        }

        .bot-message .markdown-h4 {
            color: #00f2fe;
            margin: 12px 0 6px 0;
            font-size: 0.95rem;
            font-weight: 600;
        }

        .bot-message .markdown-p {
            margin: 8px 0;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
        }

        .bot-message .markdown-ul,
        .bot-message .markdown-ol {
            margin: 8px 0;
            padding-left: 20px;
        }

        .bot-message .markdown-li {
            margin: 4px 0;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.85);
        }

        .bot-message .markdown-strong {
            color: #ffffff;
            font-weight: 600;
        }

        .bot-message .markdown-em {
            opacity: 0.9;
            font-style: italic;
        }

        .bot-message .markdown-pre {
            background: rgba(0, 0, 0, 0.4);
            padding: 12px;
            border-radius: 8px;
            margin: 12px 0;
            overflow-x: auto;
            border: 1px solid rgba(0, 242, 254, 0.2);
        }

        .bot-message .markdown-code {
            color: #00f2fe;
            font-family: 'JetBrains Mono', 'Courier New', monospace;
            font-size: 0.85rem;
            line-height: 1.5;
        }

        .bot-message .markdown-inline-code {
            background: rgba(0, 242, 254, 0.15);
            color: #00f2fe;
            padding: 2px 6px;
            border-radius: 4px;
            font-family: 'JetBrains Mono', 'Courier New', monospace;
            font-size: 0.9em;
        }

        /* Enhanced message content formatting */
        .message-content p {
            margin: 0 0 12px 0;
            line-height: 1.6;
        }

        .message-content p:last-child {
            margin-bottom: 0;
        }

        .message-content h1,
        .message-content h2,
        .message-content h3,
        .message-content h4 {
            color: rgba(255, 255, 255, 0.95);
            font-weight: 600;
            margin: 16px 0 8px 0;
            line-height: 1.3;
        }

        .message-content h1:first-child,
        .message-content h2:first-child,
        .message-content h3:first-child,
        .message-content h4:first-child {
            margin-top: 0;
        }

        .message-content h1 { font-size: 1.4em; }
        .message-content h2 { font-size: 1.3em; }
        .message-content h3 { font-size: 1.2em; }
        .message-content h4 { font-size: 1.1em; }

        .message-content strong,
        .message-content b {
            color: rgba(255, 255, 255, 0.95);
            font-weight: 600;
        }

        .message-content em,
        .message-content i {
            font-style: italic;
            color: rgba(255, 255, 255, 0.85);
        }

        .message-content code {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            padding: 2px 6px;
            font-family: 'JetBrains Mono', 'Courier New', monospace;
            font-size: 0.9em;
            color: #00f2fe;
        }

        .message-content pre {
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 8px;
            padding: 12px;
            margin: 12px 0;
            overflow-x: auto;
            line-height: 1.5;
        }

        .message-content pre code {
            background: none;
            border: none;
            padding: 0;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9em;
        }

        .message-content ul,
        .message-content ol {
            margin: 8px 0;
            padding-left: 24px;
            line-height: 1.6;
        }

        .message-content ul {
            list-style-type: disc;
        }

        .message-content ol {
            list-style-type: decimal;
        }

        .message-content li {
            margin: 4px 0;
            color: rgba(255, 255, 255, 0.9);
        }

        .message-content li::marker {
            color: rgba(0, 242, 254, 0.7);
        }

        .message-content blockquote {
            border-left: 3px solid rgba(0, 242, 254, 0.5);
            margin: 12px 0;
            padding: 8px 0 8px 16px;
            background: rgba(0, 242, 254, 0.05);
            border-radius: 0 8px 8px 0;
            font-style: italic;
            color: rgba(255, 255, 255, 0.85);
        }

        .message-content a {
            color: #00f2fe;
            text-decoration: none;
            border-bottom: 1px solid rgba(0, 242, 254, 0.3);
            transition: all 0.2s ease;
        }

        .message-content a:hover {
            color: #64d9ff;
            border-bottom-color: #64d9ff;
        }

        .message-content hr {
            border: none;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin: 16px 0;
        }

        .message-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 12px 0;
            font-size: 0.95em;
        }

        .message-content table th,
        .message-content table td {
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 8px 12px;
            text-align: left;
        }

        .message-content table th {
            background: rgba(0, 242, 254, 0.1);
            color: rgba(255, 255, 255, 0.95);
            font-weight: 600;
        }

        .message-content table tr:hover {
            background: rgba(255, 255, 255, 0.02);
        }

        /* Specific styling for numbered lists in responses */
        .message-content ol > li {
            padding-left: 8px;
        }

        .message-content ol > li > strong:first-child {
            display: block;
            margin-bottom: 4px;
            color: #00f2fe;
        }

        /* Code syntax highlighting hints */
        .message-content .keyword { color: #f92672; }
        .message-content .string { color: #a6e22e; }
        .message-content .comment { color: #75715e; font-style: italic; }
        .message-content .number { color: #ae81ff; }

        .user-message .message-content {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
            border: 1px solid rgba(102, 126, 234, 0.3);
        }

        .bot-message .message-content {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Mobile Chat Window Improvements */
        @media (max-width: 968px) {
            .chat-window {
                border-radius: 16px !important;
                max-width: none !important;
            }

            .chat-close {
                width: 30px !important;
                height: 30px !important;
                top: 12px !important;
                right: 12px !important;
            }

            .chat-body {
                padding: 50px 16px 16px 16px !important;
            }

            .chat-intro h3 {
                font-size: 16px !important;
            }

            .chat-intro p {
                font-size: 13px !important;
            }

            .demo-badge {
                font-size: 10px !important;
                padding: 3px 10px !important;
            }

            .starter-button {
                padding: 10px 14px !important;
                font-size: 13px !important;
            }

            .chat-input-area {
                padding: 12px 16px !important;
            }

            .chat-input {
                padding: 10px 14px !important;
                font-size: 13px !important;
                min-height: 36px !important;
            }

            .chat-send {
                width: 36px !important;
                height: 36px !important;
            }

            .chat-message {
                margin-bottom: 12px !important;
            }

            .message-avatar {
                width: 28px !important;
                height: 28px !important;
                font-size: 12px !important;
            }

            .message-content {
                padding: 10px 14px !important;
                font-size: 13px !important;
            }
        }

        /* Extra Small Devices - Chat Window */
        @media (max-width: 480px) {
            .chat-window {
                border-radius: 12px !important;
            }

            .chat-close {
                width: 28px !important;
                height: 28px !important;
                top: 10px !important;
                right: 10px !important;
            }

            .chat-body {
                padding: 50px 14px 14px 14px !important;
            }

            .chat-intro {
                margin-bottom: 16px !important;
            }

            .chat-intro h3 {
                font-size: 15px !important;
                margin-bottom: 6px !important;
            }

            .chat-intro p {
                font-size: 12px !important;
                margin-bottom: 16px !important;
            }

            .demo-badge {
                font-size: 9px !important;
                padding: 2px 8px !important;
                margin-bottom: 12px !important;
            }

            .conversation-starters {
                gap: 6px !important;
            }

            .starter-button {
                padding: 9px 12px !important;
                font-size: 12px !important;
                border-radius: 10px !important;
            }

            .chat-input-area {
                padding: 10px 14px !important;
            }

            .chat-input-container {
                gap: 6px !important;
            }

            .chat-input {
                padding: 9px 12px !important;
                font-size: 12px !important;
                min-height: 34px !important;
                border-radius: 10px !important;
            }

            .chat-send {
                width: 34px !important;
                height: 34px !important;
                border-radius: 10px !important;
            }

            .chat-send i {
                font-size: 14px !important;
            }

            .chat-message {
                margin-bottom: 10px !important;
                gap: 6px !important;
            }

            .message-avatar {
                width: 26px !important;
                height: 26px !important;
                font-size: 11px !important;
            }

            .message-content {
                padding: 9px 12px !important;
                font-size: 12px !important;
                border-radius: 12px !important;
            }
        }

        /* Responsive */
        

        /* Typing indicator */
        .typing-indicator {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 8px 0;
        }

        .typing-dot {
            width: 6px;
            height: 6px;
            background: rgba(0, 242, 254, 0.6);
            border-radius: 50%;
            animation: typingDots 1.5s ease-in-out infinite;
        }

        .typing-dot:nth-child(2) {
            animation-delay: 0.2s;
        }

        .typing-dot:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes typingDots {
            0%, 60%, 100% {
                transform: scale(1);
                opacity: 0.5;
            }
            30% {
                transform: scale(1.2);
                opacity: 1;
            }
        }
    


        /* Improved Disclaimer Modal CSS */

        /* Overlay */
        .disclaimer-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(26, 27, 35, 0.95) 0%,
                rgba(36, 37, 49, 0.95) 50%,
                rgba(26, 27, 35, 0.95) 100%);
            backdrop-filter: blur(20px) saturate(150%);
            -webkit-backdrop-filter: blur(20px) saturate(150%);
            z-index: 20000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            animation: overlayFadeIn 0.4s ease-out;
            overflow-y: auto;
        }

        @keyframes overlayFadeIn {
            from { 
                opacity: 0;
                backdrop-filter: blur(0px);
            }
            to { 
                opacity: 1;
                backdrop-filter: blur(20px);
            }
        }

        /* Main Modal */
        .disclaimer-modal {
            position: relative;
            background: #242531;
            border-radius: 24px;
            max-width: 680px;
            width: 100%;
            max-height: 90vh;
            overflow: hidden;
            box-shadow: 
                0 20px 40px -15px rgba(0, 0, 0, 0.5),
                0 0 60px rgba(102, 126, 234, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
            animation: modalSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Background Pattern */
        .modal-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.03;
            background-image: 
                repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.05) 35px, rgba(255,255,255,.05) 70px),
                repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255,255,255,.03) 35px, rgba(255,255,255,.03) 70px);
            pointer-events: none;
        }

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

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

        /* Header Section */
        .disclaimer-header {
            position: relative;
            background: linear-gradient(135deg, #667eea, #764ba2);
            padding: 32px;
            overflow: hidden;
        }

        .header-glow {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: glowRotate 20s linear infinite;
        }

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

        .header-content {
            position: relative;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .disclaimer-icon-wrapper {
            position: relative;
        }

        .icon-pulse {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            animation: iconPulse 2s ease-in-out infinite;
        }

        @keyframes iconPulse {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.5);
                opacity: 0.3;
            }
        }

        .disclaimer-icon {
            position: relative;
            width: 56px;
            height: 56px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--text-primary);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .header-text {
            flex: 1;
        }

        .disclaimer-title {
            color: var(--text-primary);
            font-size: 1.75rem;
            font-weight: 700;
            margin: 0;
            letter-spacing: -0.5px;
        }

        .disclaimer-subtitle {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            margin: 4px 0 0 0;
        }

        /* Content Section */
        .disclaimer-content {
            padding: 32px;
            overflow-y: auto;
            max-height: calc(90vh - 200px);
            scrollbar-width: thin;
            scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
        }

        .disclaimer-content::-webkit-scrollbar {
            width: 6px;
        }

        .disclaimer-content::-webkit-scrollbar-track {
            background: transparent;
        }

        .disclaimer-content::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
        }

        .disclaimer-content::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        /* Info Cards */
        .info-card {
            position: relative;
            background: #2d2e3f;
            border-radius: 16px;
            margin-bottom: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        }

        .card-accent {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #3b82f6, #764ba2);
        }

        .beta-card .card-accent {
            background: linear-gradient(90deg, #3b82f6, #00f2fe);
        }

        .warning-card .card-accent {
            background: linear-gradient(90deg, #f59e0b, #ef4444);
        }

        .card-content {
            padding: 24px;
            display: flex;
            gap: 16px;
        }

        .card-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--text-primary);
            flex-shrink: 0;
        }

        .warning-card .card-icon {
            background: linear-gradient(135deg, #f59e0b, #ef4444);
        }

        .card-text h3 {
            color: var(--text-primary);
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0 0 8px 0;
        }

        .card-text p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        /* Acknowledgment Section */
        .acknowledgment-section {
            margin-top: 28px;
            padding: 28px;
            background: linear-gradient(135deg, 
                rgba(102, 126, 234, 0.05) 0%,
                rgba(118, 75, 162, 0.05) 100%);
            border-radius: 16px;
            border: 1px solid rgba(102, 126, 234, 0.2);
        }

        .section-header {
            margin-bottom: 24px;
        }

        .section-header h3 {
            color: var(--text-primary);
            font-size: 1.2rem;
            font-weight: 600;
            margin: 0 0 6px 0;
        }

        .section-header p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin: 0;
        }

        /* Custom Checkboxes */
        .checkbox-group {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .checkbox-item {
            display: flex;
            align-items: flex-start;
            cursor: pointer;
            padding: 12px;
            border-radius: 12px;
            transition: background-color 0.2s ease;
            user-select: none;
        }

        .checkbox-item:hover {
            background: rgba(102, 126, 234, 0.05);
        }

        .disclaimer-checkbox {
            position: absolute;
            opacity: 0;
            cursor: pointer;
        }

        .checkbox-custom {
            position: relative;
            width: 22px;
            height: 22px;
            min-width: 22px;
            background: #1a1b23;
            border: 2px solid rgba(102, 126, 234, 0.4);
            border-radius: 6px;
            margin-right: 14px;
            margin-top: 1px;
            transition: all 0.3s ease;
        }

        .checkbox-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 12px;
            height: 10px;
            stroke: var(--text-primary);
            stroke-width: 2;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-dasharray: 16px;
            stroke-dashoffset: 16px;
            transition: stroke-dashoffset 0.3s ease;
        }

        .disclaimer-checkbox:checked ~ .checkbox-custom {
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-color: transparent;
            transform: scale(1.05);
        }

        .disclaimer-checkbox:checked ~ .checkbox-custom .checkbox-icon {
            stroke-dashoffset: 0;
        }

        .checkbox-label {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.5;
            flex: 1;
        }

        .inline-link {
            color: #667eea;
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: all 0.2s ease;
        }

        .inline-link:hover {
            color: #764ba2;
            border-bottom-color: #764ba2;
        }

        .checkbox-item.checked {
            background: rgba(102, 126, 234, 0.05);
        }

        /* Risk Disclosure */
        .risk-disclosure {
            margin-top: 20px;
            padding: 16px;
            background: rgba(239, 68, 68, 0.08);
            border: 1px solid rgba(239, 68, 68, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .disclosure-icon {
            color: #ef4444;
            font-size: 18px;
            margin-top: 2px;
        }

        .risk-disclosure p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.5;
            margin: 0;
            flex: 1;
        }

        /* Footer Actions */
        .disclaimer-footer {
            padding: 24px 32px;
            background: #1a1b23;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            gap: 12px;
            justify-content: flex-end;
        }

        .action-btn {
            position: relative;
            padding: 12px 24px;
            border-radius: 12px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            display: flex;
            align-items: center;
            gap: 8px;
            overflow: hidden;
        }

        .btn-secondary {
            background: #2d2e3f;
            color: var(--text-secondary);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-primary);
            transform: translateY(-2px);
        }

        .btn-primary {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: var(--text-primary);
            position: relative;
        }

        .btn-primary:not(:disabled):hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }

        .btn-primary:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

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

        .btn-primary:not(:disabled):hover .btn-shimmer {
            left: 100%;
        }

        .action-btn.ready {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
            }
        }

        /* Shake animation */
        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
            20%, 40%, 60%, 80% { transform: translateX(4px); }
        }

        /* Toast Notification Styles */
        .disclaimer-toast {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 16px 24px;
            background: rgba(36, 37, 49, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            color: white;
            font-size: 0.95rem;
            font-weight: 500;
            z-index: 25000;
            display: flex;
            align-items: center;
            gap: 12px;
            animation: toastSlideIn 0.3s ease-out;
            border-left: 4px solid #667eea;
            max-width: 400px;
        }

        .toast-error {
            border-left-color: #ef4444;
        }

        .toast-success {
            border-left-color: #10b981;
        }

        .toast-info {
            border-left-color: #3b82f6;
        }

        @keyframes toastSlideIn {
            from {
                transform: translateX(400px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

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

        /* Mobile Responsive Styles for Disclaimer Modal */
        @media screen and (max-width: 768px) {
            .disclaimer-overlay {
                padding: 0;
                align-items: stretch;
            }

            .disclaimer-modal {
                max-width: 100%;
                width: 100%;
                max-height: 100vh;
                border-radius: 0;
                margin: 0;
                display: flex;
                flex-direction: column;
            }

            .disclaimer-header {
                padding: 20px;
                flex-shrink: 0;
            }

            .header-content {
                gap: 12px;
            }

            .disclaimer-icon-wrapper {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .icon-pulse {
                width: 50px;
                height: 50px;
            }

            .disclaimer-icon {
                width: 48px;
                height: 48px;
                border-radius: 12px;
                font-size: 20px;
            }

            .disclaimer-title {
                font-size: 1.4rem;
            }

            .disclaimer-subtitle {
                font-size: 0.85rem;
            }

            .disclaimer-content {
                padding: 20px;
                flex: 1;
                overflow-y: auto;
                max-height: none;
                -webkit-overflow-scrolling: touch;
            }

            .info-card {
                margin-bottom: 16px;
            }

            .card-content {
                padding: 18px;
                gap: 12px;
                flex-direction: column;
                align-items: flex-start;
            }

            .card-icon {
                width: 40px;
                height: 40px;
                font-size: 18px;
                border-radius: 10px;
            }

            .card-text h3 {
                font-size: 1rem;
            }

            .card-text p {
                font-size: 0.9rem;
            }

            .acknowledgment-section {
                padding: 20px;
                margin-top: 20px;
            }

            .section-header h3 {
                font-size: 1.1rem;
            }

            .section-header p {
                font-size: 0.85rem;
            }

            .checkbox-group {
                gap: 12px;
            }

            .checkbox-item {
                padding: 10px;
            }

            .checkbox-custom {
                width: 20px;
                height: 20px;
                min-width: 20px;
            }

            .checkbox-label {
                font-size: 0.9rem;
            }

            .risk-disclosure {
                padding: 14px;
                margin-top: 16px;
            }

            .disclosure-icon {
                font-size: 16px;
            }

            .risk-disclosure p {
                font-size: 0.85rem;
            }

            .disclaimer-footer {
                padding: 16px 20px;
                flex-shrink: 0;
                flex-direction: column;
                gap: 10px;
            }

            .action-btn {
                width: 100%;
                justify-content: center;
                padding: 14px 20px;
                font-size: 0.95rem;
            }

            .btn-secondary {
                order: 2;
            }

            .btn-primary {
                order: 1;
            }

            .disclaimer-toast {
                top: 10px;
                right: 10px;
                left: 10px;
                max-width: none;
                padding: 14px 18px;
                font-size: 0.9rem;
            }

            @keyframes toastSlideIn {
                from {
                    transform: translateY(-100px);
                    opacity: 0;
                }
                to {
                    transform: translateY(0);
                    opacity: 1;
                }
            }

            @keyframes toastSlideOut {
                from {
                    transform: translateY(0);
                    opacity: 1;
                }
                to {
                    transform: translateY(-100px);
                    opacity: 0;
                }
            }
        }

        /* Small mobile devices */
        @media screen and (max-width: 480px) {
            .disclaimer-header {
                padding: 16px;
            }

            .header-content {
                gap: 10px;
            }

            .disclaimer-icon {
                width: 42px;
                height: 42px;
                font-size: 18px;
            }

            .disclaimer-title {
                font-size: 1.25rem;
            }

            .disclaimer-subtitle {
                font-size: 0.8rem;
            }

            .disclaimer-content {
                padding: 16px;
            }

            .card-content {
                padding: 16px;
            }

            .card-text h3 {
                font-size: 0.95rem;
            }

            .card-text p {
                font-size: 0.85rem;
            }

            .acknowledgment-section {
                padding: 16px;
            }

            .section-header h3 {
                font-size: 1rem;
            }

            .section-header p {
                font-size: 0.8rem;
            }

            .checkbox-label {
                font-size: 0.85rem;
            }

            .disclaimer-footer {
                padding: 14px 16px;
            }

            .action-btn {
                padding: 12px 18px;
                font-size: 0.9rem;
            }
        }

/* Additional utility classes for previously inline styles */
.logo-fallback {
    display: none !important;
    width: 240px;
    height: 150px;
    background: linear-gradient(135deg, #00f2fe 0%, #764ba2 100%);
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    font-weight: 700;
}

.demo-section-title {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.demo-empty-state {
    color: var(--text-muted);
    text-align: center;
    padding: 80px 20px;
}

.demo-empty-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.disclaimer-initial-state {
    display: none;
    opacity: 0;
}

.disclaimer-terms-intro {
    font-size: 1.1em;
    font-weight: 600;
    margin-top: 12px;
}

/* X (Twitter) icon SVG styling */
.social-link svg {
    width: 20px;
    height: 20px;
    display: block;
    transition: all 0.3s ease;
}

.social-link:hover svg {
    transform: translateY(-2px);
    filter: drop-shadow(0 4px 12px rgba(0, 242, 254, 0.5));
}

/* Dynamic Demo Results Styles */
.demo-loading {
    color: var(--accent-cyan);
    margin-bottom: 20px;
    text-align: center;
}

.demo-loading i {
    font-size: 2rem;
}

.demo-loading p {
    margin-top: 10px;
}

.demo-error {
    color: #e74c3c;
    text-align: center;
    padding: 40px 20px;
}

.demo-error i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.demo-success {
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 0.95rem;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.demo-success > *:first-child,
.demo-success .formatted-response > *:first-child {
    margin-top: 0 !important;
}

.demo-success p {
    margin: 0 0 16px 0;
    white-space: pre-wrap;
    word-wrap: break-word;
    line-height: 1.8;
}

.demo-success p:last-child {
    margin-bottom: 0;
}

.demo-empty-response {
    color: var(--text-muted);
    text-align: center;
    padding: 40px 20px;
}

/* Toast Notification Styles */
.disclaimer-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 30000;
    transition: transform 0.3s ease-out;
    font-size: 14px;
    font-weight: 500;
}

.toast-error {
    background: #ef4444;
}

.toast-info {
    background: #3b82f6;
}

.disclaimer-toast.show {
    transform: translateX(-50%) translateY(0);
}

/* Markdown Formatting Styles for Chat Messages */
.markdown-wrapper {
    font-size: 14px;
    word-wrap: break-word;
}

.markdown-h2 {
    color: #00f2fe;
    margin: 16px 0 8px 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.markdown-h3 {
    color: #00f2fe;
    margin: 16px 0 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.markdown-h4 {
    color: #00f2fe;
    margin: 16px 0 8px 0;
    font-size: 1rem;
    font-weight: 600;
}

.markdown-strong {
    color: #ffffff;
    font-weight: 600;
}

.markdown-em {
    opacity: 0.9;
}

.markdown-pre {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    border-radius: 8px;
    margin: 12px 0;
    overflow-x: auto;
}

.markdown-code {
    color: #00f2fe;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
}

.markdown-inline-code {
    background: rgba(0, 242, 254, 0.1);
    color: #00f2fe;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
}

.markdown-p {
    margin: 12px 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.markdown-ul,
.markdown-ol {
    margin: 12px 0;
    padding-left: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.markdown-li {
    margin: 6px 0;
    line-height: 1.5;
}

/* ===========================
   RESPONSE FORMATTING FIXES
   Proper text formatting for demo terminal and chat widget
   =========================== */

/* Demo Terminal Response Formatting */
.demo-success {
    color: var(--text-primary);
    line-height: 1.8;
    /* Removed background, padding, border-radius, and border-left to eliminate inner blue box */
    font-size: 0.95rem;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.demo-success p {
    margin: 0 0 16px 0;
    white-space: pre-wrap;
    word-wrap: break-word;
    line-height: 1.8;
}

.demo-success p:last-child {
    margin-bottom: 0;
}

/* Demo Results Enhanced Formatting */
.demo-results {
    font-family: 'Inter', -apple-system, sans-serif;
    color: rgba(255, 255, 255, 0.9);
}

.demo-results .formatted-response {
    white-space: pre-wrap;
    word-wrap: break-word;
    line-height: 1.8;
    font-size: 0.95rem;
}

.demo-results h2 {
    color: var(--accent-cyan);
    font-size: 1.4rem;
    margin: 0 0 16px 0;
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 242, 254, 0.2);
}

.demo-results h2:first-child {
    margin-top: 0;
}

.demo-results h3 {
    color: var(--accent-cyan);
    font-size: 1.15rem;
    margin: 20px 0 12px 0;
    font-weight: 600;
}

.demo-results h3:first-child {
    margin-top: 0;
}

.demo-results strong {
    color: #ffffff;
    font-weight: 600;
}

.demo-results ul,
.demo-results ol {
    margin: 16px 0;
    padding-left: 28px;
    line-height: 1.8;
}

.demo-results li {
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.85);
}

.demo-results li strong {
    display: inline-block;
    margin-bottom: 4px;
    color: var(--accent-cyan);
}

/* Paragraph formatting in demo */
.demo-results p {
    margin: 16px 0;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.demo-results p:first-child {
    margin-top: 0;
}

.demo-results p:last-child {
    margin-bottom: 0;
}

/* Chat Widget Message Formatting - Enhanced */
.message-content {
    flex: 1;
    border-radius: 16px;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.8;
    word-break: break-word;
    max-width: 100%;
    white-space: pre-wrap;
}

/* Bot Message Enhanced Formatting */
.bot-message .message-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Structured content in chat messages */
.chat-message .formatted-text {
    white-space: pre-wrap;
    word-wrap: break-word;
    line-height: 1.8;
}

.chat-message h2 {
    color: #00f2fe;
    font-size: 1.1rem;
    margin: 16px 0 10px 0;
    font-weight: 700;
    line-height: 1.3;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(0, 242, 254, 0.2);
}

.chat-message h3 {
    color: #00f2fe;
    font-size: 1rem;
    margin: 14px 0 8px 0;
    font-weight: 600;
    line-height: 1.3;
}

.chat-message h2:first-child,
.chat-message h3:first-child {
    margin-top: 0;
}

.chat-message p {
    margin: 12px 0;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.chat-message p:first-child {
    margin-top: 0;
}

.chat-message p:last-child {
    margin-bottom: 0;
}

.chat-message strong,
.chat-message b {
    color: #ffffff;
    font-weight: 600;
}

.chat-message em,
.chat-message i {
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
}

.chat-message ul,
.chat-message ol {
    margin: 12px 0;
    padding-left: 24px;
    line-height: 1.6;
}

.chat-message ul {
    list-style-type: disc;
}

.chat-message ol {
    list-style-type: decimal;
}

.chat-message li {
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.chat-message li::marker {
    color: rgba(0, 242, 254, 0.7);
}

/* Definition lists for key-value pairs */
.chat-message dl {
    margin: 16px 0;
}

.chat-message dt {
    color: var(--accent-cyan);
    font-weight: 600;
    margin: 12px 0 4px 0;
}

.chat-message dd {
    margin: 4px 0 12px 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Code formatting in responses */
.chat-message code,
.demo-results code {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 2px 6px;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 0.9em;
    color: #00f2fe;
}

.chat-message pre,
.demo-results pre {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 12px;
    margin: 12px 0;
    overflow-x: auto;
    line-height: 1.5;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.chat-message pre code,
.demo-results pre code {
    background: none;
    border: none;
    padding: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9em;
}

/* Blockquote for emphasis */
.chat-message blockquote,
.demo-results blockquote {
    border-left: 3px solid rgba(0, 242, 254, 0.5);
    margin: 16px 0;
    padding: 8px 0 8px 16px;
    background: rgba(0, 242, 254, 0.05);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
}

/* Links in responses */
.chat-message a,
.demo-results a {
    color: #00f2fe;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 242, 254, 0.3);
    transition: all 0.2s ease;
}

.chat-message a:hover,
.demo-results a:hover {
    color: #64d9ff;
    border-bottom-color: #64d9ff;
}

/* Horizontal rule */
.chat-message hr,
.demo-results hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

/* Tables in responses */
.chat-message table,
.demo-results table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.9em;
}

.chat-message table th,
.demo-results table th,
.chat-message table td,
.demo-results table td {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    text-align: left;
}

.chat-message table th,
.demo-results table th {
    background: rgba(0, 242, 254, 0.1);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.chat-message table tr:hover,
.demo-results table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Special formatting for crypto explanations */
.crypto-definition {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid rgba(0, 242, 254, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 16px 0;
}

.crypto-definition h3 {
    color: var(--accent-cyan);
    margin-top: 0;
}

/* Key points highlighting */
.key-points {
    background: rgba(118, 75, 162, 0.1);
    border-left: 4px solid var(--accent-purple);
    padding: 16px;
    margin: 16px 0;
    border-radius: 0 8px 8px 0;
}

.key-points h4 {
    color: var(--accent-purple);
    margin: 0 0 12px 0;
    font-size: 1rem;
}

/* Typing indicator styles */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
}

.typing-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 242, 254, 0.6);
    animation: typingBounce 1.4s ease-in-out infinite both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }
.typing-dot:nth-child(3) { animation-delay: 0s; }

@keyframes typingBounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Loading state for formatted content */
.formatting-content {
    animation: fadeIn 0.3s ease-in;
}

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

/* Tablet responsive adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .what-is-mirror-section {
        padding: 70px 0;
    }
    
    .perfect-for-section-wrapper {
        padding: 80px 0;
    }
    
    .use-case-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .use-case-card {
        padding: 2rem;
    }
    
    .description-header {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .use-case-header h5 {
        font-size: 1.3rem;
    }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    /* Hide floating decorative elements on mobile */
    .floating-elements,
    .feature-badges,
    .floating-particle,
    .feature-badge {
        display: none !important;
    }
    
    .demo-success {
        font-size: 0.9rem;
    }
    
    .chat-message .message-content {
        font-size: 13px;
        padding: 10px 14px;
    }
    
    .chat-message h2 {
        font-size: 1rem;
    }
    
    .chat-message h3 {
        font-size: 0.95rem;
    }
    
    .chat-message p,
    .demo-results p {
        font-size: 0.9rem;
    }
    
    .chat-message li,
    .demo-results li {
        font-size: 0.9rem;
    }
    
    /* What is Mirror AI Section - Mobile */
    .what-is-mirror-section {
        padding: 60px 0;
    }
    
    /* Perfect For Section - Mobile */
    .perfect-for-section-wrapper {
        padding: 60px 0;
    }
    
    /* Hero Description - Mobile */
    .description-header {
        font-size: 2rem;
    }
    
    .description-intro {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
    }
    
    .use-case-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .use-case-card {
        padding: 1.75rem;
    }
    
    .use-case-header {
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .use-case-header i {
        width: 48px;
        height: 48px;
        font-size: 1.75rem;
    }
    
    .use-case-header h5 {
        font-size: 1.25rem;
    }
    
    .use-case-list li {
        font-size: 0.95rem;
        gap: 0.85rem;
        margin-bottom: 1rem;
    }
    
    /* Blog CTA Section - Mobile */
    .blog-cta-section {
        padding: 80px 20px;
    }
    
    .blog-cta-container {
        padding: 0 10px;
    }
    
    .blog-cta-card {
        padding: 50px 28px;
        border-radius: 24px;
        border-width: 2px;
    }
    
    .blog-cta-icon {
        width: 72px;
        height: 72px;
        font-size: 32px;
        margin-bottom: 24px;
    }
    
    .blog-cta-heading {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .blog-cta-description {
        font-size: 1.05rem;
        line-height: 1.6;
        margin-bottom: 32px;
    }
    
    .blog-cta-button .button-content {
        padding: 16px 36px;
        gap: 12px;
    }
    
    .blog-cta-button .button-text {
        font-size: 1rem;
    }
    
    .blog-cta-button .button-content i:first-child {
        font-size: 1.1rem;
    }
    
    .blog-cta-button .button-content i:last-child {
        font-size: 1rem;
    }
    
    /* Hide blog decorative particles and rings on mobile */
    .blog-cta-bg-elements,
    .blog-particle,
    .blog-accent-ring {
        display: none !important;
    }
}

