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

.page-original__hero-section {
  position: relative;
  width: 100%; /* Block element, no need for width: 100% to avoid overflow with padding */
  overflow: hidden;
  background-color: #000000; /* Dark background for hero content contrast */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Ensure hero section has a minimum height */
}

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

.page-original__hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
  color: #ffffff; /* Light text for dark hero background */
}

.page-original__hero-content {
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-original__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

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

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

.page-original__button {
  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.3s ease;
  cursor: pointer;
  border: none;
}

.page-original__button--primary {
  background-color: #CC0000; /* Main brand red */
  color: #ffffff;
}

.page-original__button--primary:hover {
  background-color: #a00000;
  transform: translateY(-3px);
}

.page-original__button--secondary {
  background-color: #FFD700; /* Auxiliary brand gold */
  color: #333333;
}

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

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

.page-original__about-section, .page-original__features-section, .page-original__games-showcase, .page-original__cta-section, .page-original__responsible-gaming-section {
  padding: 60px 0;
}

.page-original__about-section {
  background-color: #fcfcfc;
}

.page-original__section-title {
  font-size: 2.8em;
  color: #CC0000; /* Main brand red */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

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

.page-original__section-description a {
  color: #CC0000;
  text-decoration: underline;
}

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

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

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

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

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

.page-original__feature-description {
  font-size: 1em;
  color: #666666;
  text-align: center;
  margin-bottom: 0;
}

.page-original__games-showcase {
  background-color: #f0f0f0;
}

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

.page-original__game-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

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

.page-original__game-title {
  font-size: 1.6em;
  color: #CC0000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-original__game-description {
  font-size: 0.95em;
  color: #666666;
  text-align: center;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-original__cta-section {
  background: linear-gradient(135deg, #CC0000, #a00000);
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-original__cta-content {
  max-width: 900px;
}

.page-original__cta-title {
  font-size: 3em;
  color: #FFD700; /* Gold for CTA title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-original__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

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

.page-original__responsible-gaming-section {
  padding: 60px 0;
  background-color: #ffffff;
}

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

@media (max-width: 768px) {
  .page-original {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
  }
  .page-original__hero-title {
    font-size: 2.5em;
  }
  .page-original__hero-description {
    font-size: 1.1em;
  }
  .page-original__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-original__button {
    width: 80%;
    max-width: 300px;
  }
  .page-original__section-title {
    font-size: 1.8em;
  }
  .page-original__section-description {
    font-size: 1em;
  }
  .page-original__features-grid, .page-original__games-grid {
    grid-template-columns: 1fr;
  }
  .page-original__feature-card, .page-original__game-card {
    padding: 20px;
  }
  .page-original__feature-image, .page-original__game-image {
    height: 200px; /* Ensure min height for mobile */
    max-width: 100%; /* Prevent image overflow */
    height: auto; /* Maintain aspect ratio */
  }
  .page-original__cta-title {
    font-size: 2em;
  }
  .page-original__cta-description {
    font-size: 1em;
  }
  /* Ensure all images within .page-original are responsive and don't overflow */
  .page-original img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-original__hero-title {
    font-size: 2em;
  }
  .page-original__section-title {
    font-size: 1.5em;
  }
  .page-original__cta-title {
    font-size: 1.8em;
  }
  .page-original__hero-container {
    padding: 40px 15px;
  }
  .page-original__content-area {
    padding: 20px 15px;
  }
}