.stats-card-661f8d18 {
    background-color: #111524;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.stats-card-661f8d18 .icon-wrapper {
    background-color: rgba(0, 163, 255, 0.1);
    color: #00a3ff;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 24px;
}

.stats-card-661f8d18 .icon-wrapper svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.stats-card-661f8d18 .stats-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.stats-card-661f8d18 .stats-number-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.stats-card-661f8d18 .stats-number,
.stats-card-661f8d18 .stats-suffix, 
.stats-card-661f8d18 .stats-prefix {
    font-weight: 800;
    color: #00a3ff;
    line-height: 1;
    background: linear-gradient(90deg, #0052ff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-card-661f8d18 .stats-number {
    font-size: 42px;
}

.stats-card-661f8d18 .stats-suffix, 
.stats-card-661f8d18 .stats-prefix {
    font-size: 24px;
    font-weight: 700;
}

.stats-card-661f8d18 .stats-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.stats-card-661f8d18 .stats-desc {
    color: #8b92a5;
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
}

.stats-card-661f8d18 .progress-bar-container {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 15px;
    overflow: hidden;
}

.stats-card-661f8d18 .progress-bar-fill {
    height: 100%;
    width: 0; /* Starts at 0 for animation */
    background: linear-gradient(90deg, #0052ff, #00ffff);
    border-radius: 2px;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}