* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #ffffff;
    min-height: 100vh;
    padding-top: 90px; /* 增加顶部间距 */
}

/* Fixed Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 20px 0; /* 增加上下padding */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    width: auto;
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    flex: 1;
    justify-content: center;
    margin: 0 40px;
}

.nav-menu a {
    text-decoration: none;
    color: #000000; /* 改为黑色 */
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: #2c5aa0;
}
/* 添加这些样式 */
.nav-item {
    position: relative;
    display: inline-block;
}

.nav-link {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    white-space: nowrap;
    padding: 10px 15px;
    display: block;
}

.nav-link:hover {
    color: #2c5aa0;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 15px;
    display: block;
    cursor: pointer;
    transition: color 0.3s;
    white-space: nowrap;
}

.dropdown-toggle:hover {
    color: #2c5aa0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #000;
}

.dropdown-text {
    display: block;
    padding: 12px 20px;
    color: #666;
    font-size: 14px;
    cursor: default;
    pointer-events: none;
}

/* Mega Menu Styles */
.mega-dropdown {
    position: relative;
    display: inline-block;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    width: 400px;  /* 减小宽度 */
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 30px;  /* 减小padding */
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
    display: flex;
    flex-direction: column;  /* 改为垂直布局 */
}

.mega-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    text-align: center;  /* 居中对齐 */
}

.mega-section h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mega-section h3 a:hover {
    color: #2c5aa0;
}

.mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;  /* 保持2列 */
    gap: 8px 20px;  /* 减小间距 */
}

.mega-grid a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 0;  /* 减小padding */
    transition: color 0.3s ease;
    text-align: center;  /* 居中对齐 */
}

.mega-grid a:hover {
    color: #2c5aa0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-shrink: 0;
}

.login-btn {
    color: #8a8a8a;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.login-btn:hover {
    color: #2c5aa0;
}

.join-btn {
    background: linear-gradient(135deg, #00e676 0%, #2196f3 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    white-space: nowrap;
}

.join-btn:hover {
    background: linear-gradient(135deg, #00d4aa 0%, #1976d2 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 230, 118, 0.3);
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.main-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #1e88e5, #5e35b1); /* 更蓝的渐变 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.subtitle {
    font-size: 3rem;
    color: #1a365d;
    font-weight: bold;
    margin-bottom: 30px;
}

.description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: #2c3e50;
    color: white;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #34495e;
}

.cta-subtext {
    color: #666;
    font-size: 0.9rem;
}

/* Feature Cards */
.features-section {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.feature-card {
    background: #1a365d;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    min-height: 300px;
    max-height: 500px;
}

.feature-card img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.feature-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    color: white;
}

.feature-overlay h3 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.feature-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Mobile Carousel Container - 默认隐藏 */
.mobile-carousel-container {
    display: none;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 0.9rem;
}

/* Customer Reviews Section */
.reviews-section {
    margin: 60px auto 40px;
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.reviews-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.reviews-text {
    color: #666;
    font-size: 16px;
    font-weight: 400;
}

.reviews-rating {
    color: #333;
    font-size: 18px;
    font-weight: 700;
}

.stars-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;
}

.star {
    background: #00b67a;
    color: white;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.reviews-score {
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.reviews-count {
    color: #333;
    font-size: 16px;
    font-weight: 400;
}

.trustpilot-star {
    color: #00b67a;
    font-size: 20px;
    margin-left: 4px;
}

.star-link {
    text-decoration: none;
    display: inline-block;
}

.star-link:hover .star {
    background: #00a86b;
    transform: scale(1.1);
    transition: all 0.2s ease;
}

.trustpilot-link {
    text-decoration: none;
    margin-left: 4px;
}

.trustpilot-link:hover .trustpilot-star {
    color: #00a86b;
    transform: scale(1.1);
    transition: all 0.2s ease;
}

/* Trading Statistics Section */
.trading-stats-section {
    margin: 80px auto 60px;
    max-width: 1200px;
    padding: 0 20px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 48px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 400;
    line-height: 1.4;
}

/* Trading Conditions Section */
.trading-conditions-section {
    margin: 80px auto 60px;
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
}

.conditions-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
    line-height: 1.2;
}

.conditions-description {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Account Types Section */
.account-types-section {
    margin: 80px auto 60px;
    max-width: 1200px;
    padding: 0 20px;
}

.account-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.account-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.account-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.account-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a8a;
    margin: 0 0 8px 0;
}

.account-subtitle {
    font-size: 14px;
    color: #9ca3af;
    margin: 0 0 20px 0;
    font-weight: 400;
}

.account-price {
    font-size: 48px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 30px 0;
    line-height: 1;
}

.account-btn {
    display: block;
    background: #1e3a8a;
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 30px 0;
    transition: background-color 0.3s ease;
}

.account-btn:hover {
    background: #1e40af;
}

.account-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.account-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    color: #374151;
    line-height: 1.4;
}

.account-features li:last-child {
    margin-bottom: 0;
}

.checkmark {
    color: #10b981;
    font-weight: bold;
    margin-right: 12px;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Trading Instruments Section */
.trading-instruments-section {
    margin: 80px auto 60px;
    max-width: 1200px;
    padding: 0 20px;
}

.instruments-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.instruments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
}

.instrument-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.instrument-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.instrument-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instrument-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.instrument-content {
    flex: 1;
}

.instrument-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a8a;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.instrument-description {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Top Trading Conditions Section */
.top-conditions-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #071742 100%);
    margin: 60px auto 0;
    padding: 40px 20px;
    border-radius: 16px;
    max-width: 1100px;
}

.conditions-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.top-conditions-title {
    font-size: 38px;
    font-weight: 700;
    color: white;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.top-conditions-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 40px 0;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.conditions-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
}

.feature-checkmark {
    color: #00d4aa;
    font-size: 16px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 1px;
}

.feature-text {
    color: white;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.3;
}

.start-trading-btn {
    display: inline-block;
    background: #9fc115;
    color: #1e3a5f;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.start-trading-btn:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.3);
}

/* One-Stop Trading Toolbox Section */
.toolbox-section {
    background: linear-gradient(135deg, #1a365d 0%, #071742 100%);
    margin: 60px 0 0 0;
    padding: 80px 40px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
}

.toolbox-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin: 0 0 80px 0;
    line-height: 1.2;
}

.toolbox-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.toolbox-item {
    text-align: center;
    color: white;
}

.toolbox-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toolbox-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.toolbox-item-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.toolbox-item-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.6;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

/* 汉堡菜单按钮样式 */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
    border-radius: 2px;
}

