.page-blog-game-guides-tips {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-blog-game-guides-tips__hero-section {
  background-color: #007bff; /* Primary brand color */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.page-blog-game-guides-tips__hero-content {
  max-width: 900px;
}

.page-blog-game-guides-tips__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffc107; /* Auxiliary color for emphasis */
}

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

.page-blog-game-guides-tips__hero-button {
  display: inline-block;
  background-color: #ffc107; /* Auxiliary color for buttons */
  color: #007bff; /* Primary color for button text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-blog-game-guides-tips__hero-image-container {
  max-width: 100%;
  margin-top: 40px;
}

.page-blog-game-guides-tips__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}

.page-blog-game-guides-tips__featured-guides-section,
.page-blog-game-guides-tips__deep-dive-section,
.page-blog-game-guides-tips__cta-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 20px;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-blog-game-guides-tips__section-title {
  font-size: 2.5em;
  color: #007bff; /* Primary color */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-game-guides-tips__section-subtitle {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

.page-blog-game-guides-tips__card-title {
  font-size: 1.4em;
  color: #007bff; /* Primary color */
  padding: 15px 20px 10px;
  margin: 0;
}

.page-blog-game-guides-tips__card-title a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-game-guides-tips__card-title a:hover {
  color: #0056b3;
}

.page-blog-game-guides-tips__card-description {
  font-size: 0.95em;
  color: #666666;
  padding: 0 20px 15px;
  flex-grow: 1;
}

.page-blog-game-guides-tips__card-button {
  display: inline-block;
  background-color: #ffc107;
  color: #007bff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  margin: 0 20px 20px;
  align-self: flex-start;
  transition: background-color 0.3s ease;
}

.page-blog-game-guides-tips__card-button:hover {
  background-color: #e0a800;
}

.page-blog-game-guides-tips__deep-dive-section {
  background-color: #ffffff;
}

.page-blog-game-guides-tips__content-block {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.page-blog-game-guides-tips__content-block:nth-child(even) {
  flex-direction: column-reverse; /* Alternate image/text layout for visual variety */
}

.page-blog-game-guides-tips__content-heading {
  font-size: 2em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-blog-game-guides-tips__content-paragraph {
  font-size: 1.05em;
  color: #444444;
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-game-guides-tips__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  min-width: 200px; /* Enforce minimum image size */
  min-height: 200px;
}

.page-blog-game-guides-tips__content-button {
  display: inline-block;
  background-color: #007bff;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-blog-game-guides-tips__content-button:hover {
  background-color: #0056b3;
}

.page-blog-game-guides-tips__cta-section {
  background-color: #007bff; /* Primary color */
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
}

.page-blog-game-guides-tips__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffc107; /* Auxiliary color */
}

.page-blog-game-guides-tips__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-game-guides-tips__cta-button {
  display: inline-block;
  background-color: #ffc107;
  color: #007bff;
  padding: 18px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.page-blog-game-guides-tips__cta-button:hover {
  background-color: #e0a800;
  transform: translateY(-5px);
}

.page-blog-game-guides-tips__cta-button--secondary {
  background-color: #ffffff;
  color: #007bff;
}

.page-blog-game-guides-tips__cta-button--secondary:hover {
  background-color: #f0f0f0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-blog-game-guides-tips__hero-title {
    font-size: 2.5em;
  }
  .page-blog-game-guides-tips__hero-description {
    font-size: 1.1em;
  }
  .page-blog-game-guides-tips__section-title {
    font-size: 2em;
  }
  .page-blog-game-guides-tips__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-blog-game-guides-tips__hero-section {
    padding: 60px 15px;
  }
  .page-blog-game-guides-tips__hero-title {
    font-size: 2em;
  }
  .page-blog-game-guides-tips__hero-description {
    font-size: 1em;
  }
  .page-blog-game-guides-tips__hero-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-blog-game-guides-tips__guides-grid {
    grid-template-columns: 1fr;
  }
  .page-blog-game-guides-tips__featured-guides-section,
  .page-blog-game-guides-tips__deep-dive-section,
  .page-blog-game-guides-tips__cta-section {
    padding: 30px 15px;
    margin: 30px auto;
  }
  .page-blog-game-guides-tips__section-title {
    font-size: 1.8em;
  }
  .page-blog-game-guides-tips__section-subtitle {
    font-size: 0.95em;
  }
  .page-blog-game-guides-tips__card-title {
    font-size: 1.2em;
  }
  .page-blog-game-guides-tips__content-heading {
    font-size: 1.6em;
  }
  .page-blog-game-guides-tips__content-paragraph {
    font-size: 0.95em;
  }
  .page-blog-game-guides-tips__cta-title {
    font-size: 1.8em;
  }
  .page-blog-game-guides-tips__cta-description {
    font-size: 1em;
  }
  .page-blog-game-guides-tips__cta-button {
    padding: 15px 30px;
    font-size: 1.2em;
    margin: 8px;
  }
  /* Mobile content area images must not overflow */
  .page-blog-game-guides-tips img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum image size even on mobile */
    min-height: 200px;
  }
  .page-blog-game-guides-tips__content-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-blog-game-guides-tips__hero-title {
    font-size: 1.8em;
  }
  .page-blog-game-guides-tips__hero-description {
    font-size: 0.9em;
  }
  .page-blog-game-guides-tips__hero-button {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-blog-game-guides-tips__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
}