/* ===== Index Page Styles ===== */

/* Common */
.section-title-link {
    display: block;
    text-align: center;
    color: inherit;
    text-decoration: none;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    color: #333;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: #999;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.why-choose .section-title{
    margin-bottom: 0px;
}

.activity-section .section-title {
    text-align: left;
}

.download-section .section-title {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    color: #1D2129;
    margin-bottom: 32px;
}

.user-feedback .section-title {
    font-size: 48px;
    color: #1D2129;
}

.user-feedback .section-desc {
    font-size: 24px;
    color: #30485F;
    font-weight: 200;
}

.download-section .section-desc {
    font-size: 24px;
    color: #666666;
    max-width: 1400px;
    margin: 0 auto 120px;
}

.user-feedback .section-desc {
    max-width: 1400px;
    margin: 0 auto 94px;
}

.text-red {
    color: #DC0000;
}

.up {
    color: var(--color-bullish);
}

.down {
    color: var(--color-bearish);
}

/* ===== Section 1: Banner ===== */
.banner {
    background-color: #DC0000;
    background-image: url('../images/backgrounds/bg-index.jpg');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    height: 890px;
    display: flex;
    padding: 86px 0 110px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}

.banner-content {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

.banner-left {
    flex: 1;
    max-width: 720px;
}

.banner-title {
    font-size: 68px;
    font-weight: bold;
    margin-bottom: 22px;
    line-height: 1.3;
}

.banner-title .banner-brand {
    color: #DD0000;
}

.banner-subtitle {
    font-size: 20px;
    color: #E4E4E4;
    margin-bottom: 52px;
}

.banner-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 33px;
    margin-bottom: 98px;
    width: 520px;
}

.banner-features li {
    display: flex;
    align-items: center;
    font-size: 24px;
}

.banner-features .feature-icon {
    width: 25px;
    height: auto;
    margin-right: 14px;
}

.banner-buttons {
    display: flex;
    gap: 40px;
}

.btn-white {
    background: #DD0000;
    color: #FFFFFF;
    padding: 20px 50px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 20px;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 15px rgba(221, 0, 0, 0.3); */
}

.btn-white:hover {
    background: #fff;
    color: #DD0000;
    transform: translateY(-4px);
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25); */
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    background: transparent;
    padding: 14px 48px;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-white:hover {
    background: #fff;
    color: #DD0000;
    border-color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.banner-right {
    flex: 0 0 520px;
    display: flex;
    flex-direction: column;
}

.banner-chart-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

/* K线图容器 */
.chart-container {
    width: 100%;
    height: auto;
    background: #fff;
    position: relative;
    padding: 20px;
    flex: 1;
}

.chart-container>div {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
}

.chart-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 图表底部 */
.chart-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.chart-price {
    display: flex;
    flex-direction: column;
}

.chart-price .price-value {
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.chart-price .price-change {
    font-size: 18px;
}

.chart-price .price-change.up {
    color: var(--color-bullish);
}

.chart-price .price-change.down {
    color: var(--color-bearish);
}

.chart-tabs {
    display: flex;
}

.chart-tabs .tab {
    padding: 0px 12px;
    font-size: 18px;
    color: #444444;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.chart-tabs .tab:hover {
    color: #DC0000;
}

.chart-tabs .tab.active {
    color: #DC0000;
    font-weight: 600;
}

.chart-tabs .tab-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.chart-tabs .tab-divider {
    color: #444444;
}

/* Banner Slider */
.banner-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    /* background-size: 100% 100%; */
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000000;
}

.banner-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.banner-dots {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 8px;
    align-items: center;
}

.banner-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.banner-dot.active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
}

/* ===== Section 2: Quick Features ===== */
.quick-features {
    background: transparent;
    padding: 0 0 70px 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.quick-features::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #F3F4F8;
    z-index: -1;
}

.quick-features .container {
    background: transparent;
    padding: 0;
}

.quick-features-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.quick-feature-item {
    width: 315px;
    height: 250px;
    background: #FFFFFF;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.quick-feature-item:hover {
    background: #fff;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.quick-feature-item:hover .quick-feature-text h3 {
    color: #DD0000;
}

.quick-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 各卡片图标尺寸 */
.quick-feature-item:nth-child(1) .quick-feature-icon img {
    width: 75px;
    height: auto;
}

.quick-feature-item:nth-child(2) .quick-feature-icon img {
    width: 72px;
    height: auto;
}

.quick-feature-item:nth-child(3) .quick-feature-icon img {
    width: 62px;
    height: auto;
}

.quick-feature-item:nth-child(4) .quick-feature-icon img {
    width: 62px;
    height: auto;
}

.quick-feature-text h3 {
    font-size: 28px;
    font-weight: bold;
    color: #111111;
    margin-bottom: 19px;
}

.quick-feature-text p {
    font-size: 16px;
    color: #333333;
}

