/* body {
    background: #0f172a;
    color: #e5e7eb;
    font-family: Inter, sans-serif;
} */

.container {
    max-width: 1100px;
    margin: 20px auto;
    padding: 0 16px;
}

.plot-card {
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .4);
}

.plot-title {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 600;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.stat {
    background: rgba(255, 255, 255, 0.04);
    padding: 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.label {
    font-size: 12px;
    opacity: 0.7;
}

.value {
    font-size: 20px;
    font-weight: 700;
}