    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #000000, #1a0000, #330000);
            color: #fff;
            line-height: 1.6;
            min-height: 100vh;
            padding: 5px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .stock-analysis-app {
            width: 100%;
            max-width: 720px;
            margin: 0 auto;
            background: rgba(20, 0, 0, 0.9);
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
            overflow: hidden;
            position: relative;
            border: 0px solid #ff3333;
        }
        
        .app-header-section {
            padding: 30px 20px;
            text-align: center;
            background: linear-gradient(120deg, #000000, #330000);
            color: #fff;
            position: relative;
            border-bottom: 0px solid #ff3333;
        }
        
        .app-logo-container {
            width: 80px;
            height: 80px;
            margin: 0 auto 15px;
            background: linear-gradient(135deg, #ff3333, #990000);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
            animation: pulse 2s infinite;
        }
        
        .app-logo-container i {
            font-size: 36px;
            color: #fff;
        }
        
        .app-main-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: 1px;
            color: #ff3333;
        }
        
        .app-subtitle-text {
            font-size: 16px;
            opacity: 0.9;
            max-width: 500px;
            margin: 0 auto;
            color: #ff9999;
        }
        
        .app-content-section {
            padding: 30px 25px;
        }
        
        .progress-tracker {
            margin-bottom: 30px;
        }
        
        .progress-bar-container {
            height: 8px;
            background: #330000;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 10px;
            border: 1px solid #660000;
        }
        
        .progress-indicator {
            height: 100%;
            background: linear-gradient(90deg, #ff3333, #cc0000);
            border-radius: 10px;
            transition: width 0.5s ease;
            width: 33%;
        }
        
        .progress-status {
            text-align: center;
            font-size: 14px;
            color: #ff6666;
            font-weight: 500;
        }
        
        .question-container {
            display: none;
        }
        
        .question-container.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        .question-heading {
            font-size: 22px;
            margin-bottom: 25px;
            color: #ff3333;
            text-align: center;
            font-weight: 600;
        }
        
        .options-container {
            list-style: none;
        }
        
        .option-element {
            margin-bottom: 15px;
        }
        
        .option-radio {
            display: none;
        }
        
        .option-label {
            display: flex;
            align-items: center;
            padding: 15px 20px;
            background: #1a0000;
            border: 2px solid #330000;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #fff;
        }
        
        .option-label:hover {
            background: #330000;
            border-color: #660000;
        }
        
        .option-radio:checked + .option-label {
            background: rgba(255, 51, 51, 0.1);
            border-color: #ff3333;
            color: #ff6666;
            font-weight: 500;
        }
        
        .radio-indicator {
            width: 20px;
            height: 20px;
            border: 2px solid #660000;
            border-radius: 50%;
            margin-right: 15px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .option-radio:checked + .option-label .radio-indicator {
            border-color: #ff3333;
            background: #ff3333;
        }
        
        .option-radio:checked + .option-label .radio-indicator::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 8px;
            height: 8px;
            background: #fff;
            border-radius: 50%;
        }
        
        .results-section {
            display: none;
            text-align: center;
            padding: 20px;
        }
        
        .results-section.active {
            display: block;
            animation: fadeIn 0.8s ease;
        }
        
        .results-heading {
            font-size: 26px;
            color: #ff3333;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .results-description {
            font-size: 16px;
            margin-bottom: 25px;
            line-height: 1.7;
            color: #ff9999;
        }
        
        .thank-you-container {
            background: linear-gradient(120deg, #000000, #330000);
            color: white;
            padding: 30px;
            border-radius: 12px;
            margin: 20px 0;
            box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
            border: 1px solid #ff3333;
        }
        
        .thank-you-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #ff3333;
        }
        
        .thank-you-subtitle {
            font-size: 18px;
            margin-bottom: 20px;
            opacity: 0.9;
            color: #ff9999;
        }
        
        .contact-details {
            background: rgba(255, 51, 51, 0.1);
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
            border: 1px solid #660000;
        }
        
        .contact-title {
            font-size: 20px;
            margin-bottom: 15px;
            font-weight: 600;
            color: #ff6666;
        }
        
        .contact-options {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
        }
        
        .contact-option {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 15px;
            background: rgba(255, 51, 51, 0.2);
            border-radius: 8px;
            transition: all 0.3s ease;
            color: #ff9999;
            text-decoration: none;
        }
        
        .contact-option:hover {
            background: rgba(255, 51, 51, 0.3);
            transform: translateY(-3px);
            color: #fff;
        }
        
        .contact-option i {
            font-size: 20px;
        }
        
        .app-footer-section {
            padding: 20px;
            background: #1a0000;
            border-top: 1px solid #330000;
        }
        
        .disclaimer-heading {
            font-size: 16px;
            font-weight: 600;
            color: #ff3333;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .disclaimer-content {
            font-size: 13px;
            color: #ff9999;
            line-height: 1.5;
            margin-bottom: 20px;
        }
        
        .disclaimer-content ul {
            padding-left: 20px;
            margin-bottom: 15px;
        }
        
        .disclaimer-content li {
            margin-bottom: 8px;
        }
        
        .legal-links-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 15px;
        }
        
        .legal-link {
            color: #ff6666;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        /* .legal-link:hover {
            color: #ff3333;
            text-decoration: underline;
        } */
        
        .contact-links-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
        }
        
        .contact-link {
            /* width: 200px; */
            text-align: center;
            display: flex;
            align-items: center;
            gap: 8px;
            color: #ff6666;
            text-decoration: none;
            font-weight: 500;
            padding: 10px 50px;
            border-radius: 8px;
            background: rgba(255, 51, 51, 0.1);
            transition: all 0.3s ease;
        }
        
        .contact-link:hover {
            background: rgba(255, 51, 51, 0.2);
            transform: translateY(-3px);
            color: #fff;
        }
        
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #ff3333, #cc0000);
            color: white;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 18px;
            text-decoration: none;
            margin-top: 20px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(255, 0, 0, 0.4);
            background: linear-gradient(135deg, #ff4d4d, #e60000);
        }

        .stort {
    position: fixed;
    bottom: 10%;
    right: 2%;
    z-index: 999;
    animation: rotateScale 2s infinite linear;
}

.stort-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
}

@keyframes rotateScale {
0% { transform: scale(1); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
          
}
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @media (max-width: 576px) {
            body {
                padding: 10px;
            }
            
            .app-header-section {
                padding: 20px 15px;
            }
            
            .app-content-section {
                padding: 20px 15px;
            }

                    .stort-img {
        width: 60px !important;
        height: 60px !important;
    }
            
            .question-heading {
                font-size: 20px;
            }
            
            .option-label {
                padding: 12px 15px;
            }
            
            .contact-options {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-links-container {
                flex-direction: column;
                align-items: center;
            }
        }