.page-blog-game-guides {
  color: #333333; /* Dark text for light background */
}

.page-blog-game-guides__hero-section {
  padding-top: var(--header-offset, 120px);
  background-color: #000000; /* Main color as background for hero */
  color: #FFFFFF; /* White text for dark background */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.page-blog-game-guides__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  margin-bottom: 30px;
}

.page-blog-game-guides__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login button color for emphasis */
}

.page-blog-game-guides__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.5;
}

.page-blog-game-guides__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for light button */
  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;
  border: none;
  cursor: pointer;
}

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

.page-blog-game-guides__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-blog-game-guides__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  display: block;
}

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

.page-blog-game-guides__intro-section,
.page-blog-game-guides__guides-list,
.page-blog-game-guides__cta-section,
.page-blog-game-guides__faq-section {
  padding: 60px 0;
  background-color: #FFFFFF; /* White background for content sections */
}

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

.page-blog-game-guides__section-text {
  font-size: 1.1em;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-blog-game-guides__guide-card {
  background-color: #f8f8f8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 450px; /* Ensure cards are large enough */
}

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

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

.page-blog-game-guides__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-game-guides__card-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.3;
}

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

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

.page-blog-game-guides__card-description {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-blog-game-guides__card-link {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-blog-game-guides__card-link:hover {
  background-color: #e0a53a;
}

.page-blog-game-guides__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

.page-blog-game-guides__cta-section .page-blog-game-guides__section-title {
  color: #FCBC45;
}

.page-blog-game-guides__cta-section .page-blog-game-guides__section-text {
  color: #e0e0e0;
}

.page-blog-game-guides__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-blog-game-guides__cta-button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-blog-game-guides__cta-button--register:hover {
  background-color: #f0f0f0;
}

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

.page-blog-game-guides__cta-button--login:hover {
  background-color: #e0a53a;
}

.page-blog-game-guides__faq-section {
  background-color: #f0f0f0;
}

.page-blog-game-guides__faq-items {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-blog-game-guides__faq-item {
  background-color: #FFFFFF;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-blog-game-guides__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
}

.page-blog-game-guides__faq-answer {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
}

.page-blog-game-guides__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-game-guides__faq-answer a:hover {
  color: #e0a53a;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-game-guides__hero-title {
    font-size: 3em;
  }
  .page-blog-game-guides__hero-description {
    font-size: 1.2em;
  }
  .page-blog-game-guides__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-blog-game-guides__hero-section {
    min-height: 400px;
    padding: 40px 15px;
  }
  .page-blog-game-guides__hero-title {
    font-size: 2.5em;
  }
  .page-blog-game-guides__hero-description {
    font-size: 1em;
  }
  .page-blog-game-guides__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-blog-game-guides__intro-section,
  .page-blog-game-guides__guides-list,
  .page-blog-game-guides__cta-section,
  .page-blog-game-guides__faq-section {
    padding: 40px 0;
  }
  .page-blog-game-guides__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-blog-game-guides__section-text {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-blog-game-guides__guide-cards {
    grid-template-columns: 1fr;
  }
  .page-blog-game-guides__guide-card img {
    height: 200px; /* Adjusted height for mobile cards */
  }
  .page-blog-game-guides__card-title {
    font-size: 1.3em;
  }
  .page-blog-game-guides__card-description {
    font-size: 0.9em;
  }
  .page-blog-game-guides__card-link {
    padding: 8px 15px;
    font-size: 0.9em;
  }
  .page-blog-game-guides__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-game-guides__cta-button {
    width: 80%;
    max-width: 300px;
  }
  .page-blog-game-guides__faq-question {
    font-size: 1.1em;
  }
  .page-blog-game-guides__faq-answer {
    font-size: 0.9em;
  }
  /* Ensure all content images in mobile are responsive and not too small */
  .page-blog-game-guides img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum width for content images */
    min-height: 200px; /* Enforce minimum height for content images */
  }
  .page-blog-game-guides__guide-card img {
    min-height: 200px; /* Specific min-height for card images */
  }
}