/* ClutchDEX Index Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: radial-gradient(ellipse at top, #1e293b, #020617, #000000);
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* ClutchDEX Index Page Styles - 气泡背景样式已移至style.css */

/* 主要内容区域 */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 60px 20px;
}

/* 预售头部样式 */
.presale-header {
    margin-bottom: 3rem;
    padding: 0 2rem; /* 添加左右间距 */
}

.presale-title {
    font-size: 4rem; /* 放大字体 */
    font-weight: 800;
    color: white;
    margin-bottom: 3rem; /* 增加底部间距 */
    line-height: 1.25;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .presale-title {
        font-size: 5rem; /* 桌面端更大字体 */
    }
}

.presale-dates {
    display: flex;
    justify-content: center;
    gap: 3rem; /* 增加间距 */
    margin-bottom: 2rem; /* 增加底部间距 */
    flex-wrap: wrap;
}

.date-item {
    display: flex;
    align-items: center;
    gap: 0.75rem; /* 增加间距 */
}

.date-label {
    color: #94a3b8;
    font-size: 1.25rem; /* 放大字体 */
    font-weight: 500;
}

.date-value {
    color: #67e8f9;
    font-weight: bold;
    font-size: 1.5rem; /* 放大字体 */
}

.presale-subtitle {
    color: rgba(225, 239, 254, 0.9);
    font-weight: 600;
    font-size: 1.75rem; /* 放大字体 */
    margin-bottom: 1.5rem; /* 增加底部间距 */
    padding: 0 1rem; /* 添加左右内边距 */
}

.presale-stats {
    color: #22d3ee;
    font-weight: bold;
    font-size: 1.5rem; /* 放大字体 */
    margin-bottom: 0.75rem; /* 增加底部间距 */
}

.presale-notice {
    color: #fbbf24;
    font-weight: 600;
    font-size: 1.25rem; /* 放大字体 */
}

@media (min-width: 768px) {
    .presale-notice {
        font-size: 1.5rem; /* 桌面端更大字体 */
    }
}
/* 倒计时样式 */
.countdown-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0;
}

/* 活动时间显示样式 */
.activity-time-display {
    margin-bottom: 2rem;
    text-align: center;
}

.activity-time-text {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    color: #67e8f9;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 0.75rem;
    padding: 1rem 2rem;
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .activity-time-text {
        font-size: 1.4rem;
        padding: 1.2rem 2.5rem;
    }
}

.countdown-boxes {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem; /* 增加间距 */
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0.75rem; /* 增加左右间距 */
}

.time-value {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    color: #67e8f9;
    font-family: ui-monospace, monospace;
    font-size: 2rem; /* 放大字体 */
    font-weight: bold;
    border-radius: 0.75rem;
    width: 4.5rem; /* 增加宽度 */
    height: 4.5rem; /* 增加高度 */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .time-value {
        font-size: 2.75rem; /* 桌面端更大字体 */
        width: 6rem; /* 桌面端更大尺寸 */
        height: 6rem;
    }
}

.time-label {
    font-size: 1rem; /* 放大字体 */
    color: #94a3b8;
    margin-top: 1rem; /* 增加顶部间距 */
    font-weight: 600;
    letter-spacing: 0.1em;
}

@media (min-width: 768px) {
    .time-label {
        font-size: 1.25rem; /* 桌面端更大字体 */
    }
}

.time-separator {
    color: rgba(6, 182, 212, 0.5);
    font-size: 2.5rem; /* 放大字体 */
    margin-top: 1.25rem; /* 增加顶部间距 */
    font-weight: 300;
}

@media (min-width: 768px) {
    .time-separator {
        font-size: 3.5rem; /* 桌面端更大字体 */
    }
}

/* 跳转按钮区域 */
.jump-buttons-section {
    margin: 1.5rem 0;
}

.jump-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.jump-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    width: 260px;
    text-align: center;
    display: inline-block;
    white-space: nowrap;
}