/* ===== Section 3: Market Quote ===== */
.market-quote-section {
    background: #F3F4F8;
    padding: 0px 0 60px 0;
}

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

.section-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: #222222;
}

.view-more {
    color: #82858B;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.view-more:hover {
    color: #DC0000;
    transform: translateX(5px);
}

.market-quote-content {
    display: flex;
    gap: 27px;
    align-items: stretch;
}

.quote-chart-area {
    width: 920px;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 33px 35px 34px 29px;
}

.quote-tabs {
    display: flex;
    align-items: center;
    gap: 53px;
    padding-bottom: 11px;
    margin-bottom: 24px;
    border-bottom: 1px solid #E5E5E5;
}

.quote-tab {
    padding: 8px 16px 12px 0px;
    border: none;
    background: none;
    font-size: 20px;
    color: #82858B;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.quote-tab::after {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 0px;
    right: 16px;
    height: 4px;
    background: #DD0000;
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quote-tab:hover {
    color: #1D2129;
}

.quote-tab.active {
    color: #1D2129;
    font-weight: 600;
    font-size: 24px;
}

.quote-tab.active::after {
    opacity: 1;
}

.quote-btn-trade {
    margin-left: auto;
    background: #DC0000;
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quote-btn-trade:hover {
    background: #B30000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 0, 0, 0.35);
}

.quote-chart {
    width: 856px;
    height: 430px;
    margin-bottom: 39px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

.chart-skeleton {
    width: 100%;
    height: 100%;
    background: #F5F5F5;
    position: relative;
    overflow: hidden;
}

.chart-skeleton::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
    animation: skeleton-shimmer 1.5s infinite;
}

@keyframes skeleton-shimmer {
    from {
        transform: translateX(-100%);
    }

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

.quote-data-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 32px;
}

.quote-data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F3F3F3;
    padding: 15px 16px 13px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.quote-data-row:hover {
    background: #eaeaea;
    transform: scale(1.02);
}

.quote-data-row .label {
    color: #666666;
    font-size: 20px;
}

.quote-data-row .value {
    font-weight: 600;
    color: #333;
    font-size: 20px;
}

.quote-analysis-area {
    width: 100%;
    /* flex-shrink: 0; */
    display: flex;
    flex-direction: column;
    gap: 5px;
    border: 1px solid #eee;
    padding: 29px 33px 34px 32px;
    background: #fff;
}

.quote-analysis-area>*:last-child {
    flex: 1;
}

.market-sentiment {
    background: #FFFFFF;
    border-radius: 8px;
}

.tech-indicators {
    background: #FFFFFF;
    border-radius: 8px;
}

.quote-analysis-area h4,
.tech-indicators-list h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 33px;
    color: #1D2129;
}

.tech-indicators-list h4 {
    margin-bottom: 4px;
}

.sentiment-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 35px;
}

.sentiment-bullish-text {
    font-size: 28px;
    font-weight: bold;
    color: #1D2129;
}

.sentiment-bearish-text {
    font-size: 18px;
    color: #5C5D5F;
}

.sentiment-chart {
    margin-top: 20px;
    min-height: 150px;
    background: #f9f9f9;
    border-radius: 8px;
}

.sentiment-text {
    font-size: 12px;
    color: var(--color-bearish);
    text-align: right;
}

.indicator-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F3F3F3;
    color: #666666;
    padding: 15px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.indicator-row:hover {
    background: #eaeaea;
    transform: translateX(5px);
}

.indicator-row:last-child {
    margin-bottom: 0;
}

.indicator-row .value {
    font-weight: 600;
    color: #333;
}

.indicator-row .value.up {
    color: var(--color-bullish);
}

.indicator-row .value.down {
    color: var(--color-bearish);
}

/* ===== 技术分析仪表盘 + 指标卡片 ===== */
.sentiment-bar-container {
    margin-top: 15px;
}

.sentiment-bar {
    display: flex;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    background: #eee;
}

.sentiment-bar-bullish {
    background: var(--color-bullish);
    transition: width 0.6s ease;
}

.sentiment-bar-bearish {
    background: var(--color-bearish);
    transition: width 0.6s ease;
}

.sentiment-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.sentiment-bullish-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-bullish);
}

.sentiment-bearish-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-bearish);
}

.gauge-section {
    text-align: center;
}

.market-sentiment {
    margin-top: 16px;
}

.gauge-title-main {
    font-size: 15px;
    font-weight: 600;
    color: #1a6b3c;
    margin-bottom: 4px;
}

.gauge-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.gauge-container svg {
    overflow: visible;
    display: block;
    width: 100%;
    max-width: 320px;
    height: auto;
}

.gauge-text {
    font-size: 14px;
    font-weight: 500;
    fill: #666;
}

.needle-line {
    transition: all 0.5s ease-out;
}

.gauge-label-main {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: #1a6b3c;
    display: inline-block;
    padding: 4px 18px;
    border-radius: 14px;
    margin-top: 2px;
}

