.fun-progress {
    max-width: 700px;
    margin: 0 auto;
}

.fp-section {
    margin-bottom: 20px;
}

.fp-section-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 18px;
    color: var(--text-primary);
}

.fp-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.fp-item {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.fp-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.fp-item-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.fp-emoji {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
}

.fp-title {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.fp-pct {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    min-width: 38px;
    text-align: right;
}

.fp-bar {
    height: 8px;
    background: rgba(255, 255, 255, .06);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 6px;
}

.fp-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--emerald), var(--emerald-light));
    border-radius: 4px;
    transition: width .6s ease;
    min-width: 0;
    box-shadow: 0 0 8px rgba(52, 211, 153, .3);
}

.fp-remaining {
    font-size: 12px;
    color: var(--text-muted);
}

/* ── Section colors ── */

.fp-section[data-theme="holidays"] .fp-bar-fill {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    box-shadow: 0 0 8px rgba(245, 158, 11, .3);
}

.fp-section[data-theme="moon"] .fp-bar-fill {
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
    box-shadow: 0 0 8px rgba(139, 92, 246, .3);
}

.fp-section[data-theme="future"] .fp-bar-fill {
    background: linear-gradient(90deg, #ef4444, #f87171);
    box-shadow: 0 0 8px rgba(239, 68, 68, .3);
}

.fp-section[data-theme="page"] .fp-bar-fill {
    background: linear-gradient(90deg, #38bdf8, #7dd3fc);
    box-shadow: 0 0 8px rgba(56, 189, 248, .3);
}

/* ── Responsive ── */

@media (max-width: 600px) {
    .fp-emoji {
        font-size: 18px;
    }

    .fp-title {
        font-size: 13px;
    }

    .fp-bar {
        height: 6px;
    }
}
