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

                                :root {
                                    --primary-color: #00ffcc;
                                    --secondary-color: #0099ff;
                                    --bg-dark: #0a0a0f;
                                    --bg-card: rgba(20, 20, 35, 0.8);
                                    --text-primary: #ffffff;
                                    --text-secondary: #a0a0b0;
                                    --border-color: rgba(255, 255, 255, 0.1);
                                }

                                body {
                                    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
                                    background: var(--bg-dark);
                                    color: var(--text-primary);
                                    overflow-x: hidden;
                                    min-height: 100vh;
                                }

                                .video-background {
                                    position: fixed;
                                    top: 0;
                                    left: 0;
                                    width: 100%;
                                    height: 100%;
                                    z-index: -1;
                                }

                                #bgVideo {
                                    width: 100%;
                                    height: 100%;
                                    object-fit: cover;
                                }

                                .video-overlay {
                                    position: absolute;
                                    top: 0;
                                    left: 0;
                                    width: 100%;
                                    height: 100%;
                                    background: linear-gradient(135deg, rgba(10, 10, 15, 0.9) 0%, rgba(10, 10, 15, 0.7) 50%, rgba(10, 10, 15, 0.9) 100%);
                                }

                                .container {
                                    position: relative;
                                    z-index: 1;
                                    max-width: 1200px;
                                    margin: 0 auto;
                                    padding: 0 20px;
                                }

                                .header {
                                    display: flex;
                                    justify-content: space-between;
                                    align-items: center;
                                    padding: 20px 0;
                                    border-bottom: 1px solid var(--border-color);
                                    backdrop-filter: blur(10px);
                                }

                                .logo {
                                    display: flex;
                                    align-items: center;
                                    gap: 12px;
                                    font-size: 1.2rem;
                                    font-weight: 600;
                                    color: var(--primary-color);
                                }

                                .ticker-container {
                                    position: relative;
                                    height: 40px;
                                    overflow: hidden;
                                    flex: 1;
                                    margin-left: 30px;
                                    background: rgba(255, 255, 255, 0.02);
                                    border-radius: 20px;
                                    padding: 0 20px;
                                    display: flex;
                                    align-items: center;
                                }

                                .ticker-line {
                                    position: absolute;
                                    display: flex;
                                    gap: 30px;
                                    white-space: nowrap;
                                    animation: tickerScroll 30s linear infinite;
                                }

                                @keyframes tickerScroll {
                                    0% {
                                        transform: translateX(0);
                                    }

                                    100% {
                                        transform: translateX(-50%);
                                    }
                                }

                                .ticker-line span {
                                    font-size: 0.9rem;
                                    font-weight: 500;
                                    padding: 0 15px;
                                    display: inline-block;
                                }

                                .ticker-line .pos {
                                    color: #00ff88;
                                    text-shadow: 0 0 8px rgba(0, 255, 136, 0.5);
                                }

                                .ticker-line .neg {
                                    color: #ff4d6d;
                                    text-shadow: 0 0 8px rgba(255, 77, 109, 0.5);
                                }

                                .main-content {
                                    padding: 20px 0 20px;
                                }

                                .hero-section {
                                    text-align: center;
                                    margin-bottom: 20px;
                                }

                                .title {
                                    font-size: 3rem;
                                    font-weight: 700;
                                    line-height: 1.2;
                                    margin-bottom: 10px;
                                    animation: fadeInUp 0.8s ease;
                                }

                                .gradient-text {
                                    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
                                    -webkit-background-clip: text;
                                    -webkit-text-fill-color: transparent;
                                    background-clip: text;
                                }

                                .subtitle {
                                    font-size: 1.1rem;
                                    color: var(--text-secondary);
                                    animation: fadeInUp 0.8s ease 0.2s both;
                                    min-height: 1.5em;
                                    display: flex;
                                    align-items: center;
                                    justify-content: center;
                                }

                                #subTitle {
                                    color: var(--primary-color);
                                    text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
                                    font-weight: 500;
                                }

                                #subTitle::after {
                                    content: '|';
                                    animation: blink 1s infinite;
                                    margin-left: 2px;
                                    opacity: 1;
                                }

                                @keyframes blink {

                                    0%,
                                    50% {
                                        opacity: 1;
                                    }

                                    51%,
                                    100% {
                                        opacity: 0;
                                    }
                                }

                                .video-showcase {
                                    width: 100%;
                                    max-width: 600px;
                                    height:auto;
                                    margin: 0 auto 15px;
                                    border-radius: 20px;
                                    overflow: hidden;
                                    border: 2px solid var(--border-color);
                                    background: #000;
                                    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
                                    animation: fadeInUp 0.8s ease 0.3s both;
                                }
                                .video-showcase img{
                                    display:block;
                                }

                                .video-showcase video {
                                    width: 100%;
                                    height: 100%;
                                    object-fit: cover;
                                }

                                .counter-container {
                                    display: flex;
                                    justify-content: center;
                                    margin-bottom: 25px;
                                    animation: fadeInUp 0.8s ease 0.4s both;
                                }

                                .counter-box {
                                    background: linear-gradient(rgba(12, 25, 45, .38), rgba(12, 25, 45, .38)) padding-box, linear-gradient(135deg, rgba(34, 176, 255, .85), rgba(111, 212, 255, .25)) border-box;
                                    border: 1px solid transparent;
                                    border-radius: 25px;
                                    padding: 12px 35px;
                                    font-size: 16px;
                                    color: #e6f6ff;
                                    text-align: center;
                                    white-space: nowrap;
                                    box-shadow: 0 0 20px rgba(34, 176, 255, .35), 0 0 40px rgba(34, 176, 255, .25);
                                    backdrop-filter: blur(10px);
                                    text-shadow: 0 0 8px rgba(34, 176, 255, .55);
                                    overflow: hidden;
                                    position: relative;
                                    display: inline-block;
                                }

                                .counter-box::before {
                                    content: "";
                                    position: absolute;
                                    top: 0;
                                    left: -30%;
                                    width: 60%;
                                    height: 100%;
                                    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent);
                                    transform: skewX(-20deg);
                                    animation: sweep 3.6s linear infinite;
                                    pointer-events: none;
                                }

                                @keyframes sweep {
                                    0% {
                                        left: -60%;
                                        opacity: 0;
                                    }

                                    35% {
                                        opacity: .9;
                                    }

                                    70%,
                                    100% {
                                        left: 100%;
                                        opacity: 0;
                                    }
                                }

                                .counter-box #userCount {
                                    font-weight: 800;
                                    color: #ff4d6d;
                                    position: relative;
                                    padding-right: 20px;
                                    text-shadow: 0 0 6px rgba(255, 77, 109, .95), 0 0 18px rgba(34, 176, 255, .55);
                                }

                                .counter-box #userCount::after {
                                    content: "";
                                    position: absolute;
                                    right: 5px;
                                    top: 50%;
                                    transform: translateY(-50%);
                                    width: 10px;
                                    height: 10px;
                                    border-radius: 50%;
                                    background: #ff4d6d;
                                    box-shadow: 0 0 6px rgba(255, 77, 109, .9), 0 0 12px rgba(34, 176, 255, .5);
                                    animation: pulse 1.8s ease-in-out infinite;
                                }

                                .analysis-card {
                                    background: var(--bg-card);
                                    border-radius: 20px;
                                    padding: 30px;
                                    backdrop-filter: blur(20px);
                                    border: 1px solid var(--border-color);
                                    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
                                    margin: 0 auto 30px;
                                    animation: fadeInUp 0.8s ease 0.5s both;
                                    max-width: 500px;
                                }

                                .card-header {
                                    display: flex;
                                    align-items: center;
                                    justify-content: space-between;
                                    margin-bottom: 25px;
                                }

                                .card-header h2 {
                                    font-size: 1.5rem;
                                    font-weight: 600;
                                }

                                .pulse-indicator {
                                    width: 10px;
                                    height: 10px;
                                    background: var(--primary-color);
                                    border-radius: 50%;
                                    animation: pulse 2s infinite;
                                }

                                .input-group {
                                    display: flex;
                                    flex-direction: column;
                                    gap: 15px;
                                }

                                .stock-input {
                                    padding: 16px 20px;
                                    background: rgba(255, 255, 255, 0.05);
                                    border: 2px solid var(--border-color);
                                    border-radius: 12px;
                                    color: var(--text-primary);
                                    font-size: 1rem;
                                    transition: all 0.3s;
                                }

                                .stock-input:focus {
                                    outline: none;
                                    border-color: var(--primary-color);
                                    background: rgba(255, 255, 255, 0.08);
                                    box-shadow: 0 0 20px rgba(0, 255, 204, 0.2);
                                }

                                .analyze-btn {
                                    padding: 16px 32px;
                                    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
                                    border: none;
                                    border-radius: 12px;
                                    color: var(--bg-dark);
                                    font-size: 1rem;
                                    font-weight: 600;
                                    cursor: pointer;
                                    display: flex;
                                    align-items: center;
                                    justify-content: center;
                                    gap: 10px;
                                    transition: all 0.3s;
                                }

                                .analyze-btn:hover {
                                    transform: translateY(-2px);
                                    box-shadow: 0 10px 30px rgba(0, 255, 204, 0.3);
                                }

                                .analyze-btn:active {
                                    transform: translateY(0);
                                }

                                .btn-icon {
                                    transition: transform 0.3s;
                                }

                                .analyze-btn:hover .btn-icon {
                                    transform: translateX(4px);
                                }

                                .feature-cards {
                                    display: grid;
                                    grid-template-columns: repeat(3, 1fr);
                                    gap: 15px;
                                    margin-bottom: 30px;
                                    max-width: 500px;
                                    margin-left: auto;
                                    margin-right: auto;
                                }

                                .feature-card {
                                    background: rgba(255, 255, 255, 0.03);
                                    border-radius: 12px;
                                    padding: 15px;
                                    text-align: center;
                                    border: 1px solid var(--border-color);
                                    transition: all 0.3s;
                                    cursor: pointer;
                                }

                                .feature-card:hover {
                                    background: rgba(255, 255, 255, 0.06);
                                    border-color: var(--primary-color);
                                    transform: translateY(-5px);
                                }

                                .feature-card-icon {
                                    width: 40px;
                                    height: 40px;
                                    margin: 0 auto 10px;
                                    display: flex;
                                    align-items: center;
                                    justify-content: center;
                                    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
                                    border-radius: 10px;
                                }

                                .feature-card-icon svg {
                                    width: 24px;
                                    height: 24px;
                                    color: var(--bg-dark);
                                }

                                .feature-card-title {
                                    font-size: 0.85rem;
                                    color: var(--text-primary);
                                    font-weight: 500;
                                }

                                /* 修改1: 缩小用户评论窗口 */
                                .testimonials {
                                    margin-top: 0;
                                    margin-bottom: 25px;
                                    padding: 20px;
                                    background: var(--bg-card);
                                    border-radius: 20px;
                                    backdrop-filter: blur(20px);
                                    border: 1px solid var(--border-color);
                                    max-width: 480px;
                                    /* 进一步缩小 */
                                    margin-left: auto;
                                    margin-right: auto;
                                }

                                .testimonials-header {
                                    text-align: center;
                                    margin-bottom: 20px;
                                }

                                .testimonials-header h2 {
                                    font-size: 1.5rem;
                                    margin-bottom: 5px;
                                    color: var(--primary-color);
                                }

                                .testimonial-slider {
                                    position: relative;
                                    height: 160px;
                                    /* 缩小高度 */
                                    overflow: hidden;
                                }

                                .testimonial-item {
                                    position: absolute;
                                    width: 100%;
                                    padding: 15px;
                                    background: rgba(255, 255, 255, 0.03);
                                    border-radius: 12px;
                                    border: 1px solid var(--border-color);
                                    opacity: 0;
                                    transform: translateY(30px);
                                    transition: all 0.8s ease;
                                }

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

                                .testimonial-header {
                                    display: flex;
                                    align-items: center;
                                    gap: 10px;
                                    margin-bottom: 10px;
                                }

                                .testimonial-avatar {
                                    width: 40px;
                                    height: 40px;
                                    border-radius: 50%;
                                    object-fit: cover;
                                    border: 2px solid var(--primary-color);
                                }

                                .testimonial-info {
                                    flex: 1;
                                }

                                .testimonial-name {
                                    font-size: 0.95rem;
                                    font-weight: 600;
                                    margin-bottom: 2px;
                                }

                                .testimonial-role {
                                    color: var(--text-secondary);
                                    font-size: 0.75rem;
                                }

                                .testimonial-content {
                                    font-size: 0.85rem;
                                    line-height: 1.4;
                                    color: var(--text-primary);
                                    font-style: italic;
                                }

                                .testimonial-dots {
                                    display: flex;
                                    justify-content: center;
                                    gap: 8px;
                                    margin-top: 12px;
                                }

                                .dot {
                                    width: 10px;
                                    height: 10px;
                                    border-radius: 50%;
                                    background: rgba(255, 255, 255, 0.3);
                                    cursor: pointer;
                                    transition: background 0.3s;
                                }

                                .dot.active {
                                    background: var(--primary-color);
                                }

                                .stock-waterfall {
                                    position: relative;
                                    width: 100%;
                                    height: 260px;
                                    overflow: hidden;
                                    background: transparent;
                                    margin-top: 40px;
                                    margin-bottom: 20px;
                                }

                                .stock-item {
                                    position: absolute;
                                    font-family: "Noto Sans JP", sans-serif;
                                    font-weight: 600;
                                    white-space: nowrap;
                                    opacity: 0.85;
                                    animation: stockFall linear infinite;
                                    text-shadow: 0 0 8px rgba(255, 255, 255, 0.25);
                                }

                                @keyframes stockFall {
                                    0% {
                                        transform: translateY(-60px);
                                        opacity: 0;
                                    }

                                    10% {
                                        opacity: 1;
                                    }

                                    100% {
                                        transform: translateY(320px);
                                        opacity: 0;
                                    }
                                }

                                .loading-overlay {
                                    display: none;
                                    position: fixed;
                                    top: 0;
                                    left: 0;
                                    width: 100%;
                                    height: 100%;
                                    background: rgba(10, 10, 15, 0.95);
                                    z-index: 1000;
                                    justify-content: center;
                                    align-items: center;
                                }

                                .loading-overlay.active {
                                    display: flex;
                                }

                                .loading-content {
                                    text-align: center;
                                    max-width: 400px;
                                }

                                .ai-brain {
                                    width: 120px;
                                    height: 120px;
                                    margin: 0 auto 30px;
                                    position: relative;
                                }

                                .brain-pulse {
                                    position: absolute;
                                    width: 100%;
                                    height: 100%;
                                    border: 2px solid var(--primary-color);
                                    border-radius: 50%;
                                    animation: brainPulse 2s infinite;
                                }

                                .brain-pulse:nth-child(2) {
                                    animation-delay: 0.5s;
                                }

                                .brain-pulse:nth-child(3) {
                                    animation-delay: 1s;
                                }

                                .loading-content h3 {
                                    font-size: 1.5rem;
                                    margin-bottom: 10px;
                                    color: var(--primary-color);
                                }

                                .loading-content p {
                                    color: var(--text-secondary);
                                    margin-bottom: 30px;
                                }

                                .loading-bar {
                                    height: 4px;
                                    background: rgba(255, 255, 255, 0.1);
                                    border-radius: 2px;
                                    overflow: hidden;
                                }

                                .loading-progress {
                                    height: 100%;
                                    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
                                    width: 0;
                                    animation: loadingProgress 3s ease-in-out;
                                }

                                .modal {
                                    display: none;
                                    position: fixed;
                                    top: 0;
                                    left: 0;
                                    width: 100%;
                                    height: 100%;
                                    background: rgba(10, 10, 15, 0.95);
                                    z-index: 2000;
                                    overflow-y: auto;
                                }

                                .modal.active {
                                    display: flex;
                                    justify-content: center;
                                    align-items: center;
                                }

                                .modal-content {
                                    background: var(--bg-card);
                                    border-radius: 20px;
                                    padding: 10px;
                                    max-width: 800px;
                                    width: 100%;
                                    max-height: 90vh;
                                    overflow-y: auto;
                                    position: relative;
                                    border: 1px solid var(--border-color);
                                    animation: modalFadeIn 0.3s ease;
                                }

                                .close-btn {
                                    position: absolute;
                                    top: 20px;
                                    right: 20px;
                                    background: none;
                                    border: none;
                                    color: var(--text-secondary);
                                    font-size: 2rem;
                                    cursor: pointer;
                                    transition: color 0.3s;
                                }

                                .close-btn:hover {
                                    color: var(--text-primary);
                                }

                                .modal-header {
                                    text-align: center;
                                    margin-bottom: 30px;
                                    padding-bottom: 20px;
                                    border-bottom: 1px solid var(--border-color);
                                }

                                .modal-header h2 {
                                    font-size: 2rem;
                                    margin-bottom: 10px;
                                    color: var(--primary-color);
                                }

                                .modal-header p {
                                    font-size: 1.1rem;
                                    color: var(--text-secondary);
                                }

                                .line-message {
                                    background: linear-gradient(135deg, rgba(0, 255, 204, 0.1), rgba(0, 153, 255, 0.1));
                                    border-radius: 15px;
                                    padding: 25px;
                                    text-align: center;
                                    border: 1px solid var(--primary-color);
                                }

                                .line-message h3 {
                                    font-size: 1.3rem;
                                    margin-bottom: 15px;
                                    color: var(--primary-color);
                                }

                                .line-message p {
                                    color: var(--text-primary);
                                    font-size: 14px;
                                    line-height: 1.6;
                                }

                                /* 修改3: LINE按钮文字一行显示 */
                                .line-btn {
                                    margin-top: 20px;
                                    padding: 15px;
                                    background: linear-gradient(135deg, #00B900, #00A000);
                                    border: none;
                                    border-radius: 10px;
                                    color: white;
                                    font-size: 0.95rem;
                                    font-weight: 600;
                                    cursor: pointer;
                                    display: inline-flex;
                                    align-items: center;
                                    gap: 6px;
                                    transition: all 0.3s;
                                    white-space: nowrap;
                                    /* 确保一行显示 */
                                }

                                .line-btn:hover {
                                    transform: translateY(-2px);
                                    box-shadow: 0 10px 30px rgba(0, 185, 0, 0.3);
                                }

                                .line-btn svg {
                                    width: 18px;
                                    height: 18px;
                                    flex-shrink: 0;
                                }

                                .analysis-results {
                                    margin-bottom: 30px;
                                }

                                .result-section {
                                    margin-bottom: 30px;
                                }

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

                                .rating-container {
                                    display: flex;
                                    align-items: center;
                                    gap: 40px;
                                }

                                .rating-circle {
                                    position: relative;
                                }

                                .rating-score {
                                    position: absolute;
                                    top: 50%;
                                    left: 50%;
                                    transform: translate(-50%, -50%);
                                    font-size: 2rem;
                                    font-weight: 700;
                                    color: var(--primary-color);
                                }

                                .rating-text {
                                    font-size: 1.2rem;
                                    color: var(--text-secondary);
                                }

                                .result-grid {
                                    display: grid;
                                    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                                    gap: 20px;
                                    margin-bottom: 30px;
                                }

                                .result-card {
                                    background: rgba(255, 255, 255, 0.03);
                                    border-radius: 12px;
                                    padding: 20px;
                                    border: 1px solid var(--border-color);
                                }

                                .result-card h4 {
                                    font-size: 1.1rem;
                                    margin-bottom: 15px;
                                    color: var(--text-primary);
                                }

                                .indicator-list {
                                    display: flex;
                                    flex-direction: column;
                                    gap: 10px;
                                }

                                .indicator-item {
                                    display: flex;
                                    justify-content: space-between;
                                    padding: 10px;
                                    background: rgba(255, 255, 255, 0.02);
                                    border-radius: 8px;
                                }

                                .prediction-item {
                                    display: flex;
                                    justify-content: space-between;
                                    margin-bottom: 15px;
                                }

                                .prediction-value {
                                    font-weight: 600;
                                }

                                .prediction-value.positive {
                                    color: #00ff88;
                                }

                                .prediction-value.negative {
                                    color: #ff4444;
                                }

                                .recommendation {
                                    display: flex;
                                    gap: 20px;
                                    padding: 20px;
                                    background: linear-gradient(135deg, rgba(0, 255, 204, 0.1), rgba(0, 153, 255, 0.1));
                                    border-radius: 12px;
                                    border: 1px solid var(--border-color);
                                }

                                .rec-icon {
                                    font-size: 2rem;
                                }

                                .risk-meter {
                                    margin-top: 15px;
                                }

                                .risk-bar {
                                    height: 30px;
                                    background: rgba(255, 255, 255, 0.1);
                                    border-radius: 15px;
                                    overflow: hidden;
                                    position: relative;
                                }

                                .risk-fill {
                                    height: 100%;
                                    background: linear-gradient(90deg, #00ff88, #ffcc00, #ff4444);
                                    width: 0;
                                    transition: width 1s ease;
                                }

                                .risk-labels {
                                    display: flex;
                                    justify-content: space-between;
                                    margin-top: 10px;
                                    color: var(--text-secondary);
                                    font-size: 0.9rem;
                                }

                                @keyframes fadeInUp {
                                    from {
                                        opacity: 0;
                                        transform: translateY(30px);
                                    }

                                    to {
                                        opacity: 1;
                                        transform: translateY(0);
                                    }
                                }

                                @keyframes pulse {
                                    0% {
                                        box-shadow: 0 0 0 0 rgba(0, 255, 204, 0.7);
                                    }

                                    70% {
                                        box-shadow: 0 0 0 10px rgba(0, 255, 204, 0);
                                    }

                                    100% {
                                        box-shadow: 0 0 0 0 rgba(0, 255, 204, 0);
                                    }
                                }

                                @keyframes brainPulse {
                                    0% {
                                        transform: scale(0.8);
                                        opacity: 1;
                                    }

                                    50% {
                                        transform: scale(1.2);
                                        opacity: 0.5;
                                    }

                                    100% {
                                        transform: scale(1.5);
                                        opacity: 0;
                                    }
                                }

                                @keyframes loadingProgress {
                                    0% {
                                        width: 0;
                                    }

                                    100% {
                                        width: 100%;
                                    }
                                }

                                @keyframes modalFadeIn {
                                    from {
                                        opacity: 0;
                                        transform: scale(0.9);
                                    }

                                    to {
                                        opacity: 1;
                                        transform: scale(1);
                                    }
                                }

                                @keyframes slideIn {
                                    from {
                                        transform: translateX(100%);
                                        opacity: 0;
                                    }

                                    to {
                                        transform: translateX(0);
                                        opacity: 1;
                                    }
                                }

                                @keyframes slideOut {
                                    from {
                                        transform: translateX(0);
                                        opacity: 1;
                                    }

                                    to {
                                        transform: translateX(100%);
                                        opacity: 0;
                                    }
                                }

                                .notification {
                                    position: fixed;
                                    top: 20px;
                                    right: 20px;
                                    padding: 15px 25px;
                                    border-radius: 8px;
                                    font-weight: 600;
                                    z-index: 3000;
                                    animation: slideIn 0.3s ease;
                                }

                                .notification.success {
                                    background: linear-gradient(135deg, #00ff88, #00cc88);
                                    color: white;
                                }

                                .notification.error {
                                    background: linear-gradient(135deg, #ff4444, #cc0000);
                                    color: white;
                                }

                                @media (max-width: 768px) {
                                    .title {
                                        font-size: 2rem;
                                        margin-bottom: 8px;
                                    }

                                    .subtitle {
                                        font-size: 0.95rem;
                                    }

                                    .video-showcase {
                                        height:auto;
                                        margin-bottom: 10px;
                                    }

                                    .counter-container {
                                        margin-bottom: 20px;
                                    }

                                    .analysis-card {
                                        padding: 20px;
                                        margin-bottom: 20px;
                                    }

                                    .feature-cards {
                                        grid-template-columns: repeat(3, 1fr);
                                        gap: 10px;
                                        padding: 0 10px;
                                    }

                                    .feature-card {
                                        padding: 12px 8px;
                                    }

                                    .feature-card-icon {
                                        width: 35px;
                                        height: 35px;
                                    }

                                    .feature-card-icon svg {
                                        width: 20px;
                                        height: 20px;
                                    }

                                    .feature-card-title {
                                        font-size: 0.75rem;
                                    }

                                    .testimonials {
                                        padding: 15px;
                                        margin-bottom: 20px;
                                        max-width: 90%;
                                    }

                                    .testimonial-slider {
                                        height: 160px;
                                    }

                                    .testimonial-item {
                                        padding: 12px;
                                    }

                                    .testimonial-content {
                                        font-size: 0.8rem;
                                        line-height: 1.3;
                                    }

                                    .testimonial-avatar {
                                        width: 35px;
                                        height: 35px;
                                    }

                                    .rating-container {
                                        flex-direction: column;
                                        text-align: center;
                                    }

                                    .ticker-container {
                                        margin-left: 15px;
                                    }
                                }

                                .suggestions {
                                    top: 42px;
                                    width: 100%;
                                    background: #7a7a98;
                                    border: 0px solid #00eaff;
                                    border-radius: 6px;
                                    max-height: 200px;
                                    overflow-y: auto;
                                    z-index: 10;
                                }

                                .suggestion {
                                    padding: 10px;
                                    cursor: pointer;
                                    transition: background 0.2s;
                                }

                                .suggestion:hover {
                                    background: #00eaff33;
                                }

                                .highlight {
                                    color: #00eaff;
                                    font-weight: bold;
                                }
                            
