/* ------------------------ */
.icp_text{
    width:100%;text-align:center;
    color: rgba(255, 255, 255, 0.6);padding:1rem 0 
}
.title_1 {
    font-size: 1.1rem;
    font-weight: bold;
}

.title_2 {
    font-size: 1rem;
    line-height: 1.5;
}

.title_3 {
    font-size: 0.8rem;
    line-height: 1.5;
}

/* 小设备 (横向手机, 576px及以上) */
@media (min-width: 576px) {
    .title1 {}
}

/* 中等设备 (平板, 768px及以上) */
@media (min-width: 768px) {
    .title_1 {
        font-size: 1.2rem;
        font-weight: bold;
    }

    .title_2 {
        font-size: 1rem;
    }

    .title_3 {
        font-size: 0.8rem;
    }
}

/* 大设备 (桌面, 992px及以上) */
@media (min-width: 992px) {
    .title_1 {
        font-size: 1.1rem;
        font-weight: bold;
    }

    .title_2 {
        font-size: 1rem;
        line-height: 1.5;
    }

    .title_3 {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

/* 超大设备 (大桌面, 1200px及以上) */
@media (min-width: 1200px) {
    .title_1 {
        font-size: 1.3rem;
        font-weight: bold;
    }

    .title_2 {
        font-size: 1.1rem;
    }

    .title_3 {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* 超超大设备 (1400px及以上) */
@media (min-width: 1400px) {}

/* 加载动画样式 */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(23, 20, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9998;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.loading-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* 确保body在显示loading时不会滚动 */
body.loading-active {
    overflow: hidden;
}

.loading-spinner {
    text-align: center;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.spinner-ring {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 215, 0, 0.2);
    border-top: 4px solid #FFD700;
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-white);
    margin-top: 10px;
    letter-spacing: 1px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

/* 移动端loading优化 */
@media (max-width: 768px) {
    .loading-overlay {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .loading-spinner {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

.hero-section {
    background: var(--gradient-bg);
    min-height: 719px;
    position: relative;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
}


.navbar {
    background: transparent;
    padding: 1rem 0;
    z-index: 1000;
}



.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.navbar-brand img {
    height: 1.6rem;
    width: auto;
}

.nav-link {
    color: var(--text-white) !important;
    font-size: 16px;
    margin: 0 1rem;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.7;
}

/* 语言切换器样式 */
.language-switcher {
    margin-left: 20px;
    position: relative;
    position: fixed;
    bottom: 7vh;
    right: 1rem;
    z-index: 999;
}

.btn-language {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--text-white);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 60px;
}

.btn-language:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
    color: var(--text-white);
    transform: translateY(-1px);
}

.btn-language:focus {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    color: var(--text-white);
}

.language-switcher .dropdown-menu {
    background: rgba(23, 20, 18, 0.95);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    min-width: 140px;
    margin-top: 5px;
}

.language-switcher .dropdown-item {
    color: var(--text-white);
    padding: 10px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.language-switcher .dropdown-item:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
}

.language-switcher .dropdown-item:focus {
    background: rgba(255, 215, 0, 0.15);
    color: #FFD700;
}

.language-switcher .dropdown-item.active {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    font-weight: 600;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .language-switcher {
        margin-left: 10px;
        margin-top: 10px;
    }

    .btn-language {
        padding: 6px 12px;
        font-size: 13px;
        min-width: 50px;
    }
}

.hero-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .hero-content {
        align-items: center !important;
        text-align: center;
    }
}

.hero-title {
    font-family: 'Alibaba PuHuiTi 2.0', 'Open Sans', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    background: var(--gold-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.hero-subtitle {
    font-size: 1.875rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.4;
}

.cta-button {
    background: var(--button-gradient);
    border: 3px solid #F4DB96;
    /* border-image: linear-gradient(180deg, rgba(245, 220, 151, 1) 0%, rgba(185, 138, 8, 1) 100%) 1; */
    color: var(--primary-bg);
    padding: 0.5rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.5rem;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0px 0px 0px 4px rgba(139, 103, 5, 1), 0px 0.9px 3.6px 0.9px rgba(0, 0, 0, 0.12);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.section-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 5rem;
    text-shadow: -1px 8px 19px 0px rgba(0, 0, 0, 0.05);
}

.section-content {
    padding: 5rem 0;
}

.info-card {
    background: rgba(0, 0, 0, 0.12);
    border-radius: 0 0 0.5rem 0.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(26px);
    box-shadow: inset -2px -2px 1px -2px rgba(102, 102, 102, 1);
}

.info-card h3 {
    color: var(--text-white);
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.4;
}

.feature-icon {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid;
    border-image: conic-gradient(from 102deg at 53% 39%, rgba(64, 64, 64, 0.5) 3%, rgba(64, 64, 64, 0.35) 9%, rgba(255, 255, 255, 0.3) 17%, rgba(255, 255, 255, 0.3) 30%, rgba(64, 64, 64, 0.35) 52%, rgba(249, 249, 249, 0.5) 58%, rgba(255, 255, 255, 0.3) 80%, rgba(249, 249, 249, 0.3) 91%) 1;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    backdrop-filter: blur(25px);
}

.feature-icon i {
    color: #F9B721;
    font-size: 1.5rem;
}

.solution-card {
    background: var(--card-bg);
    border: 1px solid;
    border-image: linear-gradient(173deg, rgba(189, 170, 138, 1) 0%, rgba(189, 170, 138, 0) 59%) 1;
    border-radius: 0.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.solution-card h4 {
    color: var(--text-white);
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.solution-card p {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.4;
}

.token-section {
    background: var(--primary-bg);
    position: relative;
    padding-top: 5rem;
}



.ecosystem-section {
    background: var(--primary-bg);
    padding: 5rem 0;
}

.ecosystem-card {

    padding: 3rem 1.5rem 3rem 1.5rem;
    backdrop-filter: blur(25px);
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.ecosystem-card>img {
    width: 3.5rem;
    height: 3.5rem;
    object-fit: cover;
    margin-bottom: 1rem;
}



.ecosystem-card p {
    color: var(--text-white);
    line-height: 1.4;
    text-align: center;
}

.conclusion-section {
    /* background: var(--gold-gradient); */
    background: var(--primary-bg);
    padding: 0 0 0 0;
    /* border-top: 1px solid var(--gold-border); */
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .hero-content {
        padding: 10rem 0 2rem;
    }

    .section-content {
        padding: 2rem 0;
    }

    .navbar-nav {
        text-align: center;
    }

    .nav-link {
        margin: 0.5rem 0;
    }

    .token-section {
        padding-top: 2rem;
    }

}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        font-size: 1.25rem;
        padding: 0.5rem 1.5rem;
        width: 100%;
    }

    .hero-image {
        width: 80% !important;
        margin: 0 auto;
    }

    .solution-card,
    .ecosystem-card {
        padding: 1rem;
    }

    .ecosystem-section {
        /* padding: 1.5rem 0; */
    }

}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes float {

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

    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(249, 183, 33, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(249, 183, 33, 0.6);
    }
}

/* Enhanced hero section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(249, 183, 33, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(253, 227, 112, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

/* 
.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-accent);
    transform: scaleX(0);
    animation: scaleIn 1.5s ease-out 0.5s forwards;
} */

@keyframes scaleIn {
    to {
        transform: scaleX(1);
    }
}

/* Enhanced cards */
/* .info-card, .solution-card, .ecosystem-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before, .solution-card::before, .ecosystem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.info-card:hover::before, .solution-card:hover::before, .ecosystem-card:hover::before {
    left: 100%;
}

.info-card:hover, .solution-card:hover, .ecosystem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
} */

/* Enhanced feature icons */
.feature-icon {
    position: relative;
    transition: all 0.3s ease;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: conic-gradient(from 0deg, #F9B721, #FFE2A1, #F9B721);
    border-radius: 0.5rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-icon:hover::before {
    opacity: 1;
}

.feature-icon:hover {
    transform: scale(1.1);
    animation: glow 2s ease-in-out infinite;
}

/* Enhanced CTA button */
.cta-button {
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

/* Enhanced section titles */
.section-title {
    position: relative;
    margin-bottom: 4rem;
}


/* Enhanced navbar */
.navbar {
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(23, 20, 18, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}



@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Enhanced conclusion section */
.conclusion-section {
    position: relative;
    overflow: hidden;
}

/* Enhanced footer */
.footer-content {
    position: relative;
    overflow: hidden;
}

.footer-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    animation: slide 3s ease-in-out infinite;
}

@keyframes slide {

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

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

/* Enhanced wallet address */
.wallet-address {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wallet-address::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 183, 33, 0.1), transparent);
    transition: left 0.5s ease;
}

.wallet-address:hover::before {
    left: 100%;
}

/* Enhanced apply button */
.apply-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.apply-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.apply-button:hover::before {
    left: 100%;
}

.apply-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Enhanced scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
    border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb {
    background: var(--gold-accent);
    border-radius: 0.5rem;
    border: 2px solid var(--primary-bg);
}

::-webkit-scrollbar-thumb:hover {
    background: #F9B721;
}

/* Enhanced responsive design */
@media (max-width: 768px) {
    .hero-section::before {
        display: none;
    }

    .hero-content {
        text-align: center;
        align-items: center !important;
    }

    .section-title::after {
        width: 60px;
    }

    .info-card,
    .solution-card,
    .ecosystem-card {
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto 1rem auto;
    }



    .ecosystem-card {
        text-align: center;
        padding: 2rem 1rem;
    }

    .ecosystem-card>img {
        margin: 0 auto 1rem auto;
    }

    .conclusion-section img {
        max-width: 100%;
        height: auto;
    }


}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
        text-align: center;
    }

    .cta-button {
        font-size: 1.25rem;
        padding: 0.75rem 1.5rem;
        display: block;
        margin: 0 auto;
        width: fit-content;
    }



    .info-card,
    .solution-card {
        padding: 1.5rem 1rem;
        text-align: center;
    }

    .ecosystem-card {
        padding: 1.5rem 1rem;
        text-align: center;
    }


    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .section-content {
        padding: 3rem 0 0 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 3rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.5rem 1.25rem;
    }

    .info-card,
    .solution-card,
    .ecosystem-card {
        padding: 0rem 0.75rem;
    }



    .navbar {
        padding: 0.2rem 0;
    }

    .navbar-brand img {
        height: 1.5rem;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }



    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

/* Ensure proper centering for all screen sizes */
@media (max-width: 768px) {
    .row {
        justify-content: center;
    }

    .col-md-4,
    .col-lg-4,
    .col-xl-4 {
        text-align: center;
    }

    .col-md-6,
    .col-lg-6,
    .col-xl-6 {
        text-align: center;
    }

    .col-md-8,
    .col-lg-8,
    .col-xl-8 {
        text-align: center;
    }

    .col-md-12,
    .col-lg-12,
    .col-xl-12 {
        text-align: center;
    }
}

/* Mobile-first approach for better performance */
@media (min-width: 769px) {
    .hero-content {
        align-items: flex-start;
        text-align: left;
    }

    .info-card,
    .solution-card,
    .ecosystem-card {
        text-align: left;
    }

    .feature-icon {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Loading animations */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.loading:nth-child(1) {
    transition-delay: 0.1s;
}

.loading:nth-child(2) {
    transition-delay: 0.2s;
}

.loading:nth-child(3) {
    transition-delay: 0.3s;
}

.loading:nth-child(4) {
    transition-delay: 0.4s;
}

.loading:nth-child(5) {
    transition-delay: 0.5s;
}

/* Reveal animations */
section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

section.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Animate in class */
.animate-in {
    animation: slideInUp 0.6s ease-out forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Enhanced focus states for accessibility */
.nav-link:focus,
.cta-button:focus,
.apply-button:focus {
    outline: 2px solid var(--gold-accent);
    outline-offset: 2px;
}

/* Print styles */
@media print {

    .navbar,
    .cta-button,
    .apply-button {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .hero-section,
    .conclusion-section {
        background: white;
        color: black;
    }
}

/* ------------------------ */

/* team-section */
.team_1>div {
    padding-right: calc(var(--bs-gutter-x) * 0.3);
    padding-left: calc(var(--bs-gutter-x) * 0.3);
}

.team-section {
    padding-bottom: 5rem;
}

.team-card {
    background: #252525;
    /* box-shadow: inset 0rem 0rem 1.83rem 0rem #F2F2F2, inset 0rem 0rem 0rem 0.08rem #A6A6A6, inset -0.17rem -0.17rem 0.08rem -0.17rem #666666, inset 0.17rem 0.17rem 0.08rem -0.17rem #666666, inset 0.25rem 0.25rem 0.04rem -0.29rem rgba(255,255,255,0.5), 0rem 0.33rem 0.33rem 0rem rgba(0,0,0,0.25); */
    border-radius: 0.5rem;
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.team-card:hover,
.consultant-card:hover {
    transform: translateY(-10px);
}

.team-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.team-info {
    padding: 1rem;
    color: white;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;

}

.team-info h3 {
    color: #F9B721;
    text-align: center;
}

.team-info img {
    width: 0.8rem;
    margin: 0.5rem 0;
}

.consultant-card {
    position: relative;
    /* overflow: hidden; */
    text-align: center;
    transition: transform 0.3s ease;
    background: #252525;
    /* 卡片圆角 */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 0.5rem;
    border: 0.1rem solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}


.consultant-card>img {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
    /* margin-top: -1.5rem; */
}

.consultant-info {
    padding: 0.5rem;
}

.consultant-info h5 {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    line-height: 2;
    margin-bottom: 0;
}

.consultant-info img {
    width: 0.6rem;
    margin: 0.5rem 0;
}

.details-btn,
.details-btn-sm {
    color: var(--gold-border);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.details-btn:hover,
.details-btn-sm:hover {
    color: #fff;
}

.details-btn-sm {
    font-size: 0.9rem;
}

/* Team Member Modal Styles */
.team-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(23, 20, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    font-family: 'PingFang SC', 'Open Sans', sans-serif;
}

.team-modal-overlay.show {
    display: flex;
}

.team-modal {
    background: var(--card-bg);
    border: 2px solid var(--gold-border);
    border-radius: 0.5rem;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.team-modal-header {
    padding: 25px 30px 15px;
    border-bottom: 1px solid rgba(255, 226, 161, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.team-modal-header h3 {
    color: var(--text-white);
    margin: 0;
    background: var(--gold-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.team-modal-close:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
}

.team-modal-body {
    padding: 25px 30px 30px;
}

.team-modal-content {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.team-modal-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 2px solid var(--gold-border);
    flex-shrink: 0;
    border-radius: 50%;
}

.team-modal-info {
    flex: 1;
}

.team-modal-info h4 {
    color: #F9B721;
    margin-bottom: 15px;
}

.team-modal-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Mobile responsive for team modal */
@media (max-width: 768px) {
    .team-modal {
        max-width: 95%;
        max-height: 85vh;
    }

    .team-modal-header {
        padding: 20px 20px 10px;
    }

    .team-modal-header h3 {}

    .team-modal-body {
        padding: 20px;
    }

    .team-modal-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .team-modal-img {
        width: 160px;
        height: 160px;
        margin: 0 auto;
    }

    .team-modal-info h4 {
        text-align: center;
    }

    .team-modal-info p {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .team-modal {
        max-width: 98%;
        max-height: 90vh;
    }

    .team-modal-header {
        padding: 15px 15px 10px;
    }

    .team-modal-header h3 {}

    .team-modal-body {
        padding: 15px;
    }

    .team-modal-img {
        width: 130px;
        height: 130px;
    }

    .team-modal-info h4 {}

    .team-modal-info p {}
}

/* ------------------------ */
.conclusion_bj {
    background: linear-gradient(180deg, #171412 0%, #463615 35%, #936E1A 71%, #CB961E 87%, #F9B721 100%);
    border-radius: 0.5rem;
    /* border: 1px solid #FFE2A1; */
    padding: 3rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.conclusion_left p {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.conclusion_left>img {

    width: 2rem;
    margin: 0.5rem 0;
}

.conclusion_icon {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    text-decoration: none;
}

.conclusion_icon_item {
    width: 4rem;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.conclusion_icon_item>img {
    width: 2rem;
    height: 2rem;
}

.conclusion_icon_item>span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.2rem;

}

.conclusion_icon_item:not(:first-of-type) {
    /*margin-left: 1rem;*/
}
.conclusion_text{
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6); 
    text-align: right;
    cursor: pointer;
    margin-top: 0.5rem;
    display: block;
}

/* ------------------------ */


/* 防止导航栏换行 */
.navbar-nav {
    flex-wrap: nowrap !important;
    white-space: nowrap;
}

.navbar-nav .nav-item {
    flex-shrink: 0;
}

.navbar-nav .nav-link {
    white-space: nowrap;
    padding: 0 0.8rem !important;
    font-size: 15px;
}

/* 在较小的桌面屏幕上进一步压缩间距 */
@media (max-width: 1200px) and (min-width: 992px) {
    .navbar-nav .nav-link {
        padding: 0 0.6rem !important;
        font-size: 14px;
    }
}

/* 如果导航项太多，可以在中等屏幕上调整字体 */
@media (max-width: 1400px) and (min-width: 992px) {
    .navbar-nav .nav-link {
        font-size: 14px;
    }
}

/* 确保导航容器不会溢出 */
.navbar-collapse {
    flex-grow: 0 !important;
}

.navbar-nav.ms-auto {
    margin-left: auto !important;
    max-width: calc(100vw - 200px);
    /* 为logo留出空间 */
    overflow-x: auto;
    overflow-y: hidden;
}

/* 隐藏滚动条但保持滚动功能 */
.navbar-nav.ms-auto::-webkit-scrollbar {
    display: none;
}

.navbar-nav.ms-auto {
    -ms-overflow-style: none;
    scrollbar-width: none;
}



/* ------------------------ */
.overview_text1 {
    color: rgba(255, 255, 255, 0.85);
}

.overview_text2 {
    color: rgba(255, 255, 255, 0.75);
}

.overview_image {
    margin-top: 2rem;
}

/* 小设备 (横向手机, 576px及以上) */
@media (min-width: 576px) {}

/* 中等设备 (平板, 768px及以上) */
@media (min-width: 768px) {}

/* 大设备 (桌面, 992px及以上) */
@media (min-width: 992px) {}

/* 超大设备 (大桌面, 1200px及以上) */
@media (min-width: 1200px) {}

/* 超超大设备 (1400px及以上) */
@media (min-width: 1400px) {}




/* ------------------------ */
.opportunity_item {
    position: relative;
}

.opportunity_item_inner {
    width: 100%;
}

.opportunity_item_inner>img {
    width: 100%;
}

.opportunity_item_content {
    background: rgba(0, 0, 0, 0.12);
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 2rem 2rem;
}

.opportunity_item_title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.opportunity_item_title>img {
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 1rem;
}

.opportunity_item_title>p {
    margin: 0;
    text-align: left;
}

.opportunity_item_desc {
    margin-top: 1rem;
    text-align: left;
    color: rgba(255, 255, 255, 0.75);
}

.opportunity_item_desc p {
    margin-bottom: 0;
}

/* 小设备 (横向手机, 576px及以上) */
@media (min-width: 576px) {}

/* 中等设备 (平板, 768px及以上) */
@media (min-width: 768px) {}

/* 大设备 (桌面, 992px及以上) */
@media (min-width: 992px) {
    .opportunity_item_content {
        padding: 1rem 2rem;
    }

    .opportunity_item_title>img {
        width: 2rem;
        height: 2rem;
        margin-right: 0.5rem;
    }

    .opportunity_item_title>p {}

    .opportunity_item_desc {}
}

/* 超大设备 (大桌面, 1200px及以上) */
@media (min-width: 1200px) {
    .opportunity_item_content {
        padding: 2rem 2rem;
    }

    .opportunity_item_title>img {
        width: 2rem;
        height: 2rem;
        margin-right: 0.5rem;
    }

    .opportunity_item_title>p {}

    .opportunity_item_desc {}

}

/* 超超大设备 (1400px及以上) */
@media (min-width: 1400px) {
    .opportunity_item_title>p {}

    .opportunity_item_desc {}
}


/* ------------------------ */
.solution_item_1 {
    background: linear-gradient(180deg, #230E00 0%, #240F00 35%, #432106 50%, #CB961E 87%, #F9B721 100%);
    border-radius: 0.5rem;
    padding: 1rem 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.solution_item_1_content {
    width: 100%;
}

.solution_item_1_content>img {
    width: 100%;
    margin-bottom: 1rem;
}

.solution_item_1_content>p:nth-of-type(1) {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

.solution_item_1_content>p:nth-of-type(2) {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.solution_item_2 {
    /* min-height: 15rem; */
    border-radius: 0.5rem;
    padding: 1rem 1rem;
    background-color: #312215;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 1rem;
}

.solution_item_2_content {
    flex: 1;
}

.solution_item_2>img {
    width: 30%;
    height: auto;
    /* height: -webkit-fill-available; */
    border-radius: 0.5rem;
    object-fit: cover;
    margin-left: 0.5rem;
}

.solution_item_2_content>p:nth-of-type(1) {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}

.solution_item_2_content>p:nth-of-type(2) {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
}

/* 小设备 (横向手机, 576px及以上) */
@media (min-width: 576px) {}

/* 中等设备 (平板, 768px及以上) */
@media (min-width: 768px) {}

/* 大设备 (桌面, 992px及以上) */
@media (min-width: 992px) {
    .solution_item_1 {
        height: 22rem;
    }

    .solution_pc_right {
        height: 22rem;
        display: flex;
        flex-flow: column;
    }

    .solution_item_2 {
        flex: 1;
        margin-top: 0;
        min-height: unset;
        padding: 1rem 1rem;
        overflow: hidden;
        line-height: 1.3;
    }



    .solution_item_2:nth-of-type(2) {
        margin-top: 1rem;
    }

}

/* 超大设备 (大桌面, 1200px及以上) */
@media (min-width: 1200px) {
    .solution_item_1 {
        height: 30rem;
    }

    .solution_pc_right {
        height: 30rem;
        display: flex;
        flex-flow: column;
    }


}

/* 超超大设备 (1400px及以上) */
@media (min-width: 1400px) {}



/* ------------------------ */

.token_box {
    padding-top: 2rem;
    padding: 2rem 1rem 2rem 1rem;
    background: linear-gradient(180deg, #000000 0%, #242426 100%);
}

.token_title {
    text-align: left;

}

.token_img {
    width: 100%;
}

.token_img img {
    width: 70%;
}

.token_desc {

    display: flex;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.token_desc_item {
    flex: 0 0 auto;
    display: flex;
    width: 14rem;
    height: 16rem;
    padding: 1rem;
    white-space: wrap;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 0.5rem;
    text-align: left;
}

.token_desc_item:not(:last-of-type) {
    margin-right: 1rem;
}

/* 小设备 (横向手机, 576px及以上) */
@media (min-width: 576px) {}

/* 中等设备 (平板, 768px及以上) */
@media (min-width: 768px) {
    .token_title {
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .token_img img {
        width: 100%;
    }
}

/* 大设备 (桌面, 992px及以上) */
@media (min-width: 992px) {
    .token_img {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }

    .token_img img {
        width: 90%;
    }
}

/* 超大设备 (大桌面, 1200px及以上) */
@media (min-width: 1200px) {
    .token_title {}

    .token_img img {
        width: 80%;
    }

    .token_desc_item {
        width: auto;
        flex: 1;
        height: 18rem;
    }
}

/* 超超大设备 (1400px及以上) */
@media (min-width: 1400px) {}



/* ------------------------ */
.bag-section {
    padding: 2rem 0;
    background-color: #171412;
    text-align: left;
}

.bag-section p {
    margin-bottom: 0;
    text-align: left;

}

.bag_body {
    background: #252221;
    
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0.5rem;
    padding: 0.8rem;
}

.bag_img>img {
    width: 100%;
    border-radius: 0.5rem;
}

.bag_title {
    color: rgba(255, 255, 255, 0.85);
    margin-top: 1rem;
}

.bag_tag {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 1rem;
}

.bag_tag>img {
    width: 1rem;
    height: 1rem;
    margin-right: 0.3rem;
}

.bag_tag>p {
    color: rgba(255, 255, 255, 0.75);
}

.bag_price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    margin-top: 1rem;
}

.bag_btn {
    width: 100%;
    background: #F9B721;
    border-radius: 0.5rem;
    font-weight: 500;
    padding: 0.5rem 0;
    color: #252525;
    text-align: center;
}

.bag_line {}

.bag_line_item {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 2rem;
}

.bag_line_item>img {
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 0.5rem;

}

.bag_line_item>div {}

.bag_line_item>div>p:nth-of-type(1) {
    font-weight: bold;
    color: rgba(255, 255, 255, 0.85);
}

.bag_line_item>div>p:nth-of-type(2) {
    color: rgba(255, 255, 255, 0.75);
}

.bag_cell {
    margin-top: 2rem;
}

.bag_cell_item {
    padding-bottom: 2rem;

}

.bag_cell_item_top {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bag_cell_item_top>span:nth-of-type(1) {
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 50%;
    background-color: #F9B721;
    margin-right: 0.5rem;
}

.bag_cell_item_top>span:nth-of-type(2) {
    font-weight: bold;
    color: #F9B721;
}

.bag_cell_item_desc {
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
}

/* 小设备 (横向手机, 576px及以上) */
@media (min-width: 576px) {}

/* 中等设备 (平板, 768px及以上) */
@media (min-width: 768px) {}

/* 大设备 (桌面, 992px及以上) */
@media (min-width: 992px) {
    
    .bag_cell_item_top{
        justify-content: flex-start;
    }
    .bag_cell_item_desc{
        margin-top: 0.5rem;
        text-align: left;
    }
}

/* 超大设备 (大桌面, 1200px及以上) */
@media (min-width: 1200px) {
    .bag_body{
        padding: 1rem;
    }
    .bag_form{
        display: flex;
        flex-flow: column;
    }
    .bag_tag{
        margin-top: auto;
    }
    .bag_line_item{
        margin-top: 1.5rem;
    }
    .bag_cell_item_desc{
        margin-top: 1rem;
    }
}

/* 超超大设备 (1400px及以上) */
@media (min-width: 1400px) {}



/* ------------------------ */

/* 小设备 (横向手机, 576px及以上) */
@media (min-width: 576px) {}

/* 中等设备 (平板, 768px及以上) */
@media (min-width: 768px) {}

/* 大设备 (桌面, 992px及以上) */
@media (min-width: 992px) {}

/* 超大设备 (大桌面, 1200px及以上) */
@media (min-width: 1200px) {}

/* 超超大设备 (1400px及以上) */
@media (min-width: 1400px) {}