
    .stats-container {
        display: flex;
        justify-content: center;
        align-items: stretch;
        gap: 20px;
        width: 100%;
        max-width: 1200px;
        flex-wrap: nowrap;
        margin: 40px auto;
    }
    
    .stat-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 30px;
        flex: 1;
        min-width: 200px;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        transition: transform 0.3s, box-shadow 0.3s;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        flex-direction: column;
    }
    
    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    }
    
    .stat-icon {
        font-size: 2rem;
        margin-bottom: 15px;
        color: #3498db;
    }
    
    .stat-value {
        font-size: 2.5rem;
        font-weight: 700;
        margin: 10px 0;
        color: white;
        font-family: "Arial", sans-serif;
        flex-grow: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 60px;
        overflow: hidden;
        position: relative;
    }
    
    .digit-container {
        display: inline-block;
        position: relative;
        height: 60px;
        width: 0.6em;
        text-align: center;
        overflow: hidden;
    }
    
    .digit-scroll {
        position: absolute;
        width: 100%;
        transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
    }
    
    .digit-scroll div {
        height: 60px;
        line-height: 60px;
    }
    
    .digit-separator {
        margin: 0 2px;
    }
    
    .decimal-part {
        margin-left: 2px;
    }
    
    .plus-sign {
        font-size: 1.5rem;
        margin-left: 5px;
        color: #3498db;
    }
    
    .stat-label {
        font-size: 1rem;
        opacity: 0.9;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 10px;
        font-weight: bold;
    }
    
    .stat-description {
        font-size: 0.8rem;
        opacity: 0.7;
        margin-top: 15px;
        font-style: italic;
    }
    
    @media (max-width: 900px) {
        .stats-container {
            flex-wrap: wrap;
        }
        
        .stat-card {
            min-width: calc(50% - 40px);
        }
    }
    
    @media (max-width: 600px) {
        .stat-card {
            min-width: 100%;
        }
    }