/* 移动端菜单样式 */
.mobile-nav-menu {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #071742;
    z-index: 999;
    overflow-y: auto;
}

.mobile-nav-menu.active {
    display: block;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* 普通菜单项 */
.mobile-nav-list > li > a {
    display: block;
    padding: 20px 30px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

/* 有下拉菜单的项目 */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

/* 右侧下拉按钮 */
.mobile-dropdown-arrow {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-dropdown-arrow::after {
    content: '▼';
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-arrow::after {
    transform: rotate(180deg);
}

.mobile-dropdown.active .mobile-dropdown-arrow {
    background: rgba(255, 255, 255, 0.3);
}

/* 下拉菜单内容 */
.mobile-dropdown-menu {
    display: none;
    background: rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-menu a {
    display: block;
    padding: 16px 50px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.mobile-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.mobile-dropdown-menu a:last-child {
    border-bottom: none;
}

/* 底部按钮区域 */
.mobile-nav-buttons {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: #2c3e50;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-login-btn {
    display: block;
    padding: 16px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    text-align: center;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
}

.mobile-join-btn {
    display: block;
    background: linear-gradient(135deg, #00e676 0%, #2196f3 100%);
    color: white;
    padding: 16px;
    border-radius: 25px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.mobile-join-btn:hover {
    background: linear-gradient(135deg, #00d4aa 0%, #1976d2 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 230, 118, 0.3);
}

/* Responsive */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        gap: 25px;
        margin: 0 20px;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .dropdown-toggle {
        font-size: 14px;
    }

    .stats-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .stat-value {
        font-size: 42px;
    }

    .account-cards-container {
        gap: 24px;
    }

    .account-card {
        padding: 32px 24px;
    }

    .account-price {
        font-size: 42px;
    }

    .instruments-grid {
        gap: 24px;
    }

    .instrument-item {
        padding: 24px 20px;
    }

    .instrument-icon {
        width: 70px;
        height: 70px;
    }

    .instrument-icon img {
        width: 70px;
        height: 70px;
    }

    .instrument-title {
        font-size: 22px;
    }

    .instrument-description {
        font-size: 15px;
    }

    .top-conditions-section {
        margin: 50px 20px 0;
        padding: 35px 25px;
    }

    .top-conditions-title {
        font-size: 34px;
    }

    .conditions-features {
        gap: 35px;
        margin-bottom: 35px;
    }

    .toolbox-section {
        padding: 60px 30px;
    }

    .toolbox-title {
        font-size: 42px;
        margin-bottom: 60px;
    }

    .toolbox-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        max-width: 1000px;
    }

    .toolbox-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 24px;
    }

    .toolbox-icon img {
        width: 80px;
        height: 80px;
    }

    .toolbox-item-title {
        font-size: 20px;
    }

    .toolbox-item-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
        padding: 0 15px;
    }

    .nav-menu {
        display: none;
    }

    .nav-right {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 2rem;
    }

    .mega-menu {
        width: 90vw;
        padding: 20px;
    }

    .mega-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .features-section {
        display: none !important;
    }

    .mobile-carousel-container {
        display: block !important;
        position: relative;
        overflow: hidden;
        margin-top: 80px;
        padding: 0 20px;
    }

    .mobile-carousel-track {
        display: flex;
        transition: transform 0.3s ease;
        gap: 0;
        align-items: stretch;
    }

    .mobile-carousel-track .feature-card {
        flex-shrink: 0;
        width: 100%;
        min-height: auto;
        max-height: none;
        margin-right: 0;
        display: flex;
        flex-direction: column;
    }

    .mobile-carousel-track .feature-card img {
        width: 100%;
        height: auto;
        object-fit: contain;
        max-height: none;
        background: #1a365d;
    }

    .mobile-carousel-indicators {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
        padding-bottom: 20px;
    }

    .mobile-carousel-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #ccc;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .mobile-carousel-dot.active {
        background: #1e3a8a;
    }

    .reviews-content {
        gap: 8px;
    }

    .reviews-text {
        font-size: 14px;
    }

    .reviews-rating {
        font-size: 16px;
    }

    .reviews-score {
        font-size: 14px;
    }

    .reviews-count {
        font-size: 14px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 25px;
    }

    .stat-value {
        font-size: 36px;
    }

    .stat-label {
        font-size: 13px;
    }

    .conditions-title {
        font-size: 28px;
    }

    .conditions-description {
        font-size: 16px;
    }

    .account-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .account-card {
        padding: 28px 20px;
    }

    .account-title {
        font-size: 22px;
    }

    .account-price {
        font-size: 38px;
    }

    .account-btn {
        padding: 14px 28px;
        font-size: 15px;
    }

    .instruments-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
    }

    .instrument-item {
        padding: 20px 16px;
        gap: 16px;
    }

    .instrument-icon {
        width: 60px;
        height: 60px;
    }

    .instrument-icon img {
        width: 60px;
        height: 60px;
    }

    .instrument-title {
        font-size: 20px;
    }

    .instrument-description {
        font-size: 14px;
    }

    .instruments-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .top-conditions-section {
        margin: 40px 20px 0;
        padding: 30px 20px;
        border-radius: 12px;
    }

    .top-conditions-title {
        font-size: 28px;
    }

    .top-conditions-description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .conditions-features {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 30px;
    }

    .features-column {
        gap: 14px;
    }

    .feature-text {
        font-size: 14px;
    }

    .start-trading-btn {
        padding: 14px 35px;
        font-size: 15px;
    }

    .toolbox-section {
        padding: 50px 20px;
    }

    .toolbox-title {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .toolbox-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .toolbox-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .toolbox-icon img {
        width: 70px;
        height: 70px;
    }

    .toolbox-item-title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .toolbox-item-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 40px 16px;
    }

    .main-title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.5rem;
    }

    .description {
        font-size: 1rem;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 0.95rem;
    }

    .cta-subtext {
        font-size: 0.8rem;
    }

    .mobile-carousel-container {
        padding: 0 16px;
    }

    .mobile-carousel-track .feature-card {
        min-height: auto;
        max-height: none;
    }

    .mobile-carousel-track .feature-card img {
        max-height: none;
    }

    .mobile-carousel-dot {
        width: 10px;
        height: 10px;
    }

    .reviews-content {
        gap: 6px;
    }

    .reviews-text {
        font-size: 13px;
    }

    .reviews-rating {
        font-size: 15px;
    }

    .star {
        width: 18px;
        height: 18px;
        font-size: 11px;
    }

    .trustpilot-star {
        font-size: 18px;
    }

    .conditions-title {
        font-size: 24px;
    }

    .conditions-description {
        font-size: 14px;
    }

    .account-card {
        padding: 24px 16px;
    }

    .account-title {
        font-size: 20px;
    }

    .account-price {
        font-size: 34px;
    }

    .account-features li {
        font-size: 13px;
    }

    .instrument-item {
        padding: 16px 12px;
        gap: 12px;
    }

    .instrument-icon {
        width: 50px;
        height: 50px;
    }

    .instrument-icon img {
        width: 50px;
        height: 50px;
    }

    .instrument-title {
        font-size: 18px;
    }

    .instrument-description {
        font-size: 13px;
    }

    .instruments-title {
        font-size: 28px;
    }

    .top-conditions-section {
        margin: 30px 16px 0;
        padding: 25px 16px;
    }

    .top-conditions-title {
        font-size: 24px;
    }

    .top-conditions-description {
        font-size: 14px;
    }

    .feature-item {
        gap: 8px;
    }

    .feature-text {
        font-size: 13px;
    }

    .start-trading-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .toolbox-section {
        padding: 40px 16px;
    }

    .toolbox-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .toolbox-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }

    .toolbox-icon img {
        width: 60px;
        height: 60px;
    }

    .toolbox-item-title {
        font-size: 16px;
    }

    .toolbox-item-description {
        font-size: 13px;
    }
}

@media (max-width: 320px) {
    .stats-container {
        gap: 20px;
    }

    .stat-value {
        font-size: 28px;
    }

    .stat-label {
        font-size: 11px;
    }
}
/* Copy Leading Traders Section */
.copy-traders-section {
    padding: 80px 0;
    background: #ffffff;
}

.copy-traders-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.copy-traders-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 80px;
    align-items: center;
}

