.page-game-guides {
  background-color: #F4F7FB; /* Background */
  color: #1F2D3D; /* Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

/* Hero Section */
.page-game-guides__hero-section {
  display: flex;
  flex-direction: column; /* Enforce image on top, text below */
  align-items: center;
  text-align: center;
  padding: 10px 0 60px; /* Small top padding, larger bottom for spacing */
  background-color: #2F6BFF; /* Primary color for hero background */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-game-guides__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width */
  margin-bottom: 30px; /* Space between image and text */
}

.page-game-guides__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Global image min size */
  min-height: 200px; /* Global image min size */
}

.page-game-guides__hero-content-wrapper {
  max-width: 900px;
  padding: 0 20px;
}

.page-game-guides__hero-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  color: #FFFFFF;
  font-size: clamp(2em, 4vw, 3em); /* Min 2em, preferred 4vw, max 3em */
}

.page-game-guides__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #E0E7FF; /* Slightly lighter text for contrast */
}

.page-game-guides__hero-cta {
  margin-top: 20px;
}

/* General Section Styling */
.page-game-guides__section {
  padding: 60px 0;
}

.page-game-guides__section-title {
  font-size: 2.5em;
  color: #1F2D3D; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-game-guides__section-description {
  font-size: 1.1em;
  color: #1F2D3D; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Featured Guides Grid */
.page-game-guides__featured-guides {
  background-color: #F4F7FB; /* Background */
}

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

.page-game-guides__guide-card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF; /* Border */
}

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

.page-game-guides__guide-card-image-wrapper {
  width: 100%;
  height: 225px; /* Fixed height for consistency */
  overflow: hidden;
}

.page-game-guides__guide-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-width: 200px; /* Global image min size */
  min-height: 200px; /* Global image min size */
}

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

.page-game-guides__guide-card-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  font-weight: bold;
  line-height: 1.3;
}

.page-game-guides__guide-card-title a {
  color: #1F2D3D; /* Text Main */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-guides__guide-card-title a:hover {
  color: #2F6BFF; /* Primary color */
}

.page-game-guides__guide-card-text {
  color: #1F2D3D; /* Text Main */
  font-size: 0.95em;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-game-guides__read-more {
  display: inline-block;
  color: #2F6BFF; /* Primary color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  margin-top: auto; /* Push to bottom */
}

.page-game-guides__read-more:hover {
  text-decoration: underline;
  color: #6FA3FF; /* Secondary color */
}

/* General Tips Section */
.page-game-guides__general-tips {
  background-color: #E0E7FF; /* Lighter background for this section, from primary */
}

.page-game-guides__general-tips .page-game-guides__section-title {
  color: #1F2D3D; /* Text Main */
}

.page-game-guides__general-tips .page-game-guides__paragraph {
  color: #1F2D3D; /* Text Main */
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.1em;
}

.page-game-guides__tips-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.page-game-guides__tip-item {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #2F6BFF; /* Primary color accent */
}

.page-game-guides__tip-title {
  font-size: 1.3em;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-game-guides__tip-description {
  color: #1F2D3D; /* Text Main */
  font-size: 0.95em;
}

.page-game-guides__last-updated {
  font-size: 0.9em;
  color: #1F2D3D; /* Text Main */
  text-align: center;
  margin-top: 40px;
}

/* CTA Section */
.page-game-guides__cta-section {
  background-color: #2F6BFF; /* Primary color */
  color: #FFFFFF;
  padding: 80px 0;
}

.page-game-guides__cta-section .page-game-guides__container {
  display: flex;
  flex-direction: row; /* Default for desktop */
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-game-guides__cta-content {
  flex: 1;
}

.page-game-guides__cta-title {
  font-size: 2.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-game-guides__cta-description {
  font-size: 1.1em;
  color: #E0E7FF; /* Lighter text */
  margin-bottom: 30px;
}

.page-game-guides__cta-image-wrapper {
  flex: 0 0 40%; /* Fixed width for image on desktop */
  max-width: 400px; /* Limit image size */
}

.page-game-guides__cta-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Global image min size */
  min-height: 200px; /* Global image min size */
}

/* Buttons */
.page-game-guides__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin-right: 15px;
  margin-bottom: 15px; /* For stacking on mobile */
  text-align: center;
}

.page-game-guides__button--primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
  color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-guides__button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-game-guides__button--secondary {
  background-color: #FFFFFF; /* Card BG */
  color: #2F6BFF; /* Primary color */
  border: 2px solid #2F6BFF; /* Primary color border */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-game-guides__button--secondary:hover {
  background-color: #E0E7FF; /* Lighter background on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-game-guides__container {
    padding: 15px;
  }

  .page-game-guides__hero-section {
    padding: 10px 0 40px;
  }

  .page-game-guides__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-game-guides__hero-title {
    font-size: 2em;
  }

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

  .page-game-guides__section {
    padding: 40px 0;
  }

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

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

  .page-game-guides__guides-grid {
    grid-template-columns: 1fr;
  }

  .page-game-guides__guide-card-image-wrapper {
    height: 180px; /* Adjust height for smaller screens */
  }

  .page-game-guides__cta-section .page-game-guides__container {
    flex-direction: column;
    text-align: center;
  }

  .page-game-guides__cta-image-wrapper {
    margin-top: 30px;
    flex: none; /* Remove flex basis */
    max-width: 100%;
  }

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

  .page-game-guides__button {
    width: calc(100% - 30px); /* Full width minus padding */
    margin-right: 0;
  }

  /* Image size constraint for mobile */
  .page-game-guides img {
    max-width: 100%;
    height: auto;
  }
  .page-game-guides__hero-image,
  .page-game-guides__guide-card-image,
  .page-game-guides__cta-image {
      min-width: 200px; /* Ensure images maintain minimum size if not responsive */
      min-height: 200px;
  }
}

/* Ensure all content images have min size */
.page-game-guides__hero-image,
.page-game-guides__guide-card-image,
.page-game-guides__cta-image {
    min-width: 200px;
    min-height: 200px;
}

/* Ensure CSS does not override HTML width/height attributes with smaller values */
.page-game-guides__guide-card-image {
  /* HTML width="400" height="225" */
  /* CSS should not set width/height less than these */
  /* object-fit: cover and 100% width/height are fine as they scale to the wrapper */
}

.page-game-guides__hero-image {
  /* HTML width="1200" height="675" */
  /* CSS should not set width/height less than these */
}

.page-game-guides__cta-image {
  /* HTML width="400" height="300" */
  /* CSS should not set width/height less than these */
}