.jump-btn.primary {
    background: linear-gradient(45deg, #22c55e, #16a34a);
    color: white;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

.jump-btn.secondary {
    background: linear-gradient(45deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

.jump-btn:hover {
    transform: translateY(-2px);
}

.jump-btn.primary:hover {
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.5);
}

.jump-btn.secondary:hover {
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.5);
}

/* CTA按钮区域 */
.cta-section {
    margin: 1rem 0;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem  0;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    width: 260px;
    white-space: nowrap;
    display: flex;
    justify-content: center;
}

.cta-btn.primary {
    background: linear-gradient(45deg, #1e40af, #3b82f6);
    color: white;
    box-shadow: 0 0 20px rgba(30, 64, 175, 0.4);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(103, 232, 249, 0.5);
    backdrop-filter: blur(10px);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(103, 232, 249, 0.3);
}
/* 通用容器和标题 */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    text-align: center;
    margin-bottom: 2rem;
}

/* 预售要点区域 */
.presale-details {
    padding: 4rem 0;
    background: rgba(15, 23, 42, 0.6);
    border-top: 1px solid rgba(103, 232, 249, 0.2);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.detail-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(103, 232, 249, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    min-width: 280px;
    width: 100%;
    max-width: 350px;
}

.detail-label {
    font-size: 1rem;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.detail-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: #67e8f9;
}

/* Milestone-based Valuation 表格样式 */
.milestone-valuation {
    padding: 4rem 0;
    background: rgba(15, 23, 42, 0.6);
    border-top: 1px solid rgba(103, 232, 249, 0.2);
    border-bottom: 1px solid rgba(103, 232, 249, 0.2);
}

.valuation-desc {
    text-align: center;
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 500;
}

.milestone-table {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.milestone-stage {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(103, 232, 249, 0.2);
    border-radius: 1rem;
    overflow: hidden;
}

.stage-header {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.3), rgba(59, 130, 246, 0.3));
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(103, 232, 249, 0.2);
}

.stage-number {
    background: linear-gradient(45deg, #1e40af, #3b82f6);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.stage-title {
    flex: 1;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
}

.stage-valuation {
    color: #22d3ee;
    font-size: 1.2rem;
    font-weight: bold;
    background: rgba(34, 211, 238, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(34, 211, 238, 0.3);
}

.stage-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.milestone-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.6;
}

.item-label {
    color: #94a3b8;
    font-weight: 600;
    min-width: 100px;
    flex-shrink: 0;
}

.item-value {
    color: #cbd5e1;
    flex: 1;
}

.item-value.highlight {
    color: #22d3ee;
    font-weight: bold;
}

.step-highlight {
    color: #22d3ee;
    font-weight: bold;
    background: rgba(34, 211, 238, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.valuation-explanation {
    text-align: center;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(103, 232, 249, 0.2);
    border-radius: 1rem;
    padding: 2rem;
}

.valuation-explanation p {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.6;
}
/* 预售福利区域 */
.benefits-section {
    padding: 4rem 0;
    background: rgba(8, 51, 68, 0.3);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.benefit-card {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(103, 232, 249, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    margin-top: 1.5rem;
    min-width: 320px;
    width: 100%;
    max-width: 380px;
}

.benefit-number {
    position: absolute;
    top: -25px;
    left: 20px;
    background: linear-gradient(45deg, #1e40af, #3b82f6);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.4);
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.benefit-desc {
    color: #cbd5e1;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.benefit-warning {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: #fbbf24;
    padding: 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.benefit-tiers {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tier-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.tier-amount {
    color: #22d3ee;
    font-weight: bold;
}

.tier-reward {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.benefit-highlight {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(30, 64, 175, 0.1);
    border: 1px solid rgba(30, 64, 175, 0.3);
    padding: 1rem;
    border-radius: 0.75rem;
}

.highlight-amount {
    color: #60a5fa;
    font-weight: bold;
    font-size: 1.1rem;
}

.highlight-reward {
    color: #cbd5e1;
}

/* NFT赋能区域 */
.nft-empowerment {
    padding: 4rem 0;
    background: rgba(8, 51, 68, 0.3);
    border-top: 1px solid rgba(103, 232, 249, 0.2);
}

.empowerment-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.empowerment-intro p {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.empowerment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.empowerment-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(103, 232, 249, 0.2);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    min-height: 280px;
    min-width: 280px;
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.empowerment-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.empowerment-item h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.empowerment-item p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 0.95rem;
    flex: 1;
}

/* 产品路线图 */
.roadmap-section {
    padding: 4rem 0;
    background: rgba(15, 23, 42, 0.6);
}

.roadmap-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.roadmap-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.roadmap-step {
    background: linear-gradient(45deg, #1e40af, #3b82f6);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.roadmap-content {
    flex: 1;
}

.roadmap-content h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.roadmap-content p {
    color: #cbd5e1;
    line-height: 1.6;
}
/* 代币经济学区域 */
.tokenomics-section {
    padding: 4rem 0;
    background: rgba(8, 51, 68, 0.3);
}

.tokenomics-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.pie-chart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.pie-chart-wrapper {
    position: relative;
    width: 1000px;
    height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#tokenomicsChart {
    max-width: 100%;
    max-height: 100%;
}

.allocation-table {
    width: 100%;
    max-width: 80%;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(103, 232, 249, 0.2);
    border-radius: 1rem;
    overflow: hidden;
}

.table-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid rgba(103, 232, 249, 0.1);
}

.table-row:last-child {
    border-bottom: none;
}

.category {
    background: rgba(30, 64, 175, 0.2);
    padding: 1.5rem 1rem;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(103, 232, 249, 0.2);
}

.breakdown {
    padding: 1.5rem 1rem;
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

/* 底部声明区域 */
.disclaimer-section {
    padding: 4rem 0;
    background: rgba(15, 23, 42, 0.8);
    border-top: 1px solid rgba(103, 232, 249, 0.2);
}

.disclaimer-content {
    display: grid;
    gap: 2rem;
    max-width: 90%;
    margin: 0 auto;
}

.disclaimer-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(103, 232, 249, 0.2);
    border-radius: 1rem;
    padding: 2rem;
}

.disclaimer-item.risk-warning {
    border-color: rgba(251, 191, 36, 0.3);
    background: rgba(251, 191, 36, 0.1);
}

.disclaimer-item h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.disclaimer-item.risk-warning h4 {
    color: #fbbf24;
}

.disclaimer-item p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 1rem;
}

/* 数字雨效果 */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    opacity: 0.1;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .presale-title {
        font-size: 2.5rem;
    }
    
    .presale-dates {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .presale-subtitle {
        font-size: 1.25rem;
        padding: 0 0.5rem;
    }
    
    .presale-stats {
        font-size: 1.1rem;
    }
    
    .presale-notice {
        font-size: 1rem;
    }
    
    .presale-header {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 240px;
    }
    
    .jump-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .jump-btn {
        width: 100%;
        max-width: 240px;
    }
    
    .milestone-table {
        gap: 1.5rem;
    }
    
    .stage-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }
    
    .stage-title {
        font-size: 1.1rem;
    }
    
    .stage-content {
        padding: 1.5rem 1rem;
    }
    
    .milestone-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .item-label {
        min-width: auto;
        color: #67e8f9;
        font-weight: bold;
    }
    
    .valuation-explanation {
        padding: 1.5rem 1rem;
    }
    
    .valuation-explanation p {
        font-size: 1rem;
    }
    
    .details-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .empowerment-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .detail-item,
    .benefit-card,
    .empowerment-item {
        max-width: 100%;
        min-width: auto;
    }
    
    .roadmap-timeline {
        grid-template-columns: 1fr;
    }
    
    .roadmap-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .tokenomics-content {
        gap: 2rem;
    }
    
    .pie-chart-wrapper {
        width: 100%;
        height: 500px;
        overflow: hidden;
    }
    
    #tokenomicsChart {
        width: 100% !important;
        height: 100% !important;
    }
    
    .table-row {
        grid-template-columns: 1fr;
    }
    
    .category {
        border-right: none;
        border-bottom: 1px solid rgba(103, 232, 249, 0.2);
        padding: 1rem;
    }
    
    .breakdown {
        padding: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .time-value {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.5rem;
    }
    
    .time-separator {
        font-size: 2rem;
    }
    
    .time-label {
        font-size: 0.875rem;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .nav-links a {
        font-size: 12px;
        padding: 6px 12px;
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .company-info-row {
        flex-direction: column;
        gap: 10px;
    }

    .contact-content {
        flex-direction: column;
        gap: 20px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 25px;
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .ip-image {
        max-width: 250px;
    }

    .mission-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .mission-text {
        font-size: 1rem;
        max-width: 90%;
        line-height: 1.6;
    }

    .feature-tags {
        flex-direction: column;
        align-items: center;
    }
}