.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #f6f6f6;
  color: #111;
}

.logo-text {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

/* NAV */
nav {
  border-bottom: 1px solid #ddd;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav h1 {
  font-size: 1.2rem;
  font-weight: 500;
}

.links a {
  margin-left: 1rem;
  text-decoration: none;
  color: #111;
  font-size: 1.5rem;
}

.hero{
  margin: 0;
  width: 100%;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 600px;
  display: block;
  object-fit: cover;
}

.about {
  padding: 0.75rem 2rem;
  text-align: center;
}

.about p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.5;
}

/* SECTIONS */
.section {
  padding: 2rem;
}

.catalog-section {
  padding: 1rem 0 0 0;
  text-align: center;
}

.catalog-grid {
  padding: 1rem 2rem;
}

.game-card a {
  text-decoration: none;
  color: #b41a06;
  font-weight: 700;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* CARDS */
.card {
  border: 1px solid #ddd;
  padding: 1rem;
  background: white;
}

/* DETAILS */
.details-box {
  border: 1px solid #ddd;
  padding: 1rem;
  background: white;
}

.image-placeholder {
  height: 200px;
  background: #eaeaea;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 400px;
}

input, textarea {
  padding: 0.5rem;
  border: 1px solid #ccc;
}

/* BUTTON */
.btn {
  padding: 0.5rem;
  border: 1px solid #111;
  background: none;
  cursor: pointer;
}

/* SMALL TEXT */
.small {
  font-size: 0.8rem;
  color: #555;
}

.carousel-section {
  padding: 2rem;
  margin-bottom: 2rem;
}

.carousel-section h2 {
  margin-bottom: 2rem;
  text-align: center;
}

.carousel {
  overflow: hidden;
  width: min(90vw, 1125px);
  margin: 0 auto;
}

.wrap {
  display: flex;
  align-items: flex-start;
  width: max-content;
  -webkit-animation: slide 18s linear infinite;
  animation: slide 18s linear infinite;
  will-change: transform;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.carousel-item {
  width: 200px;
  margin-right: 25px;
  flex: 0 0 auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.wrap img {
  width: 200px;
  height: 200px;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.carousel-label {
  margin: 0.5rem 0 0;
  text-align: center;
  font-size: 0.95rem;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

@-webkit-keyframes slide {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-2250px, 0, 0);
  }
}

@keyframes slide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-2250px, 0, 0);
  }
}

footer {
  padding: 1rem;
  background: #111;
  color: white;
  margin-top: 2rem;
  text-align: center;
}

.game-card {
  border: 1px solid #ddd;
  padding: 1rem;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 400px;
}