/* 全局样式 */
body {
    background-color: #000000;
    min-height: 100vh;
    color: white;
    padding: 20px;
}
* {
    font-family: 'Metropolis Medium', sans-serif;
    color: white;
}
/* Logo 样式 */
.logo {
    width: 200px;
    height: 60px;
    margin: 48px auto;
    display: block;
}

/* 语言切换按钮样式 */
.language-switch-btn {
    transition: all 0.3s ease;
    font-size: 12px;
    padding: 5px 10px;
}

.language-switch-btn:hover {
    transform: translateY(-1px);
    text-decoration: none !important;
    color: white !important;
}

/* 英雄区样式 */
.hero-section {
    align-items: stretch;
    padding: 40px;
    position: relative;
}

/* 粒子背景样式 */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    z-index: 1;
}

.hero-left {
    position: relative;
    z-index: 1;
}

.hero-image {
    max-width: 35%;
    width: auto;
    height: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* 头部卡片样式 */
.head-text {
    color: #10D078;
    text-transform: uppercase;
    letter-spacing: 6px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.756), #10d07a29);
    padding: 3vh;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    width: auto;
    font-size: 16px;    
}

.head-icon {
    width: 24px;
    height: 24px;
}



.hero-subtitle {
    font-size: 2.8vw;
    background: linear-gradient(135deg, white, #defbee, #6df3b7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 10px;
    margin-bottom: 0;
    line-height: 1.3;
    font-weight: 400;
}

.hero-title {
    font-weight: 600;
    font-size: 3.5vw;
    background: linear-gradient(135deg, white, #defbee, #6df3b7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 500;
}

/* 按钮样式 */
.button {
    --black-700: hsla(0 0% 12% / 1);
    --border_radius: 9999px;
    --transtion: 0.3s ease-in-out;
    --offset: 2px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transform-origin: center;
    padding: 16px 32px;
    background-color: transparent;
    border: none;
    border-radius: var(--border_radius);
    transform: scale(calc(1 + (var(--active, 0) * 0.1)));
    transition: transform var(--transtion);
    z-index: 3;
    font-family: inherit;
    position: relative;
}

.button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: var(--black-700);
    border-radius: var(--border_radius);
    box-shadow: inset 0 0.5px hsl(0, 0%, 100%), inset 0 -1px 2px 0 hsl(0, 0%, 0%), 0px 4px 10px -4px hsla(0 0% 0% / calc(1 - var(--active, 0))), 0 0 0 calc(var(--active, 0) * 0.375rem) #016538;
    transition: all var(--transtion);
    z-index: -1;
}

.button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: #10D078;
    background-image: radial-gradient(at 51% 89%, #61eaad 0px, transparent 50%), radial-gradient(at 100% 100%, #38eb9a 0px, transparent 50%), radial-gradient(at 22% 91%, #38eb9a 0px, transparent 50%);
    background-position: top;
    opacity: var(--active, 0);
    border-radius: var(--border_radius);
    transition: opacity var(--transtion);
    z-index: 0;
}

.button-text {
    position: relative;
    z-index: 10;
    color: white;
    font-size: 16px;
    font-weight: 500;
    pointer-events: none;
}

.button .dots_border {
    --size_border: calc(100% + 2px);
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: var(--size_border);
    height: var(--size_border);
    background-color: transparent;
    border-radius: var(--border_radius);
    z-index: -10;
}

.button .dots_border::before {
    content: "";
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: left;
    transform: rotate(0deg);
    width: 100%;
    height: 2rem;
    background-color: white;
    mask: linear-gradient(transparent 0%, white 120%);
    animation: rotate 2s linear infinite;
}

/* 按钮悬停效果 */
.button:hover {
    --active: 1;
}

.button:active {
    transform: scale(0.95);
}

/* 旋转动画 */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.col-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    
    max-width: 33.333333%;
}

/* 价格对比区域样式 */
.price-comparison-section {
    padding: 20px 40px;
    background-color: rgba(255, 255, 255, 0.02);
    max-width: 1200px;
    margin: 0 auto;
}

/* 价格表格样式 */
.price-table {
    width: 100%;
    background: transparent;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    border: none !important;
}

.price-table thead th {
    background: transparent;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px 30px;
    border: none !important;
    text-align: left;
}