.copy-traders-text {
    max-width: 600px;
}

.copy-traders-title {
    font-size: 56px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 32px;
    line-height: 1.1;
}

.copy-traders-description {
    font-size: 18px;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 400;
}

.copy-traders-btn {
    background: #1a365d;
    color: white;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.copy-traders-btn:hover {
    background: #2c5aa0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 54, 93, 0.3);
}

.copy-traders-image {
    text-align: center;
}

.copy-traders-image img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .copy-traders-content {
        grid-template-columns: 2fr 1fr;
        gap: 60px;
    }

    .copy-traders-title {
        font-size: 48px;
    }

    .copy-traders-description {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .copy-traders-section {
        padding: 60px 0;
    }

    .copy-traders-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .copy-traders-text {
        max-width: none;
    }

    .copy-traders-title {
        font-size: 36px;
        margin-bottom: 24px;
    }

    .copy-traders-description {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .copy-traders-btn {
        padding: 16px 32px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .copy-traders-section {
        padding: 50px 0;
    }

    .copy-traders-container {
        padding: 0 16px;
    }

    .copy-traders-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .copy-traders-description {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .copy-traders-btn {
        padding: 14px 28px;
        font-size: 14px;
    }
}
/* Customer Support Section */
.customer-support-section {
    padding: 80px 0;
    background: #ffffff;
}

.support-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.support-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a365d;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.support-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.support-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.support-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e3f2fd;
    border-radius: 50%;
}

.support-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.support-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 16px;
    line-height: 1.2;
}

.support-card-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.support-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.support-label {
    font-size: 14px;
    color: #666666;
    font-weight: 500;
}

.support-link {
    font-size: 16px;
    color: #2196f3;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.support-link:hover {
    color: #1976d2;
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .support-title {
        font-size: 42px;
        margin-bottom: 50px;
    }

    .support-cards {
        gap: 30px;
    }

    .support-card {
        padding: 35px 25px;
    }

    .support-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .support-icon img {
        width: 35px;
        height: 35px;
    }

    .support-card-title {
        font-size: 22px;
    }

    .support-card-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .customer-support-section {
        padding: 60px 0;
    }

    .support-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .support-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .support-card {
        padding: 30px 20px;
    }

    .support-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }

    .support-icon img {
        width: 30px;
        height: 30px;
    }

    .support-card-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .support-card-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .support-link {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .customer-support-section {
        padding: 50px 0;
    }

    .support-container {
        padding: 0 16px;
    }

    .support-title {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .support-card {
        padding: 24px 16px;
    }

    .support-card-title {
        font-size: 18px;
    }

    .support-card-description {
        font-size: 13px;
    }

    .support-label {
        font-size: 13px;
    }

    .support-link {
        font-size: 14px;
    }
}
/* Footer */
.footer {
    background: #1a365d;
    color: white;
}

/* Trustpilot Section */
.trustpilot-section {
    padding: 60px 0 40px;
}

.trustpilot-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Trustpilot Rating (Left Side) */
.trustpilot-rating {
    display: flex;
    align-items: center;
    gap: 60px;
}

.trustpilot-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.trustpilot-stars {
    display: flex;
    gap: 4px;
}

.trustpilot-stars .star-link {
    text-decoration: none;
}

.trustpilot-stars .star {
    background: #00b67a;
    color: white;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

.trustpilot-reviews {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 8px 0 0 0;
}

.trustpilot-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.trustpilot-link {
    text-decoration: none;
}

.trustpilot-star {
    background: #00b67a;
    color: white;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

.trustpilot-text {
    font-size: 18px;
    font-weight: 600;
    color: #00b67a;
}

/* Reviews Carousel */
.reviews-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.reviews-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 200px;
}

.review-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s ease;
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars .star-link {
    text-decoration: none;
}

.review-stars .star {
    background: #00b67a;
    color: white;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

.redirected-badge {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.review-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.review-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.review-author {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Bottom Text */
.trustpilot-bottom {
    text-align: center;
    margin-top: 20px;
}

.showing-reviews {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Copyright Section */
.copyright-section {
    background: #0f2a44;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.copyright-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .trustpilot-rating {
        gap: 40px;
    }

    .trustpilot-title {
        font-size: 28px;
    }

    .trustpilot-stars .star {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .reviews-container {
        height: 180px;
    }

    .review-slide {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .trustpilot-section {
        padding: 40px 0 30px;
    }

    .trustpilot-rating {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .reviews-carousel {
        gap: 15px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .reviews-container {
        height: 160px;
    }

    .review-slide {
        padding: 16px;
    }

    .trustpilot-title {
        font-size: 24px;
    }

    .trustpilot-stars .star {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }

    .review-title {
        font-size: 16px;
    }

    .review-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .trustpilot-section {
        padding: 30px 0 20px;
    }

    .trustpilot-container {
        padding: 0 16px;
    }

    .copyright-container {
        padding: 0 16px;
    }

    .trustpilot-title {
        font-size: 20px;
    }

    .trustpilot-stars .star {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }

    .trustpilot-star {
        width: 16px;
        height: 16px;
        font-size: 10px;
    }

    .trustpilot-text {
        font-size: 16px;
    }

    .reviews-container {
        height: 140px;
    }

    .review-slide {
        padding: 12px;
    }

    .review-title {
        font-size: 15px;
    }

    .review-text {
        font-size: 12px;
    }

    .review-author {
        font-size: 11px;
    }

    .copyright-text {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
  .dashboard-user-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 1rem !important;
    gap: 1rem !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }
  .dashboard-user-card > .flex,
  .dashboard-user-card > .flex-col {
    width: 100% !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.5rem !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }
  .dashboard-user-card .flex-col.items-end.gap-2 {
    align-items: center !important;
    margin-top: 1rem !important;
    width: 100% !important;
  }
  .dashboard-user-card .flex.gap-4.mt-2 {
    flex-direction: row !important;
    gap: 1rem !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    width: 100% !important;
  }
  .dashboard-user-card .flex.flex-col.items-center {
    min-width: 80px;
    margin-bottom: 0 !important;
    width: auto !important;
  }
  .dashboard-user-card .text-2xl {
    font-size: 1.5rem !important;
    text-align: center !important;
    word-break: break-all !important;
  }
  .dashboard-user-card span,
  .dashboard-user-card div {
    word-break: break-all !important;
    max-width: 100% !important;
    overflow-wrap: break-word !important;
  }
}