/* ==========================================
   LyricsGroove Artist Stats
========================================== */

.lg-artist-stats{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

    margin-top:28px;

}

.lg-stat-card{

    min-width:180px;

    padding:24px;

    border-radius:20px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.96),
            rgba(248,250,252,.94)
        );

    border:1px solid rgba(255,255,255,.65);

    box-shadow:
        0 20px 50px rgba(9,18,36,.18),
        inset 0 1px 0 rgba(255,255,255,.75);

    backdrop-filter:blur(18px);

    transition:.35s ease;

    position:relative;

    overflow:hidden;

}

.lg-stat-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:linear-gradient(
        90deg,
        #DE497B,
        #8B5CF6,
        #38BDF8
    );

}

.lg-stat-card:hover{

    transform:translateY(-8px);

    box-shadow:
        0 28px 70px rgba(8,17,31,.28);

}

.lg-stat-label{

    display:block;

    font-size:13px;

    text-transform:uppercase;

    letter-spacing:.08em;

    color:#d1d5db;

    margin-bottom:8px;

}

.lg-stat-value{

    display:block;

    font-size:18px;

    font-weight:700;

}

@media (max-width:768px){

    .lg-artist-stats{

        justify-content:center;

    }

    .lg-stat-card{

        width:100%;

        max-width:280px;

    }

}