/* Tokenomics specific styles */

.tokenomics-dark {
    background: #0f0f1a;
    color: #f0f0f0;
    padding: 60px 0;
}

/* Light mode overrides */
body:not(.dark-mode) .tokenomics-dark {
    background: #fff;
    color: #000;
}

body:not(.dark-mode) .dark-card {
    background: #1a1a2e;
    border: 1px solid #2a2a3d;
    color: #f0f0f0;
}

body:not(.dark-mode) .dark-card h4,
body:not(.dark-mode) .dark-card p {
    color: #f0f0f0;
}

/* Chart responsive */
.tokenomics-chart {
    width: 100% !important;
    max-width: 420px;
    height: auto !important;
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s ease;
}

/* Samakan tinggi semua card */
.tokenomics-card {
    min-height: 220px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .tokenomics-card {
        min-height: auto;
    }
}