* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    overflow-x: hidden;
    background: #00004A;
    color: #fff;
}

p {
    line-height: 1.6;
}

#navbar {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
}

.navbar-bg {
    width: 100%;
    background: #00004A;
    border-bottom: 1px solid #3c3c3c;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    color: #fff;
    max-width: 1300px;
    margin: auto;
}

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

.logo img {
    width: 150px;
}

.logo-text {
    margin-left: 10px;
    font-weight: bold;
    color: #937b36;
}

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

#nav-ative {
    color: #0033CC;
    font-size: 16px;
}

.nav-links a {
    text-decoration: none;
    color: #acacac;
    font-weight: 600;
    font-size: 14px;
}

.language-selector {
    display: flex;
    align-items: center;
    margin: 0 15px;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    font-family: Arial, sans-serif;
    position: relative;
}

.language-selector>span {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.language-icon {
    width: 20px;
    height: 20px;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/8/83/Earth_icon.svg');
    /* 地球图标 */
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
}

.language-menu {
    position: absolute;
    top: 110%;
    left: 0;
    background: #00004a;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: max-content;
    box-shadow: 0 2px 6px rgb(0 0 0 / 0.2);
    display: none;
    z-index: 1000;
}

.language-menu.active {
    display: block;
}

.language-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    cursor: pointer;
    white-space: nowrap;
}

.language-item:hover {
    background-color: #f0f0f0;
}