.price-table thead th:first-child {
    width: 35%;
    padding-left: 0;
}

.price-table thead th:nth-child(2) {
    width: 30%;
    text-align: center;
}

.price-table thead th:last-child {
    width: 35%;
    padding-left: 0;
}

.price-table tbody tr {
    border: none !important;
}

.price-table tbody td {
    padding: 25px 30px;
    border: none !important;
    vertical-align: middle;
    text-align: left;
}

.price-table tbody td:first-child {
    width: 35%;
    padding-left: 0;
}

.price-table tbody td:nth-child(2) {
    width: 30%;
    text-align: center;
}

.price-table tbody td:last-child {
    width: 35%;
    padding-left: 0;
}

.crypto-cell {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
}

.crypto-cell.right-cell {
    justify-content: flex-start;
    width: 100%;
}

.crypto-cell.right-cell .crypto-info {
    flex-grow: 0;
    width: auto;
}

.buy-cell {
    width: 30%;
    text-align: center;
}

.crypto-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.crypto-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
}

.crypto-pair {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.crypto-price {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.buy-button {
    background-color: #10D078 !important;
    color: #000000 !important;
    border: none;
    padding: 10px 80px;
    font-weight: 600;
    border-radius: 4px;
    font-size: 14px;
    outline: none !important;
    box-shadow: none !important;
}

.buy-button:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.buy-button:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    transform: translateY(0);
}

/* 最近购买记录区域样式 */
.recent-purchases-section {
    padding: 40px 0;
    margin: 0 auto;
}

.recent-purchases-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* 最近购买记录表格样式 */
.recent-purchases-table {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    overflow: hidden;
    border: none !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-collapse: separate;
    border-spacing: 0;
}

.recent-purchases-table thead th {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px 15px;
    border: none !important;
}

.recent-purchases-table tbody tr {
    border: none !important;
    transition: background-color 0.3s ease;
}

.recent-purchases-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.recent-purchases-table tbody td {
    padding: 15px;
    border: none !important;
    vertical-align: middle;
    color: #ffffff;
    font-size: 14px;
}

.amount-cell {
    font-weight: 600;
    color: #10D078;
}

.from-cell {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: #cccccc;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.time-cell {
    color: #aaaaaa;
    font-size: 13px;
}

.view-transaction {
    color: #10D078;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.view-transaction:hover {
    color: #0ea368;
    text-decoration: underline;
}

.network-cell {
    color: #ffffff;
    font-weight: 500;
    font-size: 12px;
}

/* 如何交换加密货币套利区域样式 */
.how-to-swap-section {
    padding: 40px 0;
    margin: 0 auto;
}

.swap-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.swap-description {
    color: #bebebe;
    font-size: 18px;
    text-align: center;
    margin-bottom: 120px;
    font-weight: 400;
}

.swap-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.step-card {
    background: rgba(45, 45, 45, 0.8);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.step-card:hover {
    background: rgba(55, 55, 55, 0.9);
    border: 1.5px solid #10D078;
}

.step-card:hover .step-number {
    background: linear-gradient(#4df4a9, #10D078);
    color: black;
}

.step-number {
    position: absolute;
    top: -25px;
    right: 40px;
    background: rgba(128, 128, 128);
    color: #ffffff;
    padding: 15px 50px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 500;
}

.step-icon {
    margin: 30px 0 25px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: rgba(16, 208, 120, 0.1);
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.step-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.step-description {
    color: #bebebe;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Virtual Card区域样式 */
.virtual-card-section {
    padding: 80px 0;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.02);
}

.virtual-card-left {
    padding: 40px;
    text-align: left;
}

.virtual-card-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 1.3;
    text-align: left;
}

.virtual-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #bebebe;
    font-size: 16px;
}

.feature-bullet {
    color: #6c757d;
    font-size: 20px;
    margin-right: 15px;
    font-weight: bold;
}

.feature-text {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.5;
}

.coming-soon-button {
    background: linear-gradient(#4df4a9, #10D078);
    padding: 20px 10px;
    width: 40%;
    border-radius: 10px;
    font-size: 12pt;
    text-align: center;
    color: black;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}



.virtual-card-right {
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-container {
    position: relative;
    width: 600px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card1, .card2 {
    position: absolute;
    width: 600px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.card1 {
    top: 0;
    left: 0;
    z-index: 2;
}

.card2 {
    top: 120px;
    right: 185px;
    z-index: 1;
}

/* Why Swaplyn Crypto Arbitrage区域样式 */
.why-swaplyn-section {
    padding: 80px 0;
}

.why-swaplyn-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

/* 特性卡片网格 */

.feature-card {
    border-radius: 12px;
    padding: 40px 30px;
    text-align: left;
    height: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
}

.icon-placeholder {
    width: 300px;
    height: 200px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clock-icon {
    background-image: url('/assets/img/clock_1.5x.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.star-icon {
    background-image: url('/assets/img/stars_1.5x.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.arrow-icon {
    background-image: url('/assets/img/arrows_1.5x.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.security-icon {
    background-image: url('/assets/img/cards_1.5x.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.feature-card-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: left;
}

.feature-card-description {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    text-align: left;
    flex-grow: 1;
}

/* 24小时统计部分 */
.statistics-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 60px;
    max-width: 1140px;
    margin: 0 auto;
}

.statistics-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}

.stat-card {
    padding: 15px 20px;
    text-align: left;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    background: rgb(32, 32, 32);
}

.stat-icon {
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 24px;
    color: #10D078;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 208, 120, 0.1);
    border-radius: 8px;
}

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

.stat-label {
    color: #6c757d;
    font-size: 80%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Meet Our Team区域样式 */
.team-section {
    padding: 80px 0;
    max-width: 1140px;
    margin: 0 auto;
}

.team-content {
    padding-right: 40px;
}

.team-title {
    color: #10D078;
    font-size: 32px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.team-description {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

/* 轮播样式 */
.team-carousel {
    position: relative;
}

.carousel-container {
    position: relative;
    width: 80%;
    max-width: 300px;
    height: 350px;
    overflow: hidden;
    border-radius: 12px;
    margin: 0 auto;
}

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

.carousel-image.active {
    opacity: 1;
}

/* 轮播控制器样式 */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(0, 0, 0, 0.7);
}

.carousel-prev i,
.carousel-next i {
    font-size: 16px;
}

/* Our Partners区域样式 */
.partners-section {
    padding: 80px 0 0 0;
    max-width: 1140px;
    margin: 0 auto;
}

.partners-title-container {
    text-align: center;
    margin-bottom: 60px;
}

.partners-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    display: inline-block;
    padding: 15px 80px;
    border: 2px solid #ffffff;
    border-radius: 25px;
    margin: 0;
    letter-spacing: 1px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-img {
    height: 60px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.partner-logo:hover .partner-img {
    filter: brightness(1);
}

/* Trustpilot按钮样式 */
.trustpilot-button-container {
    text-align: center;
    margin-top: 50px;
}

.trustpilot-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #10D078;
    border-radius: 4px;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 16px;
    color: #333333;
}

.trustpilot-btn:hover {
    text-decoration: none;
}

.trustpilot-text {
    font-weight: 500;
    color: #000000;
}

.trustpilot-icon {
    width: 80px;
    height: 20px;
    flex-shrink: 0;
}

.trustpilot-brand {
    font-weight: 600;
    color: #00B67A;
}

/* FAQ区域样式 */
.faq-section {
    padding: 40px 0;
    max-width: 1140px;
    margin: 0 auto;
}

.faq-title {
    color: #ffffff;
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background: transparent;
    transition: background 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-question-text {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

.faq-icon {
    color: #10D078;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer.active {
    max-height: 200px;
}

.faq-answer p {
    padding: 20px 25px;
    margin: 0;
    color: #cccccc;
    font-size: 15px;
    line-height: 1.6;
}

/* 响应式设计 - 利用Bootstrap媒体查询 */
@media (max-width: 768px) {
    /* Logo移动端优化 */
    .logo {
        margin: 30px auto !important;
        display: block !important;
        width: 150px !important; /* 移动端适配尺寸 */
        height: auto !important;
    }
    
    /* 头部区域布局 */
    .container-fluid > .row:first-child {
        margin-bottom: 20px;
        position: relative;
    }
    
    /* 移动端logo区域占用全宽 - 只针对第一行 */
    .container-fluid > .row:first-child .col-md-10 {
        width: 100% !important;
        float: none !important;
        text-align: center;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* 移动端语言切换按钮绝对定位到右上角 - 只针对第一行 */
    .container-fluid > .row:first-child .col-md-2 {
        position: absolute !important;
        top: 20px;
        right: 15px;
        width: auto !important;
        float: none !important;
        z-index: 10;
        padding: 0;
    }
    
    /* 英雄区域移动端居中 */
    .hero-section {
        padding: 30px 0;
        text-align: center;
    }
    
    .hero-left, .hero-right {
        text-align: center;
    }
    
    .hero-image-container {
        display: flex;
        justify-content: center;
    }
    
    /* 保持语言切换按钮在右侧 */
    .language-switcher {
        text-align: right !important;
        padding-top: 0 !important; /* 移动端移除顶部padding */
    }
    
    .head-text {
        letter-spacing: 3px;
        padding: 2vh;
        font-size: 14px;
        margin-bottom: 20px;
        text-align: center;
        justify-content: center;
    }
    
    .head-icon {
        width: 20px;
        height: 20px;
    }
    
    .hero-title {
        font-size: 6vw;
    }
    
    .hero-subtitle {
        font-size: 4.5vw;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .button {
        padding: 0.8rem 1.5rem;
        display: block;
        margin: 0 auto;
        width: fit-content;
    }
    
    .button-text {
        font-size: 14px;
    }
    
    .hero-image-container {
        margin-top: 30px;
    }
    
    .hero-image {
        max-width: 70%;
        border-radius: 12px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    }
    
    /* 价格对比区域移动端样式 */
    .price-comparison-section {
        padding: 20px 10px;
    }
    
    /* 创建水平滚动容器 */
    .price-comparison-section > div {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0 10px;
        position: relative;
    }
    
    /* 滚动阴影提示 */
    .price-comparison-section > div::after {
        content: '';
        position: absolute;
        top: 0;
        right: 10px;
        width: 20px;
        height: 100%;
        background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1));
        pointer-events: none;
    }
    
    .price-table {
        min-width: 480px; /* 设置最小宽度 */
        width: 100%;
        margin: 0;
    }
    
    .price-table thead th {
        font-size: 12px;
        padding: 12px 8px;
        white-space: nowrap;
    }
    
    .price-table tbody td {
        padding: 15px 8px;
        font-size: 14px;
    }
    
    .crypto-cell {
        min-width: 140px;
    }
    
    .buy-cell {
        min-width: 80px;
        text-align: center;
    }
    
    .crypto-icon {
        width: 24px;
        height: 24px;
    }
    
    .crypto-pair {
        font-size: 12px;
    }
    
    .crypto-price {
        font-size: 14px;
        font-weight: 600;
    }
    
    .buy-button {
        padding: 8px 16px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    /* 最近购买记录移动端样式 */
    .recent-purchases-section {
        padding: 20px 10px;
    }
    
    .recent-purchases-title {
        font-size: 20px;
        margin-bottom: 25px;
        text-align: center;
        padding: 0 10px;
    }
    
    /* 表格滚动容器 */
    .table-scroll-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0 10px;
        position: relative;
        margin: 0 -10px; /* 抵消外部padding */
    }
    
    /* 滚动阴影提示 */
    .table-scroll-container::after {
        content: '';
        position: absolute;
        top: 0;
        right: 10px;
        width: 20px;
        height: 100%;
        background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1));
        pointer-events: none;
    }
    
    .recent-purchases-table {
        min-width: 600px; /* 设置最小宽度 */
        width: 100%;
        margin: 0;
    }
    
    .recent-purchases-table thead th {
        font-size: 12px;
        padding: 12px 8px;
        white-space: nowrap;
    }
    
    .recent-purchases-table tbody td {
        padding: 12px 8px;
        font-size: 13px;
        white-space: nowrap;
    }
    
    /* 金额列 */
    .amount-cell {
        min-width: 100px;
        font-weight: 600;
    }
    
    /* 地址列 */
    .from-cell {
        min-width: 150px;
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
        font-family: 'Courier New', monospace;
        font-size: 11px;
    }
    
    /* 时间列 */
    .time-cell {
        min-width: 120px;
        font-size: 11px;
    }
    
    /* 查看交易列 */
    .view-cell {
        min-width: 80px;
        text-align: center;
    }
    
    .view-transaction {
        font-size: 11px;
        padding: 4px 8px;
        border-radius: 4px;
        background: rgba(16, 208, 120, 0.1);
        color: #10D078;
        text-decoration: none;
    }
    
    /* 网络列 */
    .network-cell {
        min-width: 80px;
        font-size: 11px;
    }
    

    
    /* 如何交换加密货币套利移动端样式 */
    .how-to-swap-section {
        padding: 40px 20px;
    }
    
    .swap-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .swap-description {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .swap-steps {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-card {
        padding: 30px 20px;
        min-height: 280px;
        margin-bottom: 20px;
    }
    
    .step-number {
        top: -20px;
        right: 30px;
        padding: 12px 30px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 500;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        margin: 20px auto 20px auto;
    }
    
    .step-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .step-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .step-description {
        font-size: 13px;
        line-height: 1.5;
    }
    
    /* Virtual Card移动端样式 */
    .virtual-card-section {
        padding: 40px 0;
    }
    
    .virtual-card-left {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .virtual-card-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .feature-item {
        margin-bottom: 12px;
        font-size: 14px;
    }
    
    .feature-bullet {
        font-size: 16px;
        margin-right: 12px;
    }
    
    .feature-text {
        font-size: 14px;
        color: #6c757d;
    }
    
    .coming-soon-button {
        padding: 16px 10px;
        font-size: 11pt;
        width: 60%;
    }
    
    .virtual-card-right {
        padding: 20px;
    }
    
    .card-container {
        width: 320px;
        height: 280px;
    }
    
    .card1, .card2 {
        width: 300px;
    }
    
    .card1 {
        top: 0;
        left: 0;
    }
    
    .card2 {
        top: 15px;
        right: 0;
    }
    
    /* Why Swaplyn移动端样式 */
    .why-swaplyn-section {
        padding: 40px 20px;
    }
    
    .why-swaplyn-title {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    
    .feature-card {
        padding: 30px 20px;
        min-height: 250px;
        margin-bottom: 20px;
    }
    
    .icon-placeholder {
        width: 60px;
        height: 60px;
    }
    
    .feature-card-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .feature-card-description {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .statistics-section {
        padding-top: 40px;
    }
    
    .statistics-title {
        font-size: 20px;
        margin-bottom: 30px;
    }
    
    .stat-card {
        padding: 20px 15px;
        min-height: 120px;
        margin-bottom: 15px;
    }
    
    .stat-icon-placeholder {
        width: 30px;
        height: 30px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    /* Meet Our Team区域移动端样式 */
    .team-section {
        padding: 40px 0;
    }
    
    .team-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .team-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .team-description {
        font-size: 14px;
    }
    
    .carousel-container {
        width: 90%;
        max-width: 250px;
        height: 200px;
    }
    
    /* Our Partners区域移动端样式 */
    .partners-section {
        padding: 40px 0;
    }
    
    .partners-title {
        font-size: 18px;
        padding: 12px 30px;
    }
    
    .partners-logos {
        gap: 25px;
    }
    
    .partner-img {
        height: 45px;
        max-width: 100px;
    }
    
    /* Trustpilot按钮移动端样式 */
    .trustpilot-button-container {
        margin-top: 30px;
    }
    
    .trustpilot-btn {
    font-size: 14px;
        padding: 10px 16px;
        gap: 6px;
    }
    
    .trustpilot-icon {
        width: 70px;
        height: 18px;
    }
    
    /* FAQ区域移动端样式 */
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-title {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .faq-accordion {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question-text {
        font-size: 15px;
        padding-right: 10px;
    }
    
    .faq-answer p {
        padding: 15px 20px;
        font-size: 14px;
    }
}

/* 客服按钮样式 */
.customer-service-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10D078, #0EA566);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(16, 208, 120, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    color: white;
    font-size: 12px;
    text-decoration: none;
}

.customer-service-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(16, 208, 120, 0.4);
    background: linear-gradient(135deg, #0EA566, #10D078);
}

.customer-service-btn i {
    font-size: 20px;
    margin-bottom: 2px;
    color: white;
}

.customer-service-btn .service-text {
    font-size: 10px;
    font-weight: 500;
    color: white;
}

/* 客服按钮移动端适配 */
@media (max-width: 768px) {
    .customer-service-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .customer-service-btn i {
        font-size: 16px;
    }
    
    .customer-service-btn .service-text {
        font-size: 8px;
    }
}