.page-blog-latest-game-strategies {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

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

.page-blog-latest-game-strategies__hero-section {
  background-color: #000000; /* Main color for hero background */
  color: #FFFFFF; /* White text for dark background */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-blog-latest-game-strategies__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-blog-latest-game-strategies__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login color for emphasis */
  line-height: 1.2;
}

.page-blog-latest-game-strategies__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  opacity: 0.9;
}

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

.page-blog-latest-game-strategies__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 150px;
  text-align: center;
}

.page-blog-latest-game-strategies__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-blog-latest-game-strategies__button--register:hover {
  background-color: transparent;
  color: #FFFFFF;
}

.page-blog-latest-game-strategies__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-blog-latest-game-strategies__button--login:hover {
  background-color: transparent;
  color: #FCBC45;
}

.page-blog-latest-game-strategies__hero-image {
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
}

.page-blog-latest-game-strategies__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-blog-latest-game-strategies__introduction-section,
.page-blog-latest-game-strategies__advanced-section,
.page-blog-latest-game-strategies__bankroll-management-section,
.page-blog-latest-game-strategies__responsible-gaming-section,
.page-blog-latest-game-strategies__faq-section,
.page-blog-latest-game-strategies__cta-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-blog-latest-game-strategies__introduction-section {
  background-color: #f8f8f8;
}

.page-blog-latest-game-strategies__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
}

.page-blog-latest-game-strategies__section-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
  text-align: justify;
}

.page-blog-latest-game-strategies__game-categories-section {
  padding: 60px 0;
  background-color: #f0f0f0;
}

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

.page-blog-latest-game-strategies__game-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.page-blog-latest-game-strategies__game-card:hover {
  transform: translateY(-10px);
}

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

.page-blog-latest-game-strategies__game-card-title {
  font-size: 1.8em;
  color: #000000;
  margin: 20px 15px 10px;
  flex-grow: 1;
}

.page-blog-latest-game-strategies__game-card-title a {
  color: #000000;
  text-decoration: none;
}

.page-blog-latest-game-strategies__game-card-title a:hover {
  color: #FCBC45;
}

.page-blog-latest-game-strategies__game-card-text {
  font-size: 0.95em;
  color: #555555;
  padding: 0 15px 20px;
  text-align: justify;
}

.page-blog-latest-game-strategies__faq-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-blog-latest-game-strategies__faq-item {
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-blog-latest-game-strategies__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
}

.page-blog-latest-game-strategies__faq-answer {
  font-size: 1.05em;
  color: #555555;
}

.page-blog-latest-game-strategies__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
}

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

.page-blog-latest-game-strategies__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

.page-blog-latest-game-strategies__cta-section .page-blog-latest-game-strategies__section-title {
  color: #FCBC45;
}

.page-blog-latest-game-strategies__cta-section .page-blog-latest-game-strategies__section-text {
  color: #FFFFFF;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-blog-latest-game-strategies__button--primary {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-blog-latest-game-strategies__button--primary:hover {
  background-color: transparent;
  color: #FCBC45;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-latest-game-strategies__hero-title {
    font-size: 3em;
  }
  .page-blog-latest-game-strategies__hero-description {
    font-size: 1.2em;
  }
  .page-blog-latest-game-strategies__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-blog-latest-game-strategies__hero-section {
    flex-direction: column;
    padding: 60px 20px;
  }
  .page-blog-latest-game-strategies__hero-title {
    font-size: 2.5em;
  }
  .page-blog-latest-game-strategies__hero-description {
    font-size: 1.1em;
  }
  .page-blog-latest-game-strategies__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-latest-game-strategies__button {
    width: 100%;
    max-width: 250px;
  }
  .page-blog-latest-game-strategies__section-title {
    font-size: 1.8em;
  }
  .page-blog-latest-game-strategies__section-text {
    font-size: 1em;
  }
  .page-blog-latest-game-strategies__game-grid {
    grid-template-columns: 1fr;
  }
  .page-blog-latest-game-strategies__game-card-image {
    height: 200px; /* Adjust height for mobile */
  }
  .page-blog-latest-game-strategies__game-card-title {
    font-size: 1.5em;
  }
  .page-blog-latest-game-strategies__faq-question {
    font-size: 1.1em;
  }
  .page-blog-latest-game-strategies__faq-answer {
    font-size: 0.95em;
  }
  .page-blog-latest-game-strategies__container {
    padding: 0 15px;
  }
  .page-blog-latest-game-strategies__hero-image img,
  .page-blog-latest-game-strategies__game-card-image {
    max-width: 100%;
    height: auto;
  }
  /* Ensure all content images in main content area are responsive and not smaller than 200px */
  .page-blog-latest-game-strategies 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-latest-game-strategies__game-card-image {
    min-height: 200px; /* Specific minimum for card images */
  }
}

@media (max-width: 480px) {
  .page-blog-latest-game-strategies__hero-title {
    font-size: 2em;
  }
  .page-blog-latest-game-strategies__hero-description {
    font-size: 1em;
  }
  .page-blog-latest-game-strategies__section-title {
    font-size: 1.6em;
  }
  .page-blog-latest-game-strategies__button {
    padding: 12px 20px;
    font-size: 1em;
  }
}