.flag-icon {
    width: 20px;
    height: 14px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.sign-in-btn {
    background: linear-gradient(to right, #6a6afc, #0707ff);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.sign-up-btn {
    background: linear-gradient(to right, #6a6afc, #0707ff);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.online-count {
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 5px 10px;
    font-size: 12px;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero {
    height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    position: absolute;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.5;
    color: #fff;
}

.action-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.hero-content button {
    width: 110px;
}

.sign-in-hero {
    background: linear-gradient(90deg, #2525f6, #00009c);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.sign-up-hero {
    background: linear-gradient(90deg, #2525f6, #00009c);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.secondary-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.deposit-btn {
    background: linear-gradient(90deg, #00009c, #2525f6);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.withdraw-btn {
    background: linear-gradient(90deg, #00009c, #2525f6);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.promo-text {
    color: #92b73a;
    margin-bottom: 8px;
    font-size: 14px;
}

/* Cryptocurrency Ticker */
.ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px 30px;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    color: #fff;
    overflow: hidden;
    width: 100%;
}

/* 滚动轨道 */
.ticker-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll-marquee 40s linear infinite;
    animation-play-state: running;
    -webkit-animation: scroll-marquee 40s linear infinite;
    -webkit-animation-play-state: running;
    cursor: pointer;
}

/* 鼠标悬停时暂停动画 */
.ticker-track:hover {
    animation-play-state: paused;
    -webkit-animation-play-state: paused;
}

.notification-text {
    animation: scroll-notification 30s linear infinite;
    -webkit-animation: scroll-notification 30s linear infinite;
}

.notification-icon {
    width: max-content;
    overflow: hidden;
    margin-left: 20px;
    width: 100%;
}

/* 动画定义 */
@keyframes scroll-marquee {
    0% {
        transform: translateX(100%);
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
    }
}


/* 动画定义 */
@keyframes scroll-notification {
    0% {
        transform: translateX(100%);
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
    }

    100% {
        transform: translateX(-110%);
        -webkit-transform: translateX(-110%);
        -moz-transform: translateX(-110%);
        -ms-transform: translateX(-110%);
        -o-transform: translateX(-110%);
    }
}

.crypto-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.crypto-logo {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.crypto-name {
    font-weight: bold;
}

.crypto-price {
    margin-left: 5px;
}

.price-up {
    color: #4ca950;
}

.price-down {
    color: #ff5c5c;
}

.video {
    position: absolute;
    left: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    height: auto;
    width: auto;
}

.notification-bar {
    background-color: #f9f3e9;
    color: #b04c3c;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid #f2e8d9;
    overflow: hidden;
    display: flex;
}

.steps-title {
    text-align: center;
    font-size: 30px;
    margin-bottom: 30px;
    /* color: #333; */
    font-weight: 500;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.steps-centent {
    max-width: 1240px;
    margin: auto;
    padding-bottom: 80px;
}

.step {
    width: 22%;
    text-align: center;
}

.step-icon {
    width: 150px;
    height: 160px;
    border-radius: 8px;
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: transparent;
    color: #e8b035;
    font-size: 12px;
    font-weight: bold;
}

.step-title {
    font-weight: bold;
    margin-bottom: 4px;
    font-size: 24px;
    /* color: #212529; */
}

.step-description {
    font-size: 16px;
    line-height: 1.2;
    color: #FFF;
}


.h-grid-item {
    text-align: center;
}

.h-grid-item h2 {
    font-size: 36px;
    margin-bottom: 5px;
}

.h-grid-item p {
    font-size: 16px;
    margin-bottom: 30px;
}

.card-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

.card-container .card {
    display: flex;
    border-radius: 25px;
    border: 1px solid rgba(218, 193, 115, 0.8);
    background-color: #1d1c23;
    border-radius: 15px;
    width: 100%;
    overflow: hidden;
    padding: 10px;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); */
}

.card1 {
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* 添加过渡效果 */
}

.card1:hover {
    transform: translateY(-5px); /* 上浮10px */
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5); /* 淡金色虚影 */
}


.card-container .left-panel {
    /* background-color: #161616; */
    padding: 20px;
    width: 400px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-container .hashr-logo {
    position: absolute;
    top: 15px;
    left: 15px;
    font-weight: bold;
    color: #888;
    font-size: 18px;
}

.card-container .miner-image {
    width: 120px;
    height: 150px;
    background-color: #ddd;
    margin: 30px 0;
    border-radius: 5px;
    position: relative;
    background-image: url('https://hashj.com/upload/de1ef0355755a205/008a64ab14146a19.png');
}

.card-container .miner-image::before,
.card-container .miner-image::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #333;
    border-radius: 50%;
    right: 10px;
}

.card-container .miner-image::before {
    top: 30px;
}

.card-container .miner-image::after {
    top: 60px;
}

.card-container .middle-panel {
    width: 30%;
    display: flex;
    flex-direction: column;
}

.card-container .specs-container {
    background-color: #f7d78a;
    border-radius: 10px;
    padding: 15px;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #000;
    margin: 20px 0;
}

.card-container .title {
    font-weight: bold;
    text-align: center;
    margin-bottom: 5px;
}

.card-container .hash-rate {
    background-color: #f0c963;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}

.card-container .crypto-label {
    font-size: 14px;
    margin-top: 5px;
}

.card-container .crypto-type {
    background-color: #f0c963;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}

.card-container .contract-details {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.card-container .detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
}

.card-container .icon {
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.card-container .highlight {
    color: #f0c963;
}

.card-container .right-panel {
    width: 30%;
    display: flex;
    flex-direction: column;
    margin-top: 35px;
}

.card-container .header-section {
    text-align: center;
}

.card-container .product-name {
    font-size: 21px;
    font-weight: bold;
    margin-bottom: 15px;
}

.card-container .price {
    font-size: 36px;
    font-weight: bold;
    color: #f0c963;
}

.card-container .bonus-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-container .bonus-label {
    font-size: 14px;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
}

.card-container .level-pills {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.card-container .level-pill {
    background-color: #292929;
    border-radius: 20px;
    font-size: 14px;
    color: #aaa;
}

.card-container .completion-bar {
    width: 100%;
    min-height: 8px;
    border-radius: 20px;
    position: relative;
}

.card-container .completion-progress {
    position: absolute;
    height: 8px;
    width: 100%;
    background-image: linear-gradient(90deg, #ffffff 0%, #f0f0f0 100%);
    border-radius: 20px;
    text-align: center;
    margin-bottom: 50px;
}

.completion-bg {
    left: 0;
    background: linear-gradient(90deg, #FFE9BA 0%, #F5BC4A 100%);
    background-color: initial;
    color: #000;
    box-shadow: rgba(136, 99, 2, 0.3) 0px 3px 10px;
    position: absolute;
    top: -10px;
    padding: 6px 12px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(251, 191, 36, 0.3);
    white-space: nowrap;
    z-index: 3;
}

.card-container .completion-text {
    font-weight: bold;
}

.card-container .action-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.card-container .btn {
    padding: 16px 32px;
    border-radius: 25px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}

.card-container .btn-outline {
    background-color: #292929;
    color: white;
}

.card-container .btn-primary {
    background: linear-gradient(90deg, #FFE9BA 0%, #F5BC4A 100%);
    color: #1a1a1a;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-container .subtitle {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 5px;
}

.esg-container {
    display: flex;
    min-height: 450px;
    padding: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.esg-container .content {
    flex: 1;
    padding-right: 40px;
}

.e-title {
    font-size: 38px;
    font-weight: 700;
    padding-bottom: 15px;
}

.esg-container .content .esg-tag {
    color: #b8b8ff;
    font-size: 14px;
    margin-bottom: 20px;
    display: block;
}

.esg-container .content h1 {
    font-size: 48px;
    color: #FFF;
    margin-bottom: 30px;
    line-height: 1.2;
}

.esg-container .content p {
    color: #b8b8ff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.esg-container .content .button {
    display: inline-block;
    padding: 12px 24px;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    border: 1px solid #6e6ebb;
    border-radius: 30px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.esg-container .content .button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.esg-container .image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.esg-container .forest-image {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
        url('../img/tree.png');
    background-size: cover;
    background-position: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.esg-container .forest-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 60%);
}

.efg-container {
    display: flex;
    margin: auto;
    max-width: 1200px;
    padding: 2rem;
    gap: 3rem;
    align-items: center;
}

/* Mining rig visualization */
.efg-container .mining-rig {
    position: relative;
    width: 520px;
    height: 300px;
    background: linear-gradient(135deg, rgba(128, 0, 128, 0.2), rgba(0, 255, 255, 0.2));
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.efg-container .mining-rig img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.efg-container .rig-container {
    position: relative;
    z-index: 1;
    width: 75%;
    height: 80%;
}

.efg-container .mining-unit {
    background: #1a1a3a;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    border: 1px solid rgba(0, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
}

.efg-container .unit-row {
    width: 100%;
    height: 20%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 0;
}

.efg-container .unit-row:last-child {
    border-bottom: none;
}

.efg-container .bitcoin-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00c2ff, #0066ff);
    box-shadow: 0 0 10px #00c2ff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.efg-container .bitcoin-symbol {
    font-weight: bold;
    color: white;
    font-size: 20px;
}

.efg-container .unit-details {
    flex: 1;
    height: 10px;
    background: #242450;
    border-radius: 5px;
}

/* Tech background elements */
.efg-container .tech-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}

.efg-container .tech-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.5), transparent);
    height: 1px;
    width: 100%;
}

/* Content section */
.efg-container .content {
    flex: 1;
}

.efg-container .operations-tag {
    color: #aa6fca;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.efg-container .title {
    color: #FFF;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.efg-container .description {
    color: #7a7a9a;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 550px;
}

.efg-container .cta-button {
    background-color: transparent;
    color: #fff;
    border: 1px solid #aa6fca;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.efg-container .cta-button:hover {
    background-color: rgba(170, 111, 202, 0.2);
    box-shadow: 0 0 15px rgba(170, 111, 202, 0.5);
}

.icons-container {
    text-align: center;
    padding: 40px 20px;
}

.icons-container .title {
    font-size: 24px;
    font-weight: bold;
}

.icons-container .subtitle {
    font-size: 12px;
    color: #FFF;
    margin-top: 5px;
}

.icons-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.marquee {
    width: 50%;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: scroll-left 20s linear infinite;
}

.marquee-content img {
    height: 40px;
    margin-right: 40px;
    object-fit: contain;
}

.marquee:nth-child(2) .marquee-content {
    animation: scroll-left 15s linear infinite reverse;
}

/* 动画关键帧 */
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

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

/* Glowing effects */
.glow-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(138, 21, 168, 0.4), transparent 70%);
    z-index: 0;
}

.icon img {
    width: 130px;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.icon img:hover {
    webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.card {
    /* background-color: white; */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    width: 32%;
    position: relative;
}

.card-image {
    height: 200px;
    position: relative;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 15px;
}

.card-title {
    font-size: 24px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.card-subtitle {
    font-size: 16px;
    margin-top: 5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.promo-button {
    background-color: #3498db;
    color: white;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: bold;
    margin: 10px auto;
    max-width: 200px;
    text-align: center;
}

.bonus-amount {
    font-size: 28px;
    font-weight: bold;
    color: #2ecc71;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.first-bonus {
    color: #2ecc71;
}

.second-bonus {
    color: #e74c3c;
}

.third-bonus {
    color: #3498db;
}

.card-content {
    padding: 15px;
}

#soldout-stamp {
    position: absolute;
    bottom: 100px;
    right: 10px;
    width: 80px;
    height: auto;
    opacity: 0.9;
    pointer-events: none;
    width: 100px;
    height: 100px;
}

.card-content img {
    width: 100%;

}

.header-row {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.invest-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.info-row {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.circle-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #2ecc71;
    margin-right: 10px;
    display: inline-block;
}

.profit-row {
    font-weight: bold;
    color: #333;
}

.green-text {
    color: #27ae60;
    font-weight: bold;
}

.affiliate-bonus {
    text-align: center;
    font-size: 12px;
    color: #777;
    margin: 10px 0;
}

.level-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 10px 0;
}

.level {
    text-align: center;
}

.level-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #3498db;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px;
    font-weight: bold;
    color: #3498db;
}

.level-text {
    font-size: 12px;
    color: #777;
}

.button-container {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
}

.btn {
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    border: none;
    cursor: pointer;
    color: white;
}

.btn-more {
    /*background: linear-gradient(90deg, #2525f6, #00009c);*/
}

.btn-buy {
    background: linear-gradient(90deg, #2525f6, #00009c);
}

.progress-label {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: center;
}

.progress-bar {
    height: 10px;
    font-size: 7px;
    background-color: #eee;
    border-radius: 3px;
    overflow: hidden;
    color: #fff;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(to right, #f1c40f, #2ecc71);
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card:nth-child(1) .progress-fill {
    width: 45%;
}

.card:nth-child(2) .progress-fill {
    width: 45%;
}

.card:nth-child(3) .progress-fill {
    width: 42%;
}

.features-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

.features-container .more {
    text-decoration: none;
    display: inline-block;
    padding: 20px 30px;
    border: 1px solid #2ecc71;
    color: #2ecc71;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: transparent;
}

.features-container .more:hover {
    background-color: #2ecc71;
    color: #fff;
}

.features-container h1,
.features-container h2,
.features-container h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 50px 0;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

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

.feature-img img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    color: #f8c540;
}

.feature-title {
    font-weight: 600;
    font-size: 20px;
}

.feature-description {
    font-size: 14px;
    color: #FFF;
}

/* Profit Calculator */
.profit-calculator {
    padding: 40px 0;
}

.profit-calculator h2 {
    font-size: 36px;
}

.calculator-container {
    background-color: #FFF;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
    padding: 30px;
    width: 100%;
}

.calculator-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    padding: 10px;
    border-radius: 5px;
}

.result-box {
    padding: 15px;
    border-radius: 5px;
}

.result-box p.profit {
    font-size: 12px;
}

/* Common Problem Section */
.common-problem {
    padding: 30px 0;
    text-align: center;
}

.common-problem h2 {
    font-size: 36px;
    font-weight: 600;
}

.common-problem p {
    margin-bottom: 15px;
    font-size: 16px;
    text-align: center;
}

.accordion-content p {
    text-align: left;
}

.cta-button {
    display: inline-block;
    padding: 8px 15px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
}

/* Testimonials */
.testimonials {
    padding: 50px 0;
    text-align: center;
}

.testimonials h2 {
    font-size: 36px;
    margin-bottom: 5px;
}

.description {
    font-size: 10px;
}

.testimonial-grid {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.swiper {
    width: 100%;
    padding: 20px 0;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    flex-shrink: 0;
    width: auto;
}

.testimonial-card {
    background: linear-gradient(#afceed, #3d4355) padding-box, linear-gradient(180deg, #a3631f 2.95%, #f9f790 54.04%, #a3631f 105.51%) border-box;
    border-radius: 10px;
    border: 2px solid transparent;
    padding: 20px;
    color: white;
    position: relative;
    min-height: 200px;
    font-size: 16px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: absolute;
    top: 20px;
    left: 20px;
    background-image: url(../img/user_1.png);
    background-size: cover;
}

.testimonial-text {
    margin-left: 100px;
    font-size: 16px;
    text-align: left;
    color: #212529;
}

.read-more {
    color: #fff;
    font-weight: 600;
    margin-bottom: 5px;
}

/* Payment Methods */
.payment-methods {
    padding: 50px 0;
    text-align: center;
}

.payment-methods h2 {
    font-size: 30px;
    margin-bottom: 5px;
}

.payment-methods p {
    font-size: 10px;
    margin-bottom: 20px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.payment-icon {
    width: 70px;
    height: 70px;
    background-color: #f8f8f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
}

.crypto-icon {
    width: 25px;
    height: 25px;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Partners Section */
.partners {
    text-align: center;
    margin-bottom: 50px;
}

.partners h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.partner-logo {
    width: 170px;
    object-fit: contain;
}


/* Blog Post Section */
.blog-section {
    text-align: center;
    margin: 60px 0;
}

.blog-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.blog-section p {
    margin-bottom: 20px;
    font-size: 14px;
    color: #FFF;
}

.view-blog-btn {
    display: inline-block;
    padding: 20px 30px;
    border: 1px solid #2ecc71;
    color: #2ecc71;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: transparent;
}

.view-blog-btn:hover {
    background-color: #2ecc71;
    color: white;
}

/* Footer Section */
.footer-section {
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
    padding-top: 20px;
    width: 1100px;
    border-top: 1px solid #eee;
    margin: auto;
}

.footer-column {
    margin-bottom: 30px;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.footer-column-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #FFF;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: #2ecc71;
}

.contact-info {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-icon {
    width: 24px;
    height: 24px;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    border-radius: 3px;
}

/* Mining Company Info */
.mining-info {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.mining-logo {
    width: 80px;
    height: 80px;
}

.mining-details h3 {
    color: #b8860b;
    margin-bottom: 10px;
    font-size: 18px;
}

.mining-details img {
    width: 200px;
    margin-bottom: 10px;
}

.mining-details p {
    font-size: 12px;
    color: #555;
    line-height: 1.4;
}

/* Mobile App Links */
.app-links {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-button img {
    width: 100px;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.copyright img {
    width: 50px;
}

/* Transaction */
.transaction-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
}

.transaction-container h2 {
    font-size: 30px;
    width: 100%;
    text-align: center;
}

.transaction-card-wrapper {
    height: 250px;
    /* 显示多少项就设置多少高度 */
    overflow: hidden;
    position: relative;
}

.transaction-card {
    display: flex;
    flex-direction: column;
    transition: transform .5s ease-in-out;
    -webkit-transition: transform .5s ease-in-out;
    -moz-transition: transform .5s ease-in-out;
    -ms-transition: transform .5s ease-in-out;
    -o-transition: transform .5s ease-in-out;
}

.section {
    flex: 1;
}

.section h2 {
    font-size: 16px;
    margin-bottom: 10px;
    /* color: #333; */
    font-weight: 500;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: #FFF;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #777;
    border: 1px solid #00009c;
}

.transaction-card {
    background-color: #FFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 10px;
}

.transaction-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 20px 15px;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
}

.transaction-item:last-child {
    border-bottom: none;
}

.user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    overflow: hidden;
}

.email {
    font-size: 13px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.amount {
    font-size: 14px;
    color: #00c9a7;
}

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

/* Flags */
.flag-in {
    background: linear-gradient(to right, #ff9933 33%, white 33%, white 66%, #138808 66%);
}

.flag-tr {
    background-color: #E30A17;
}

.flag-vn {
    background-color: #DA251D;
}

.flag-ge {
    background-color: white;
    border: 1px solid #ddd;
    position: relative;
}

.flag-ge::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #FF0000;
    clip-path: polygon(0 0, 50% 0, 50% 50%, 100% 50%, 100% 100%, 50% 100%, 50% 50%, 0 50%);
}

.flag-es {
    background: linear-gradient(to bottom, #AA151B 25%, #F1BF00 25%, #F1BF00 75%, #AA151B 75%);
}

.flag-ve {
    background: linear-gradient(to bottom, #FFCC00 33%, #0033CC 33%, #0033CC 66%, #EF3340 66%);
}

/* 汉堡按钮样式 */
.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 10px;
    color: #fff;
}

/* common problem */
.subtitle {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 30px;
}

.accordion {
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.accordion-item {
    margin-bottom: 10px;
    border-radius: 4px;
}

.accordion-header {
    padding: 15px 20px;
    background: #FFF;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #000; 
}

.accordion-button {
    width: 30px;
    height: 30px;
    border: none;
    background: #ddd;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #666;
    cursor: pointer;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.accordion-content {
    padding: 0 20px 20px 20px;
    background: #FFF;
    font-size: 14px;
    text-align: left;
    color: #000;
}

.collapsed .accordion-content {
    display: none;
}

#footer {
    width: 100%;
    /* background: #fff; */
}

.token-btn {
    display: none;
}

.auth-only {
    display: none;
}

#settings-toggle {
    cursor: pointer;
}

.upload-section {
    margin: 30px 0;
}

.custom-file-upload {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    background-color: #007bff;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.custom-file-upload:hover {
    background-color: #0056b3;
}

.custom-file-upload input[type="file"] {
    display: none;
}

.preview-container {
    margin-top: 15px;
}

.preview-image {
    max-width: 200px;
    max-height: 200px;
    border: 2px solid #ddd;
    border-radius: 6px;
    display: block;
}

.global-toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background-color: #323232;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.global-toast.success {
    background-color: #28a745;
}

.global-toast.error {
    background-color: #dc3545;
}

.global-toast.warning {
    background-color: #ffc107;
    color: #000;
}

.global-toast.info {
    background-color: #17a2b8;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    width: 90%;
    height: 80%;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px #000;
}

.modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.close-btn {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    color: #000;
}

.global-tabbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #00004A;
    border-top: 1px solid #ddd;
    display: none;
    justify-content: space-around;
    align-items: center;
    z-index: 999;
}

.global-tabbar .tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    color: #fff;
    cursor: pointer;
}

.global-tabbar i {
    margin-bottom: 5px;
}