html,
body {
  padding: 0;
  margin: 0;
  font-family: "Play", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Header */
header {
  width: 100%;
  height: 90px;
  background-color: #23234b;
  color: white;
  text-align: center;
  line-height: 90px;
  font-size: 24px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  box-sizing: border-box;
  width: 1300px;
  margin: 0 auto;
}

.header .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header img {
  width: 200px;
  height: auto;
}

.header ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.header ul li {
  margin-right: 40px;
  list-style-type: none;
  color: #fff;
  font-size: 14px;
}

.page-container {
  padding: 20px 30px;
  width: 1400px;
  margin: 0 auto;
}

/* Carousel Container */
.carrossel-title {
  /*font-size: 14px;*/
  font-weight: 700;
  color: #fff;
  background-color: #23234b;
  width: fit-content;
  margin-left: 110px;
  margin-bottom: 0;
  padding: 5px;
}

.carousel-container {
  width: 90%;
  margin: 0 auto;
  background-color: #23234b;
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}

.carousel {
  display: flex;
  width: 1136px;
  overflow: hidden;
}

.carousel-images {
  display: flex;
  transition: transform 0.3s ease;
}

.carousel img {
  width: 180px;
  height: 180px;
  margin: 0 5px;
  border-radius: 10px;
}

.card-game p {
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  margin-top: 5px;
}

.button {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #23234b;
  cursor: pointer;
}

/* Card Container */
.cards-container {
  width: 85%;
  margin: 20px auto;
  padding: 20px 30px;
  background-color: #23234b;
  color: #fff;
  border-radius: 20px;
}

.cards-container h3 {
  margin: 0 0 10px 0;
}

.card-images {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  width: 180px;
  height: 180px;
  margin: 0 5px;
  color: #23234b;
  border-radius: 10px;
}

.card img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.card-banners {
  width: 85%;
  margin: 20px auto;
  padding: 20px 30px;
  background-color: #23234b;
  color: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-banners img {
  width: 100%;
  height: auto;
}

.footer {
  height: 80px;
  background-color: #23234b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer img {
  width: 150px;
  height: auto;
}
