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

/* 全局禁止图片拖拽 */
img {
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

a img {
    pointer-events: auto;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #242528;
    color: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.main-container {
    /* overflow-y: hidden; */
    position: relative;
    overflow: hidden;
}

/* 背景图片样式 */
.bg-image {
    position: absolute;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    z-index: -1;
}

.bg-image.bg1 {
    top: 10%;
    left: 0;
}

.bg-image.bg2 {
    bottom: 0%;
    left: 0;
}

.container {
    max-width: min(100%, 1600px);
    margin: 0 auto;
    padding: 0 40px;
}

/* ========== 导航栏样式 ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* background-color: rgba(36, 37, 40, 0.95); */
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 35px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

/* .nav-menu li:first-child::after,
.nav-menu li:last-child::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #FFF263;
    border-radius: 50%;
    margin: 0 8px;
} */

.nav-menu a:hover {
    color: #FFF263;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* 语言选择器 */
.language-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    background-color: #3E3E40;
    border-radius: 50px;
    color: #E7E7E7;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    /* background-color: rgba(255, 255, 255, 0.1); */
    /* border-color: #ffffff; */
}

.lang-btn:focus {
    outline: none;
    /* box-shadow: 0 0 0 2px #FFF263; */
}

/* .lang-btn svg {
    width: 16px;
    height: 16px;
} */

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: rgba(36, 37, 40, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    min-width: 180px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 12px 16px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background-color: rgba(244, 208, 63, 0.1);
    color: #F4D03F;
}

.btn-nav {
    padding: 10px 25px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    font-weight: 500;
    background-color: transparent;
    color: #ffffff;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* ========== 第一屏样式 ========== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    background: linear-gradient(180deg, #494C53 0%, #242528 100%);
}

.hero-content {
    max-width: min(100%, 1600px);
    margin: 0 auto;
    /* padding: 0 40px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 160px;
}

/* 左边文字区域 */
.hero-text {
    flex: 1;
}

/* 应用商店按钮 */
.app-store-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    opacity: 0;
    transition: all 1s ease-out;
}

.app-store-buttons.animate {
    opacity: 1;
}

.app-store-link {
    position: relative;
    display: inline-block;
}

.app-store-link img {
    height: 45px;
    transition: transform 0.3s ease;
}

/* .app-store-link:hover img {
    transform: translateY(-3px);
} */

/* 二维码弹窗 */
.qr-popover {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #ffffff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0px 4px 20px 0px #0000004D;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.qr-popover::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #ffffff;
}

.qr-popover img {
    width: 150px;
    height: 150px;
    display: block;
}

.app-store-link:hover .qr-popover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.hero-text h1 {
    font-size: 80px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 50px;
    color: #ffffff;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease-out;
}

.hero-text h1.animate {
    opacity: 1;
    transform: translateX(0);
}

.hero-text h1 .highlight {
    color: #FFF263;
}

.subtitle {
    font-size: 16px;
    color: #B0B0B0;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
    opacity: 0;
    transition: all 1s ease-out;
}

.subtitle.animate {
    opacity: 1;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 120px;
    opacity: 0;
    transition: all 1s ease-out;
}

.cta-buttons.animate {
    opacity: 1;
}

.btn-primary,
.btn-secondary {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #FFF263;
    color: #000000;
    border-radius: 135px;
    padding: 12px 20px;
}

/* .btn-primary:hover {
    background-color: #E5C130;
    transform: translateY(-2px);
} */

.btn-secondary {
    color: #F6F6F6;
    background: transparent;
}

/* .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
} */

/* FDIC 信息 */
.fdic-info {
    display: flex;
    gap: 20px;
    align-items: center;
    opacity: 0;
    transition: all 1s ease-out;
}

.fdic-info.animate {
    opacity: 1;
}

.fdic-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.fdic-text {
    font-size: 12px;
    color: #888888;
    line-height: 1.2;
    max-width: 500px;
}

/* 动画定义 */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* 右边图片区域 */
.hero-images {
    /* flex: 1; */
    width: 550px;
    position: relative;
    height: 600px;
    margin-top: 70px;
}

/* 交叉卡片容器 */
.cards-container {
    position: relative;
    width: 400px;
    height: 500px;
    margin-left: auto;
}

.card {
    position: absolute;
    width: 300px;
    height: auto;
    border-radius: 20px;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); */
}

.card-top {
    left: 50%;
    /* opacity: 0; */
    transform: translateX(-50%) translateY(-220px);
    z-index: 1;
}

.card-top.animate {
    animation: cardSlideTop 1.2s ease-out forwards;
}

.card-bottom {
    left: calc(50% - 120px);
    /* opacity: 0; */
    transform: translateX(-50%) translateY(200px);
    z-index: 2;
}

.card-bottom.animate {
    animation: cardSlideBottom 1.2s ease-out forwards;
    animation-delay: 0.2s;
}

/* 加密货币容器 */
.crypto-container {
    position: absolute;
    bottom: 60%;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    display: flex;
    /* align-items: center; */
    gap: 30px;
    width: 100%;
    /* justify-content: center; */
    z-index: 2;
}

.credit-card-wrapper {
    opacity: 0;
    transform: translateX(-100px);
}

.credit-card-wrapper.animate {
    animation: slideInFromLeft 1s ease-out forwards;
    animation-delay: 0.5s;
}

.credit-card {
    width: 200px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.crypto-icons {
    display: flex;
    gap: 15px;
    opacity: 0;
    transform: translateX(100px);
    flex: 1;
}

.crypto-icons.animate {
    animation: slideInFromRight 1s ease-out forwards;
    animation-delay: 0.5s;
}

.crypto-icon {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    position: absolute;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); */
}

.crypto-icon.usdt {
    right: -50px;
    top: 20px;
}

.crypto-icon.btc {
    right: 0px;
    top: 120px;
}

/* ========== 第二屏样式 ========== */
.stats-section {
    min-height: 100vh;
    padding: 100px 0;
    position: relative;
}

/* 统计数据模块 */
.stats-container {
    display: flex;
    justify-content: space-around;
    background: rgba(60, 60, 60, 0.4);
    border-radius: 20px;
    padding: 50px 30px;
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(-100px);
    transition: all 1s ease-out;
}

.stats-container.animate {
    opacity: 1;
    transform: translateY(0);
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #FFF263;
    font-weight: 500;
}

/* 地球图片区域 */
.earth-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 650px;
    /* opacity: 0;
    transform: scale(0.8);
    transition: all 1s ease-out; */
}

