.mv-community-pulse {
    font-family: 'Poppins', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
}

.mv-cp-header {
    text-align: center;
    margin-bottom: 48px;
}

.mv-cp-title {
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.mv-cp-subtitle {
    color: #64748b;
    font-size: 1.125rem;
    font-weight: 400;
}

.mv-cp-subtitle-note {
    color: #94a3b8;        /* softer gray */
    font-size: 0.9rem;     /* smaller than subtitle */
    margin-top: 6px;
    font-style: italic;    /* subtle differentiation */
    opacity: 0.9;
}

.mv-cp-stats-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.mv-cp-stat-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mv-cp-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.mv-cp-stat-primary {
    border-left: 4px solid #3b82f6;
}

.mv-cp-stat-success {
    border-left: 4px solid #10b981;
}

.mv-cp-stat-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-cp-stat-primary .mv-cp-stat-icon {
    background: #dbeafe;
    color: #3b82f6;
}

.mv-cp-stat-success .mv-cp-stat-icon {
    background: #d1fae5;
    color: #10b981;
}

.mv-cp-stat-content {
    flex: 1;
}

.mv-cp-stat-title {
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.mv-cp-stat-value {
    color: #1e293b;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1;
}

.mv-cp-stat-desc {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.5;
}

.mv-cp-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.mv-cp-section {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.mv-cp-section-featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
}

.mv-cp-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.mv-cp-section-title {
    color: #1e293b;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.mv-cp-section-subtitle {
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
}

.mv-cp-section-badge {
    background: #3b82f6;
    color: white;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mv-cp-stock-highlight {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.mv-cp-stock-symbol {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 8px;
}

.mv-cp-stock-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.mv-cp-stock-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
}

.mv-cp-stock-label {
    font-size: 0.875rem;
    color: #64748b;
}

.mv-cp-stock-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mv-cp-stock-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.mv-cp-stock-item:hover {
    background: #f1f5f9;
}

.mv-cp-stock-rank {
    width: 32px;
    height: 32px;
    background: #e2e8f0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #475569;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.mv-cp-stock-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mv-cp-stock-symbol {
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
}

.mv-cp-stock-percent {
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.875rem;
}

.mv-cp-stock-bar {
    flex: 0 0 60px;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
}

.mv-cp-stock-bar-fill {
    height: 100%;
    background: #3b82f6;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.mv-cp-global-note {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 14px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mv-cp-stats-overview {
        grid-template-columns: 1fr;
    }
    
    .mv-cp-content-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-cp-title {
        font-size: 2rem;
    }
    
    /* Most Held Mobile Fix */
    .mv-cp-stock-highlight {
        padding: 16px;
    }

    .mv-cp-stock-highlight .mv-cp-stock-symbol {
        font-size: 1.8rem;
    }

    .mv-cp-stock-highlight .mv-cp-stock-value {
        font-size: 1.25rem;
    }

    .mv-cp-stock-highlight .mv-cp-stock-label {
        font-size: 0.8rem;
    }
}
        
@media (max-width: 768px) {

    .mv-cp-stock-item {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

    /* Symbol row */
    .mv-cp-stock-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    /* Percent */
    .mv-cp-stock-percent {
        font-size: 0.85rem;
    }

    /* Thin progress bar */
    .mv-cp-stock-bar {
        flex: 0 0 5px;
        width: 100%;
        height: 3px;   /* ← key change */
        margin-top: 4px;
    }

}

        
@media (max-width: 480px) {
    .mv-community-pulse {
        padding: 16px;
    }
    
    .mv-cp-stat-card,
    .mv-cp-section {
        padding: 20px;
    }
    
    .mv-cp-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}