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

.page-blog-game-guides__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

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

.page-blog-game-guides__hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-blog-game-guides__hero-content {
  max-width: 900px;
  background: rgba(0, 51, 102, 0.75); /* #003366 with transparency */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-game-guides__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-game-guides__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-blog-game-guides__hero-button {
  display: inline-block;
  background-color: #FFCC00; /* Auxiliary color */
  color: #003366; /* Main color for text */
  padding: 15px 30px;
  border-radius: 5px;
  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:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

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

.page-blog-game-guides__introduction, 
.page-blog-game-guides__guides-overview, 
.page-blog-game-guides__advanced-strategies, 
.page-blog-game-guides__why-kingph, 
.page-blog-game-guides__responsible-gaming,
.page-blog-game-guides__cta {
  padding: 60px 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.page-blog-game-guides__introduction {
  background-color: #ffffff;
}

.page-blog-game-guides__section-title {
  font-size: 2.5em;
  color: #003366; /* Main color */
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-game-guides__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00; /* Auxiliary color */
  border-radius: 2px;
}

.page-blog-game-guides__section-text {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
}

.page-blog-game-guides__main-cta-button {
  display: block;
  width: fit-content;
  margin: 30px auto 0 auto;
  background-color: #CC0000; /* Accent color */
  color: #ffffff;
  padding: 15px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-blog-game-guides__main-cta-button:hover {
  background-color: #990000;
  transform: translateY(-2px);
}

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

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

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

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

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

.page-blog-game-guides__card-title {
  font-size: 1.5em;
  color: #003366; /* Main color */
  margin-bottom: 15px;
}

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

.page-blog-game-guides__card-title a:hover {
  color: #FFCC00; /* Auxiliary color */
}

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

.page-blog-game-guides__card-button {
  display: inline-block;
  background-color: #003366; /* Main color */
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  align-self: flex-start;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-blog-game-guides__card-button:hover {
  background-color: #002244;
  transform: translateY(-1px);
}

.page-blog-game-guides__advanced-strategies {
  background-color: #eef4f8; /* Lighter shade of main color */
}

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

.page-blog-game-guides__strategy-item {
  background-color: #ffffff;
  padding: 20px;
  border-left: 5px solid #FFCC00; /* Auxiliary color */
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-size: 1.05em;
}

.page-blog-game-guides__strategy-item strong {
  color: #003366;
}

.page-blog-game-guides__cta-button {
  display: block;
  width: fit-content;
  margin: 30px auto 0 auto;
  background-color: #CC0000; /* Accent color */
  color: #ffffff;
  padding: 15px 40px;
  border-radius: 5px;
  text-decoration: none;
  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: #990000;
  transform: translateY(-2px);
}

.page-blog-game-guides__why-kingph {
  background-color: #ffffff;
}

.page-blog-game-guides__trust-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-game-guides__responsible-gaming {
  background-color: #f9f9f9;
  text-align: center;
}

.page-blog-game-guides__responsible-gaming-link {
  display: inline-block;
  margin-top: 25px;
  color: #003366; /* Main color */
  text-decoration: underline;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-blog-game-guides__responsible-gaming-link:hover {
  color: #FFCC00; /* Auxiliary color */
}

.page-blog-game-guides__cta {
  background-color: #003366; /* Main color */
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

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

.page-blog-game-guides__cta-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

.page-blog-game-guides__cta-button--primary {
  background-color: #FFCC00; /* Auxiliary color */
  color: #003366; /* Main color for text */
}

.page-blog-game-guides__cta-button--primary:hover {
  background-color: #e6b800;
}

.page-blog-game-guides__cta-button--secondary {
  background-color: #CC0000; /* Accent color */
  color: #ffffff;
}

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

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

@media (max-width: 768px) {
  .page-blog-game-guides {
    padding-top: var(--header-offset, 80px);
  }
  .page-blog-game-guides__hero-section {
    min-height: 400px;
  }
  .page-blog-game-guides__hero-content {
    padding: 30px;
  }
  .page-blog-game-guides__hero-title {
    font-size: 2.2em;
  }
  .page-blog-game-guides__hero-description {
    font-size: 1em;
  }
  .page-blog-game-guides__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-blog-game-guides__content-wrapper {
    padding: 30px 15px;
  }
  .page-blog-game-guides__section-title {
    font-size: 1.8em;
  }
  .page-blog-game-guides__section-text {
    font-size: 1em;
  }
  .page-blog-game-guides__grid {
    grid-template-columns: 1fr;
  }
  .page-blog-game-guides__card-image {
    height: 200px;
  }
  .page-blog-game-guides__card-title {
    font-size: 1.3em;
  }
  .page-blog-game-guides__strategy-list {
    grid-template-columns: 1fr;
  }
  .page-blog-game-guides__trust-image {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .page-blog-game-guides__cta-title {
    font-size: 2em;
  }
  .page-blog-game-guides__cta-text {
    font-size: 1em;
  }
  .page-blog-game-guides__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-game-guides__cta-button {
    width: 100%;
    max-width: 300px;
  }

  /* Ensure all images within content area are responsive and not smaller than 200px */
  .page-blog-game-guides img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-blog-game-guides__card-image, .page-blog-game-guides__trust-image, .page-blog-game-guides__hero-image {
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-blog-game-guides__hero-title {
    font-size: 1.8em;
  }
  .page-blog-game-guides__hero-description {
    font-size: 0.9em;
  }
  .page-blog-game-guides__hero-content {
    padding: 20px;
  }
  .page-blog-game-guides__section-title {
    font-size: 1.5em;
  }
  .page-blog-game-guides__main-cta-button {
    font-size: 1em;
    padding: 12px 30px;
  }
  .page-blog-game-guides__cta-title {
    font-size: 1.8em;
  }
}