/* Tokenomics Section Styles */
.tokenomics-section {
    padding: 100px 0;
    background-color: var(--bg-alt-color);
    transition: background-color 0.5s ease;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tokenomics-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: transform 0.5s ease, box-shadow 0.5s ease, background-color 0.5s ease;
    text-align: center;
}

.tokenomics-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.tokenomics-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

[data-theme="dark"] .tokenomics-card h3 {
    color: var(--light-color);
}

.network-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 30px;
    background: linear-gradient(145deg, rgba(0, 82, 255, 0.05) 0%, rgba(0, 82, 255, 0.1) 100%);
    border: 1px solid rgba(0, 82, 255, 0.2);
}

[data-theme="dark"] .network-card {
    background: linear-gradient(145deg, rgba(0, 82, 255, 0.1) 0%, rgba(0, 82, 255, 0.15) 100%);
    border: 1px solid rgba(0, 82, 255, 0.3);
}

.network-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 82, 255, 0.1);
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 82, 255, 0.2);
}

.network-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.network-info {
    text-align: center;
    margin-top: 20px;
    width: 100%;
}

.network-name {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    background-color: rgba(0, 82, 255, 0.08);
    border-radius: 12px;
    border-left: 4px solid #0052FF;
}

[data-theme="dark"] .network-name {
    background-color: rgba(0, 82, 255, 0.15);
    border-left: 4px solid #3D7BFF;
}

.chain-icon {
    width: 36px;
    height: 36px;
    margin-right: 15px;
}

.chain-details {
    display: flex;
    flex-direction: column;
}

.chain-label {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 4px;
}

.chain-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0052FF;
    background: linear-gradient(90deg, #0052FF 0%, #6E8AFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .chain-value {
    background: linear-gradient(90deg, #3D7BFF 0%, #8EABFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.network-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 15px;
    background-color: rgba(0, 82, 255, 0.05);
    border-radius: 12px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 5px;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.network-description {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.05rem;
}

.allocation-chart {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
}

.allocation-legend {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.allocation-legend .legend-item {
    display: flex;
    align-items: center;
}

.allocation-legend .legend-color {
    width: 15px;
    height: 15px;
    border-radius: 3px;
    margin-right: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
    
    .allocation-chart {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 576px) {
    .tokenomics-card {
        padding: 20px;
    }
    
    .allocation-chart {
        width: 150px;
        height: 150px;
    }
}
