.game-info-section {
    width: 100%;
    padding: 2rem 1.5rem;
    display: flex;
    justify-content: center;
}

.game-info-grid {
    max-width: var(--max-width, 1200px);
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin: 0 auto;
}

.game-info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.75rem 0.5rem;
    background-color: var(--card-bg-color);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
    margin: 0 auto;
    width: 100%;
    min-height: 120px;
}

.game-info-card:hover {
    transform: translateY(-3px);
}

.game-info-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}

.game-info-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.game-info-text h3 {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
}

.game-info-text p {
    font-size: 0.7rem;
    color: var(--text-secondary-color);
    line-height: 1.3;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .game-info-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.9rem;
    }
}

@media (max-width: 992px) {
    .game-info-section {
        padding: 1.8rem 1.2rem;
    }
    
    .game-info-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.8rem;
    }
    
    .game-info-card {
        padding: 0.7rem 0.4rem;
        min-height: 110px;
    }
    
    .game-info-icon {
        width: 22px;
        height: 22px;
        margin-bottom: 0.4rem;
    }
    
    .game-info-text h3 {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }
    
    .game-info-text p {
        font-size: 0.65rem;
    }
}

@media (max-width: 768px) {
    .game-info-section {
        padding: 1.5rem 1rem;
    }
    
    .game-info-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.7rem;
    }
    
    .game-info-card {
        padding: 0.8rem 0.6rem;
        min-height: 140px;
    }
    
    .game-info-icon {
        width: 20px;
        height: 20px;
        margin-bottom: 0.4rem;
    }
    
    .game-info-text h3 {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
    
    .game-info-text p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

@media (max-width: 576px) {
    .game-info-section {
        padding: 1.2rem 0.8rem;
    }
    
    .game-info-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
        max-width: 100%;
    }
    
    .game-info-card {
        padding: 0.8rem 0.6rem;
        min-height: 140px;
    }
    
    .game-info-icon {
        width: 18px;
        height: 18px;
        margin-bottom: 0.3rem;
    }
    
    .game-info-text h3 {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }
    
    .game-info-text p {
        font-size: 0.7rem;
        line-height: 1.3;
    }
}

