/* =============================================
   ARTIST WAVE STATS - ConincStudio™
   Stats cards grid for artist dashboard
   ============================================= */

.wave-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0 40px;
}

.wave-stat-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.wave-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #F5B301, #FF8C42);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wave-stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 179, 1, 0.3);
    background: rgba(245, 179, 1, 0.05);
}

.wave-stat-card:hover::before {
    opacity: 1;
}

/* --- Stat Content --- */
.stat-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 6px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    color: #F5B301;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.6;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 500;
}

/* --- Trend Indicator (optional) --- */
.stat-trend {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 8px;
    padding: 2px 10px;
    border-radius: 20px;
}

.stat-trend.up {
    color: #00E676;
    background: rgba(0, 230, 118, 0.1);
}

.stat-trend.down {
    color: #FF4444;
    background: rgba(255, 68, 68, 0.1);
}

.stat-trend.neutral {
    color: #FFA726;
    background: rgba(255, 167, 38, 0.1);
}

/* --- Progress Bar (optional) --- */
.stat-progress {
    height: 3px;
    background: rgba(245, 179, 1, 0.15);
    border-radius: 10px;
    margin-top: 12px;
    position: relative;
    overflow: hidden;
}

.stat-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%; 
    width: var(--progress, 50%);
    background: linear-gradient(90deg, #F5B301, #FF8C42);
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(245, 179, 1, 0.3);
    transition: width 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Linked Stat Card (clickable) --- */
.wave-stat-card.wave-stat-link {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .wave-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin: 20px 0 30px;
    }

    .wave-stat-card {
        padding: 18px 12px;
        border-radius: 18px;
    }

    .stat-value {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .wave-stat-card {
        padding: 14px 10px;
    }

    .stat-icon {
        font-size: 1.4rem;
    }

    .stat-value {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }
}