/* 技术指标纵向列表 */
.tech-indicators-list {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tech-indicator-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F3F3F3;
    padding: 16px;
}

.indicator-label {
    display: block;
    font-size: 20px;
    color: #666666;
}

.indicator-val {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #666666;
}

.indicator-signal {
    font-weight: 700;
}

.indicator-signal.buy {
    color: var(--color-bullish);
}

.indicator-signal.sell {
    color: var(--color-bearish);
}

.indicator-signal.neutral {
    color: var(--color-neutral);
}

/* ===== Section 3.5: Activity List ===== */
.activity-section {
    background: #F3F4F8;
    padding: 5px 0 110px 0;
}

.activity-section .section-title {
    font-size: 32px;
    margin-bottom: 41px;
}

.activity-list {
    display: flex;
    gap: 22px;
}

.activity-item {
    flex: 1;
    display: block;
    overflow: hidden;
    position: relative;
    height: 254px;
}

.activity-skeleton {
    position: absolute;
    inset: 0;
    border-radius: 0;
}

.activity-item img {
    width: 100%;
    height: 254px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    position: relative;
}

.activity-item:hover img {
    transform: scale(1.03);
}

/* ===== Section 3.8: Diverse Products ===== */
.diverse-section {
    background: #f0f1f3 url('../images/backgrounds/bg-diverse.webp') no-repeat center bottom;
    background-size: 100% auto;
    padding: 125px 0 145px 0;
    text-align: center;
}

.diverse-header {
    margin-bottom: 100px;
}

.diverse-title {
    font-size: 48px;
    font-weight: bold;
    color: #222222;
    margin-bottom: 30px;
}

.diverse-desc {
    font-size: 24px;
    color: #666666;
    line-height: 1.8;
    margin: 0 auto;
}

.diverse-cards {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 120px;
    padding-top: 0px;
}

.diverse-card {
    width: 360px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    padding: 48px 32px 40px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: visible;
}

.diverse-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.diverse-card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.diverse-card-icon img {
    width: 64px;
    height: auto;
}

.diverse-card:nth-child(1) .diverse-card-icon img {
    filter: drop-shadow(0 14px 6px rgba(255, 187, 66, 0.15));
}

.diverse-card:nth-child(2) .diverse-card-icon img {
    filter: drop-shadow(0 14px 6px rgba(255, 105, 71, 0.15));
}

.diverse-card:nth-child(3) .diverse-card-icon img {
    filter: drop-shadow(0 14px 6px rgba(34, 179, 109, 0.15));
}

.diverse-card-title {
    font-size: 32px;
    font-weight: bold;
    color: #111111;
    margin-bottom: 12px;
}

.diverse-card-desc {
    font-size: 20px;
    color: #333333;
    line-height: 1.6;
}

.diverse-more {
    display: inline-block;
    padding: 14px 52px;
    border: 1.5px solid #1D2129;
    border-radius: 6px;
    border-color: #DD0000;
    font-size: 18px;
    color: #DD0000;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* ===== Section 4: Why Choose ===== */
.why-choose {
    background: #FFFFFF;
    padding: 133px 0 170px 0;
}

.why-choose .section-title {
    font-size: 48px;
    font-weight: bold;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 37px;
    margin-top: 142px;
}

.why-choose-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.why-choose-item:not(:last-child) {
    border-right: 1px solid #E5E5E5;
}

.why-choose-text {
    padding: 20px;
    text-align: center;
}

.why-choose-number {
    font-size: 78px;
    font-weight: 700;
    color: #DD0000;
}

.why-choose-text h3 {
    font-size: 28px;
    color: #424242;
    margin: 33px 0 17px 0;
}

.why-choose-text p {
    font-size: 16px;
    color: #333333;
}

/* ===== Section 5: Features Section ===== */
.features-section {
    background: url('../images/backgrounds/bg-wave-red.webp') no-repeat center;
    background-size: cover;
    height: auto;
    padding: 127px 0 134px 0;
}

.features-header {
    text-align: center;
    margin-bottom: 103px;
}

.features-header h2 {
    font-size: 48px;
    font-weight: bold;
    color: #1D2129;
    margin-bottom: 32px;
}

.features-header p {
    font-size: 24px;
    color: #636363;
    margin: 0 auto;
    line-height: 1.5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 0 0 0 35px;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 120px;
    box-sizing: border-box;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 0, 0, 0.1);
}

.feature-card:hover .feature-card-text h3 {
    color: #DD0000;
}

.feature-card-icon {
    flex-shrink: 0;
}

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

.feature-card-text h3 {
    font-size: 28px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 8px;
}

.feature-card-text p {
    font-size: 16px;
    color: #71738C;
    line-height: 1.6;
}

/* ===== Section 6: Download Section ===== */
.download-section {
    background: #FFFFFF;
    padding: 127px 0 93px 0;
}

.download-panel {
    display: none;
}

.download-panel.active {
    display: block;
}

.download-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 91px;
}

