/* style/phdream-originals.css */
.page-phdream-originals {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF; /* Explicitly set for clarity, though shared.css might handle body */
}

.page-phdream-originals__hero-section {
  position: relative;
  text-align: center;
  color: #FFFFFF;
  padding-bottom: 60px;
  padding-top: 10px; /* Small top padding, body padding-top handles header offset */
}

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

.page-phdream-originals__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-phdream-originals__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-phdream-originals__main-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem); /* Adjusted H1 font size with clamp */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FCBC45;
}

.page-phdream-originals__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 700px;
}

.page-phdream-originals__cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-phdream-originals__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-phdream-originals__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-phdream-originals__button--register:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-phdream-originals__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-phdream-originals__button--login:hover {
  background-color: #e0a538;
  transform: translateY(-2px);
}

.page-phdream-originals__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-phdream-originals__section:last-of-type {
  border-bottom: none;
}

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

.page-phdream-originals__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 30px;
  text-align: center;
}

.page-phdream-originals__paragraph {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444444;
}

.page-phdream-originals__keyword {
  font-weight: bold;
  color: #000000;
}

.page-phdream-originals__image-container {
  margin: 40px 0;
  text-align: center;
}

.page-phdream-originals__image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-phdream-originals__game-category {
  margin-bottom: 50px;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-phdream-originals__category-title {
  font-size: 1.8rem;
  color: #000000;
  margin-bottom: 20px;
}

.page-phdream-originals__button--play,
.page-phdream-originals__button--explore,
.page-phdream-originals__button--claim,
.page-phdream-originals__button--download,
.page-phdream-originals__button--play-mobile,
.page-phdream-originals__button--learn-more,
.page-phdream-originals__button--faq,
.page-phdream-originals__button--join {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  margin-top: 20px;
}

.page-phdream-originals__button--play:hover,
.page-phdream-originals__button--explore:hover,
.page-phdream-originals__button--claim:hover,
.page-phdream-originals__button--download:hover,
.page-phdream-originals__button--play-mobile:hover,
.page-phdream-originals__button--learn-more:hover,
.page-phdream-originals__button--faq:hover,
.page-phdream-originals__button--join:hover {
  background-color: #e0a538;
  transform: translateY(-2px);
}

.page-phdream-originals__benefits-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-phdream-originals__benefit-item {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-phdream-originals__benefit-title {
  font-size: 1.4rem;
  color: #000000;
  margin-bottom: 15px;
}

.page-phdream-originals__cta-bottom {
  text-align: center;
  margin-top: 40px;
}

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

.page-phdream-originals__step-item {
  text-align: center;
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-phdream-originals__step-title {
  font-size: 1.6rem;
  color: #000000;
  margin-bottom: 15px;
}

.page-phdream-originals__button--step {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  margin-top: auto; /* Pushes button to bottom */
}

.page-phdream-originals__app-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.page-phdream-originals__faq-item {
  background-color: #f9f9f9;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
}

.page-phdream-originals__faq-question {
  font-size: 1.2rem;
  color: #000000;
  margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-phdream-originals__main-title {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }

  .page-phdream-originals__section-title {
    font-size: 1.8rem;
  }

  .page-phdream-originals__category-title,
  .page-phdream-originals__benefit-title,
  .page-phdream-originals__step-title {
    font-size: 1.3rem;
  }

  .page-phdream-originals__hero-content {
    padding: 60px 15px;
  }

  .page-phdream-originals__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-phdream-originals__button {
    width: 100%;
    max-width: 280px;
  }

  .page-phdream-originals__image-container img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  
  /* Mobile content area image constraint */
  .page-phdream-originals__content-area img {
    max-width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .page-phdream-originals__section {
    padding: 40px 0;
  }

  .page-phdream-originals__main-title {
    font-size: clamp(1.5rem, 10vw, 2rem);
  }

  .page-phdream-originals__hero-description {
    font-size: 1rem;
  }

  .page-phdream-originals__section-title {
    font-size: 1.5rem;
  }

  .page-phdream-originals__faq-question {
    font-size: 1.1rem;
  }
}