/* .earth-container.animate {
    opacity: 1;
    transform: scale(1);
} */

.earth-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.light-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.light-overlay.fade-in {
    opacity: 1;
}

/* ========== 动画关键帧 ========== */
@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes cardSlideTop {
    to {
        transform: translateX(-50%) translateY(-80px);
    }
}

@keyframes cardSlideBottom {
    to {
        transform: translateX(-50%) translateY(0px);
    }
}

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

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

/* ========== 响应式设计 ========== */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        gap: 60px;
    }

    .hero-text h1 {
        font-size: 56px;
    }

    .hero-images {
        height: 500px;
    }

    .cards-container {
        width: 350px;
        height: 450px;
    }

    .card {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 42px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .stats-container {
        flex-wrap: wrap;
        gap: 30px;
    }

    .stat-item {
        flex: 1 1 40%;
    }
}

/* ========== 滚动Logo模块样式 ========== */
.scrolling-logos-section {
    /* padding: 80px 0; */
    background: linear-gradient(264.82deg, #FCF179 2.4%, #FFB917 97.09%);
    overflow: hidden;
}

.scrolling-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
}

/* 左边滚动列容器 */
.scrolling-columns {
    flex: 0 0 350px;
    display: flex;
    gap: 20px;
    height: 600px;
    overflow: hidden;
}

.scroll-column {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.scroll-track {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: scrollVertical 20s linear infinite;
}

.scroll-track-1 {
    animation-duration: 20s;
    animation-name: scrollUp;
}

.scroll-track-2 {
    animation-duration: 25s;
    animation-delay: -5s;
    animation-name: scrollDown;
}

.scroll-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.scroll-logo {
    width: 160px;
    height: 224px;
    background: #FFFFFF;
    border-radius: 192px;
    padding: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0px 35px 64px 0px #00000014; */
    transition: transform 0.3s ease;
    object-fit: contain;
}

.scroll-logo:hover {
    transform: scale(1.05);
}

/* 右边内容 */
.currency-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    transition: opacity 1.5s ease-out;
}

.currency-title,
.currency-content .currency-text {
    color: #000000;
    font-weight: 500;
    font-size: 100px;
}

.currency-content.animate {
    opacity: 1;
}

.currency-title {
    /* font-size: 56px; */
    /* font-weight: 600; */
    /* line-height: 1.1;
    margin-bottom: 40px;
    color: #1A1A1A; */
}

.currency-card-wrapper {
    margin-bottom: 80px;
    display: flex;
    gap: 42px;
    align-items: center;
    /* justify-content: center; */
    width: 100%;
}