.download-tab {
    font-size: 18px;
    color: #A4A4A4;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}

.download-tab.active {
    color: #DD0000;
}

.download-tab-sep {
    color: #A4A4A4;
    font-size: 18px;
    user-select: none;
}

.download-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
}

.download-left {
    flex: 1;
}

.download-points {
    margin-bottom: 40px;
}

.download-points li {
    display: flex;
    align-items: center;
    font-size: 28px;
    color: #444444;
    margin-bottom: 41px;
}

.point-icon {
    width: 18px;
    height: 18px;
    margin-right: 22px;
    flex-shrink: 0;
}

.download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.app-info {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: start;
    gap: 12px 20px;
    margin-top: 42px;
}

.app-info div {
    display: flex;
    gap: 8px;
    font-size: 16px;
    color: #B6B6B6;
}

.app-info dt::after {
    content: ':';
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 147px;
    height: 53px;
    /* padding: 16px 34px 17px 34px; */
    border-radius: 6px;
    font-size: 20px;
    font-weight: 500;
    background: #fff;
    color: #666666;
    transition: all 0.3s ease;
    border: 1px solid #CDD6E3;
    position: relative;
    overflow: hidden;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(221, 0, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn:hover {
    transform: translateY(-4px);
    color: #FFFFFF;
    background: #DD0000;
    border-color: #DD0000;
}

.download-right {
    /* flex: 1; */
}

.devices-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
}

.devices-showcase img {
    width: 536px;
    height: 341px;
}

/* ===== Section 7: User Feedback ===== */
.user-feedback {
    background-image: url('../images/backgrounds/bg-gradient-blue.webp');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 116px;
}

.user-feedback>.container {
    position: relative;
}

.feedback-scattered::before,
.feedback-scattered::after {
    content: '';
    position: absolute;
    top: -14px;
    bottom: -14px;
    width: var(--feedback-feather-width);
    z-index: 2;
    pointer-events: none;
    background-repeat: no-repeat;
    filter: blur(34px);
    opacity: 0.98;
    transform: translateZ(0);
}

.feedback-scattered::before {
    left: calc(var(--feedback-feather-width) * -0.22);
    background:
        radial-gradient(140% 96% at 100% 50%,
            var(--feedback-feather-base) 0%,
            rgba(233, 242, 251, 0.82) 28%,
            rgba(233, 242, 251, 0.52) 56%,
            rgba(233, 242, 251, 0.24) 76%,
            rgba(233, 242, 251, 0) 100%),
        radial-gradient(112% 84% at 92% 50%,
            var(--feedback-feather-tint) 0%,
            rgba(173, 206, 250, 0.26) 44%,
            rgba(173, 206, 250, 0) 82%);
}

.feedback-scattered::after {
    right: calc(var(--feedback-feather-width) * -0.22);
    background:
        radial-gradient(140% 96% at 0% 50%,
            var(--feedback-feather-base) 0%,
            rgba(233, 242, 251, 0.82) 28%,
            rgba(233, 242, 251, 0.52) 56%,
            rgba(233, 242, 251, 0.24) 76%,
            rgba(233, 242, 251, 0) 100%),
        radial-gradient(112% 84% at 8% 50%,
            var(--feedback-feather-tint) 0%,
            rgba(173, 206, 250, 0.26) 44%,
            rgba(173, 206, 250, 0) 82%);
}

.feedback-stats {
    display: flex;
    justify-content: center;
    gap: 200px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 60px;
    font-weight: bold;
    color: #DC0000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    position: relative;
}

.stat-arrow {
    width: 20px;
    height: auto;
    margin-left: 6px;
    bottom: 20%;
    right: -20%;
    position: absolute;
}

.stat-label {
    font-size: 18px;
    color: #82858B;
    margin-top: 21px;
}

/* 散落布局 - 12个位置 */
.feedback-scattered {
    position: relative;
    height: 320px;
    margin-top: 30px;
    --feedback-feather-width: clamp(220px, 24vw, 340px);
    --feedback-feather-base: rgba(233, 242, 251, 0.95);
    --feedback-feather-tint: rgba(173, 206, 250, 0.46);
}

.feedback-scattered .feedback-item {
    position: absolute;
}

.feedback-scattered .bubble {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    max-width: 340px;
}

.feedback-scattered .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.feedback-scattered .bubble p {
    color: #444444;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

/* 12个气泡不同样式 */
.bubble.bubble-1 {
    background: #EBF0F9;
}

.bubble.bubble-1 p {
    font-size: 18px;
    color: #444444;
}

.bubble.bubble-2 {
    background: #EFF1F2;
}

.bubble.bubble-2 p {
    font-size: 18px;
    color: #444444;
}

.bubble.bubble-3 {
    background: #F2ECED;
}

.bubble.bubble-3 p {
    font-size: 22px;
    color: #444444;
}

.bubble.bubble-4 {
    background: #EBF9FF;
    max-width: 360px;
}

.bubble.bubble-4 p {
    font-size: 22px;
    color: #444444;
}

.bubble.bubble-5 {
    background: #F9E9E0;
    max-width: 360px;
}

.bubble.bubble-5 p {
    font-size: 22px;
    color: #444444;
}

.bubble.bubble-6 {
    background: #ECF4F7;
}

.bubble.bubble-6 p {
    font-size: 18px;
    color: #444444;
}

.bubble.bubble-7 {
    background: #EEEEEF;
}

.bubble.bubble-7 p {
    font-size: 22px;
    color: #444444;
}

.bubble.bubble-8 {
    background: #F0EFF6;
}

.bubble.bubble-8 p {
    font-size: 22px;
    color: #444444;
}

.bubble.bubble-9 {
    background: #F1EDF7;
}

.bubble.bubble-9 p {
    font-size: 22px;
    color: #444444;
}

.bubble.bubble-10 {
    background: #EBF0F9;
    max-width: 360px;
}

.bubble.bubble-10 p {
    font-size: 22px;
    color: #444444;
}

.bubble.bubble-11 {
    background: #E5EEFF;
}

.bubble.bubble-11 p {
    font-size: 22px;
    color: #444444;
}

.bubble.bubble-12 {
    background: #F9EEF4;
}

.bubble.bubble-12 p {
    font-size: 22px;
    color: #444444;
}

/* 散落位置 - 12个位置 (3行4列散落) */
/* 第一行 */
.feedback-item.pos-1 {
    top: -15px;
    left: 0;
}

.feedback-item.pos-2 {
    top: -30px;
    left: 19%;
}

.feedback-item.pos-3 {
    top: -30px;
    left: 42%;
}

.feedback-item.pos-4 {
    top: -30px;
    right: 10%;
}

/* 第二行 */
.feedback-item.pos-5 {
    top: 110px;
    left: 5%;
}

.feedback-item.pos-6 {
    top: 125px;
    left: 33%;
}

.feedback-item.pos-7 {
    top: 110px;
    right: 25%;
}

.feedback-item.pos-8 {
    top: 110px;
    right: 4%;
}

/* 第三行 */
.feedback-item.pos-9 {
    bottom: 10px;
    left: 3%;
}

.feedback-item.pos-10 {
    bottom: 0;
    left: 26%;
}

.feedback-item.pos-11 {
    bottom: -20px;
    right: 25%;
}

.feedback-item.pos-12 {
    bottom: -20px;
    right: 4%;
}

/* Feedback Carousel */
.feedback-carousel-outer {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 70px 0;
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 12%,
            black 88%,
            transparent 100%);
    mask-image: linear-gradient(to right,
            transparent 0%,
            black 12%,
            black 88%,
            transparent 100%);
}

.feedback-track {
    display: flex;
    gap: 48px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.feedback-card {
    flex: 0 0 860px;
    background: #fff;
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    opacity: 0.55;
    height: 460px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 40px;
    transition: opacity 0.4s, box-shadow 0.4s;
    flex-shrink: 0;
}

.feedback-card.active {
    opacity: 1;
    cursor: default;
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.13);
}

.feedback-nav {
    display: flex;
    justify-content: center;
    gap: 22px;
    padding: 0 0 50px 0;
}

.feedback-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #d0d5dd;
    background: #fff;
    color: #344054;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.feedback-nav-btn:hover {
    background: #f2f4f7;
    border-color: #98a2b3;
}

