.page-original {
  color: #333333; /* Dark text for default white body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

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

.page-original__hero-section {
  background: linear-gradient(135deg, #1E90FF, #0056b3); /* Deep blue gradient background */
  color: #ffffff;
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

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

.page-original__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-original__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.5;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-original__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-original__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #1E90FF; /* Deep blue text */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-original__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-original__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-original__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-original__hero-image {
  margin-top: 50px;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: block; /* Ensure it behaves as a block element */
  margin-left: auto;
  margin-right: auto;
}

.page-original__section {
  padding: 60px 0;
}

.page-original__section:nth-of-type(even) {
  background-color: #f8f8f8;
}

.page-original__section-title {
  font-size: 2.5em;
  color: #1E90FF; /* Deep blue title */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-original__section-intro {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

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

.page-original__feature-card,
.page-original__game-card,
.page-original__step-card,
.page-original__bonus-card,
.page-original__testimonial-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-original__feature-card:hover,
.page-original__game-card:hover,
.page-original__step-card:hover,
.page-original__bonus-card:hover,
.page-original__testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-original__feature-icon,
.page-original__step-icon,
.page-original__bonus-image,
.page-original__game-image {
  width: 100%; /* Ensures images scale within their card */
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-original__feature-title,
.page-original__game-title,
.page-original__step-title,
.page-original__bonus-title {
  font-size: 1.5em;
  color: #1E90FF; /* Deep blue for titles */
  margin-bottom: 15px;
}

.page-original__feature-description,
.page-original__game-description,
.page-original__step-description,
.page-original__bonus-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-original__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 20px;
  background-color: #FFD700;
  color: #1E90FF;
}

.page-original__button--small:hover {
  background-color: #e6c200;
}

.page-original__button--text {
  background-color: transparent;
  color: #1E90FF;
  border: none;
  padding: 0;
  font-size: 1em;
  text-decoration: underline;
}

.page-original__button--text:hover {
  color: #0056b3;
}

.page-original__testimonial-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid #FFD700;
}

.page-original__testimonial-quote {
  font-style: italic;
  color: #555555;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-original__testimonial-author {
  font-weight: bold;
  color: #1E90FF;
}

.page-original__faq-accordion {
  max-width: 800px;
  margin: 40px auto;
}

.page-original__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-original__faq-question {
  font-size: 1.2em;
  color: #1E90FF;
  padding: 20px;
  cursor: pointer;
  position: relative;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-original__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-original__faq-item.active .page-original__faq-question::after {
  transform: rotate(45deg);
}

.page-original__faq-answer {
  padding: 0 20px 20px;
  color: #666666;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-original__faq-item.active .page-original__faq-answer {
  max-height: 200px; /* Adjust as needed for content length */
}

.page-original__section--cta {
  background-color: #1E90FF;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}

.page-original__section--cta .page-original__section-title {
  color: #FFD700; /* Gold title */
  margin-bottom: 20px;
}

.page-original__section--cta .page-original__section-intro {
  color: #f0f0f0;
  margin-bottom: 40px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .page-original__hero-title {
    font-size: 2.5em;
  }

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

  .page-original__hero-actions {
    flex-direction: column;
  }

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

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

  .page-original__features-grid,
  .page-original__game-categories-grid,
  .page-original__steps-grid,
  .page-original__bonuses-grid,
  .page-original__testimonials-grid {
    grid-template-columns: 1fr;
  }

  .page-original__hero-image,
  .page-original__feature-icon,
  .page-original__step-icon,
  .page-original__bonus-image,
  .page-original__game-image {
    max-width: 100%;
    height: auto;
  }

  /* Critical: prevent content overflow on mobile */
  .page-original img {
    max-width: 100%;
    height: auto;
  }

  .page-original {
    overflow-x: hidden;
  }
}

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

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

  .page-original__hero-section {
    padding: 60px 15px 40px;
  }

  .page-original__section {
    padding: 40px 0;
  }

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

  .page-original__section-intro {
    font-size: 0.95em;
  }
}