.currency-card-image {
    height: 116px;
    width: auto;
    /* height: auto; */
}

.currency-description {
    font-size: 20px;
    color: #000000;
    font-weight: 400;
    line-height: 1.6;
    /* max-width: 500px; */
}

/* 滚动动画 */
@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

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

@keyframes scrollDown {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

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

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

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

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

/* 响应式设计 */
@media (max-width: 1024px) {
    .scrolling-content {
        flex-direction: column;
        gap: 60px;
        text-align: center;
        padding: 50px 0;
    }

    /* .currency-description{
        margin-bottom: 50px;
    } */
    .scroll-logo {
        width: 100px;
        height: 70px;
        padding: 10px 20px;
    }

    .scrolling-logos-section .container {
        padding: 0;
    }

    .scrolling-columns {
        flex: 0 0 auto;
        width: 100%;
        flex-direction: column;
        height: auto;
        overflow-x: hidden;
    }

    .scroll-column {
        flex: 1;
        overflow-x: hidden;
        overflow-y: visible;
    }

    .scroll-track {
        flex-direction: row;
    }

    .scroll-items {
        flex-direction: row;
    }

    .scroll-track-1 {
        animation-name: scrollLeft;
        animation-duration: 20s;
    }

    .scroll-track-2 {
        animation-name: scrollRight;
        animation-duration: 25s;
    }

    .currency-content {
        align-items: left;
        text-align: center;
        padding: 0 20px;
    }

    .currency-title,
    .currency-content .currency-text {
        font-size: 50px;
    }

    .currency-card-image {
        height: 80px;
    }
}

@media (max-width: 768px) {
    .scrolling-logos-section {
        /* padding: 60px 0; */
    }

    .scrolling-columns {
        gap: 15px;
        flex: 0 0 auto;
    }

    /* .scroll-logo {
        width: 100px;
        height: 100px;
        padding: 18px;
    } */

    .currency-title,
    .currency-content .currency-text {
        font-size: 32px;
        /* margin-bottom: 30px; */
    }

    .currency-card-image {
        height: 30px;
        /* max-width: 300px; */
    }

    .currency-description {
        font-size: 16px;
        margin-bottom: 50px;
    }
}

/* ========== 第三屏样式 ========== */
.features-section {
    min-height: 100vh;
    padding: 100px 0;
    position: relative;
}

/* 顶部标题区域 */
.features-header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(-80px);
    transition: all 1s ease-out;
}

.features-header.animate {
    opacity: 1;
    transform: translateY(0);
}

.features-subtitle {
    color: #FFF263;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-title {
    font-size: 52px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.2;
}

.features-description {
    font-size: 16px;
    color: #FFFFFF;
    max-width: 400px;
    margin: 0 auto;
}

/* 中间内容区域 */
.features-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
    margin-bottom: 100px;
    position: relative;
}

/* 左侧特性 */
.features-left {
    /* flex: 1; */
    display: flex;
    flex-direction: column;
    gap: 90px;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease-out;
}

.features-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.feature-item {
    line-height: 1;
}

.features-left,
.features-right {
    flex: 1;
    max-width: 350px;
}

.features-left .feature-item {
    text-align: right;
}

.feature-highlight {
    font-size: 32px;
    font-weight: 500;
    color: #FFF263;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 15px;
}

.feature-desc {
    font-size: 14px;
    color: #959595;
}

