* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --neo-cosmic-primary: #0a0f1c;
            --stellar-accent-blue: #00d4ff;
            --quantum-purple: #6c5ce7;
            --aurora-green: #00ff88;
            --solar-orange: #ff6b35;
            --cosmic-white: #ffffff;
            --nebula-gray: #2d3436;
            --galaxy-dark: #1e1e2e;
            --warning-yellow: #ffd700;
            --danger-red: #ff4757;
            --whatsapp-green: #25d366;
            --whatsapp-light-green: #dcf8c6;
        }

        .interstellar-application-framework {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: var(--neo-cosmic-primary);
            color: var(--cosmic-white);
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        .cosmic-grid-background-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(0, 212, 255, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: -2;
            animation: grid-pulse-animation 4s ease-in-out infinite;
        }

        @keyframes grid-pulse-animation {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.6; }
        }

        .stellar-particles-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: radial-gradient(ellipse at top, rgba(108, 92, 231, 0.15) 0%, transparent 70%),
                        radial-gradient(ellipse at bottom, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
        }

        .stellar-particles-container::before {
            content: '';
            position: absolute;
            top: 20%;
            left: 10%;
            width: 3px;
            height: 3px;
            background: var(--stellar-accent-blue);
            border-radius: 50%;
            box-shadow: 
                200px 100px var(--aurora-green),
                400px 200px var(--quantum-purple),
                600px 50px var(--solar-orange),
                800px 300px var(--stellar-accent-blue);
            animation: stellar-twinkle-effect 3s infinite;
        }

        @keyframes stellar-twinkle-effect {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.2); }
        }

        .primary-navigation-header-zone {
            padding: 40px 20px 60px;
            text-align: center;
            position: relative;
        }

        .revolutionary-title-main-heading {
            font-size: 3.2rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--stellar-accent-blue), var(--quantum-purple), var(--aurora-green));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 30px;
            text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
            animation: title-glow-pulsation 3s ease-in-out infinite;
        }

        @keyframes title-glow-pulsation {
            0%, 100% { filter: brightness(1); }
            50% { filter: brightness(1.2); }
        }

        .expert-profile-image-circular-frame {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 3px solid var(--stellar-accent-blue);
            object-fit: cover;
            margin: 20px auto;
            display: block;
            box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
            animation: profile-rotation-effect 8s linear infinite;
        }

        @keyframes profile-rotation-effect {
            0% { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(180deg) scale(1.05); }
            100% { transform: rotate(360deg) scale(1); }
        }

        .main-content-interaction-workspace {
            max-width: 800px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .ai-analysis-description-paragraph {
            font-size: 1.3rem;
            text-align: center;
            margin-bottom: 40px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
        }

        .user-statistics-highlight-span {
            color: var(--aurora-green);
            font-weight: 700;
            text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
        }

        .stock-input-analysis-container {
            background: linear-gradient(135deg, rgba(45, 52, 54, 0.8), rgba(30, 30, 46, 0.9));
            padding: 40px;
            border-radius: 20px;
            border: 2px solid rgba(0, 212, 255, 0.3);
            margin-bottom: 50px;
            backdrop-filter: blur(10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .stock-symbol-input-field {
            width: 100%;
            padding: 18px 25px;
            font-size: 1.2rem;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(0, 212, 255, 0.5);
            border-radius: 12px;
            color: var(--cosmic-white);
            margin-bottom: 25px;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .stock-symbol-input-field::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .stock-symbol-input-field:focus {
            outline: none;
            border-color: var(--stellar-accent-blue);
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
            transform: translateY(-2px);
        }

        .ai-analysis-trigger-button {
            width: 100%;
            padding: 20px;
            font-size: 1.4rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--solar-orange), var(--danger-red));
            color: var(--cosmic-white);
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .ai-analysis-trigger-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;
        }

        .ai-analysis-trigger-button:hover::before {
            left: 100%;
        }

        .ai-analysis-trigger-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
        }

        .ai-capabilities-showcase-section {
            margin: 60px 0;
        }

        .capabilities-section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 40px;
            color: var(--stellar-accent-blue);
            font-weight: 700;
        }

        .statistics-grid-layout-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }

        .individual-statistic-card-element {
            background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(0, 212, 255, 0.1));
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid rgba(0, 212, 255, 0.3);
            transition: transform 0.3s ease;
        }

        .individual-statistic-card-element:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
        }

        .statistic-value-large-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--aurora-green);
            margin-bottom: 10px;
        }

        .feature-cards-grid-layout {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .advanced-feature-card-component {
            background: linear-gradient(135deg, rgba(30, 30, 46, 0.8), rgba(45, 52, 54, 0.6));
            padding: 35px;
            border-radius: 18px;
            border: 2px solid rgba(108, 92, 231, 0.4);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .advanced-feature-card-component::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--quantum-purple), var(--stellar-accent-blue), var(--aurora-green));
        }

        .advanced-feature-card-component:hover {
            transform: translateY(-8px);
            border-color: var(--stellar-accent-blue);
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.25);
        }

        .feature-title-heading-text {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--stellar-accent-blue);
            margin-bottom: 15px;
        }

        .feature-description-paragraph-content {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        .modal-overlay-background-layer {
            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-wrapper {
            background: linear-gradient(135deg, var(--galaxy-dark), var(--nebula-gray));
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            border: 2px solid var(--stellar-accent-blue);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            position: relative;
            max-width: 400px;
            width: 90%;
        }

        .modal-close-button-element {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            color: var(--cosmic-white);
            font-size: 1.5rem;
            cursor: pointer;
        }

        .circular-progress-indicator-svg {
            width: 120px;
            height: 120px;
            margin: 20px auto;
        }

        .progress-circle-background-path {
            fill: none;
            stroke: rgba(0, 212, 255, 0.2);
            stroke-width: 8;
        }

        .progress-circle-foreground-path {
            fill: none;
            stroke: var(--stellar-accent-blue);
            stroke-width: 8;
            stroke-linecap: round;
            transform-origin: center;
            transform: rotate(-90deg);
            transition: stroke-dashoffset 0.5s ease;
        }

        .progress-percentage-text-display {
            font-size: 1.2rem;
            font-weight: 700;
            margin: 20px 0;
            color: var(--aurora-green);
        }

        .ai-processing-status-message {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
        }

        .report-completion-modal-container {
            background: linear-gradient(135deg, var(--galaxy-dark), var(--nebula-gray));
            padding: 50px 40px;
            border-radius: 20px;
            text-align: center;
            border: 2px solid var(--aurora-green);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            position: relative;
            max-width: 500px;
            width: 90%;
        }

        .report-completion-title-heading {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--aurora-green);
            margin-bottom: 25px;
        }

        .report-description-text-content {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .whatsapp-redirect-action-button {
            background: linear-gradient(135deg, var(--aurora-green), #00e676);
            color: var(--neo-cosmic-primary);
            padding: 18px 40px;
            font-size: 1.2rem;
            font-weight: 700;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .whatsapp-redirect-action-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(0, 255, 136, 0.4);
        }

        .whatsapp-confirmation-modal-container {
            background: linear-gradient(135deg, var(--cosmic-white), var(--whatsapp-light-green));
            padding: 50px 40px;
            border-radius: 20px;
            text-align: center;
            border: 3px solid var(--whatsapp-green);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            position: relative;
            max-width: 500px;
            width: 90%;
            color: #333;
        }

        .whatsapp-icon-display {
            font-size: 4rem;
            color: var(--whatsapp-green);
            margin-bottom: 20px;
            animation: whatsapp-bounce 2s ease-in-out infinite;
        }

        @keyframes whatsapp-bounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .whatsapp-modal-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--whatsapp-green);
            margin-bottom: 25px;
        }

        .whatsapp-modal-description {
            font-size: 1.1rem;
            color: #333;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .whatsapp-feature-list {
            margin: 20px 0;
            text-align: left;
        }

        .whatsapp-feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            color: #333;
        }

        .whatsapp-feature-item::before {
            content: '✓';
            color: var(--whatsapp-green);
            font-weight: bold;
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .whatsapp-confirm-button {
            background: linear-gradient(135deg, var(--whatsapp-green), #128c7e);
            color: white;
            padding: 18px 40px;
            font-size: 1.2rem;
            font-weight: 700;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-right: 15px;
        }

        .whatsapp-confirm-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
        }

        .whatsapp-cancel-button {
            background: #ccc;
            color: #333;
            padding: 18px 40px;
            font-size: 1.2rem;
            font-weight: 700;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .whatsapp-cancel-button:hover {
            background: #999;
            transform: translateY(-3px);
        }

        .legal-compliance-footer-section {
            background: var(--galaxy-dark);
            padding: 50px 20px 30px;
            margin-top: 80px;
            border-top: 2px solid rgba(0, 212, 255, 0.3);
        }

        .risk-disclosure-warning-container {
            background: rgba(255, 215, 0, 0.1);
            border: 2px solid var(--warning-yellow);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .warning-title-yellow-highlighted {
            color: var(--warning-yellow);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        .risk-disclosure-bullet-point {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
        }

        .risk-disclosure-bullet-point::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--warning-yellow);
            font-weight: bold;
        }

        .footer-legal-links-navigation {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .footer-legal-link-anchor {
            color: var(--stellar-accent-blue);
            text-decoration: none;
            margin: 0 25px;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .footer-legal-link-anchor:hover {
            color: var(--aurora-green);
        }

        @media (max-width: 768px) {
            .revolutionary-title-main-heading {
                font-size: 2.4rem;
            }
            
            .statistics-grid-layout-container,
            .feature-cards-grid-layout {
                grid-template-columns: 1fr;
            }
            
            .stock-input-analysis-container {
                padding: 25px;
            }

            .whatsapp-confirm-button,
            .whatsapp-cancel-button {
                width: 100%;
                margin-bottom: 10px;
            }
        }