.stats-section {
    position: relative;
    overflow: hidden;
}

.stat-item {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 168, 255, 0.2);
}

.stat-value {
    background: linear-gradient(90deg, #00a8ff 0%, #0056b3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 640px) {
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
}
