/* Pages Specific Styles */

/* Rich Dropdown Menu */
.dropdown-menu-rich {
    min-width: 280px;
    padding: 16px;
}

.dropdown-menu-rich .dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 4px;
}

.dropdown-menu-rich .dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown-menu-rich .dropdown-item:hover {
    background: var(--bg-light);
}

.dropdown-menu-rich .dropdown-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.dropdown-menu-rich .dropdown-item div {
    display: flex;
    flex-direction: column;
}

.dropdown-menu-rich .dropdown-item strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.dropdown-menu-rich .dropdown-item span {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Page Hero - 居中卡片样式（1:1还原官网）*/
.page-hero {
    margin-top: calc(var(--header-height) + 20px);
    background: #f0f4fd;
    padding: 0 70px 0 115px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1168px;
    height: 440px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 24px;
    margin-bottom: 20px;
    overflow: hidden;
}


.page-hero-white {
    background: var(--bg-white);
}

/* 蓝色渐变Hero（用于download等特殊页面）*/
.page-hero-blue {
    background: linear-gradient(135deg, #468bdf 0%, #3a7bc8 100%);
    color: white;
}

.page-hero-blue p {
    color: rgba(255,255,255,0.9);
}

.page-hero-content {
    max-width: 400px;
}

.page-hero h1,
.page-hero h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 16px;
    color: #43454f;
}

.page-hero p {
    font-size: 21px;
    font-weight: 300;
    line-height: 32px;
    color: #777a8c;
}

.page-hero-image {
    flex-shrink: 0;
}

.page-hero-image img {
    width: 500px;
    height: 500px;
    object-fit: contain;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-block;
    margin-top: 16px;
}

.link-arrow:hover {
    text-decoration: underline;
}

/* Content Section */
.content-section {
    padding: 80px 24px;
}

.content-section.bg-light {
    background: var(--bg-light);
}

.content-section.bg-blue {
    background: linear-gradient(135deg, #468bdf 0%, #3a7bc8 100%);
    color: white;
}

.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-secondary);
}

.bg-blue .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.section-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    margin: 24px 0;
}

/* Chain Grid - 1:1还原官网（两列布局）*/
.chain-grid {
    display: flex;
    flex-wrap: wrap;
    max-width: 1168px;
    margin: 0 auto;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.05);
}

.chain-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px 20px 20px 35px;
    width: 50%;
    box-sizing: border-box;
    border-bottom: 1px solid #e5e7eb;
}

.chain-card:nth-child(odd) {
    border-right: 1px solid #e5e7eb;
}

.chain-card:nth-last-child(-n+2) {
    border-bottom: none;
}

.chain-icon {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
}

.chain-icon img {
    width: 35px;
    height: 35px;
}

