.page-original-games {
  color: #333333; /* Deep gray for readability on light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-original-games__hero-section {
  padding: 60px 20px;
  padding-top: 10px;
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-original-games__hero-image {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 20px;
}

.page-original-games__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.page-original-games__main-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: #8B0000; /* Deep red for main title */
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.page-original-games__hero-description {
  font-size: 1.1rem;
  color: #555555;
  margin-bottom: 30px;
}

.page-original-games__hero-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-original-games__cta-button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1rem;
}

.page-original-games__cta-button--primary {
  background-color: #FFD700; /* Gold primary button */
  color: #8B0000; /* Deep red text for contrast */
  border: 2px solid #FFD700;
}

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

.page-original-games__cta-button--secondary {
  background-color: #8B0000; /* Deep red secondary button */
  color: #FFD700; /* Gold text for contrast */
  border: 2px solid #8B0000;
}

.page-original-games__cta-button--secondary:hover {
  background-color: #6b0000;
  transform: translateY(-2px);
}

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

.page-original-games__intro-section, .page-original-games__why-choose-us, .page-original-games__cta-section, .page-original-games__faq-section {
  background-color: #ffffff;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.page-original-games__section-title {
  font-size: 2.2rem;
  color: #8B0000;
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-original-games__section-description {
  font-size: 1.05rem;
  color: #666666;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-original-games__games-grid {
  background-color: #f9f9f9;
  padding: 50px 0;
}

.page-original-games__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.page-original-games__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

.page-original-games__game-card:hover {
  transform: translateY(-5px);
}

.page-original-games__game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-original-games__card-title {
  font-size: 1.4rem;
  color: #8B0000;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-original-games__card-description {
  font-size: 0.95rem;
  color: #777777;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-original-games__card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-original-games__card-button:hover {
  background-color: #e6c200;
}

.page-original-games__features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-original-games__feature-item {
  background-color: #fdfdfd;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.page-original-games__feature-item img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-original-games__feature-title {
  font-size: 1.3rem;
  color: #8B0000;
  margin-bottom: 10px;
}

.page-original-games__feature-description {
  font-size: 0.95rem;
  color: #666666;
}

.page-original-games__cta-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #8B0000; /* Deep red background for CTA */
  color: #ffffff;
}

.page-original-games__cta-section .page-original-games__section-title {
  color: #FFD700; /* Gold title on red background */
}

.page-original-games__cta-section .page-original-games__section-description {
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-original-games__faq-section {
  background-color: #f4f4f4;
  padding-bottom: 50px;
}

.page-original-games__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.page-original-games__faq-question {
  font-size: 1.15rem;
  color: #8B0000;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: bold;
}

.page-original-games__faq-answer {
  font-size: 1rem;
  color: #555555;
  display: none;
}

.page-original-games__faq-answer.page-original-games__faq-answer--active {
  display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-original-games__main-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .page-original-games__section-title {
    font-size: 1.8rem;
  }

  .page-original-games__hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .page-original-games__cta-button {
    width: 80%;
    max-width: 300px;
  }

  .page-original-games__grid-container {
    grid-template-columns: 1fr;
  }

  .page-original-games__feature-item img {
    width: 200px;
    height: 200px;
  }

  /* Ensure images in content areas don't overflow */
  .page-original-games img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-original-games__hero-section, .page-original-games__content-area {
    padding: 20px 15px;
    padding-top: 10px;
  }

  .page-original-games__main-title {
    font-size: clamp(1.3rem, 7vw, 1.8rem);
  }

  .page-original-games__hero-description {
    font-size: 0.95rem;
  }

  .page-original-games__section-title {
    font-size: 1.6rem;
  }

  .page-original-games__section-description {
    font-size: 0.9rem;
  }

  .page-original-games__cta-button {
    font-size: 0.9rem;
    padding: 12px 20px;
  }

  .page-original-games__game-card img {
    
  }

  .page-original-games__card-title {
    font-size: 1.2rem;
  }

  .page-original-games__feature-item img {
    
    
  }
}