
        :root {
            --cosmic-primary: #0D1B2A;
            --cosmic-secondary: #1B263B;
            --cosmic-accent: #415A77;
            --neon-cyan: #00F5FF;
            --neon-purple: #8A2BE2;
            --neon-gold: #FFD700;
            --warning-yellow: #FFFF00;
            --matrix-green: #00FF41;
            --quantum-blue: #4169E1;
            --success-emerald: #50C878;
            --text-primary: #E0E1DD;
            --text-secondary: #778DA9;
            --overlay-dark: rgba(13, 27, 42, 0.9);
            --grid-opacity: 0.15;
        }

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

        body {
            overflow-x: hidden;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .data-wrapper {
            max-width: 900px;
            margin: 0 auto;
            border: 2px solid var(--cosmic-accent);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 0 30px rgba(0, 245, 255, 0.2);
            margin-top: 40px;
            margin-bottom: 80px;
            position: relative;
            z-index: 5;
        }

        .digital-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: radial-gradient(ellipse at 20% 30%, rgba(13, 27, 42, 0.9) 0%, #0a0f1a 70%), linear-gradient(145deg, #050a15 0%, #0d1b2a 100%);
            overflow: hidden;
        }

        .grid-matrix {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: linear-gradient(rgba(65, 90, 119, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(65, 90, 119, 0.1) 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0.3;
        }

        .circuit-overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle, rgba(0, 245, 255, 0.05) 1px, transparent 1px), radial-gradient(circle, rgba(138, 43, 226, 0.05) 1px, transparent 1px);
            background-size: 60px 60px;
            background-position: 0 0, 30px 30px;
        }

        .particle-system {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .float-particle {
            position: absolute;
            background: rgba(0, 245, 255, 0.4);
            border-radius: 50%;
            filter: blur(1px);
            animation: float 15s infinite linear;
        }

        .float-particle:nth-child(2n) {
            background: rgba(65, 105, 225, 0.3);
            animation-delay: -5s;
        }

        .float-particle:nth-child(3n) {
            background: rgba(138, 43, 226, 0.2);
            animation-delay: -10s;
        }

        @keyframes float {
            0% {
                transform: translate(0, 0) scale(0.8);
                opacity: 0;
            }

            20% {
                opacity: 1;
            }

            80% {
                opacity: 0.8;
            }

            100% {
                transform: translate(100vw, -100vh) scale(1.2);
                opacity: 0;
            }
        }

        .warning-strip {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(90deg, var(--warning-yellow), #FFA500);
            color: #000;
            text-align: center;
            padding: 10px 15px;
            font-weight: 600;
            font-size: 0.85rem;
            z-index: 1001;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            animation: warningPulse 2s ease-in-out infinite;
        }

        @keyframes warningPulse {
            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.8;
            }
        }

        .floating-button-rect {
            position: fixed;
            bottom: 55px;
            left: 50%;
            transform: translateX(-50%);
            width: 380px;
            height: 56px;
            background: linear-gradient(45deg, var(--quantum-blue), var(--neon-purple));
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            text-align: center;
            cursor: pointer;
            box-shadow: 0 6px 20px rgba(65, 105, 225, 0.5);
            z-index: 1000;
            animation: floatPulse 2s ease-in-out infinite;
            transition: all 0.3s ease;
            overflow: hidden;
            border-radius: 10px;
            letter-spacing: 0.5px;
        }

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

        .floating-button-rect:hover {
            transform: translateX(-50%) scale(1.05);
            box-shadow: 0 10px 30px rgba(65, 105, 225, 0.8);
        }

        .floating-button-rect:hover::before {
            left: 100%;
        }

        .floating-button-rect span {
            position: relative;
            z-index: 2;
        }

        @keyframes floatPulse {
            0%,
            100% {
                transform: translateX(-50%) translateY(0);
                box-shadow: 0 6px 20px rgba(65, 105, 225, 0.5);
            }

            50% {
                transform: translateX(-50%) translateY(-8px);
                box-shadow: 0 12px 30px rgba(65, 105, 225, 0.7);
            }
        }

        .cosmic-viewport::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: linear-gradient(90deg, rgba(65, 169, 255, var(--grid-opacity)) 1px, transparent 1px), linear-gradient(rgba(65, 169, 255, var(--grid-opacity)) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridPulse 3s ease-in-out infinite;
            z-index: 1;
        }

        .stock-chart-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(13, 27, 42, 0.9) 0%, rgba(27, 38, 59, 0.7) 100%);
            z-index: 2;
        }

        .stock-chart-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: 50px 50px;
            background-image: linear-gradient(to right, rgba(65, 105, 225, 0.1) 1px, transparent 1px), linear-gradient(to bottom, rgba(65, 105, 225, 0.1) 1px, transparent 1px);
            z-index: 3;
        }

        .live-chart-anim {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40%;
            z-index: 4;
            overflow: hidden;
        }

        .chart-line-path {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            stroke: var(--matrix-green);
            stroke-width: 3;
            fill: none;
            filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.5));
        }

        .chart-candles-container {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: flex-end;
            justify-content: space-around;
            padding: 0 5%;
        }

        .candle-stick {
            width: 6px;
            background: linear-gradient(to top, var(--success-emerald), var(--matrix-green));
            border-radius: 2px;
            position: relative;
            box-shadow: 0 0 6px rgba(0, 255, 65, 0.3);
        }

        .candle-stick::before,
        .candle-stick::after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            background: var(--neon-gold);
        }

        .candle-stick::before {
            top: -8px;
            height: 8px;
        }

        .candle-stick::after {
            bottom: -8px;
            height: 12px;
        }

        .neural-viewport {
            position: relative;
            z-index: 10;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 1rem 1rem;
        }

        .avatar-module {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--neon-cyan), var(--neon-purple));
            padding: 3px;
            margin-bottom: 1.2rem;
            animation: avatarGlow 2s ease-in-out infinite alternate;
        }

        .avatar-frame {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background-image: url('23230﹖G5hP8jK3nB9vR2tM6qS1wX7zY4lU0o.D9e﹖znbh514vm0ld4paudx8npffkszj.a6r﹖um6my75gjmuxoaom6uq31whc2kq.z9n.gif');
            background-size: cover;
            background-position: center;
            border: 2px solid var(--cosmic-primary);
        }

        .title-block {
            text-align: center;
            max-width: 800px;
            padding: 0 15px;
        }

        .main-headline {
            font-size: clamp(2.2rem, 7vw, 3.5rem);
            font-weight: 900;
            background: linear-gradient(45deg, var(--neon-cyan), var(--neon-gold), var(--neon-purple));
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: titleShimmer 3s ease-in-out infinite;
            line-height: 1.0;
            margin-bottom: 0.6rem;
        }

        .secondary-subtitle {
            font-size: clamp(1.1rem, 3vw, 1.6rem);
            color: var(--matrix-green);
            font-weight: 600;
            margin-bottom: 0.8rem;
            text-shadow: 0 0 8px rgba(0, 255, 65, 0.5);
        }

        .description-text {
            font-size: clamp(0.9rem, 2.8vw, 1.1rem);
            color: var(--text-primary);
            line-height: 1.5;
            opacity: 0.9;
            margin-bottom: 0.8rem;
            max-width: 550px;
            margin-left: auto;
            margin-right: auto;
        }

        .input-assembly {
            width: 100%;
            max-width: 480px;
            margin-bottom: 1.5rem;
            padding: 0 15px;
        }

        .input-field {
            width: 100%;
            padding: 1rem 1.2rem;
            font-size: 1rem;
            background: rgba(27, 38, 59, 0.8);
            border: 2px solid var(--cosmic-accent);
            border-radius: 10px;
            color: var(--text-primary);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            margin-bottom: 0.5rem;
        }

        .input-field::placeholder {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        .input-field:focus {
            outline: none;
            border-color: var(--neon-cyan);
            box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
            transform: translateY(-2px);
        }

        .action-button {
            width: 100%;
            padding: 1.1rem 1.8rem;
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            background: linear-gradient(45deg, var(--quantum-blue), var(--neon-purple));
            color: white;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(65, 105, 225, 0.3);
        }

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

        .action-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(65, 105, 225, 0.5);
        }

        .action-button:hover::before {
            left: 100%;
        }

        .action-button:active {
            transform: translateY(-1px);
        }

        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            backdrop-filter: blur(5px);
        }

        .progress-modal-container {
            background: var(--cosmic-secondary);
            padding: 2.5rem 1.8rem;
            border-radius: 14px;
            text-align: center;
            border: 1px solid var(--cosmic-accent);
            max-width: 380px;
            width: 90%;
        }

        .progress-text {
            color: var(--text-primary);
            font-size: 1rem;
            margin-bottom: 1.2rem;
        }

        .progress-bar-track {
            width: 100%;
            height: 6px;
            background: var(--cosmic-primary);
            border-radius: 3px;
            overflow: hidden;
            margin-bottom: 0.8rem;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--neon-cyan), var(--matrix-green));
            width: 0%;
            border-radius: 3px;
            transition: width 0.1s ease;
        }

        .analysis-stage-label {
            color: var(--text-secondary);
            font-size: 0.85rem;
            font-style: italic;
        }

        .completion-modal {
            background: var(--cosmic-secondary);
            padding: 2.5rem 1.8rem;
            border-radius: 14px;
            text-align: center;
            border: 1px solid var(--success-emerald);
            max-width: 420px;
            width: 90%;
        }

        .completion-message {
            color: var(--success-emerald);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
        }

        .completion-note {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            line-height: 1.4;
        }

        .whatsapp-button {
            background: linear-gradient(45deg, #25D366, #128C7E);
            color: white;
            padding: 0.9rem 1.8rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
            margin-bottom: 1.8rem;
        }

        .whatsapp-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 7px 20px rgba(37, 211, 102, 0.5);
        }

        .kline-chart-frame {
            width: 100%;
            height: 180px;
            background: rgba(27, 38, 59, 0.8);
            border-radius: 10px;
            padding: 0.8rem;
            margin-top: 0.8rem;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--cosmic-accent);
        }

        .kline-title-text {
            color: var(--neon-cyan);
            text-align: center;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            font-weight: 600;
        }

        .kline-chart-area {
            width: 100%;
            height: 130px;
            position: relative;
            display: flex;
            align-items: flex-end;
            justify-content: space-around;
            padding: 0 8px;
        }

        .candle-group {
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 100%;
        }

        .candle-bar {
            width: 10px;
            position: relative;
            background: linear-gradient(to bottom, #ff4d4d, #ff4d4d 50%, #00FF41 50%, #00FF41);
            border-radius: 2px;
            z-index: 2;
        }

        .candle-bar::before,
        .candle-bar::after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            background: var(--neon-gold);
            z-index: 1;
        }

        .candle-bar::before {
            top: -12px;
        }

        .candle-bar::after {
            bottom: -12px;
        }

        .candle-label {
            font-size: 0.75rem;
            color: var(--text-secondary);
            margin-top: 4px;
        }

        .trend-arrow {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 25px;
            height: 25px;
            z-index: 3;
            animation: arrowRise 8s linear infinite;
        }

        .trend-arrow svg {
            width: 100%;
            height: 100%;
            fill: var(--matrix-green);
            filter: drop-shadow(0 0 4px rgba(0, 255, 65, 0.8));
        }

        @keyframes arrowRise {
            0% {
                transform: translateY(180px) translateX(0);
            }

            10% {
                transform: translateY(160px) translateX(40px);
            }

            20% {
                transform: translateY(140px) translateX(80px);
            }

            30% {
                transform: translateY(120px) translateX(120px);
            }

            40% {
                transform: translateY(100px) translateX(160px);
            }

            50% {
                transform: translateY(80px) translateX(200px);
            }

            60% {
                transform: translateY(60px) translateX(240px);
            }

            70% {
                transform: translateY(40px) translateX(280px);
            }

            80% {
                transform: translateY(20px) translateX(320px);
            }

            90% {
                transform: translateY(0) translateX(360px);
            }

            100% {
                transform: translateY(-20px) translateX(400px);
            }
        }

        @keyframes candleRise {
            0% {
                height: 0;
                opacity: 0;
            }

            100% {
                height: var(--candle-height);
                opacity: 1;
            }
        }

        .candle-bar {
            animation: candleRise 1.5s ease-out forwards;
            animation-delay: calc(var(--candle-delay) * 0.2s);
        }

        .disclosure-section {
            margin-top: 0.5rem;
            max-width: 800px;
            text-align: left;
            background: rgba(27, 38, 59, 0.6);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid var(--cosmic-accent);
        }

        .warning-title {
            color: var(--warning-yellow);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
        }

        .disclosure-list {
            color: var(--text-primary);
            font-size: 0.9rem;
            line-height: 1.2;
        }

        .disclosure-list li {
            margin-bottom: 0.7rem;
            list-style: none;
            position: relative;
            padding-left: 1.3rem;
        }

        .disclosure-list li::before {
            content: '•';
            color: var(--neon-cyan);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .legal-footer {
            margin-top: 1.2rem;
            text-align: center;
        }

        .footer-link {
            color: var(--neon-cyan);
            text-decoration: none;
            margin: 0 0.8rem;
            font-size: 0.85rem;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: var(--neon-gold);
            text-decoration: underline;
        }

        @keyframes gridPulse {
            0%,
            100% {
                opacity: 0.15;
            }

            50% {
                opacity: 0.25;
            }
        }

        @keyframes avatarGlow {
            0% {
                box-shadow: 0 0 15px rgba(0, 245, 255, 0.5);
            }

            100% {
                box-shadow: 0 0 35px rgba(138, 43, 226, 0.8);
            }
        }

        @keyframes titleShimmer {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        .image-section {
            width: 100%;
            max-width: 800px;
        }

        .image-frame {
            background: rgba(27, 38, 59, 0.7);
            border-radius: 14px;
            border: 1px solid var(--cosmic-accent);
            text-align: center;
            position: relative;
            overflow: hidden;
            width: 380px;
            height: 212px;
            margin: 0 auto;
            padding: 0;
        }

        .dynamic-image {
            width: 100%;
            height: 100%;
            border-radius: 10px;
            object-fit: cover;
            display: block;
        }

        .performance-section {
            width: 100%;
            max-width: 800px;
            margin: 2rem auto;
        }

        .metrics-title {
            color: var(--neon-cyan);
            font-size: 1.6rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1.2rem;
            text-shadow: 0 0 12px rgba(0, 245, 255, 0.8);
            letter-spacing: 0.8px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.2rem;
        }

        .stat-card {
            background: var(--cosmic-secondary);
            border-radius: 14px;
            padding: 1.2rem;
            text-align: center;
            border: 1px solid var(--cosmic-accent);
            transition: all 0.3s ease;
            position: relative;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(138, 43, 226, 0.1), transparent);
            border-radius: 14px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 35px rgba(138, 43, 226, 0.3);
        }

        .stat-card:hover::before {
            opacity: 1;
        }

        .stat-icon {
            font-size: 2.2rem;
            margin-bottom: 0.6rem;
            display: block;
        }

        .stat-value {
            font-size: 2rem;
            font-weight: 800;
            color: var(--neon-gold);
            margin-bottom: 0.2rem;
            text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
        }

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

        .testimonials-section {
            width: 100%;
            max-width: 800px;
        }

        .testimonials-title {
            color: var(--success-emerald);
            font-size: 1.4rem;
            font-weight: 700;
            text-align: center;
            text-shadow: 0 0 8px rgba(80, 200, 120, 0.5);
        }

        .testimonials-slider {
            background: rgba(27, 38, 59, 0.6);
            border-radius: 14px;
            padding: 1.2rem;
            border: 1px solid var(--cosmic-accent);
            height: 140px;
            position: relative;
            overflow: hidden;
        }

        .testimonial-track {
            height: 100%;
            position: relative;
            width: 100%;
        }

        .testimonial-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            gap: 1.2rem;
            padding: 0.8rem;
            transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
            opacity: 1;
        }

        .testimonial-item.active {
            transform: translateY(0);
            opacity: 1;
            z-index: 2;
        }

        .testimonial-item.next {
            transform: translateY(100%);
            opacity: 0;
            z-index: 1;
        }

        .testimonial-item.prev {
            transform: translateY(-100%);
            opacity: 0;
            z-index: 1;
        }

        .item-date {
            flex-shrink: 0;
            width: 70px;
            font-size: 0.85rem;
            color: var(--neon-cyan);
            font-weight: 600;
            padding-top: 0.1rem;
        }

        .item-content {
            flex: 1;
        }

        .username {
            color: var(--neon-gold);
            font-weight: 600;
            font-size: 0.95rem;
        }

        .stock-ticker {
            color: var(--matrix-green);
            font-weight: 700;
            background: rgba(0, 255, 65, 0.1);
            padding: 0.2rem 0.4rem;
            border-radius: 3px;
            font-size: 0.9rem;
        }

        .analysis-summary {
            color: var(--text-primary);
            font-weight: 500;
        }

        .feedback-text {
            color: var(--text-primary);
            font-style: italic;
            margin-top: 0.4rem;
            line-height: 1.4;
            font-size: 0.95rem;
            opacity: 0.9;
        }

        .stock-logos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
            gap: 1rem;
            width: 100%;
            max-width: 800px;
        }

        .stock-logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0.8rem;
            background: rgba(27, 38, 59, 0.5);
            border-radius: 10px;
            border: 1px solid var(--cosmic-accent);
            transition: all 0.3s ease;
        }

        .stock-logo:hover {
            transform: translateY(-4px);
            background: rgba(65, 90, 119, 0.3);
            box-shadow: 0 4px 12px rgba(0, 245, 255, 0.3);
        }

        .logo-symbol {
            font-size: 1.6rem;
            margin-bottom: 0.4rem;
            color: var(--neon-cyan);
        }

        .logo-name {
            font-size: 0.85rem;
            color: var(--text-primary);
            text-align: center;
        }

        .logo-price {
            font-size: 1rem;
            font-weight: 700;
            color: var(--neon-gold);
            margin-top: 0.4rem;
        }

        .price-delta {
            font-size: 0.8rem;
            font-weight: 600;
            margin-top: 0.2rem;
        }

        .price-delta.positive {
            color: var(--matrix-green);
        }

        .price-delta.negative {
            color: #ff4d4d;
        }

        .testimonial-chart {
            width: 100%;
            height: 150px;
            margin-top: 0.5rem;
            background: rgba(27, 38, 59, 0.8);
            border-radius: 10px;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--cosmic-accent);
        }

        .bar-chart-grid {
            width: 100%;
            height: 100%;
            padding: 8px;
            position: relative;
            display: flex;
            align-items: flex-end;
            justify-content: space-around;
        }

        .bar-col {
            width: 12px;
            background: linear-gradient(to top, #00FF41, #00c93c);
            border-radius: 3px 3px 0 0;
            position: relative;
            box-shadow: 0 0 6px rgba(0, 255, 65, 0.3);
            animation: barRise 1.5s ease-out forwards;
            animation-delay: calc(var(--bar-delay) * 0.2s);
        }

        .bar-col::before {
            content: '';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 12px;
            background: var(--neon-gold);
            z-index: 1;
        }

        @keyframes barRise {
            0% {
                height: 0;
                opacity: 0;
            }

            100% {
                height: var(--bar-height);
                opacity: 1;
            }
        }

        .bar-col:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 12px rgba(0, 255, 65, 0.6);
        }

        @media (max-width: 768px) {
            .data-wrapper {
                border: none;
                border-radius: 0;
                box-shadow: none;
                margin-bottom: 0;
                background: transparent;
            }

            .neural-viewport {
                padding: 0.8rem 0.5rem;
            }

            .avatar-module {
                width: 110px;
                height: 110px;
                margin-bottom: 1rem;
            }

            .image-frame {
                width: 100%;
                height: auto;
                max-width: 380px;
                aspect-ratio: 380/212;
            }

            .disclosure-section {
                padding: 1.2rem;
            }

            .performance-section {
                margin: 1rem 0;
            }

            .metrics-title {
                font-size: 1.3rem;
                margin-bottom: 0.8rem;
            }

            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 0.4rem;
            }

            .stat-card {
                padding: 0.7rem 0.4rem;
            }

            .stat-icon {
                font-size: 1.3rem;
                margin-bottom: 0.2rem;
            }

            .stat-value {
                font-size: 1.1rem;
                margin-bottom: 0.1rem;
            }

            .stat-label {
                font-size: 0.65rem;
            }

            .testimonials-slider {
                height: 150px;
                padding: 1rem;
            }

            .testimonial-item {
                flex-direction: column;
                gap: 0.4rem;
                padding: 0.7rem;
                height: 100%;
                align-items: flex-start;
                justify-content: flex-start;
            }

            .item-date {
                width: auto;
                flex-shrink: 0;
                font-size: 0.8rem;
            }

            .item-content {
                flex: 1;
                min-height: 0;
            }

            .feedback-text {
                font-size: 0.85rem;
                margin-top: 0.2rem;
                line-height: 1.35;
            }

            .stock-logos-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 0.7rem;
            }

            .kline-chart-frame {
                height: 160px;
            }

            .kline-chart-area {
                height: 120px;
            }

            .testimonial-chart {
                height: 130px;
            }

            .floating-button-rect {
                width: 90%;
                max-width: 320px;
                height: 52px;
                font-size: 0.95rem;
            }
        }