/* 中间卡片 */
.features-card {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.main-card {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    /* box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6); */
    transition: transform 0.3s ease;
}

/* .main-card:hover {
    transform: scale(1.05);
} */

/* 右侧特性 */
.features-right {
    /* flex: 1; */
    display: flex;
    flex-direction: column;
    gap: 40px;
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s ease-out;
}

.features-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.features-right .feature-item {
    text-align: left;
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.features-right .feature-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.features-right .feature-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    font-size: 14px;
    color: #B0B0B0;
    margin-bottom: 8px;
    padding-left: 5px;
}

/* 品牌Logo循环区域 */
.brands-section {
    margin-top: 80px;
    overflow: hidden;
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.brands-track {
    display: flex;
    width: fit-content;
    animation: scroll 50s linear infinite;
}

.brands-slide {
    display: flex;
    align-items: center;
    gap: 120px;
    padding: 0 30px;
}

.brand-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.brand-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Logo无限循环动画 */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

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

/* 第三屏响应式 */
@media (max-width: 1024px) {
    .features-content {
        flex-direction: column;
        gap: 60px;
    }

    .features-left,
    .features-right {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .features-title {
        font-size: 36px;
    }

    .brands-slide {
        gap: 80px;
    }
}

@media (max-width: 768px) {
    .features-title {
        font-size: 28px;
    }

    .features-content {
        gap: 40px;
    }

    .feature-highlight {
        font-size: 36px;
    }

    .feature-title {
        font-size: 18px;
    }

    .brands-slide {
        gap: 60px;
    }
}

/* ========== 背景图容器 ========== */
.modules-with-bg {
    position: relative;
}

/* ========== 第四屏 - 支付模块样式 ========== */
.payment-module-section {
    padding: 120px 0;
    position: relative;
}

.payment-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 100px;
}

/* 左边卡片区域 */
.payment-card-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s ease-out;
}

.payment-card-container.animate {
    opacity: 1;
    transform: translateY(0);
}

.payment-card {
    /* background: #D9D9D9; */
    background: linear-gradient(180deg, #393939 0%, #242528 100%);
    border-radius: 30px;
    padding: 60px;
    position: relative;
    width: 660px;
    height: 860px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}

.payment-img {
    position: absolute;
    max-width: 90%;
    height: auto;
    opacity: 0;
    transform: translateY(100%);
    transition: all 1s ease-out;
}

.payment-card-container.animate .payment-img {
    opacity: 1;
    transform: translateY(0);
}

.payment-left {
    left: 10%;
    bottom: 0px;
    width: 400px;
    transition-delay: 0.2s;
}

.payment-right {
    left: 30%;
    bottom: 0px;
    width: 400px;
    transition-delay: 0.4s;
}

/* 右边文字区域 */
.payment-text {
    flex: 1;
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s ease-out;
}

.payment-text.animate {
    opacity: 1;
    transform: translateX(0);
}

.badge {
    display: inline-block;
    background: #999999;
    border: 1px solid #FFFFFF80;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #242528;
    margin-bottom: 20px;
    padding-left: 24px;
    position: relative;
}

.badge::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #242528;
    border-radius: 50%;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.payment-text h2 {
    font-size: 64px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.payment-text .description {
    font-size: 18px;
    color: #BBBBBBB2;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 60px;
}

.payment-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 100px;
}

.payment-feature-item {
    display: flex;
    gap: 12px;
    align-items: center;
    background: #505050;
    border: 1.25px solid #0A15191F;
    padding: 16px 14px;
    border-radius: 16px;
}

.feature-icon-box {
    width: 46px;
    height: 46px;
    background: #000000;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.payment-feature-item h4 {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.45;
    margin: 0;
}

.btn-get-started {
    padding: 15px 40px;
    font-size: 16px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #FFF263;
    color: #242528;
    transition: all 0.3s ease;
}

/* .btn-get-started:hover {
    background-color: #E5C130;
    transform: translateY(-2px);
} */

/* 背景图片分隔 */
.bg-separator {
    margin-top: 80px;
    width: 100%;
    overflow: hidden;
}

.bg-image {
    width: 100vw;
    height: auto;
    display: block;
}

/* ========== 第五屏 - 重构银行样式 ========== */
.reimagined-section {
    padding: 120px 0;
}

.reimagined-header {
    text-align: center;
    max-width: min(100%, 1600px);
    margin: 0 auto 80px;
    opacity: 0;
    transform: translateY(-80px);
    transition: all 1s ease-out;
}

.reimagined-header.animate {
    opacity: 1;
    transform: translateY(0);
}

.reimagined-header h2 {
    font-size: 64px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.reimagined-header .description {
    font-size: 18px;
    font-weight: 500;
    color: #BBBBBBB2;
    line-height: 1.6;
}

.reimagined-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s ease-out;
}

.reimagined-image-container.animate {
    opacity: 1;
    transform: translateY(0);
}

.reimagined-page {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .payment-content {
        flex-direction: column;
        gap: 60px;
        align-items: center;
    }

    /* .payment-card {
        width: 100%;
        max-width: 500px;
        height: 500px;
    } */

    .payment-text h2,
    .reimagined-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {

    .payment-module-section,
    .reimagined-section {
        padding: 80px 0;
    }

    .payment-card {
        height: 600px;
        width: 500px;
        padding: 40px;
    }

    .payment-left,
    .payment-right {
        width: 270px;
    }

    .payment-text h2,
    .reimagined-header h2 {
        font-size: 28px;
    }

    .payment-feature-item h4 {
        font-size: 16px;
    }

    .reimagined-header {
        margin-bottom: 60px;
    }
}

/* ========== 第六屏 - 客户案例样式 ========== */
.customer-stories-section {
    padding: 120px 0;
    /* background-color: #242528; */
}

.stories-header {
    text-align: left;
    margin-bottom: 80px;
    opacity: 0;
    transition: opacity 1s ease-out;
}

.stories-header.animate {
    opacity: 1;
}

.stories-header h2 {
    font-size: 52px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #ffffff;
}

.btn-explore {
    padding: 12px 28px;
    font-size: 15px;
    border-radius: 50px;
    /* border: 1px solid rgba(255, 255, 255, 0.3); */
    cursor: pointer;
    font-weight: 500;
    background-color: #FFFFFF1A;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: none;
}

.btn-explore:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.stories-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.story-card {
    /* max-width: 600px; */
    background: #2A2C2F;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: all 1s ease-out;
    flex: 1;
    padding: 30px;
}

.story-card-left {
    transform: translateX(-100px);
    max-width: 600px;
    /* width: 500px; */
}

.story-card-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.story-card-right {
    flex: 1;
    transform: translateX(100px);
}

.story-card-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.story-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.story-content {
    padding: 30px 0;
}

.story-text {
    font-size: 16px;
    font-weight: 400;
    color: #A1A1AA;
    line-height: 1.6;
    margin-bottom: 20px;
}

.story-author {
    font-size: 14px;
    color: #A1A1AA;
}

.story-author strong {
    font-weight: 400;
    color: #fff;
}

/* ========== Footer样式 ========== */
.footer-section {
    position: relative;
    padding-bottom: 200px;
}

.footer-cta {
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-cta-content {
    background: linear-gradient(135deg, #FFF263, #E4A724);
    padding: 80px 120px;
    border-radius: 30px;
    text-align: center;
    max-width: min(100%, 1600px);
    width: 90%;
    position: relative;
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s ease-out;
}

.footer-cta-content.animate {
    opacity: 1;
    transform: scale(1);
}

.footer-cta-content h2 {
    font-size: 47px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 15px;
    opacity: 0;
    transform: translate(300px, 100px);
    transition: all 1s ease-out 0.3s;
}

.footer-cta-content.animate h2 {
    opacity: 1;
    transform: translate(0, 0);
}

.footer-cta-content p {
    font-size: 18px;
    color: #000000;
    margin-bottom: 35px;
    opacity: 0;
    transform: translate(300px, 100px);
    transition: all 1s ease-out 0.3s;
}

.footer-cta-content.animate p {
    opacity: 1;
    transform: translate(0, 0);
}

.btn-footer-cta {
    padding: 15px 35px;
    font-size: 14px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    background-color: #fff;
    color: #164E63;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translate(300px, 100px);
    transition: all 1s ease-out 0.3s;
}

.footer-cta-content.animate .btn-footer-cta {
    opacity: 1;
    transform: translate(0, 0);
}

.btn-footer-cta:hover {
    background-color: #000000;
    transform: translateY(-2px);
    color: #fff;
}

.footer-main {
    padding: 60px 0 40px;
    opacity: 0;
    transform: translateY(80px);
    transition: all 1s ease-out;
}

.footer-main.animate {
    opacity: 1;
    transform: translateY(0);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-left {
    flex: 1;
    max-width: 350px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 14px;
    color: #B0B0B0;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-links {
    flex: 2;
    display: flex;
    gap: 100px;
    justify-content: flex-end;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: #92939D;
    margin-bottom: 20px;
}

.footer-column a {
    font-size: 14px;
    color: #FBFBFC;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .stories-cards {
        flex-direction: column;
        align-items: center;
    }

    .story-card {
        max-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        /* flex-wrap: wrap;
        gap: 40px; */
    }

    .footer-cta-content {
        padding: 60px 60px;
    }

    .footer-cta-content h2 {
        font-size: 40px;
    }

    .nav-menu {
        gap: 25px;
    }

    .app-store-buttons {
        /* flex-direction: column; */
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .customer-stories-section {
        padding: 80px 0;
    }

    .stories-header h2 {
        font-size: 32px;
    }

    .footer-cta-content {
        padding: 40px 30px;
    }

    .footer-cta-content h2 {
        font-size: 28px;
    }

    .footer-links {
        gap: 30px;
        justify-content: start;
    }

    .footer-column {
        min-width: 150px;
    }

    .navbar {
        padding: 15px 0;
    }

    .nav-menu {
        display: none;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .app-store-link img {
        /* height: 50px;
        width: 50px; */
    }

    .fdic-info {
        flex-direction: column;
        gap: 10px;
    }
}