/* 代币经济页面样式 */

/* 导航一致性修复：确保与全站公共导航一致（避免 Bootstrap 默认样式影响） */
body.tokenomics-page .navbar {
    padding: 0 !important;
    display: block !important;
    transform: none !important;
}
body.tokenomics-page .nav-container {
    height: 70px;
}
/* 仅在桌面端强制显示为 flex，保留移动端切换行为 */
@media (min-width: 769px) {
    body.tokenomics-page .nav-menu {
        display: flex !important;
    }
}
/* 避免覆盖“预售”按钮的内边距样式 */
body.tokenomics-page .nav-link:not([href*="presale"]) {
    padding: 0 !important; /* 覆盖 Bootstrap 的 nav-link 内边距 */
}

/* 页面级变量（便于统一品牌色调） */
body.tokenomics-page {
    --brand-primary: #667eea; /* indigo */
    --brand-secondary: #764ba2; /* purple */
    --brand-accent: #fbbf24; /* amber */
}

/* 可访问性：遵循用户的减少动效偏好 */
@media (prefers-reduced-motion: reduce) {
    .hero-content,
    .hero-title,
    .hero-subtitle,
    .hero-stats,
    .tokenomics-hero::before,
    .token-orbit {
        animation: none !important;
    }
    .overview-card:hover,
    .mining-card:hover,
    .utility-card:hover,
    .feature-card:hover {
        transform: none !important;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05) !important;
    }
}

/* 页面可读性与一致性修复：浅色背景上的文本颜色、章节标题样式 */
body.tokenomics-page .section-title {
    color: #1e293b;
    font-weight: 700;
}

body.tokenomics-page .section-subtitle {
    color: #64748b;
}

/* 为浅色区块统一设置深色文本，避免与全局白色文字冲突 */
body.tokenomics-page .token-overview,
body.tokenomics-page .token-distribution,
body.tokenomics-page .vesting-schedule,
body.tokenomics-page .token-utility,
body.tokenomics-page .governance-model,
body.tokenomics-page .economic-model,
body.tokenomics-page .tokenomics-roadmap {
    color: #1e293b;
}

/* 表格文本颜色修复（Bootstrap table 在浅色背景下可读） */
body.tokenomics-page .table {
    color: #1f2937;
}
body.tokenomics-page .table thead th {
    color: #1e293b;
}
body.tokenomics-page .table tbody td {
    color: #334155;
}

/* 质押机制为深色区块：保持白色文字并提高标题对比度 */
body.tokenomics-page .staking-mechanism {
    color: #ffffff;
}
body.tokenomics-page .staking-mechanism .section-title {
    color: #ffffff;
}
body.tokenomics-page .staking-mechanism .section-subtitle {
    color: #cbd5e1;
}

/* 代币经济英雄区 */
.tokenomics-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.tokenomics-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="tokenGrid" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23tokenGrid)"/></svg>');
    opacity: 0.4;
    animation: tokenGridFloat 40s linear infinite;
}

/* 动态代币图案背景 */
.tokenomics-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    animation: tokenPulse 20s ease-in-out infinite;
}

@keyframes tokenGridFloat {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(20px, 20px) rotate(360deg); }
}

@keyframes tokenPulse {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.6; 
        transform: scale(1.1); 
    }
}

.tokenomics-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff, #e0e7ff, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: tokenTitleGradient 3s ease-in-out infinite;
}

@keyframes tokenTitleGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.highlight {
    color: #fbbf24;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.token-visualization {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
}

