... | 🕐 --:--
-- -- --
عاجل
⚡ عاجل: كريستيانو رونالدو يُتوّج كأفضل لاعب كرة قدم في العالم ⚡ أخبار عاجلة تتابعونها لحظة بلحظة على خبر ⚡ تابعوا آخر المستجدات والأحداث من حول العالم
⌘K
AI مباشر
30354 مقال 232 مصدر نشط 38 قناة مباشرة 7540 خبر اليوم
آخر تحديث: منذ ثانية

Gattuso warning for Italy: ‘Bosnia have very experienced players’

رياضة
Football Italia
2026/03/26 - 23:02 502 مشاهدة

Gennaro Gattuso gives his first comment after learning Italy will face Bosnia and Herzegovina in the World Cup play-off final. ‘There are a lot of experienced players, Wales are very different.’

The Azzurri were forced to wait for quite a while after their 2-0 victory over Northern Ireland, as Edin Dzeko cancelled out the Welsh opener in Cardiff and forced extra time.

It remained 1-1 after 120 minutes and they could only be separated in a penalty shoot-out.

The final for a spot in the World Cup will be at the Bilino Polje stadium in Zenica on Tuesday March 31.

Gattuso preparing Italy for Bosnia trip

BERGAMO, ITALY - MARCH 26: Gennaro Gattuso of Italy looks on prior to the FIFA World Cup 2026 European Qualifiers KO play-offs match between Italy and Northern Ireland at Stadio di Bergamo on March 26, 2026 in Bergamo, Italy. (Photo by Marco Luzzani/Getty Images)
BERGAMO, ITALY – MARCH 26: Gennaro Gattuso of Italy looks on prior to the FIFA World Cup 2026 European Qualifiers KO play-offs match between Italy and Northern Ireland at Stadio di Bergamo on March 26, 2026 in Bergamo, Italy. (Photo by Marco Luzzani/Getty Images)

“It’s going to be a fiery atmosphere, though if we had gone to Cardiff, it would’ve been a similar situation,” said Gattuso in his press conference.

“There are a lot of experienced players in the Bosnia team, Wales are very different. Bosnia close up well, rely on their strikers, so it’ll be another very difficult game, much like the one we had tonight.”

It took until the 56th minute for Italy to break Northern Ireland down with a Sandro Tonali strike from the edge of the area, then the Newcastle United midfielder set up Moise Kean for the second.

BERGAMO, ITALY - MARCH 26: Moise Kean of Italy celebrates scoring his team's second goal during the FIFA World Cup 2026 European Qualifiers KO play-offs match between Italy and Northern Ireland at Stadio di Bergamo on March 26, 2026 in Bergamo, Italy. (Photo by Marco Luzzani/Getty Images)
BERGAMO, ITALY – MARCH 26: Moise Kean of Italy celebrates scoring his team’s second goal during the FIFA World Cup 2026 European Qualifiers KO play-offs match between Italy and Northern Ireland at Stadio di Bergamo on March 26, 2026 in Bergamo, Italy. (Photo by Marco Luzzani/Getty Images)

Did the Azzurri feel the pressure of being the favourites a bit too much?

“Aside from the pressure, we also made a mistake in the first half with Locatelli sitting too deep, we ended up with Mancini acting as a full-back, which was not what we had prepared at all,” confessed Gattuso.

“We needed to bring their midfielders forward and look for our strikers, but instead we kept passing it down the right for Politano to take his man on, occasionally on the left, but not enough.

“Northern Ireland surprised us too, as we expected them to be far more vertical, but they did try to pass it around. After 15-20 minutes, we realised that and moved better. Our mentality and our tactics in the first half were not what we wanted.”

BERGAMO, ITALY - MARCH 26: Fans of Italy show their support by holding up scarves in the stands prior to the FIFA World Cup 2026 European Qualifiers KO play-offs match between Italy and Northern Ireland at Stadio di Bergamo on March 26, 2026 in Bergamo, Italy. (Photo by Marco Luzzani/Getty Images)
BERGAMO, ITALY – MARCH 26: Fans of Italy show their support by holding up scarves in the stands prior to the FIFA World Cup 2026 European Qualifiers KO play-offs match between Italy and Northern Ireland at Stadio di Bergamo on March 26, 2026 in Bergamo, Italy. (Photo by Marco Luzzani/Getty Images)

The tension was palpable on the touchline, but Gattuso assured he tried to keep his usually abrasive manner under wraps.

“If you noticed, I was very calm in the first half. I was angry too, because for long spells we didn’t do what we had prepared. I explained we needed to go for the strikers and not sit so deep. We did much better after the restart, I realise these are games where you feel the tension and what is at stake,” continued the coach.

“The decision to come here in a smaller stadium was also wise, because if we’d been in a bigger place with 70,000 in the stands, trust me that a good 30 per cent would’ve started jeering at half-time. Instead, we did well to pick Bergamo, the fans helped us and they were fundamental in not putting more pressure on my players.”

