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

.page-original__hero-section {
  background-color: #0A192F; /* Primary dark background */
  color: #ffffff; /* Light text for dark background */
  padding: var(--header-offset, 120px) 20px 60px; /* Top padding for fixed header, responsive */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-original__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
  z-index: 1;
}

.page-original__hero-title {
  font-size: 3.5em;
  font-weight: 700;
  color: #FFD700; /* Accent gold for title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

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

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

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

.page-original__btn--primary {
  background-color: #FFD700; /* Gold accent */
  color: #0A192F; /* Dark text for gold button */
  border: 2px solid #FFD700;
}

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

.page-original__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for secondary button */
  border: 2px solid #FFD700;
}

.page-original__btn--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.page-original__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-original__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

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

.page-original__section-title {
  font-size: 2.8em;
  font-weight: 700;
  color: #0A192F; /* Dark text for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

.page-original__section-intro {
  font-size: 1.2em;
  text-align: center;
  max-width: 800px;
  margin: -20px auto 60px;
  line-height: 1.6;
  color: #555555;
}

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

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

.page-original__feature-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-original__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-original__feature-icon {
  width: 200px; /* Minimum 200px */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-original__feature-title {
  font-size: 1.8em;
  font-weight: 600;
  color: #0A192F;
  margin-bottom: 15px;
}

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

.page-original__featured-games-section {
  padding: 80px 0;
  background-color: #f0f0f0;
}

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

.page-original__game-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-original__game-image {
  width: 100%;
  height: 200px; /* Minimum 200px height for card images */
  object-fit: cover;
}

.page-original__game-title {
  font-size: 1.6em;
  font-weight: 600;
  color: #0A192F;
  margin: 20px 20px 10px;
}

.page-original__game-description {
  font-size: 0.95em;
  line-height: 1.5;
  color: #777777;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-original__btn--play {
  background-color: #0A192F;
  color: #FFD700;
  border: none;
  padding: 12px 25px;
  font-size: 1em;
  border-radius: 0 0 12px 12px; /* Rounded bottom only */
  width: 100%;
  text-align: center;
  display: block; /* Ensure it takes full width */
}

.page-original__btn--play:hover {
  background-color: #1a3253;
  color: #e6c200;
}

.page-original__how-to-play-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-original__step-card {
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-original__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
}

.page-original__step-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #0A192F;
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-original__step-title {
  font-size: 1.8em;
  font-weight: 600;
  color: #0A192F;
  margin-bottom: 15px;
}

.page-original__step-description {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 20px;
}

.page-original__btn--register, .page-original__btn--deposit, .page-original__btn--play-all {
  background-color: #0A192F;
  color: #FFD700;
  border: none;
  padding: 12px 25px;
  font-size: 1em;
  border-radius: 8px;
  margin-top: auto; /* Push button to bottom */
}

.page-original__btn--register:hover, .page-original__btn--deposit:hover, .page-original__btn--play-all:hover {
  background-color: #1a3253;
  color: #e6c200;
}

.page-original__faq-section {
  padding: 80px 0;
  background-color: #f0f0f0;
}

.page-original__faq-item {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

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

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

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

.page-original__faq-answer {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
  display: none;
  padding-top: 10px;
}

.page-original__faq-answer a {
  color: #0A192F;
  text-decoration: underline;
}

.page-original__faq-answer a:hover {
  color: #FFD700;
}

.page-original__call-to-action-section {
  background-color: #0A192F;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-original__call-to-action-content {
  max-width: 900px;
}

.page-original__call-to-action-title {
  font-size: 3em;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-original__call-to-action-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  line-height: 1.6;
  opacity: 0.9;
}

.page-original__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-original__hero-title {
    font-size: 2.8em;
  }
  .page-original__hero-description {
    font-size: 1.1em;
  }
  .page-original__section-title {
    font-size: 2.2em;
  }
  .page-original__call-to-action-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-original__hero-section {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
    padding-bottom: 40px;
  }
  .page-original__hero-title {
    font-size: 2.2em;
  }
  .page-original__hero-description {
    font-size: 1em;
  }
  .page-original__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-original__btn {
    width: 100%;
    max-width: 300px;
  }
  .page-original__section-title {
    font-size: 1.8em;
  }
  .page-original__section-intro {
    font-size: 1em;
  }
  .page-original__features-grid, .page-original__games-grid, .page-original__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-original__call-to-action-title {
    font-size: 2em;
  }
  .page-original__call-to-action-description {
    font-size: 1.1em;
  }
  /* Ensure all content area images are responsive and don't overflow */
  .page-original img {
    max-width: 100%;
    height: auto; 
  }
  /* Content area images must not be smaller than 200px */
  .page-original__feature-icon, .page-original__game-image {
    min-width: 200px;
    min-height: 150px; /* Adjusted to maintain aspect ratio while meeting min width */
  }
  .page-original__game-image {
    height: auto; /* Allow height to adjust based on width */
  }
}

@media (max-width: 480px) {
  .page-original__hero-title {
    font-size: 1.8em;
  }
  .page-original__hero-description {
    font-size: 0.9em;
  }
  .page-original__section-title {
    font-size: 1.6em;
  }
  .page-original__call-to-action-title {
    font-size: 1.6em;
  }
  .page-original__btn--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  .page-original__step-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.8em;
  }
}