.page-original {
  color: #333333; /* Default text color for light body background */
}

.page-original__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(180deg, #FFF8DC 0%, #FFD700 100%); /* Light yellow to gold gradient */
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-original__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}

.page-original__hero-title {
  font-size: 3.5em;
  color: #1E90FF; /* Deep blue for contrast on gold/light background */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-original__hero-description {
  font-size: 1.3em;
  color: #333333;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.page-original__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
  z-index: 1;
}

.page-original__hero-image {
  width: 100%; /* Ensure the image scales */
  height: auto;
  max-width: 1920px; /* Max width for large screens */
  display: block;
  object-fit: cover;
  filter: brightness(0.9); /* Slightly darken to make text pop, NOT changing color */
}

.page-original__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Ensure buttons are not too small */
  text-align: center;
}

.page-original__button--primary {
  background-color: #1E90FF; /* Deep blue */
  color: #ffffff;
}

.page-original__button--primary:hover {
  background-color: #0F6BBF;
  transform: translateY(-2px);
}

.page-original__button--secondary {
  background-color: #FFD700; /* Gold */
  color: #1E90FF; /* Deep blue text for contrast */
}

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

.page-original__button--dark-primary {
  background-color: #1E90FF; /* Deep blue */
  color: #ffffff;
}

.page-original__button--dark-primary:hover {
  background-color: #0F6BBF;
  transform: translateY(-2px);
}

.page-original__button--inline {
  padding: 10px 20px;
  font-size: 1em;
  min-width: unset;
  background-color: #1E90FF;
  color: #ffffff;
}

.page-original__button--inline:hover {
  background-color: #0F6BBF;
  transform: translateY(-1px);
}

.page-original__section {
  padding: 80px 20px;
  text-align: center;
}

.page-original__section--light-bg {
  background-color: #f8f8f8;
  color: #333333;
}

.page-original__section--dark-blue-bg {
  background-color: #1E90FF;
  color: #ffffff;
}

.page-original__section--gold-bg {
  background-color: #FFD700;
  color: #333333;
}

.page-original__section-title {
  font-size: 2.8em;
  margin-bottom: 25px;
  color: #1E90FF; /* Deep blue for titles */
}

.page-original__section-title--light {
  color: #ffffff;
}

.page-original__section-title--dark {
  color: #333333;
}

.page-original__section-description {
  font-size: 1.1em;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #555555;
}

.page-original__section-description--light {
  color: #e0e0e0;
}

.page-original__section-description--dark {
  color: #333333;
}

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

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

.page-original__feature-card {
  background-color: rgba(255, 255, 255, 0.15); /* Slightly transparent white on blue */
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-original__feature-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #1E90FF;
}

.page-original__feature-title--light {
  color: #FFD700; /* Gold title on blue background */
}

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

.page-original__feature-text--light {
  color: #ffffff;
}

.page-original__game-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.page-original__game-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-original__game-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px; /* Enforce min image size */
}

.page-original__game-title {
  font-size: 1.6em;
  color: #1E90FF;
  margin-bottom: 15px;
}

.page-original__game-text {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-original__security-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-original__security-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  min-height: 200px; /* Enforce min image size */
}

.page-original__security-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.page-original__security-list--light li {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #ffffff;
  border-left: 5px solid #FFD700;
}

.page-original__steps-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  text-align: left;
}

.page-original__steps-list li {
  background-color: #ffffff;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-size: 1.1em;
  line-height: 1.6;
  border-left: 6px solid #FFD700;
}

.page-original__step-highlight {
  color: #1E90FF;
}

.page-original__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-original__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.page-original__faq-question {
  font-size: 1.3em;
  color: #1E90FF;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  background-color: #f0f0f0;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
}

.page-original__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-original__faq-item.active .page-original__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-original__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-original__faq-item.active .page-original__faq-answer {
  max-height: 200px; /* Arbitrary max-height, adjust if content is longer */
  padding: 0 25px 20px 25px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-original__hero-title {
    font-size: 3em;
  }
  .page-original__hero-description {
    font-size: 1.2em;
  }
  .page-original__section-title {
    font-size: 2.2em;
  }
  .page-original__game-showcase-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-original__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    padding-bottom: 40px;
  }
  .page-original__hero-title {
    font-size: 2.5em;
  }
  .page-original__hero-description {
    font-size: 1.1em;
  }
  .page-original__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-original__button {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-original__section {
    padding: 60px 15px;
  }
  .page-original__section-title {
    font-size: 1.8em;
  }
  .page-original__section-description {
    font-size: 1em;
  }
  .page-original__feature-grid, .page-original__game-showcase-grid {
    grid-template-columns: 1fr;
  }
  .page-original__security-features {
    flex-direction: column;
  }
  .page-original__security-image {
    max-width: 100%;
  }
  .page-original__security-list li {
    font-size: 1em;
  }
  .page-original__steps-list li {
    font-size: 1em;
  }
  .page-original__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-original__faq-question::after {
    right: 20px;
  }
  /* Mobile content area image rules */
  .page-original img {
    max-width: 100%;
    height: auto;
  }
  .page-original__hero-image {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-original__hero-title {
    font-size: 2em;
  }
  .page-original__section-title {
    font-size: 1.6em;
  }
  .page-original__hero-image-wrapper {
    height: 60%; /* Adjust hero image height for smaller screens */
  }
  .page-original__hero-image {
    width: 150%; /* Make it wider to fill space and crop */
    object-position: center bottom;
  }
}