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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #211B2D;
  color: #fff;
  min-height: 100vh;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}

.banner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  min-height: 200px;
  background-image: url('https://assets-inter.energaming.services/fuego-landing/banner.png');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 20px;
}

.banner img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  height: auto;
}

.banner:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, rgba(33, 27, 45, 1) 0%, rgba(48, 42, 59, 1) 71%);
  opacity: 0.8;
  z-index: 1;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 40px 20px;
  gap: 40px;
}

.content h2 {
  font-size: 21px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  margin: 0;
}

.flags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
}

.flags a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #2F293A;
  padding: 15px 15px;
  width: 100%;
  max-width: 300px;
  min-height: 160px;
  border-radius: 5px;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.flags a:hover {
  background-color: #3A3448;
  transform: translateY(-5px);
}

.flags a img {
  width: 100%;
  max-height: 150px;
  height: auto;
  transition: transform 0.3s ease;
  border-radius: 5px;
}

.flags a:hover {
  transform: scale(1.1);
}

.flags a span {
  display: inline-block;
  font-size: 22px;
  color: #fff;
  margin-top: 16px;
  text-transform: uppercase;
  font-weight: bold;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .banner {
    height: 200px;
    min-height: 150px;
    padding: 15px;
  }

  .banner img {
    max-width: 80%;
  }

  .content {
    gap: 30px;
    padding: 30px 15px;
  }

  .content h2 {
    font-size: 26px;
  }

  .flags {
    gap: 15px;
  }

  .flags a {
    padding: 10px 15px;
    max-width: 45%;
    min-height: 140px;
  }

  .flags a img {
    width: 100%;
    max-height: 100px;
  }

  .flags a span {
    font-size: 18px;
    margin-top: 12px;
  }
}

@media (max-width: 480px) {
  .banner {
    height: 150px;
    min-height: 120px;
    padding: 10px;
  }

  .banner img {
    max-width: 45%;
  }

  .content {
    gap: 25px;
    padding: 20px 10px;
  }

  .content h2 {
    font-size: 22px;
  }

  .flags {
    gap: 15px;
  }

  .flags a {
    padding: 5px 10px;
    flex: 1 1 100%;
    min-height: 110px;
  }

  .flags a img {
    width: 100%;
    max-height: 70px;
  }

  .flags a span {
    font-size: 16px;
    margin-top: 8px;
  }
}