.page-resources-okplay-ph-latest-promotions-analysis {
  color: #333333; /* Dark text on light background */
  background-color: #FFFFFF; /* White background */
  padding-top: var(--header-offset, 120px); /* Space for fixed header */
}

.page-resources-okplay-ph-latest-promotions-analysis__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF; /* White text on dark background */
  gap: 30px;
}

.page-resources-okplay-ph-latest-promotions-analysis__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-okplay-ph-latest-promotions-analysis__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-resources-okplay-ph-latest-promotions-analysis__hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-resources-okplay-ph-latest-promotions-analysis__hero-image {
  width: 100%;
  max-width: 1200px;
}

.page-resources-okplay-ph-latest-promotions-analysis__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-resources-okplay-ph-latest-promotions-analysis__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Black text */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-resources-okplay-ph-latest-promotions-analysis__cta-button:hover {
  background-color: #E8A835;
  transform: translateY(-2px);
}

.page-resources-okplay-ph-latest-promotions-analysis__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-resources-okplay-ph-latest-promotions-analysis__overview-section,
.page-resources-okplay-ph-latest-promotions-analysis__promo-list-section,
.page-resources-okplay-ph-latest-promotions-analysis__rules-section,
.page-resources-okplay-ph-latest-promotions-analysis__faq-section,
.page-resources-okplay-ph-latest-promotions-analysis__related-resources-section {
  padding: 60px 0;
}

.page-resources-okplay-ph-latest-promotions-analysis__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
}

.page-resources-okplay-ph-latest-promotions-analysis__sub-section-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-resources-okplay-ph-latest-promotions-analysis__text-content {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-okplay-ph-latest-promotions-analysis__promo-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-okplay-ph-latest-promotions-analysis__promo-card {
  background-color: #F8F8F8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-resources-okplay-ph-latest-promotions-analysis__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.page-resources-okplay-ph-latest-promotions-analysis__promo-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-resources-okplay-ph-latest-promotions-analysis__promo-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-resources-okplay-ph-latest-promotions-analysis__promo-card-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-resources-okplay-ph-latest-promotions-analysis__promo-card-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources-okplay-ph-latest-promotions-analysis__promo-card-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FCBC45;
  color: #000000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.95em;
  align-self: flex-start;
  transition: background-color 0.3s ease;
}

.page-resources-okplay-ph-latest-promotions-analysis__promo-card-button:hover {
  background-color: #E8A835;
}

.page-resources-okplay-ph-latest-promotions-analysis__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-resources-okplay-ph-latest-promotions-analysis__list-item {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 10px;
}

.page-resources-okplay-ph-latest-promotions-analysis__faq-item {
  background-color: #F8F8F8;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-okplay-ph-latest-promotions-analysis__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
}

.page-resources-okplay-ph-latest-promotions-analysis__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-resources-okplay-ph-latest-promotions-analysis__resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-resources-okplay-ph-latest-promotions-analysis__resource-card {
  background-color: #F8F8F8;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-resources-okplay-ph-latest-promotions-analysis__resource-card:hover {
  transform: translateY(-3px);
}

.page-resources-okplay-ph-latest-promotions-analysis__resource-card-title {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
}

.page-resources-okplay-ph-latest-promotions-analysis__resource-card-title a {
  color: #000000;
  text-decoration: none;
}

.page-resources-okplay-ph-latest-promotions-analysis__resource-card-title a:hover {
  text-decoration: underline;
}

.page-resources-okplay-ph-latest-promotions-analysis__resource-card-description {
  font-size: 0.95em;
  color: #555555;
  line-height: 1.5;
  margin-bottom: 15px;
}

.page-resources-okplay-ph-latest-promotions-analysis__resource-card-link {
  display: inline-block;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
}

.page-resources-okplay-ph-latest-promotions-analysis__resource-card-link:hover {
  text-decoration: underline;
}

.page-resources-okplay-ph-latest-promotions-analysis__back-link-container {
  text-align: center;
  margin-top: 60px;
}

.page-resources-okplay-ph-latest-promotions-analysis__back-link {
  font-size: 1.1em;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-okplay-ph-latest-promotions-analysis__back-link:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-okplay-ph-latest-promotions-analysis__hero-title {
    font-size: 3em;
  }
}

@media (max-width: 768px) {
  .page-resources-okplay-ph-latest-promotions-analysis {
    padding-top: var(--header-offset, 80px);
  }

  .page-resources-okplay-ph-latest-promotions-analysis__hero-section {
    padding: 40px 15px;
  }

  .page-resources-okplay-ph-latest-promotions-analysis__hero-title {
    font-size: 2.2em;
  }

  .page-resources-okplay-ph-latest-promotions-analysis__hero-description {
    font-size: 1em;
  }

  .page-resources-okplay-ph-latest-promotions-analysis__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-okplay-ph-latest-promotions-analysis__container {
    padding: 30px 15px;
  }

  .page-resources-okplay-ph-latest-promotions-analysis__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-resources-okplay-ph-latest-promotions-analysis__sub-section-title {
    font-size: 1.5em;
  }

  .page-resources-okplay-ph-latest-promotions-analysis__text-content,
  .page-resources-okplay-ph-latest-promotions-analysis__list-item,
  .page-resources-okplay-ph-latest-promotions-analysis__faq-answer {
    font-size: 0.95em;
  }

  .page-resources-okplay-ph-latest-promotions-analysis__promo-card-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-okplay-ph-latest-promotions-analysis__promo-card-image {
    height: 200px;
  }

  .page-resources-okplay-ph-latest-promotions-analysis__promo-card-title {
    font-size: 1.3em;
  }

  .page-resources-okplay-ph-latest-promotions-analysis__resource-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-okplay-ph-latest-promotions-analysis__faq-question {
    font-size: 1.2em;
  }

  /* Ensure images in content area do not overflow */
  .page-resources-okplay-ph-latest-promotions-analysis img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-resources-okplay-ph-latest-promotions-analysis__hero-title {
    font-size: 1.8em;
  }

  .page-resources-okplay-ph-latest-promotions-analysis__section-title {
    font-size: 1.7em;
  }

  .page-resources-okplay-ph-latest-promotions-analysis__cta-button {
    width: 100%;
    box-sizing: border-box;
  }
}