.page-resources-phlove-game-strategies {
  padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
  color: #333333; /* Dark text for light background */
  background-color: #FFFFFF; /* Page background color */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-resources-phlove-game-strategies__hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  text-align: center;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources-phlove-game-strategies__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 1;
}

.page-resources-phlove-game-strategies__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-resources-phlove-game-strategies__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image covers the area without distortion */
}

.page-resources-phlove-game-strategies__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-phlove-game-strategies__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-phlove-game-strategies__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F0F0F0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.page-resources-phlove-game-strategies__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-resources-phlove-game-strategies__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 150px;
  text-align: center;
}

.page-resources-phlove-game-strategies__cta-button--register {
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* Register text color */
  border: 2px solid #FFFFFF;
}

.page-resources-phlove-game-strategies__cta-button--register:hover {
  background-color: #FFFFFF;
  color: #000000;
}

.page-resources-phlove-game-strategies__cta-button--login {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for contrast */
  border: 2px solid #FCBC45;
}

.page-resources-phlove-game-strategies__cta-button--login:hover {
  background-color: #E0A73C; /* Slightly darker yellow on hover */
}

.page-resources-phlove-game-strategies__content-area {
  max-width: 800px; /* Content width control for readability */
  margin: 40px auto;
  padding: 0 20px;
}

.page-resources-phlove-game-strategies__breadcrumb {
  font-size: 0.9em;
  color: #666666;
  margin-bottom: 30px;
}

.page-resources-phlove-game-strategies__breadcrumb a {
  color: #000000;
  text-decoration: none;
}

.page-resources-phlove-game-strategies__breadcrumb a:hover {
  text-decoration: underline;
}

.page-resources-phlove-game-strategies__section-title {
  font-size: 2.2em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
}

.page-resources-phlove-game-strategies__sub-section-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: left;
}

.page-resources-phlove-game-strategies__paragraph {
  font-size: 1.1em;
  margin-bottom: 1.2em;
  text-align: justify;
}

.page-resources-phlove-game-strategies__paragraph a {
  color: #FCBC45; /* Links in content */
  text-decoration: none;
}

.page-resources-phlove-game-strategies__paragraph a:hover {
  text-decoration: underline;
}

.page-resources-phlove-game-strategies__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-resources-phlove-game-strategies__list-item {
  margin-bottom: 10px;
}

.page-resources-phlove-game-strategies__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-resources-phlove-game-strategies__image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: block; /* Ensure it's block to respect margin: auto for centering */
  margin: 0 auto;
}

.page-resources-phlove-game-strategies__app-cta,
.page-resources-phlove-game-strategies__final-cta {
  text-align: center;
  margin: 40px 0;
}

.page-resources-phlove-game-strategies__return-link {
  text-align: center;
  margin-top: 40px;
}

.page-resources-phlove-game-strategies__return-link a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-phlove-game-strategies__return-link a:hover {
  text-decoration: underline;
}

/* Specific styling for the download and play buttons */
.page-resources-phlove-game-strategies__cta-button--download,
.page-resources-phlove-game-strategies__cta-button--play {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-resources-phlove-game-strategies__cta-button--download:hover,
.page-resources-phlove-game-strategies__cta-button--play:hover {
    background-color: #E0A73C;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-phlove-game-strategies__hero-title {
    font-size: 2.2em;
  }

  .page-resources-phlove-game-strategies__hero-description {
    font-size: 1em;
  }

  .page-resources-phlove-game-strategies__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-phlove-game-strategies__cta-button {
    width: 80%; /* Make buttons wider on mobile */
    min-width: unset;
  }

  .page-resources-phlove-game-strategies__section-title {
    font-size: 1.8em;
  }

  .page-resources-phlove-game-strategies__sub-section-title {
    font-size: 1.5em;
  }

  .page-resources-phlove-game-strategies__paragraph,
  .page-resources-phlove-game-strategies__list {
    font-size: 1em;
  }

  /* Mobile content area image responsiveness */
  .page-resources-phlove-game-strategies__image-wrapper img {
    max-width: 100%;
    height: auto;
  }
}