Alessandro Bastoni had been a major doubt due to an ankle injury and he was the first player substituted soon after receiving a yellow card.

“I’ll be honest, Bastoni had been out for nearly three weeks and not even training in that time. He was booked, I preferred to not take any more risks, but the others are to be relied upon. Only Scamacca is carrying a knock, but he should be there too in the second game.

“In other situations, Bastoni would 99 per cent not have been risked from the start today. Now we’ve got to try to recover as quickly as possible and do as little damage as possible.”

مشاركة:
\n

مقالات ذات صلة

// Coin System - Track article read (function() { const email = localStorage.getItem('khabr_user_email'); if (!email) return; const articleId = 59741; // Record read (+1 coin) fetch('/api/coins/read', { method: 'POST', headers: {'Content-Type': 'application/json'}, body: JSON.stringify({email: email, article_id: articleId}) }).then(r => r.json()).then(data => { if (data.coins_earned > 0) { // Show coin earned toast const toast = document.createElement('div'); toast.innerHTML = '🪙 +' + data.coins_earned + ' coin! (Balance: ' + data.balance + ')'; toast.style.cssText = 'position:fixed;bottom:20px;right:20px;background:linear-gradient(135deg,#f59e0b,#d97706);color:#fff;padding:12px 20px;border-radius:12px;font-weight:bold;z-index:9999;animation:slideUp .5s ease;box-shadow:0 4px 15px rgba(245,158,11,0.4);'; document.body.appendChild(toast); setTimeout(() => toast.remove(), 3000); } }).catch(() => {}); // Daily login check const lastLogin = localStorage.getItem('khabr_daily_login'); const today = new Date().toDateString(); if (lastLogin !== today) { fetch('/api/coins/daily-login', { method: 'POST', headers: {'Content-Type': 'application/json'}, body: JSON.stringify({email: email}) }).then(r => r.json()).then(data => { if (data.coins_earned > 0) { localStorage.setItem('khabr_daily_login', today); setTimeout(() => { const toast = document.createElement('div'); toast.innerHTML = '🔥 Daily bonus +' + data.coins_earned + ' coins! (Streak: ' + data.streak + ' days)'; toast.style.cssText = 'position:fixed;bottom:70px;right:20px;background:linear-gradient(135deg,#ef4444,#dc2626);color:#fff;padding:12px 20px;border-radius:12px;font-weight:bold;z-index:9999;animation:slideUp .5s ease;box-shadow:0 4px 15px rgba(239,68,68,0.4);'; document.body.appendChild(toast); setTimeout(() => toast.remove(), 4000); }, 1500); } }).catch(() => {}); } })();
// Coin System - Track article read (function() { const email = localStorage.getItem('khabr_user_email'); if (!email) return; const articleId = 59741; // Record read (+1 coin) fetch('/api/coins/read', { method: 'POST', headers: {'Content-Type': 'application/json'}, body: JSON.stringify({email: email, article_id: articleId}) }).then(r => r.json()).then(data => { if (data.coins_earned > 0) { // Show coin earned toast const toast = document.createElement('div'); toast.innerHTML = '🪙 +' + data.coins_earned + ' coin! (Balance: ' + data.balance + ')'; toast.style.cssText = 'position:fixed;bottom:20px;right:20px;background:linear-gradient(135deg,#f59e0b,#d97706);color:#fff;padding:12px 20px;border-radius:12px;font-weight:bold;z-index:9999;animation:slideUp .5s ease;box-shadow:0 4px 15px rgba(245,158,11,0.4);'; document.body.appendChild(toast); setTimeout(() => toast.remove(), 3000); } }).catch(() => {}); // Daily login check const lastLogin = localStorage.getItem('khabr_daily_login'); const today = new Date().toDateString(); if (lastLogin !== today) { fetch('/api/coins/daily-login', { method: 'POST', headers: {'Content-Type': 'application/json'}, body: JSON.stringify({email: email}) }).then(r => r.json()).then(data => { if (data.coins_earned > 0) { localStorage.setItem('khabr_daily_login', today); setTimeout(() => { const toast = document.createElement('div'); toast.innerHTML = '🔥 Daily bonus +' + data.coins_earned + ' coins! (Streak: ' + data.streak + ' days)'; toast.style.cssText = 'position:fixed;bottom:70px;right:20px;background:linear-gradient(135deg,#ef4444,#dc2626);color:#fff;padding:12px 20px;border-radius:12px;font-weight:bold;z-index:9999;animation:slideUp .5s ease;box-shadow:0 4px 15px rgba(239,68,68,0.4);'; document.body.appendChild(toast); setTimeout(() => toast.remove(), 4000); }, 1500); } }).catch(() => {}); } })();
AI
يا هلا! اسألني أي شي 🎤