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

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

.page-original__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  background-color: #0d0d0d; /* Dark background for hero content */
  color: #ffffff;
  overflow: hidden;
}

.page-original__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  z-index: 1;
}

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

.page-original__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-original__hero-title {
  font-size: 3.5rem;
  color: #FFC107;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-original__hero-description {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: #f0f0f0;
  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;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-original__btn--primary {
  background-color: #FFC107;
  color: #000000;
  border: 2px solid #FFC107;
}

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

.page-original__btn--secondary {
  background-color: transparent;
  color: #FFC107;
  border: 2px solid #FFC107;
}

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

.page-original__section-title {
  font-size: 2.8rem;
  color: #007BFF;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 60px;
}

.page-original__section-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-original__why-choose-section,
.page-original__slots-section,
.page-original__table-card-section,
.page-original__sports-betting-section,
.page-original__how-to-start-section,
.page-original__faq-section {
  padding: 80px 0;
}

.page-original__why-choose-section {
  background-color: #ffffff;
}

.page-original__slots-section,
.page-original__how-to-start-section {
  background-color: #f9f9f9;
}

.page-original__table-card-section {
  background-color: #ffffff;
}

.page-original__sports-betting-section {
  background-color: #f9f9f9;
}

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

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

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

.page-original__feature-icon {
  width: 100%; /* Ensure icon is not too small */
  max-width: 250px;
  height: auto;
  margin-bottom: 25px;
  border-radius: 8px;
  object-fit: cover;
}

.page-original__feature-title {
  font-size: 1.7rem;
  color: #007BFF;
  margin-bottom: 15px;
}

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

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

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

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

.page-original__game-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
}

.page-original__game-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-original__game-title {
  font-size: 1.8rem;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-original__game-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-original__btn--small {
  padding: 10px 20px;
  font-size: 0.95rem;
  border-radius: 6px;
}

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

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

.page-original__step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.page-original__step-icon {
  width: 100%; /* Ensure icon is not too small */
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-original__step-title {
  font-size: 1.6rem;
  color: #007BFF;
  margin-bottom: 10px;
}

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

.page-original__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-original__faq-section {
  background-color: #f0f8ff; /* Lighter blue tint for FAQ */
}