﻿.md-stat-bst-start {
    padding-top: 60px;
}

.row#stat-group-1 {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-bst-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 20px 20px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    text-align: center;
    position: relative;
    min-width: 180px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Inter', sans-serif;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-bst-item div span {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -60%);
    font-size: 3.5rem;
    font-weight: 900;
    color: #222;
    background: linear-gradient(180deg, #800000 50%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.1);
    z-index: 2;
}

    .stat-bst-item:hover {
        transform: translateY(10px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    }

        .stat-bst-item:hover div span {
            background: linear-gradient(180deg, #9c5466 50%, #570303 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

