.page-original {
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF; /* Ensures consistency with body background */
}

.page-original__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Minimum height for hero section */
}

.page-original__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-original__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black overlay for text readability */
  border-radius: 10px;
}

.page-original__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF; /* White text for hero title */
  line-height: 1.2;
}

.page-original__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0; /* Slightly off-white for description */
}

.page-original__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-original__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
  font-size: 1.1em;
}

.page-original__btn--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-original__btn--register:hover {
  background-color: #e0e0e0;
}

.page-original__btn--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-original__btn--login:hover {
  background-color: #e6a73c;
}

.page-original__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-original__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-original__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-original__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333333;
  text-align: justify;
}

.page-original__features-grid,
.page-original__game-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-original__feature-card,
.page-original__game-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-original__feature-card:hover,
.page-original__game-card:hover {
  transform: translateY(-10px);
}

.page-original__feature-image,
.page-original__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistent card appearance */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-original__card-title,
.page-original__game-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-original__card-description,
.page-original__game-description {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-original__btn--play-now {
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  font-size: 1em;
  margin-top: auto;
}

.page-original__btn--play-now:hover {
  background-color: #e6a73c;
}

.page-original__btn--learn-more {
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 25px;
  margin-top: 20px;
  display: inline-block;
}

.page-original__btn--learn-more:hover {
  background-color: #333333;
}

.page-original__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.page-original__btn--register-large {
  background-color: #FFFFFF;
  color: #000000;
  padding: 18px 40px;
  font-size: 1.3em;
  border: 2px solid #000000;
}

.page-original__btn--register-large:hover {
  background-color: #e0e0e0;
}

.page-original__btn--download {
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-original__btn--download:hover {
  background-color: #e6a73c;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-original__hero-section {
    min-height: 450px;
    padding: 40px 15px;
  }

  .page-original__hero-title {
    font-size: 2.2em;
  }

  .page-original__hero-description {
    font-size: 1em;
  }

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

  .page-original__btn {
    width: 100%;
    max-width: 300px;
  }

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

  .page-original__text-content {
    font-size: 1em;
  }

  .page-original__features-grid,
  .page-original__game-cards-grid {
    grid-template-columns: 1fr;
  }

  .page-original__feature-image,
  .page-original__game-image {
    height: auto; /* Allow height to adjust for mobile */
    max-width: 100%; /* Ensure images don't overflow */
    min-width: 200px;
    min-height: 200px;
  }

  /* Ensure all images within .page-original are responsive and do not cause overflow */
  .page-original img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-original__hero-title {
    font-size: 1.8em;
  }

  .page-original__btn--register-large,
  .page-original__btn--download {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}