/* style/resources-okgames-gcash-benefits.css */
.page-resources-okgames-gcash-benefits {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-resources-okgames-gcash-benefits__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0A192F; /* Dark background for hero content */
  padding-bottom: 60px;
}

.page-resources-okgames-gcash-benefits__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image slightly for text readability */
}

.page-resources-okgames-gcash-benefits__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  width: 90%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-resources-okgames-gcash-benefits__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold main color */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-okgames-gcash-benefits__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-okgames-gcash-benefits__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-resources-okgames-gcash-benefits__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  color: #0A192F; /* Dark text for light buttons */
}

.page-resources-okgames-gcash-benefits__button--primary {
  background-color: #FFD700; /* Gold primary button */
}

.page-resources-okgames-gcash-benefits__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-resources-okgames-gcash-benefits__button--secondary {
  background-color: #1E90FF; /* Deep blue secondary button */
  color: #ffffff; /* Light text for dark blue */
}

.page-resources-okgames-gcash-benefits__button--secondary:hover {
  background-color: #1565b3;
  transform: translateY(-2px);
}

.page-resources-okgames-gcash-benefits__content-wrapper {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.page-resources-okgames-gcash-benefits__intro-text p {
  font-size: 1.1em;
  margin-bottom: 30px;
  text-align: justify;
}

.page-resources-okgames-gcash-benefits__section {
  margin-bottom: 60px;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter dark background for sections */
  padding: 40px;
  border-radius: 10px;
}

.page-resources-okgames-gcash-benefits__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 25px;
  text-align: center;
  border-bottom: 2px solid #1E90FF;
  padding-bottom: 15px;
}

.page-resources-okgames-gcash-benefits__section-content p {
  margin-bottom: 15px;
  text-align: justify;
}

.page-resources-okgames-gcash-benefits__link {
  color: #1E90FF;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-okgames-gcash-benefits__link:hover {
  text-decoration: underline;
  color: #62b1ff;
}

.page-resources-okgames-gcash-benefits__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  padding-left: 0;
}

.page-resources-okgames-gcash-benefits__list li {
  margin-bottom: 10px;
}

.page-resources-okgames-gcash-benefits__image-text-block {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.page-resources-okgames-gcash-benefits__image-text-block--reverse {
  flex-direction: row-reverse;
}

.page-resources-okgames-gcash-benefits__image {
  flex: 0 0 40%;
  max-width: 40%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
  width: 600px; /* HTML width attribute matches this example */
  height: 450px; /* HTML height attribute matches this example */
  object-fit: cover;
}

.page-resources-okgames-gcash-benefits__image-text-block p {
  flex: 1;
  margin-bottom: 0;
}

.page-resources-okgames-gcash-benefits__game-category {
  margin-bottom: 40px;
}

.page-resources-okgames-gcash-benefits__game-category-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-align: left;
}

.page-resources-okgames-gcash-benefits__button--play-now {
  background-color: #FFD700;
  color: #0A192F;
  margin-top: 20px;
}

.page-resources-okgames-gcash-benefits__button--play-now:hover {
  background-color: #e6c200;
}

.page-resources-okgames-gcash-benefits__promo-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-okgames-gcash-benefits__promo-card {
  background-color: rgba(30, 144, 255, 0.1); /* Light blue tint for promo cards */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-resources-okgames-gcash-benefits__promo-card:hover {
  transform: translateY(-5px);
}

.page-resources-okgames-gcash-benefits__promo-image {
  width: 100%;
  height: 200px; /* Fixed height for promo images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-okgames-gcash-benefits__promo-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-resources-okgames-gcash-benefits__promo-description {
  font-size: 0.95em;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-resources-okgames-gcash-benefits__button--claim {
  background-color: #FFD700;
  color: #0A192F;
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-resources-okgames-gcash-benefits__button--claim:hover {
  background-color: #e6c200;
}

.page-resources-okgames-gcash-benefits__button--contact,
.page-resources-okgames-gcash-benefits__button--faq,
.page-resources-okgames-gcash-benefits__button--info {
  background-color: #1E90FF;
  color: #ffffff;
  margin-top: 20px;
  margin-right: 15px;
}

.page-resources-okgames-gcash-benefits__button--contact:hover,
.page-resources-okgames-gcash-benefits__button--faq:hover,
.page-resources-okgames-gcash-benefits__button--info:hover {
  background-color: #1565b3;
}

.page-resources-okgames-gcash-benefits__button--final-cta {
  background-color: #FFD700;
  color: #0A192F;
  padding: 18px 35px;
  font-size: 1.2em;
  margin-top: 40px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-okgames-gcash-benefits__button--final-cta:hover {
  background-color: #e6c200;
}

.page-resources-okgames-gcash-benefits__return-link-container {
  text-align: center;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-okgames-gcash-benefits__return-link {
  color: #1E90FF;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
}

.page-resources-okgames-gcash-benefits__return-link:hover {
  text-decoration: underline;
  color: #62b1ff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-okgames-gcash-benefits__hero-title {
    font-size: 2.8em;
  }
  .page-resources-okgames-gcash-benefits__hero-description {
    font-size: 1.1em;
  }
  .page-resources-okgames-gcash-benefits__section-title {
    font-size: 2em;
  }
  .page-resources-okgames-gcash-benefits__image-text-block {
    flex-direction: column;
    text-align: center;
  }
  .page-resources-okgames-gcash-benefits__image-text-block--reverse {
    flex-direction: column;
  }
  .page-resources-okgames-gcash-benefits__image {
    max-width: 100%;
    width: auto; /* Allow auto width for responsiveness */
    height: auto;
  }
}

@media (max-width: 768px) {
  .page-resources-okgames-gcash-benefits {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
  }
  .page-resources-okgames-gcash-benefits__hero-title {
    font-size: 2em;
  }
  .page-resources-okgames-gcash-benefits__hero-description {
    font-size: 1em;
  }
  .page-resources-okgames-gcash-benefits__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-okgames-gcash-benefits__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-okgames-gcash-benefits__content-wrapper {
    margin: 20px auto;
    padding: 0 15px;
  }
  .page-resources-okgames-gcash-benefits__section {
    padding: 25px;
  }
  .page-resources-okgames-gcash-benefits__section-title {
    font-size: 1.8em;
  }
  .page-resources-okgames-gcash-benefits__game-category-title {
    font-size: 1.5em;
  }
  .page-resources-okgames-gcash-benefits__promo-card-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-okgames-gcash-benefits__image {
    max-width: 100%; /* Ensure content images don't overflow */
    height: auto; /* Maintain aspect ratio */
    min-width: 200px; /* Still enforce minimum size */
    min-height: 200px;
  }
  .page-resources-okgames-gcash-benefits__promo-image {
    max-width: 100%;
    height: auto;
  }
  .page-resources-okgames-gcash-benefits__button--contact,
  .page-resources-okgames-gcash-benefits__button--faq,
  .page-resources-okgames-gcash-benefits__button--info {
    margin-right: 0;
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-okgames-gcash-benefits__hero-title {
    font-size: 1.8em;
  }
  .page-resources-okgames-gcash-benefits__hero-description {
    font-size: 0.9em;
  }
  .page-resources-okgames-gcash-benefits__button {
    font-size: 0.9em;
    padding: 10px 20px;
  }
  .page-resources-okgames-gcash-benefits__section-title {
    font-size: 1.5em;
  }
  .page-resources-okgames-gcash-benefits__promo-title {
    font-size: 1.3em;
  }
  .page-resources-okgames-gcash-benefits__button--final-cta {
    padding: 15px 25px;
    font-size: 1.1em;
  }
}