/* ==========================================================================
   CUBOSAURS — TABS
   ========================================================================== */
.cubo-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.cubo-tab {
    flex: 1;
    background: var(--bg-secondary);
    border: 1.5px solid var(--bg-tertiary);
    color: var(--text-secondary);
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.6rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}
.cubo-tab.active { background: var(--accent-light); border-color: var(--accent); color: var(--accent); }
