.page-original-games {
  font-family: Arial, sans-serif;
  color: #FFF6D6;
  background-color: #0A0A0A;
  line-height: 1.6;
  overflow-x: hidden;
}

.page-original-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-original-games__hero-section {
  position: relative;
  text-align: center;
  padding-top: 10px; /* Small top padding, relying on body padding for header offset */
  margin-bottom: 40px;
}

.page-original-games__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
}

.page-original-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
}

.page-original-games__hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(17, 17, 17, 0.8); /* Card BG with some transparency */
  border-radius: 8px;
  transform: translateY(-50px); /* Overlap slightly for visual interest */
  position: relative;
  z-index: 1;
  border: 1px solid #3A2A12;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-original-games__main-title {
  font-size: clamp(2em, 4vw, 3em); /* Responsive font size */
  color: #F2C14E;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-original-games__hero-description {
  font-size: 1.1em;
  color: #FFF6D6;
  margin-bottom: 25px;
}

.page-original-games__cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #0A0A0A;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 200px; /* Ensure buttons are not too small */
}

.page-original-games__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(242, 193, 78, 0.4);
}

.page-original-games__introduction-section,
.page-original-games__game-showcase,
.page-original-games__features-section,
.page-original-games__cta-section {
  padding: 40px 0;
  margin-bottom: 20px;
}

.page-original-games__section-title {
  font-size: 2.5em;
  color: #F2C14E;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-original-games__text-content {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #FFF6D6;
}

.page-original-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.page-original-games__game-card {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #3A2A12;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.page-original-games__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(242, 193, 78, 0.3);
}

.page-original-games__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
  border-bottom: 1px solid #3A2A12;
}

.page-original-games__game-title {
  font-size: 1.8em;
  color: #FFD36B;
  margin: 20px 15px 10px;
  font-weight: bold;
}

.page-original-games__game-title a {
  color: #FFD36B;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-original-games__game-title a:hover {
  color: #F2C14E;
}

.page-original-games__game-description {
  font-size: 1em;
  color: #FFF6D6;
  padding: 0 15px 20px;
}

.page-original-games__game-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #0A0A0A;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 150px; /* Ensure buttons are not too small */
}

.page-original-games__game-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(242, 193, 78, 0.4);
}

.page-original-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px 0;
  text-align: center;
}

.page-original-games__feature-item {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
  transition: background-color 0.3s ease;
}

.page-original-games__feature-item:hover {
  background-color: rgba(242, 193, 78, 0.1);
}

.page-original-games__feature-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
  width: 100%; /* Override explicit width/height for display to meet min size */
  height: auto;
}

.page-original-games__feature-title {
  font-size: 1.5em;
  color: #FFD36B;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-original-games__feature-description {
  font-size: 0.95em;
  color: #FFF6D6;
}

.page-original-games__cta-section {
  text-align: center;
  padding: 50px 0;
  background-color: #111111; /* Card BG */
  border-top: 2px solid #3A2A12;
  border-bottom: 2px solid #3A2A12;
  margin-top: 40px;
}

.page-original-games__cta-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-original-games__cta-button--secondary {
  background: #3A2A12;
  color: #FFF6D6;
  border: 1px solid #F2C14E;
}

.page-original-games__cta-button--secondary:hover {
  background-color: #F2C14E;
  color: #0A0A0A;
  box-shadow: 0 8px 15px rgba(242, 193, 78, 0.4);
}

@media (max-width: 768px) {
  .page-original-games__hero-content {
    transform: translateY(-30px);
    margin: 0 10px;
    padding: 15px;
  }

  .page-original-games__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-original-games__hero-description,
  .page-original-games__text-content {
    font-size: 1em;
  }

  .page-original-games__section-title {
    font-size: 2em;
  }

  .page-original-games__game-grid,
  .page-original-games__features-grid {
    grid-template-columns: 1fr;
  }

  .page-original-games__game-image,
  .page-original-games__feature-icon {
    max-width: 100%;
    height: auto;
  }

  .page-original-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-original-games__cta-button,
  .page-original-games__game-button {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-original-games__game-card,
  .page-original-games__feature-item {
    margin: 0 10px;
  }

  .page-original-games__container {
    padding: 10px;
  }

  .page-original-games img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}