.gamification-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f6f8fd 0%, #f1f4f9 100%);
    padding: 2rem;
    text-align: center;
}

.hero-title {
    margin-top: 60px;
    font-size: 3.5rem;
    font-weight: 600;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
}

.hero-subtitle{
    margin:15px;
    max-width: 600px;
}

.stats-container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.stat-box {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
    width: 300px;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    color: #4a90e2;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.stat-title {
    font-size: 1.2rem;
    color: #333;
}

.stat-description {
    color: #666;
    line-height: 1.6;
}

.games-section {
    background: #f8f9fa;
    padding: 4rem 2rem;
}

.games-grid {
    max-width: 1200px;
    margin: 2rem auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.game-item {
    background: #ebebeb;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.game-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.game-icon {
    font-size: 2rem;
    color: #4a90e2;
    margin-bottom: 1rem;
    width: 100px;
}

.game-preview {
    width: 300px;
}


@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .stats-container {
        padding: 1rem;
    }

    .stat-box {
        padding: 1.5rem;
        width: 100%;
    }

    .game-item {
        width: 100%;
    }
}