.feedback-card-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex-shrink: 0;
}

.fb-avatar {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.fb-user {
    flex: 1;
    min-width: 0;
}

.fb-name {
    font-size: 24px;
    font-weight: bold;
    color: #101010;
}

.fb-role-trade {
    font-size: 18px;
    color: #101010;
    font-weight: 500;
}

.fb-demand {
    font-size: 16px;
    color: #F04747;
    margin-top: 12px;
    width: fit-content;
}

.fb-quote {
    font-size: 24px;
    color: #30485F;
    margin: 0;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.feedback-feather-left,
.feedback-feather-right {
    display: none;
}

/* ===== Section 8: Education ===== */
.education-section {
    background: #F7F8FC;
    padding: 95px 0 129px 0;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px;
    margin-top: 88px;
}

.edu-card {
    background: #FBFCFE;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    min-width: 0;
}

.edu-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 2px solid #EEEEEE;
}

.edu-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.edu-card-header h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    transition: color 0.3s, font-size 0.3s;
}

.edu-card:hover .edu-card-header h3 {
    color: #FFFFFF;
    font-size: 28px;
}

.edu-card:hover {
    background: #DD0000;
    transform: scale(1.06);
    box-shadow: 0 15px 40px rgba(221, 0, 0, 0.2);
}

.edu-list {
    list-style: none;
}

.edu-list li {
    padding: 10px 0;
}

