.page-original {
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF; /* White background as per shared.css */
}

.page-original__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 40px;
  background-color: #000000; /* Primary color for hero background */
  color: #FFFFFF; /* Light text for dark background */
}

.page-original__hero-content {
  max-width: 900px;
  padding: 20px;
}

.page-original__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login button color for highlight */
}

.page-original__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

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

.page-original__btn--primary {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for light button */
  border: 2px solid #FCBC45;
}

.page-original__btn--primary:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-original__btn--secondary {
  background-color: #FFFFFF; /* Register button color */
  color: #000000; /* Dark text for light button */
  border: 2px solid #FFFFFF;
}

.page-original__btn--secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-original__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
}

.page-original__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.page-original__section-title {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 40px;
  color: #000000; /* Dark text for light background */
}

.page-original__section-title--light {
  color: #FFFFFF; /* Light text for dark background */
}

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

.page-original__text-content--light {
  color: #f0f0f0;
}

.page-original__introduction-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-original__features-section {
  padding: 80px 0;
  background-color: #000000; /* Primary color */
}

.page-original__bg--dark {
  background-color: #000000;
}

.page-original__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-original__feature-card {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for cards on dark background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  color: #FFFFFF; /* Light text for dark card background */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-original__feature-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.1);
}

.page-original__feature-icon {
  width: 200px; /* Min size */
  height: 150px; /* Min size */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-original__feature-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #FCBC45; /* Highlight color */
}

.page-original__feature-description {
  font-size: 1em;
  line-height: 1.6;
  color: #e0e0e0;
}

.page-original__game-showcase-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

.page-original__game-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-original__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-original__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-original__game-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #000000;
}

.page-original__game-short-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
}

.page-original__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-original__innovation-process-section {
  padding: 80px 0;
  background-color: #000000;
}

.page-original__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-original__faq-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-original__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  transition: box-shadow 0.3s ease;
}

.page-original__faq-item:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.page-original__faq-question {
  font-size: 1.2em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-original__faq-answer {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
  display: none; /* Initially hidden */
}

.page-original__faq-question.active + .page-original__faq-answer {
  display: block;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .page-original__container {
    padding: 20px 30px;
  }
}

@media (max-width: 992px) {
  .page-original__hero-title {
    font-size: 3em;
  }
  .page-original__section-title {
    font-size: 2.2em;
  }
  .page-original__feature-card, .page-original__game-card {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .page-original__hero-section {
    padding-top: var(--header-offset, 120px); /* Maintain offset for mobile */
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-original__hero-title {
    font-size: 2.5em;
  }
  .page-original__hero-description {
    font-size: 1em;
  }
  .page-original__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-original__btn {
    width: 100%;
    max-width: 280px;
  }
  .page-original__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-original__text-content {
    font-size: 0.95em;
  }
  .page-original__feature-grid, .page-original__game-grid {
    grid-template-columns: 1fr;
  }
  .page-original__feature-icon {
    width: 200px; /* Ensure min size for mobile */
    height: 150px; /* Ensure min size for mobile */
  }
  .page-original__game-image {
    height: 200px; /* Adjust height for mobile */
  }
  /* Prevent image overflow on mobile */
  .page-original img {
    max-width: 100%;
    height: auto;
  }
  .page-original {
    overflow-x: hidden;
  }
  .page-original__feature-title {
    font-size: 1.5em;
  }
  .page-original__faq-question {
    font-size: 1.1em;
  }
  .page-original__faq-answer {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-original__hero-title {
    font-size: 2em;
  }
  .page-original__section-title {
    font-size: 1.6em;
  }
  .page-original__hero-actions {
    gap: 10px;
  }
  .page-original__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}