.page-game-guides {
  color: #333333; /* Dark text for light body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-game-guides__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero section */
  overflow: hidden;
  background-color: #000;
}

.page-game-guides__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.7;
}

.page-game-guides__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

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

.page-game-guides__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-game-guides__cta-button {
  display: inline-block;
  background-color: #007bff; /* Primary brand color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-game-guides__cta-button:hover {
  background-color: #0056b3; /* Darker shade on hover */
  transform: translateY(-2px);
}

.page-game-guides__overview-section,
.page-game-guides__featured-guides,
.page-game-guides__tips-section,
.page-game-guides__cta-section,
.page-game-guides__responsible-gaming {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

.page-game-guides__section-title {
  font-size: 2.5em;
  color: #007bff; /* Primary brand color */
  margin-bottom: 20px;
}

.page-game-guides__section-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #555555;
}

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

.page-game-guides__guide-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  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;
  text-align: left;
}

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

.page-game-guides__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-game-guides__card-title {
  font-size: 1.8em;
  color: #007bff;
  padding: 20px 20px 10px;
}

.page-game-guides__card-title a {
  color: inherit;
  text-decoration: none;
}

.page-game-guides__card-title a:hover {
  text-decoration: underline;
}

.page-game-guides__card-description {
  font-size: 1em;
  color: #666666;
  padding: 0 20px 20px;
  line-height: 1.5;
}

.page-game-guides__card-button {
  display: inline-block;
  background-color: #ffc107; /* Auxiliary brand color */
  color: #333333;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease;
}

.page-game-guides__card-button:hover {
  background-color: #e0a800; /* Darker shade on hover */
}

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

.page-game-guides__tip-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-game-guides__tip-image {
  width: 100%;
  height: 200px; /* Minimum height for content images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-game-guides__tip-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-game-guides__tip-text {
  font-size: 0.95em;
  color: #666666;
  line-height: 1.5;
}

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

.page-game-guides__cta-button--primary {
  background-color: #007bff;
  color: #ffffff;
}

.page-game-guides__cta-button--primary:hover {
  background-color: #0056b3;
}

.page-game-guides__cta-button--secondary {
  background-color: #ffc107;
  color: #333333;
}

.page-game-guides__cta-button--secondary:hover {
  background-color: #e0a800;
}

.page-game-guides__responsible-gaming a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-game-guides__responsible-gaming a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-game-guides__hero-title {
    font-size: 2.8em;
  }
  .page-game-guides__section-title {
    font-size: 2em;
  }
  .page-game-guides__card-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-game-guides__hero-section {
    min-height: 400px;
  }
  .page-game-guides__hero-title {
    font-size: 2.2em;
  }
  .page-game-guides__hero-description {
    font-size: 1em;
  }
  .page-game-guides__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-guides__section-title {
    font-size: 1.8em;
  }
  .page-game-guides__section-description {
    font-size: 0.95em;
  }
  .page-game-guides__guide-list,
  .page-game-guides__tips-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-game-guides__card-image, .page-game-guides__tip-image {
    height: 200px;
  }
  .page-game-guides__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  /* Mobile content area images must be constrained */
  .page-game-guides img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-game-guides__hero-title {
    font-size: 1.8em;
  }
  .page-game-guides__section-title {
    font-size: 1.5em;
  }
  .page-game-guides__hero-content {
    padding: 15px;
  }
}