.edu-list a {
    font-size: 18px;
    color: #4E5969;
    display: block;
    transition: all 0.3s ease;
    padding-left: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.edu-list a:hover {
    color: #DC0000;
    padding-left: 8px;
}

.edu-card:hover .edu-list a {
    color: rgba(255, 255, 255, 0.85);
}

.edu-card:hover .edu-card-header {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.edu-list a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 2px;
    background: #FFFFFF;
    margin-right: 0;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.edu-list a:hover::before {
    width: 12px;
    margin-right: 8px;
}

/* ===== Section 9: CTA ===== */
.cta-section {
    background-image: url('../images/backgrounds/bg-geometric-pink.webp');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding: 182px 0 146px 0;
}

.cta-content {
    text-align: center;
    position: relative;
}

.cta-coin {
    position: absolute;
    width: 100px;
    height: auto;
}

.cta-coin-left {
    left: 187px;
    top: -29px;
}

.cta-coin-right {
    right: 163px;
    bottom: 20px;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: bold;
    color: #1D2129;
    margin-bottom: 19px;
}

.cta-content p {
    font-size: 24px;
    color: #4E5969;
    margin-bottom: 133px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 39px;
}

.btn-lg {
    padding: 18px 58px;
    font-size: 18px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* ===== Responsive ===== */
@media (max-width: 1080px) {
    .section-title {
        font-size: 6vw;
    }

    .section-desc {
        font-size: 3.5vw;
        padding: 0 4vw;
    }

    /* Banner Mobile */
    .banner {
        height: auto;
        min-height: auto;
        display: block;
        overflow: hidden;
        padding: 8vw 0 10vw;
        background-size: cover;
    }

    /* 固定 banner-slider 在移动端的高度，防止轮播时高度跳动 */
    .banner-slider {
        height: 100%;
        min-height: inherit;
    }

    .banner-slide {
        background-size: contain;
        background-position: center;
    }

    .banner-content {
        flex-direction: column;
        gap: 6vw;
        text-align: center;
        align-items: center;
    }

    .banner-left {
        max-width: 100%;
    }

    .banner-title {
        font-size: 6.5vw;
        margin-bottom: 3vw;
    }

    .banner-subtitle {
        font-size: 3.5vw;
        margin-bottom: 5vw;
    }

    .banner-features {
        display: none;
    }

    .banner-buttons {
        justify-content: center;
        gap: 3vw;
    }

    .btn-white,
    .btn-outline-white {
        padding: 2.5vw 6vw;
        font-size: 3.5vw;
    }

    .banner-right {
        flex: none;
        display: block;
        width: 100%;
        max-width: 85vw;
        margin: 0 auto;
    }

    .banner-chart-card {
        border-radius: 3vw;
        flex: none;
        display: block;
        min-height: auto;
    }

    .chart-container {
        height: 40vw;
        flex: none;
        padding: 3vw;
    }

    .chart-container>div {
        top: 3vw;
        left: 3vw;
        right: 3vw;
        bottom: 3vw;
    }

    .chart-footer {
        padding: 3vw 4vw;
    }

    .chart-price .price-value {
        font-size: 5.5vw;
    }

    .chart-price .price-change {
        font-size: 3vw;
    }

    .chart-tabs {
        gap: 1.5vw;
    }

    .chart-tabs .tab {
        padding: 1vw 2.5vw;
        font-size: 2.8vw;
    }

    /* Quick Features Mobile */
    .quick-features {
        margin-top: 0;
        padding: 4vw 0;
        background: #F3F4F8;
    }

    .quick-features::before {
        display: none;
    }

    .quick-features .container {
        padding: 0 4vw;
    }

    .quick-features-grid {
        flex-wrap: wrap;
        gap: 4vw;
    }

    .quick-feature-item {
        width: calc(50% - 2vw);
        height: auto;
        padding: 6vw 4vw;
    }

    .quick-feature-item:nth-child(1) .quick-feature-icon img,
    .quick-feature-item:nth-child(2) .quick-feature-icon img,
    .quick-feature-item:nth-child(3) .quick-feature-icon img,
    .quick-feature-item:nth-child(4) .quick-feature-icon img {
        width: 12vw;
        height: 12vw;
    }

    .quick-feature-text h3 {
        font-size: 4vw;
    }

    .quick-feature-text p {
        font-size: 3vw;
    }

    /* Market Quote Mobile */
    .market-quote-section {
        padding: 8vw 0;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2vw;
    }

    .market-quote-content {
        flex-direction: column;
    }

    .quote-chart-area {
        width: 100%;
        padding: 4vw;
    }

    .quote-chart {
        width: 100%;
        height: 50vw;
        margin-bottom: 4vw;
    }

    .quote-analysis-area {
        width: 100%;
        padding: 4vw;
    }

    .gauge-container svg {
        max-width: 300px;
    }

    .gauge-text {
        font-size: 12px;
    }

    .tech-indicators-list {
        gap: 2vw;
    }

    .tech-indicator-item {
        padding: 2.5vw 3vw;
    }

    .indicator-label {
        font-size: 3.2vw;
    }

    .indicator-val {
        font-size: 3.8vw;
    }

    .quote-data-table {
        grid-template-columns: 1fr;
        gap: 3vw;
    }

    .quote-data-row {
        padding: 3vw;
        font-size: 3.5vw;
    }

    .quote-tabs {
        flex-wrap: wrap;
        gap: 2vw;
    }

    .quote-tab {
        font-size: 3.5vw;
        padding: 2vw 3vw;
    }

    .quote-tab.active {
        font-size: 3.8vw;
    }

    .quote-btn-trade {
        font-size: 3.5vw;
        padding: 2vw 4vw;
    }

    .quote-data-row .label,
    .quote-data-row .value {
        font-size: 3.5vw;
    }

    .quote-analysis-area h4,
    .tech-indicators-list h4 {
        font-size: 4vw;
    }

    .sentiment-bullish-text,
    .sentiment-bearish-text {
        font-size: 3.2vw;
    }

    .gauge-title-main {
        font-size: 3vw;
    }

    .gauge-label-main {
        font-size: 3vw;
        padding: 1vw 3vw;
    }

    .section-header {
        margin-bottom: 4vw;
    }

    .section-header h2 {
        font-size: 5vw;
    }

    .view-more {
        font-size: 3.5vw;
    }

    /* Activity Section Mobile */
    .activity-section {
        padding: 4vw 0 8vw;
    }

    .activity-section .section-title {
        font-size: 5vw;
        margin-bottom: 4vw;
    }

    .activity-list {
        flex-direction: column;
        gap: 3vw;
    }

    .activity-item {
        height: auto;
    }

    .activity-item img {
        height: auto;
        width: 100%;
    }

    /* Diverse Section Mobile */
    .diverse-section {
        padding: 10vw 0 12vw;
        /* background-size: 100% auto; */
        background-position: center bottom;
        background-size: cover;
    }

    .diverse-header {
        margin-bottom: 14vw;
    }

    .diverse-title {
        font-size: 5.5vw;
        margin-bottom: 3vw;
    }

    .diverse-desc {
        font-size: 3.5vw;
    }

    .diverse-cards {
        flex-direction: column;
        align-items: center;
        gap: 14vw;
        margin-bottom: 8vw;
    }

    .diverse-card {
        width: 100%;
        max-width: 80vw;
        padding: 10vw 6vw 6vw;
    }

    .diverse-card-icon {
        width: 14vw;
        height: 14vw;
        top: -7vw;
    }

    .diverse-card-icon img {
        width: 10vw;
    }

    .diverse-card-title {
        font-size: 5vw;
        margin-bottom: 2vw;
    }

    .diverse-card-desc {
        font-size: 3.5vw;
    }

    .diverse-more {
        padding: 2.5vw 8vw;
        font-size: 3.5vw;
    }

    /* Why Choose Mobile */
    .why-choose {
        padding: 8vw 0;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 4vw;
        margin-top: 6vw;
    }


    .why-choose-text {
        padding: 4vw;
    }

    .why-choose-number {
        font-size: 8vw;
    }

    .why-choose-text h3 {
        font-size: 4vw;
    }

    .why-choose-text p {
        font-size: 3vw;
    }

    .why-choose-item:not(:last-child) {
        border-right: none;
    }

    /* Features Section Mobile */
    .features-section {
        padding: 8vw 0;
        height: auto;
    }

    .features-header {
        margin-bottom: 6vw;
    }

    .features-header h2 {
        font-size: 6vw;
    }

    .features-header p {
        font-size: 3.5vw;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 4vw;
    }

    .feature-card {
        padding: 4vw;
        gap: 4vw;
        height: auto;
    }

    .feature-card-icon img {
        width: 12vw;
        height: 12vw;
    }

    .feature-card-text h3 {
        font-size: 4vw;
    }

    .feature-card-text p {
        font-size: 3vw;
    }

    .feature-card h3 {
        font-size: 4vw;
    }

    .feature-card p {
        font-size: 3vw;
    }

    /* Download Section Mobile */
    .download-section {
        padding: 10vw 0;
    }

    .download-section .section-title {
        font-size: 5vw;
    }

    .download-section .section-desc {
        font-size: 3.5vw;
    }

    .download-content {
        flex-direction: column;
        gap: 8vw;
        margin-top: 6vw;
    }

    .download-points {
        margin-bottom: 6vw;
    }

    .download-points li {
        font-size: 3.5vw;
        margin-bottom: 3vw;
    }

    .point-icon {
        width: 4vw;
        height: 4vw;
        margin-right: 3vw;
    }

    .download-buttons {
        justify-content: center;
        gap: 3vw;
    }

    .download-btn {
        width: auto;
        height: auto;
        padding: 2.5vw 5vw;
        font-size: 3.5vw;
        border-radius: 1.5vw;
    }

    /* Download Extra Mobile */
    .devices-showcase img {
        width: 100%;
        height: auto;
    }

    .app-info {
        grid-template-columns: 1fr;
        gap: 2vw;
        margin-top: 6vw;
    }

    .app-info div {
        font-size: 3vw;
    }

    .download-tabs {
        margin-top: 6vw;
        gap: 3vw;
    }

    .download-tab {
        font-size: 3.5vw;
    }

    .download-tab-sep {
        font-size: 3.5vw;
    }

    .download-section .section-desc {
        margin-bottom: 6vw;
    }

    /* Feedback Carousel Mobile */
    .feedback-carousel-outer {
        padding: 4vw 0 8vw;
        -webkit-mask-image: linear-gradient(to right,
                transparent 0%,
                black 8%,
                black 92%,
                transparent 100%);
        mask-image: linear-gradient(to right,
                transparent 0%,
                black 8%,
                black 92%,
                transparent 100%);
    }

    .feedback-track {
        gap: 16px;
    }

    .feedback-card {
        flex: 0 0 80vw;
        height: auto;
        min-height: 380px;
        padding: 4vw 5vw;
        gap: 3vw;
    }

    .fb-avatar {
        width: 12vw;
        height: 12vw;
    }

    .fb-name {
        font-size: 4vw;
    }

    .fb-role-trade {
        font-size: 3.2vw;
    }

    .fb-demand {
        font-size: 2.8vw;
        padding: 1vw 2.5vw;
    }

    .fb-quote {
        font-size: 3.2vw;
        -webkit-line-clamp: 4;
    }


    /* User Feedback Mobile */
    .user-feedback {
        padding: 10vw 0;
    }

    .user-feedback .section-title {
        font-size: 5.5vw;
    }

    .user-feedback .section-desc {
        font-size: 3.5vw;
        margin-bottom: 8vw;
    }

    .feedback-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4vw;
        justify-content: center;
        margin-bottom: 8vw;
    }

    .stat-item {
        width: calc(33% - 3vw);
    }

    .stat-number {
        font-size: 5vw;
    }

    .stat-arrow {
        width: 3.5vw;
        margin-left: 1vw;
        right: 0%;
    }

    .stat-label {
        font-size: 2.5vw;
    }

    .feedback-scattered {
        --feedback-feather-width: clamp(120px, 18vw, 170px);
        --feedback-feather-tint: rgba(173, 206, 250, 0.38);
    }

    .feedback-scattered::before,
    .feedback-scattered::after {
        top: 0;
        bottom: 0;
        filter: blur(18px);
        opacity: 0.82;
    }

    .feedback-scattered {
        height: auto;
        display: flex;
        flex-wrap: wrap;
        gap: 3vw;
        justify-content: center;
    }

    .feedback-scattered .feedback-item {
        position: static;
        width: calc(50% - 2vw);
    }

    /* 移动端只显示6个 */
    .feedback-scattered .feedback-item.pos-7,
    .feedback-scattered .feedback-item.pos-8,
    .feedback-scattered .feedback-item.pos-9,
    .feedback-scattered .feedback-item.pos-10,
    .feedback-scattered .feedback-item.pos-11,
    .feedback-scattered .feedback-item.pos-12 {
        display: none;
    }

    .feedback-scattered .bubble {
        max-width: 100%;
        padding: 3vw;
        gap: 2vw;
        border-radius: 3vw;
    }

    .feedback-scattered .avatar {
        width: 8vw;
        height: 8vw;
    }

    .feedback-scattered .bubble p {
        font-size: 3vw !important;
        line-height: 1.4;
    }

    /* Education Mobile */
    .education-section {
        padding: 8vw 0;
    }

    .education-grid {
        grid-template-columns: 1fr;
        gap: 4vw;
        margin-top: 6vw;
    }

    .edu-card {
        padding: 5vw;
    }

    .edu-card-header {
        gap: 2vw;
        padding-bottom: 3vw;
        margin-bottom: 3vw;
    }

    .edu-icon {
        width: 8vw;
        height: 8vw;
    }

    .edu-card-header h3 {
        font-size: 4.5vw;
    }

    .edu-list li {
        padding: 2vw 0;
    }

    .edu-list a {
        font-size: 3.5vw;
    }

    /* CTA Mobile */
    .cta-section {
        padding: 12vw 0;
    }

    .cta-coin {
        width: 15vw;
    }

    .cta-coin-left {
        left: 5vw;
        top: -2vw;
    }

    .cta-coin-right {
        right: 5vw;
        bottom: 2vw;
    }

    .cta-content h2 {
        font-size: 5.5vw;
    }

    .cta-content p {
        font-size: 3.5vw;
        margin-bottom: 6vw;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 3vw;
    }

    .btn-lg {
        width: 50vw;
        padding: 3vw 8vw;
        font-size: 3.5vw;
    }
}

/* 移动端隐藏滚动条（保留滑动功能） */
@media (max-width: 1080px) {
    * {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    *::-webkit-scrollbar {
        display: none;
    }
}