.eth-icon { background: #627eea; }
.btc-icon { background: #f7931a; }
.doge-icon { background: #c3a634; }
.trx-icon { background: #ff0013; }
.ton-icon { background: #0088cc; }
.op-icon { background: #ff0420; }
.arb-icon { background: #28a0f0; }
.bnb-icon { background: #f3ba2f; }
.a-icon { background: #9966ff; }
.zk-icon { background: #8b5cf6; }
.base-icon { background: #0052ff; }
.pol-icon { background: #8247e5; }
.okt-icon { background: #000000; }
.avax-icon { background: #e84142; }

.chain-info h4 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 4px;
    color: #43454f;
}

.chain-info p {
    font-size: 14px;
    font-weight: 300;
    color: #777a8c;
    line-height: 1.4;
}

/* Chain List (for detailed chain pages) */
.chain-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.chain-list .chain-card {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.chain-list .chain-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.chain-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.chain-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.chain-card-content p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 14px;
}

.chain-card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chain-card-content li {
    background: var(--bg-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-secondary);
}

/* Chain Item (for grid display) */
.chain-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
}

.chain-item .chain-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.chain-item .chain-icon-img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.chain-item span {
    font-size: 14px;
    color: var(--text-primary);
}

/* Features Grid (for feature pages) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

.feature-card .feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Stablecoin Section */
.stablecoin-section {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.stablecoin-section > p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.stablecoin-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.stablecoin-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stablecoin-item img {
    width: 48px;
    height: 48px;
}

.stablecoin-item span {
    font-size: 14px;
    color: var(--text-primary);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.bg-light .feature-item {
    background: var(--bg-white);
}

.feature-item img {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* DApp Specific */
.dapp-browser-card {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.dapp-browser-image img {
    max-width: 300px;
    border-radius: 16px;
}

.dapp-browser-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.dapp-browser-info p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.dapp-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.dapp-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.2s;
}

.dapp-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15);
}

.dapp-card img {
    width: 64px;
    height: 64px;
    border-radius: 16px;
}

.dapp-card span {
    font-size: 14px;
    font-weight: 500;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-card-item {
    padding: 32px;
    background: var(--bg-white);
    border-radius: 16px;
    text-align: center;
}

.contact-card-item img {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.contact-card-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-card-item p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.link-primary {
    color: var(--primary-color);
    font-weight: 500;
}

.link-primary:hover {
    text-decoration: underline;
}

/* Staking Specific */
.staking-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.staking-intro h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.staking-intro p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.staking-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.staking-feature-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-light);
    border-radius: 16px;
}

.staking-feature-card .feature-icon {
    margin-bottom: 20px;
}

.staking-feature-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.staking-feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-white);
    border-radius: 16px;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.faq-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.faq-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* About Specific */
.about-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-intro h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
}

.about-intro .large-text {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-intro p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.about-stat {
    padding: 32px;
}

.about-stat .stat-number {
    font-size: 48px;
    font-weight: 700;
    display: inline;
}

.about-stat .stat-unit {
    font-size: 24px;
    font-weight: 600;
    display: inline;
}

.about-stat .stat-desc {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 8px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.value-card {
    padding: 32px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

.value-card .value-icon {
    margin-bottom: 16px;
}

.value-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.join-cta {
    text-align: center;
    padding: 40px;
    background: var(--bg-white);
    border-radius: 16px;
}

.join-cta p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
}

.contact-info-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-info-item a {
    color: var(--primary-color);
    font-size: 14px;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .page-hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 24px;
    }
    
    .page-hero-image {
        margin-top: 40px;
    }
    
    .chain-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-grid,
    .staking-features,
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .chain-list .chain-card {
        flex-direction: column;
        text-align: center;
    }
    
    .chain-card-icon {
        margin: 0 auto;
    }
    
    .dapp-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dapp-browser-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-hero {
        background: #fff;
        border-radius: 0;
        margin-top: var(--header-height);
        padding: 40px 24px;
        height: auto;
    }
    
    .page-hero h1 {
        font-size: 28px;
    }
    
    .page-hero p {
        font-size: 16px;
    }
    
    .content-section {
        padding: 60px 20px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .chain-grid,
    .feature-grid,
    .features-grid,
    .staking-features,
    .contact-cards,
    .steps-grid,
    .values-grid,
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .dapp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stat .stat-number {
        font-size: 36px;
    }
    
    /* 移动端去除卡片样式 */
    .chain-grid {
        border: none;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        flex-direction: column;
        gap: 0;
    }
    
    .chain-card {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding: 20px 16px;
    }
    
    .chain-card:nth-child(odd) {
        border-right: none;
    }
    
    .chain-item {
        background: transparent;
        border: none;
    }
    
    .feature-card {
        background: transparent;
        box-shadow: none;
    }
    
    .dapp-card {
        background: transparent;
        border: none;
    }
    
    .content-section.bg-blue {
        background: var(--bg-white);
        color: var(--text-primary);
    }
    
    .content-section.bg-blue .dapp-browser-info p {
        color: var(--text-secondary);
        opacity: 1;
    }
    
    .dapp-browser-card {
        background: transparent;
    }
}

/* ========== Chain Page (Official Style) ========== */

/* Chain Hero */
.chain-hero {
    margin-top: var(--header-height);
    background: #f3f4f6;
    padding: 24px 0;
}

.chain-hero-container {
    max-width: 1168px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.chain-hero-content {
    padding-top: 20px;
}

.chain-hero-content h1 {
    font-size: 32px;
    font-weight: 300;
    color: #43454f;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.chain-hero-content p {
    font-size: 16px;
    font-weight: 300;
    color: #777a8c;
    margin-bottom: 28px;
    line-height: 1.6;
}

.btn-chain-download {
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 8px;
    display: inline-block;
    background: #468bdf;
    color: white;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-chain-download:hover {
    background: #3a7bc8;
}

.chain-hero-image {
    flex-shrink: 0;
}

.chain-hero-image img {
    width: 420px;
    height: auto;
}

/* Chain Content - Two Column Layout */
.chain-content {
    padding: 60px 24px 80px;
}

.chain-content-container {
    max-width: 1168px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

/* Chain Sidebar */
.chain-sidebar {
    width: 220px;
    flex-shrink: 0;
}

.chain-sidebar h3 {
    font-size: 16px;
    font-weight: 600;
    color: #468bdf;
    margin-bottom: 16px;
    padding-left: 12px;
}

.chain-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.chain-nav-list li {
    margin-bottom: 4px;
}

.chain-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    color: #43454f;
    font-size: 14px;
    transition: background 0.2s;
}

.chain-nav-item:hover {
    background: #f3f4f6;
}

.chain-nav-item.active {
    color: #468bdf;
    font-weight: 600;
}

.chain-nav-item img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

/* Chain Main Content */
.chain-main {
    flex: 1;
    min-width: 0;
}

.chain-main h2 {
    font-size: 28px;
    font-weight: 600;
    color: #43454f;
    margin-bottom: 24px;
}

.chain-main p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.chain-main a {
    color: #468bdf;
}

.chain-main a:hover {
    text-decoration: underline;
}

/* Chain Page Responsive */
@media (max-width: 1024px) {
    .chain-hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .chain-hero-image img {
        max-width: 280px;
    }
    
    .chain-content-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .chain-sidebar {
        width: 100%;
    }
    
    .chain-nav-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .chain-nav-list li {
        margin-bottom: 0;
    }
    
    .chain-nav-item {
        padding: 8px 12px;
        background: #f3f4f6;
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    .chain-hero {
        padding: 40px 20px;
    }
    
    .chain-hero-content h1 {
        font-size: 28px;
    }
    
    .chain-hero-content p {
        font-size: 16px;
    }
    
    .chain-content {
        padding: 40px 20px 60px;
    }
    
    .chain-main h2 {
        font-size: 24px;
    }
    
    .chain-main p {
        font-size: 15px;
    }
}

/* ========== New Footer (Official Style) ========== */
.footer-new {
    background: #fff;
    padding: 50px 80px 30px;
    border-top: 1px solid #f0f0f0;
}

.footer-new-container {
    max-width: 1168px;
    margin: 0 auto;
}

.footer-new-links {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 24px;
}

.footer-new-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-new-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: #43454f;
    margin-bottom: 4px;
}

.footer-new-column a {
    font-size: 14px;
    color: #777a8c;
    transition: color 0.2s;
}

.footer-new-column a:hover {
    color: #468bdf;
}

/* Footer Bottom */
.footer-new-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.footer-bottom-left {
    display: block;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
}

.footer-social img {
    width: 24px;
    height: 24px;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.footer-social a:hover img {
    opacity: 0.8;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 13px;
    color: #777a8c;
    margin-top: 26px;
}

.footer-legal a {
    color: #777a8c;
    text-decoration: none;
}

.footer-legal a:hover {
    color: #468bdf;
}

.footer-lang {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-lang .globe-icon {
    width: 16px;
    height: 16px;
    opacity: 0.6;
}

/* Footer Subscribe */
.footer-bottom-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-subscribe {
    display: flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
}

.footer-subscribe input {
    border: none;
    outline: none;
    padding: 10px 16px;
    font-size: 13px;
    background: transparent;
    width: 220px;
    color: #666;
}

.footer-subscribe input::placeholder {
    color: #999;
}

.footer-subscribe button {
    background: #468bdf;
    border: none;
    color: white;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    margin-right: 3px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-subscribe button:hover {
    background: #3a7bc8;
}

.footer-subscribe-text {
    font-size: 14px;
    color: #777a8c;
    margin-top: 10px;
}

/* Footer Disclaimer */
.footer-disclaimer {
    font-size: 13px;
    color: #777a8c;
    line-height: 1.6;
    padding: 16px 0 0 0;
    background: transparent;
    text-align: left;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-new-links {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .footer-new-column {
        min-width: 140px;
    }
    
    .footer-new-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-bottom-right {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    /* 移动端Footer：隐藏链接列表、社交图标、邮箱订阅 */
    .footer-new-links {
        display: none !important;
    }
    
    .footer-social {
        display: none !important;
    }
    
    .footer-bottom-right {
        display: none !important;
    }
    
    .footer-new {
        padding: 20px 24px;
    }
    
    .footer-new-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    
    .footer-bottom-left {
        width: 100%;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        gap: 12px;
        font-size: 13px;
    }
    
    .footer-disclaimer {
        font-size: 12px;
        line-height: 1.6;
        margin-top: 16px;
    }
}

/* ===== Staking Page Styles ===== */
.staking-section-title {
    font-size: 32px;
    font-weight: 300;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

/* Supported Networks */
.staking-networks {
    background: #5e78e5;
    padding: 80px 24px;
}

.networks-grid {
    max-width: 1168px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 24px;
}

.network-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.network-logo {
    width: 145px;
    height: 145px;
}

.network-text {
    height: 30px;
    margin-top: 8px;
}

.network-card p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Why Stake */
.staking-why {
    background: #fff;
    padding: 80px 24px;
}

.staking-why .staking-section-title {
    color: #43454f;
}

.why-cards {
    max-width: 1168px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
}

.why-card {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-text {
    font-size: 23px;
    font-weight: 300;
    color: #43454f;
    margin: 0 0 40px;
}

.why-img {
    width: 418px;
    height: auto;
}

/* How to Stake */
.staking-how {
    background: #f6f8fb;
    padding: 80px 24px;
    text-align: center;
}

.staking-how .staking-section-title {
    color: #191c1e;
}

.staking-how-desc {
    font-size: 17px;
    color: #777a8c;
    max-width: 800px;
    margin: 0 auto 60px;
}

.steps-row {
    max-width: 1168px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
}

.step-item {
    text-align: center;
    flex: 1;
}

.step-item img {
    width: 54px;
    height: 54px;
    margin-bottom: 24px;
}

.step-item p {
    font-size: 14px;
    color: #43454f;
    margin: 0;
}

.step-item span {
    font-weight: 400;
}

/* Why imToken */
.staking-choose {
    background: #fff;
    padding: 80px 24px;
}

.staking-choose .staking-section-title {
    color: #43454f;
}

.choose-cards {
    max-width: 1168px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.choose-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.choose-card img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.choose-title {
    font-size: 18px;
    font-weight: 500;
    color: #43454f;
    margin: 0 0 8px;
}

.choose-desc {
    font-size: 15px;
    color: #777a8c;
    margin: 0;
    line-height: 1.6;
}

.choose-desc a {
    color: #468bdf;
}

/* Partners */
.staking-partners {
    background: #f6f8fb;
    padding: 80px 24px;
}

.staking-partners .staking-section-title {
    color: #43454f;
}

.partners-row {
    max-width: 1168px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 120px;
}

.staking-partners .partner-link {
    opacity: 0.6;
    transition: opacity 0.2s;
}

.staking-partners .partner-link:hover {
    opacity: 1;
}

.staking-partners .partner-link img {
    width: 260px;
    height: 80px;
    object-fit: contain;
}

/* Staking Responsive */
@media (max-width: 1024px) {
    .networks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .network-logo {
        width: 120px;
        height: 120px;
    }
    
    .why-cards {
        flex-direction: column;
    }
    
    .why-img {
        width: 300px;
    }
    
    .steps-row {
        flex-direction: column;
        gap: 40px;
    }
    
    .choose-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .networks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .network-logo {
        width: 100px;
        height: 100px;
    }
    
    .staking-section-title {
        font-size: 24px;
    }
    
    .why-img {
        width: 250px;
    }
    
    .why-text {
        font-size: 18px;
    }
}
