* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.stats-title {
    background: #1a1a1a; 
    font-size: 4rem;
    font-weight: 300;
    color: #4fb3b3;
    margin-bottom: 10px;
    line-height: 1;
    text-shadow: 0 0 20px rgba(79, 179, 179, 0.3);
    position: relative;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    padding: 2rem 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.stats-banner {
    background-color: #1a1a1a;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    max-width: 1200px;
    width: 100%;
}
.stat-item {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}
.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }
.stat-number {
    font-size: 4rem;
    font-weight: 300;
    color: #4fb3b3;
    margin-bottom: 10px;
    line-height: 1;
    text-shadow: 0 0 20px rgba(79, 179, 179, 0.3);
    position: relative;
}
.stat-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #4fb3b3;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
    pointer-events: none;
}
.stat-description {
    font-size: 1.18rem;
    color: #b0b0b0;
    line-height: 1.4;
    max-width: 180px;
    margin: 0 auto;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.02);
        opacity: 0.1;
    }
}
@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .stat-number {
        font-size: 3rem;
    }
    .stats-banner {
        padding: 40px 20px;
    }
}
@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .stat-number {
        font-size: 2.5rem;
    }
}
.stat-item:hover .stat-number {
    color: #5dc7c7;
    text-shadow: 0 0 30px rgba(93, 199, 199, 0.5);
    transform: scale(1.05);
    transition: all 0.3s ease;
}
.stat-item:hover .stat-description {
    color: #e0e0e0;
    transition: color 0.3s ease;
}
