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

.page-blog-game-guides__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensures content clears fixed header */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Hide overflow for hero image */
}

.page-blog-game-guides__hero-container {
  position: relative;
  width: 100%;
  max-width: 1920px; /* Max width for hero content */
}

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

.page-blog-game-guides__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  max-width: 80%;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent background for readability */
  padding: 30px;
  border-radius: 10px;
}

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

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

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

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

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

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

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

.page-blog-game-guides__featured-guides-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}

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

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

.page-blog-game-guides__guide-card:hover {
  transform: translateY(-5px);
}

.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;
  margin-bottom: 15px;
  color: #007bff;
}

.page-blog-game-guides__card-title a {
  color: #007bff;
  text-decoration: none;
}

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

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

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

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

.page-blog-game-guides__advanced-strategies-section {
  padding: 60px 0;
}

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

.page-blog-game-guides__strategy-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-blog-game-guides__strategy-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-blog-game-guides__strategy-description {
  font-size: 1em;
  line-height: 1.7;
}

.page-blog-game-guides__login-register-section {
  background-color: #e9ecef;
  padding: 60px 0;
  text-align: center;
}

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

.page-blog-game-guides__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

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

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

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

.page-blog-game-guides__responsible-gaming-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.page-blog-game-guides__responsible-gaming-link {
  display: inline-block;
  margin-top: 20px;
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-blog-game-guides__responsible-gaming-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.page-blog-game-guides__faq-section {
  padding: 60px 0;
}

.page-blog-game-guides__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

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

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

.page-blog-game-guides__faq-answer a {
  color: #007bff;
  text-decoration: none;
}

.page-blog-game-guides__faq-answer a:hover {
  text-decoration: underline;
}

.page-blog-game-guides__cta-section {
  background-color: #007bff;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

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

.page-blog-game-guides__cta-section .page-blog-game-guides__section-text {
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-blog-game-guides__cta-final-button {
  display: inline-block;
  background-color: #ffc107;
  color: #333333;
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-blog-game-guides__hero-title {
    font-size: 2.8em;
  }
  .page-blog-game-guides__hero-description {
    font-size: 1.2em;
  }
  .page-blog-game-guides__section-title {
    font-size: 2em;
  }
  .page-blog-game-guides__card-title {
    font-size: 1.3em;
  }
  .page-blog-game-guides__strategy-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-blog-game-guides__hero-content {
    padding: 20px;
    max-width: 90%;
  }
  .page-blog-game-guides__hero-title {
    font-size: 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__container {
    padding: 20px 15px;
  }
  .page-blog-game-guides__section-title {
    font-size: 1.8em;
  }
  .page-blog-game-guides__section-text {
    font-size: 0.95em;
  }
  .page-blog-game-guides__guides-grid,
  .page-blog-game-guides__strategy-points {
    grid-template-columns: 1fr;
  }
  .page-blog-game-guides__card-image {
    height: 200px; /* Adjust height for smaller screens */
  }
  .page-blog-game-guides__card-content {
    padding: 15px;
  }
  .page-blog-game-guides__card-title {
    font-size: 1.2em;
  }
  .page-blog-game-guides__card-text {
    font-size: 0.9em;
  }
  .page-blog-game-guides__card-button {
    padding: 8px 15px;
    font-size: 0.9em;
  }
  .page-blog-game-guides__strategy-item {
    padding: 20px;
  }
  .page-blog-game-guides__strategy-title {
    font-size: 1.3em;
  }
  .page-blog-game-guides__strategy-description {
    font-size: 0.9em;
  }
  .page-blog-game-guides__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-game-guides__cta-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-blog-game-guides__faq-question {
    font-size: 1.1em;
  }
  .page-blog-game-guides__faq-answer {
    font-size: 0.9em;
  }
  .page-blog-game-guides__cta-section {
    padding: 60px 15px;
  }
  .page-blog-game-guides__cta-final-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  /* Ensure all content images 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__card-image {
    min-height: 200px;
    height: auto; /* Allow height to adjust for aspect ratio */
  }
}

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