.page-resources-gamezone-ph-registration-tutorial {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
}

.page-resources-gamezone-ph-registration-tutorial__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.2), rgba(255, 215, 0, 0.2));
  position: relative;
  overflow: hidden;
}

.page-resources-gamezone-ph-registration-tutorial__hero-container {
  max-width: 900px;
  z-index: 1;
}

.page-resources-gamezone-ph-registration-tutorial__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-gamezone-ph-registration-tutorial__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-gamezone-ph-registration-tutorial__register-button {
  display: inline-block;
  background-color: #DC143C; /* Action Red */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-gamezone-ph-registration-tutorial__register-button:hover {
  background-color: #b20e2e;
  transform: translateY(-2px);
}

.page-resources-gamezone-ph-registration-tutorial__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.2; /* Subtle background image */
  z-index: 0;
}

.page-resources-gamezone-ph-registration-tutorial__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-resources-gamezone-ph-registration-tutorial__content-area {
  max-width: 800px; /* Article content width */
  margin: 0 auto;
  padding: 40px 20px;
}

.page-resources-gamezone-ph-registration-tutorial__section-title {
  font-size: 2.2em;
  color: #FFD700; /* Gold */
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 2px solid #1E90FF; /* Blue accent */
  padding-bottom: 10px;
}

.page-resources-gamezone-ph-registration-tutorial__paragraph {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-resources-gamezone-ph-registration-tutorial__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-resources-gamezone-ph-registration-tutorial__feature-card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-resources-gamezone-ph-registration-tutorial__feature-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-gamezone-ph-registration-tutorial__feature-icon {
  width: 250px; /* Minimum 200px */
  height: 180px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-resources-gamezone-ph-registration-tutorial__feature-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
}

.page-resources-gamezone-ph-registration-tutorial__feature-description {
  font-size: 0.95em;
  color: #cccccc;
}

.page-resources-gamezone-ph-registration-tutorial__step-card {
  background-color: rgba(30, 144, 255, 0.1); /* Subtle blue background */
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  border-left: 5px solid #FFD700; /* Gold accent */
}

.page-resources-gamezone-ph-registration-tutorial__step-title {
  font-size: 1.8em;
  color: #1E90FF; /* Dodger Blue */
  margin-bottom: 15px;
}

.page-resources-gamezone-ph-registration-tutorial__step-description {
  font-size: 1.0em;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-resources-gamezone-ph-registration-tutorial__step-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  min-width: 250px; /* Ensure minimum display size */
  min-height: 150px;
  object-fit: cover;
}

.page-resources-gamezone-ph-registration-tutorial__register-button--bottom {
  margin-top: 40px;
  width: fit-content;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-gamezone-ph-registration-tutorial__ordered-list {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-resources-gamezone-ph-registration-tutorial__ordered-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-resources-gamezone-ph-registration-tutorial__ordered-list strong {
  color: #FFD700;
}

.page-resources-gamezone-ph-registration-tutorial__login-button,
.page-resources-gamezone-ph-registration-tutorial__promo-button {
  display: inline-block;
  background-color: #1E90FF; /* Dodger Blue */
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.05em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-gamezone-ph-registration-tutorial__login-button:hover,
.page-resources-gamezone-ph-registration-tutorial__promo-button:hover {
  background-color: #1565b3;
  transform: translateY(-2px);
}

.page-resources-gamezone-ph-registration-tutorial__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid rgba(30, 144, 255, 0.2);
}

.page-resources-gamezone-ph-registration-tutorial__faq-question {
  font-size: 1.3em;
  color: #FFD700; /* Gold */
  margin-bottom: 10px;
}

.page-resources-gamezone-ph-registration-tutorial__faq-answer {
  font-size: 1.0em;
  color: #e0e0e0;
}

.page-resources-gamezone-ph-registration-tutorial__support-button,
.page-resources-gamezone-ph-registration-tutorial__responsible-gaming-button {
  display: inline-block;
  background-color: #DC143C; /* Action Red */
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.05em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-gamezone-ph-registration-tutorial__support-button:hover,
.page-resources-gamezone-ph-registration-tutorial__responsible-gaming-button:hover {
  background-color: #b20e2e;
  transform: translateY(-2px);
}

.page-resources-gamezone-ph-registration-tutorial__conclusion-section {
  text-align: center;
  padding: 50px 20px;
  background-color: rgba(255, 215, 0, 0.1); /* Subtle gold background */
  border-top: 2px solid #FFD700;
  margin-top: 40px;
}

.page-resources-gamezone-ph-registration-tutorial__cta-buttons {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-resources-gamezone-ph-registration-tutorial__cta-button {
  display: inline-block;
  padding: 18px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-gamezone-ph-registration-tutorial__cta-button--register {
  background-color: #DC143C; /* Action Red */
  color: #ffffff;
}

.page-resources-gamezone-ph-registration-tutorial__cta-button--register:hover {
  background-color: #b20e2e;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-resources-gamezone-ph-registration-tutorial__cta-button--login {
  background-color: #1E90FF; /* Dodger Blue */
  color: #ffffff;
}

.page-resources-gamezone-ph-registration-tutorial__cta-button--login:hover {
  background-color: #1565b3;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-resources-gamezone-ph-registration-tutorial__back-to-resources {
  text-align: center;
  padding: 30px 20px;
}

.page-resources-gamezone-ph-registration-tutorial__back-link {
  color: #FFD700;
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-resources-gamezone-ph-registration-tutorial__back-link:hover {
  color: #1E90FF;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-gamezone-ph-registration-tutorial__hero-title {
    font-size: 2.5em;
  }

  .page-resources-gamezone-ph-registration-tutorial__hero-description {
    font-size: 1em;
  }

  .page-resources-gamezone-ph-registration-tutorial__section-title {
    font-size: 1.8em;
  }

  .page-resources-gamezone-ph-registration-tutorial__feature-icon,
  .page-resources-gamezone-ph-registration-tutorial__step-image {
    max-width: 100%;
    height: auto;
  }

  .page-resources-gamezone-ph-registration-tutorial__cta-buttons {
    flex-direction: column;
  }

  .page-resources-gamezone-ph-registration-tutorial__cta-button {
    width: 100%;
  }

  .page-resources-gamezone-ph-registration-tutorial__content-area {
    padding: 20px 15px;
  }

  .page-resources-gamezone-ph-registration-tutorial__hero-section {
    padding: 40px 15px;
  }

  /* Ensure all content area images are responsive and not too small */
  .page-resources-gamezone-ph-registration-tutorial img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size even on mobile */
    min-
  }

  .page-resources-gamezone-ph-registration-tutorial__feature-icon {
    width: 100%;
    height: 200px; /* Adjust height for mobile if needed */
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .page-resources-gamezone-ph-registration-tutorial__hero-title {
    font-size: 2em;
  }

  .page-resources-gamezone-ph-registration-tutorial__register-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-gamezone-ph-registration-tutorial__step-title {
    font-size: 1.5em;
  }

  .page-resources-gamezone-ph-registration-tutorial__faq-question {
    font-size: 1.1em;
  }
}