.token-orbit {
    position: relative;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.token-node {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.token-node:nth-child(1) {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.token-node:nth-child(2) {
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
}

.token-node:nth-child(3) {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.token-node:nth-child(4) {
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
}

/* 代币概览 */
.token-overview {
    padding: 6rem 0;
    background: #f8fafc;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.overview-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1rem;
}

.card-description {
    color: #64748b;
    line-height: 1.6;
}

/* 代币分配 */
.token-distribution {
    padding: 6rem 0;
    background: white;
}

.distribution-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.distribution-chart {
    position: relative;
}

.chart-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.total-supply {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
}

.total-label {
    font-size: 1rem;
    color: #64748b;
    margin-top: 0.5rem;
}

.distribution-details {
    space-y: 2rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.detail-color {
    width: 4px;
    border-radius: 2px;
    flex-shrink: 0;
}

.detail-content {
    flex: 1;
}

.detail-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.detail-amount {
    font-size: 1.125rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 0.75rem;
}

.detail-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.detail-schedule {
    display: flex;
    gap: 0.5rem;
}

.schedule-label {
    color: #64748b;
    font-weight: 500;
}

.schedule-value {
    color: #1e293b;
    font-weight: 600;
}

/* 挖矿机制 */
.mining-mechanism {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.mining-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mining-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.mining-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.mining-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mining-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.mining-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.mining-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.mining-reward {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #f0fdf4;
    border-radius: 0.5rem;
    border: 1px solid #bbf7d0;
}

.reward-label {
    color: #166534;
    font-weight: 500;
}

.reward-value {
    color: #15803d;
    font-weight: 700;
}

/* 挖矿计算器 */
.mining-calculator {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-top: 3rem;
}

.calculator-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
    margin-bottom: 2rem;
}

.calculator-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.form-group label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.calculate-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.calculator-result {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 0.5rem;
}

.result-item {
    text-align: center;
}

.result-label {
    color: #64748b;
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}

.result-value {
    color: #667eea;
    font-weight: 700;
    font-size: 1.25rem;
}

/* 治理机制 */
.governance-system {
    padding: 6rem 0;
    background: white;
}

.governance-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.step-description {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.875rem;
}

.flow-arrow {
    display: flex;
    align-items: center;
    color: #667eea;
}

.flow-arrow svg {
    width: 24px;
    height: 24px;
}

.governance-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    display: flex;
    gap: 1rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: #64748b;
    line-height: 1.6;
}

/* 代币用途 */
.token-utility {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.utility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.utility-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.utility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.utility-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.utility-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.utility-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.utility-description {
    color: #64748b;
    line-height: 1.6;
}

/* 经济模型 */
.economic-model {
    padding: 6rem 0;
    background: white;
}

.model-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.model-chart {
    text-align: center;
}

.chart-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2rem;
}

.flow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.flow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.node-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.node-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.node-label {
    font-weight: 600;
    color: #1e293b;
}

.flow-connections {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.connection {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.connection-label {
    font-size: 0.875rem;
    color: #64748b;
}

.connection-arrow {
    color: #667eea;
    font-weight: 700;
}

.model-features {
    space-y: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.feature-item .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135d, #10b981, #059669);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item .feature-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.feature-item .feature-content {
    flex: 1;
}

.feature-item .feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.feature-item .feature-description {
    color: #64748b;
    line-height: 1.6;
}

/* 路线图 */
.tokenomics-roadmap {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.roadmap-timeline {
    position: relative;
    margin-top: 3rem;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #667eea;
    border: 4px solid white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.timeline-date {
    font-size: 1.125rem;
    font-weight: 700;
    color: #667eea;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    border: 2px solid #667eea;
    margin: 0 2rem;
    white-space: nowrap;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin: 0 2rem;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.timeline-features {
    list-style: none;
    padding: 0;
}

.timeline-features li {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.timeline-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

/* 风险提示 */
.risk-disclosure {
    padding: 3rem 0;
    background: #fef3c7;
    border-top: 4px solid #f59e0b;
    border-bottom: 4px solid #f59e0b;
}

.disclosure-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.disclosure-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 1rem;
}

.disclosure-text {
    color: #78350f;
    line-height: 1.6;
    font-size: 1rem;
}

/* 动画 */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .distribution-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .chart-container {
        width: 300px;
        height: 300px;
    }
    
    .governance-flow {
        flex-direction: column;
        gap: 1rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .model-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .flow-diagram {
        flex-direction: column;
        gap: 1rem;
    }
    
    .roadmap-timeline::before {
        left: 20px;
        display: none;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 3rem;
    }
    
    .timeline-item::before {
        left: 20px;
        transform: translateY(-50%);
    }
    
    .timeline-date {
        margin: 0 0 1rem 0;
    }
    
    .timeline-content {
        margin: 0;
    }
}

/* ===== UI 优化新增：统一卡片视觉与交互 ===== */
.staking-pool-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}
.staking-pool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 24px rgba(0, 0, 0, 0.1);
}
.staking-pool-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}
.staking-pool-card .apy {
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
}
.staking-pool-card .lockup,
.staking-pool-card .min-amount {
    color: #64748b;
    font-size: 0.95rem;
}

.governance-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.governance-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
}
.governance-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.mechanism-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}
.mechanism-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 24px rgba(0, 0, 0, 0.1);
}
.mechanism-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}