/* 横向滚动容器 */
.scroll-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* 提供 iOS 设备更流畅的滚动 */
    scrollbar-width: none; /* 隐藏 Firefox 滚动条 */
}

.scroll-container::-webkit-scrollbar {
    display: none; /* 隐藏 Webkit 滚动条 */
}

/* 横向滚动内容 */
.scroll-content {
    display: flex;
    flex-wrap: nowrap;
    padding: 30px;
    gap: 15px;
}

/* 滚动项目样式 */
.scroll-item {
    flex: 0 0 auto;
    width: 280px; /* 或根据需要调整宽度 */
}

/* 媒体查询 - 移动端样式 */
@media screen and (max-width: 768px) {
    .scroll-container {
        margin: 0 -15px; /* 抵消页面padding */
    }
    
    .scroll-item {
        width: 220px; /* 移动端卡片宽度 */
    }
}

/* 自动滚动动画 */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.auto-scroll {
    animation: scroll 20s linear infinite;
}

/* 支付图标样式 */
.payment-icon {
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 15px;
}

/* PC端样式 */
@media screen and (min-width: 769px) {
    .scroll-content {
        justify-content: center;
        animation: none;
        flex-wrap: wrap;
    }
    
    .mobile-only-icons {
        display: none;  /* PC端隐藏重复的图标 */
    }
}

/* 移动端样式 */
@media screen and (max-width: 768px) {
    .scroll-container {
        width: 100%;
        overflow-x: hidden;
    }
    
    .scroll-content {
        display: flex;
        gap: 0;
        padding: 15px 0;
        width: 200%; /* 设置为两倍宽度 */
    }
    
    .payment-icon {
        width: 3.5rem;
        height: 3.5rem;
        margin: 0 10px;
    }
    
    .mobile-only-icons {
        display: flex;  /* 移动端显示重复的图标 */
    }
    
    /* 优化滚动动画 */
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);  /* 滚动一半距离 */
        }
    }
    
    .scroll-content {
        animation: scroll 20s linear infinite;
    }

    /* 添加动画暂停和恢复 */
    .scroll-content:hover {
        animation-play-state: paused;
    }
}

/* 添加过渡效果，使动画更平滑 */
.scroll-content {
    transition: transform 0.5s ease;
}

/* 添加表格容器样式 */
.table-container {
    position: relative;
    height: 38rem;
    overflow: hidden;
}

.wit-table-body {
    position: absolute;
    width: 100%;
    transition: all 0.5s ease;
}

/* 表格行样式 */
.table-row {
    height: 50px;
    line-height: 50px;
    transition: opacity 0.3s ease;
}

/* 弹窗样式 */
.custom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background: #1e1a25;
    width: 90%;
    max-width: 500px;
    margin: 20px auto;
    border-radius: 15px;
    padding: 20px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
    color: blueviolet;
    margin: 0;
    font-size: 1.5rem;
}

.close-modal {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.close-modal:hover {
    opacity: 1;
}

.modal-body {
    color: #fff;
    margin-bottom: 20px;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* 动画效果 */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        transform: translateY(-60%);
        opacity: 0;
    }
    to {
        transform: translateY(-50%);
        opacity: 1;
    }
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10px;
        padding: 15px;
    }
    
    .modal-title {
        font-size: 1.2rem;
    }
}

/* Bounty Page Styles */
.bounty-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.bounty-header {
    margin-bottom: 3rem;
}

