* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    color: #2c3e50;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 50px;
}

.header h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 10px;
}

.wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 50px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.3);
}

.counters {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.counter-item {
    text-align: center;
    min-width: 180px;
    transition: all 0.3s ease;
}

.counter-item:hover {
    transform: translateY(-3px);
}

.icon {
    font-size: 2.8rem;
    color: #667eea;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.counter-item:hover .icon {
    transform: scale(1.1);
    color: #5a67d8;
}

.counter {
    font-size: 2.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin: 15px 0;
    transition: all 0.2s ease;
}

.counter.updating {
    transform: scale(1.1);
    color: #667eea;
}

.counter-item h3 {
    font-size: 1.1rem;
    color: #5a6c7d;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Simple responsive */
@media (max-width: 768px) {
    .wrapper {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .counters {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .counter-item {
        width: 100%;
        max-width: 250px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
}
