/* style/blog-game-guides.css */
.page-blog-game-guides {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  color: #333333; /* Deep gray for readability on light background */
  background-color: #FFFFFF; /* Ensures consistent light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-game-guides__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-game-guides__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 500px;
  padding: 80px 20px;
  background-color: #000000; /* Dark background for the hero section */
  color: #ffffff;
}

.page-blog-game-guides__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.4; /* Slightly dim the image to make text readable */
}

.page-blog-game-guides__hero-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-blog-game-guides__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-blog-game-guides__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #FFFFFF;
}

.page-blog-game-guides__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-blog-game-guides__hero-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-blog-game-guides__hero-button--register {
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
}

.page-blog-game-guides__hero-button--register:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

.page-blog-game-guides__hero-button--login {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
}

.page-blog-game-guides__hero-button--login:hover {
  background-color: #e6a73c;
  transform: translateY(-2px);
}

.page-blog-game-guides__guides-overview,
.page-blog-game-guides__why-42vipph,
.page-blog-game-guides__featured-games,
.page-blog-game-guides__responsible-gaming,
.page-blog-game-guides__final-cta {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-blog-game-guides__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.page-blog-game-guides__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-blog-game-guides__guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-game-guides__guide-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-blog-game-guides__guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-blog-game-guides__guide-card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-blog-game-guides__guide-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-blog-game-guides__guide-card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-blog-game-guides__guide-card-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-game-guides__guide-card-title a:hover {
  color: #FCBC45;
}

.page-blog-game-guides__guide-card-description {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-game-guides__guide-card-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000000;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-blog-game-guides__guide-card-button:hover {
  background-color: #FCBC45;
  color: #000000;
}

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

.page-blog-game-guides__benefit-item {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-blog-game-guides__benefit-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 10px;
}

.page-blog-game-guides__benefit-description {
  font-size: 1em;
  color: #666666;
}

.page-blog-game-guides__benefit-description a {
  color: #000000;
  text-decoration: underline;
}

.page-blog-game-guides__benefit-description a:hover {
  color: #FCBC45;
}

.page-blog-game-guides__cta-area {
  text-align: center;
  margin-top: 50px;
}

.page-blog-game-guides__cta-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 25px;
}

.page-blog-game-guides__cta-button {
  display: inline-block;
  padding: 18px 35px;
  background-color: #FCBC45;
  color: #000000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-blog-game-guides__cta-button:hover {
  background-color: #e6a73c;
  transform: translateY(-3px);
}

.page-blog-game-guides__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-game-guides__game-category-item {
  background-color: #f8f8f8;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-blog-game-guides__game-category-title {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-blog-game-guides__game-category-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-game-guides__game-category-title a:hover {
  color: #FCBC45;
}

.page-blog-game-guides__game-category-description {
  font-size: 0.9em;
  color: #666666;
}

.page-blog-game-guides__cta-area--bottom {
  margin-top: 60px;
}

.page-blog-game-guides__responsible-gaming-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #555555;
}

.page-blog-game-guides__responsible-gaming-text a {
  color: #000000;
  text-decoration: underline;
}

.page-blog-game-guides__responsible-gaming-text a:hover {
  color: #FCBC45;
}

.page-blog-game-guides__final-cta {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

.page-blog-game-guides__final-cta .page-blog-game-guides__section-title,
.page-blog-game-guides__final-cta .page-blog-game-guides__section-intro {
  color: #FFFFFF;
}

.page-blog-game-guides__cta-button--final {
  background-color: #FCBC45;
  color: #000000;
}

.page-blog-game-guides__cta-button--final:hover {
  background-color: #e6a73c;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-blog-game-guides__hero-title {
    font-size: 2.2em;
  }

  .page-blog-game-guides__hero-description {
    font-size: 1em;
  }

  .page-blog-game-guides__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-game-guides__hero-button {
    width: 80%;
    margin: 0 auto;
  }

  .page-blog-game-guides__section-title {
    font-size: 1.8em;
  }

  .page-blog-game-guides__section-intro {
    font-size: 0.95em;
  }

  .page-blog-game-guides__guide-grid,
  .page-blog-game-guides__benefits-list,
  .page-blog-game-guides__game-categories {
    grid-template-columns: 1fr;
  }

  .page-blog-game-guides__guide-card-image,
  .page-blog-game-guides__guide-card img {
    max-width: 100%;
    height: auto; /* Ensures images are responsive and don't overflow */
  }

  .page-blog-game-guides__guide-card {
    margin-bottom: 20px;
  }

  .page-blog-game-guides__cta-title {
    font-size: 1.6em;
  }

  .page-blog-game-guides__cta-button {
    font-size: 1em;
    padding: 15px 25px;
  }

  /* Ensure all content area images are responsive and not too small */
  .page-blog-game-guides img {
    max-width: 100%;
    height: auto;
  }

  /* Override any potentially conflicting styles for content images */
  .page-blog-game-guides__guide-card-image {
    width: 100%;
    height: 200px; /* Adjust height for mobile while keeping minimum size */
    object-fit: cover;
  }

  .page-blog-game-guides__guide-card-content img {
    width: 100%;
    height: auto;
  }

  .page-blog-game-guides__benefit-item img {
    width: 100%;
    height: auto;
  }

  .page-blog-game-guides__game-category-item img {
    width: 100%;
    height: auto;
  }
}

/* Ensure no content area images are smaller than 200px */
.page-blog-game-guides img:not(.page-blog-game-guides__hero-image) {
  min-width: 200px;
  min-height: 200px;
}

/* Ensure the hero image is not constrained by min-width/height if it's smaller on mobile */
.page-blog-game-guides__hero-image {
  min-width: unset;
  min-height: unset;
}