.bounty-title {
    color: blueviolet;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bounty-subtitle {
    color: #666;
    font-size: 1.2rem;
}

.bounty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bounty-card {
    background: #1e1a25;
    border-radius: 15px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.bounty-card:hover {
    transform: translateY(-5px);
}

.bounty-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.bounty-card-header i {
    font-size: 2rem;
    margin-right: 1rem;
    color: blueviolet;
}

.bounty-card-header h2 {
    color: #fff;
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.3;
}

.bounty-card-body {
    color: #ccc;
}

.bounty-card-body ul, 
.bounty-card-body ol {
    padding-left: 1.2rem;
}

.bounty-card-body li {
    margin-bottom: 0.8rem;
}

.bounty-note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 1rem;
    font-style: italic;
}

.claim-card {
    grid-column: 1 / -1;
    background: linear-gradient(145deg, #1e1a25, #2a2433);
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    .bounty-container {
        padding: 1rem;
    }
    
    .bounty-title {
        font-size: 2rem;
    }
    
    .bounty-card {
        padding: 1rem;
    }
    
    .bounty-card-header h2 {
        font-size: 1.1rem;
    }
}

.social-platforms {
    font-size: 0.9rem;
    color: #888;
    margin-top: 5px;
}

/* VIP Club Styles */
.vip-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.vip-header {
    margin-bottom: 3rem;
}

.vip-title {
    color: blueviolet;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.vip-subtitle {
    color: #ccc;
    font-size: 1.2rem;
}

.benefit-card {
    background: #1e1a25;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    color: blueviolet;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #ccc;
}

.info-card, .tips-card {
    background: #1e1a25;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.info-card h2, .tips-card h2 {
    color: blueviolet;
    margin-bottom: 1.5rem;
}

.info-content, .tips-content {
    color: #ccc;
}

.example-box {
    background: rgba(138, 43, 226, 0.1);
    border-left: 4px solid blueviolet;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 15px 15px 0;
}

.example-box h4 {
    color: blueviolet;
    margin-bottom: 1rem;
}

.tips-content ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.tips-content li {
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-style: italic;
    color: #888;
    margin-top: 1.5rem;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    .vip-container {
        padding: 1rem;
    }
    
    .vip-title {
        font-size: 2rem;
    }
    
    .benefit-card, .info-card, .tips-card {
        padding: 1.5rem;
    }


}

/* VIP表格样式 */
.vip-levels-section {
    margin: 3rem 0;
    background: #1a1520; /* 更深的背景色 */
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.table-responsive {
    margin-top: 1.5rem;
}

.table {
    color: #a8a8b3; /* 更柔和的文字颜色 */
    margin-bottom: 0;
    background: transparent;
}

.table-bordered {
    border: none;
}

.table thead th {
    background: #241b2d; /* 更深的表头背景 */
    color: #e0e0e0; /* 更柔和的表头文字颜色 */
    border: none;
    padding: 1.2rem 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    border-bottom: 2px solid rgba(138, 43, 226, 0.2);
}

.table tbody td {
    text-align: center;
    padding: 1.2rem 1rem;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1rem;
    color: #8e8e9a; /* 更柔和的单元格文字颜色 */
    vertical-align: middle;
    background: transparent;
}

/* VIP等级列样式 */
.table tbody td:first-child {
    color: #b388ff; /* 更柔和的紫色 */
    font-weight: 600;
    font-size: 1.1rem;
}

/* 投资金额列样式 */
.table tbody td:nth-child(2) {
    color: #81c784; /* 更柔和的绿色 */
}

/* 收益增加列样式 */
.table tbody td:nth-child(3) {
    color: #64b5f6; /* 更柔和的蓝色 */
}

/* VIP奖励列样式 */
.table tbody td:nth-child(4) {
    color: #ffd54f; /* 更柔和的金色 */
    font-weight: 600;
}

.table tbody tr {
    transition: all 0.3s ease;
}

.table tbody tr:hover {
    background: rgba(138, 43, 226, 0.08); /* 更淡的悬停背景 */
    transform: translateY(-2px);
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    .vip-levels-section {
        padding: 1rem;
        margin: 2rem 0;
    }
    
    .table thead th {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .table tbody td {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .table tbody td:first-child {
        font-size: 0.9rem;
    }
}

/* 调整段落文字大小 */
p {
    font-size: 1.1rem !important; /* 基础段落文字大小 */
    line-height: 1.6;
}

.vip-subtitle, 
.bounty-subtitle {
    font-size: 1.25rem !important; /* 副标题文字大小 */
}

.benefit-card p {
    font-size: 1.15rem !important;
}

.info-content p,
.tips-content p {
    font-size: 1.15rem !important;
    margin-bottom: 1rem;
}

.example-box p {
    font-size: 1.15rem !important;
    line-height: 1.7;
}

.requirement-note,
.highlight-note {
    font-size: 1.1rem !important;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    p {
        font-size: 1rem !important;
    }
    
    .vip-subtitle, 
    .bounty-subtitle {
        font-size: 1.15rem !important;
    }
    
    .benefit-card p,
    .info-content p,
    .tips-content p,
    .example-box p {
        font-size: 1.05rem !important;
    }
}

/* 调整列表项文字大小 */
.tips-content ul li,
.info-content ul li,
.bounty-card-body ul li {
    font-size: 1.15rem !important;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    color: #e0e0e0;  /* 更清晰的文字颜色 */
}

/* 列表项前的圆点样式优化 */
.tips-content ul,
.info-content ul {
    list-style-type: none;
    padding-left: 0;
}

.tips-content ul li,
.info-content ul li {
    position: relative;
    padding-left: 1.5rem;
}

.tips-content ul li:before,
.info-content ul li:before {
    content: "•";
    color: blueviolet;
    font-size: 1.4rem;
    position: absolute;
    left: 0;
    top: -2px;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    .tips-content ul li,
    .info-content ul li,
    .bounty-card-body ul li {
        font-size: 1.05rem !important;
        line-height: 1.5;
    }
}

/* VIP页面的列表样式 */
.vip-content .tips-content ul li,
.vip-content .info-content ul li {
    font-size: 1.15rem !important;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    color: #e0e0e0;
}

/* Bounty页面的列表样式 */
.bounty-card-body ul li {
    font-size: 1rem !important;  /* 较小的字体大小 */
    line-height: 1.5;
    margin-bottom: 0.6rem;
    color: #ccc;
}

/* VIP页面的圆点样式 */
.vip-content .tips-content ul,
.vip-content .info-content ul {
    list-style-type: none;
    padding-left: 0;
}

.vip-content .tips-content ul li,
.vip-content .info-content ul li {
    position: relative;
    padding-left: 1.5rem;
}

.vip-content .tips-content ul li:before,
.vip-content .info-content ul li:before {
    content: "•";
    color: blueviolet;
    font-size: 1.4rem;
    position: absolute;
    left: 0;
    top: -2px;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    .vip-content .tips-content ul li,
    .vip-content .info-content ul li {
        font-size: 1.05rem !important;
    }
    
    .bounty-card-body ul li {
        font-size: 0.95rem !important;
    }
}

/* FAQ页面样式 */
.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.text-gradient {
    background: linear-gradient(45deg, blueviolet, #ff69b4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* 手风琴样式优化 */
.custom-accordion .accordion-item {
    background: #1e1a25;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.custom-accordion .accordion-button {
    background: #241b2d;
    color: #fff;
    padding: 1.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(145deg, #2a1f35, #1e1a25);
    color: blueviolet;
}

.custom-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.custom-accordion .accordion-body {
    background: #1a1520;
    color: #e0e0e0;
    padding: 1.5rem;
    line-height: 1.7;
}

/* 联系表单样式优化 */
.contact-form-container {
    background: #1e1a25;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.custom-input {
    background: #241b2d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.custom-input:focus {
    background: #2a1f35;
    border-color: blueviolet;
    box-shadow: 0 0 0 0.25rem rgba(138, 43, 226, 0.25);
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    .faq-container {
        padding: 1rem;
    }
    
    .text-gradient {
        font-size: 2rem;
    }
    
    .custom-accordion .accordion-button {
        padding: 1.2rem;
        font-size: 1rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
}