.page-blog-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); /* Ensure content is not hidden by fixed header */
}

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

.page-blog-game-strategies__hero-section {
  background-color: #000080; /* Dark blue background for hero */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

.page-blog-game-strategies__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  line-height: 1.2;
}

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

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

.page-blog-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, transform 0.2s ease;
  min-width: 180px; /* Ensure buttons are not too small */
  text-align: center;
}

.page-blog-game-strategies__button--primary {
  background-color: #FFD700; /* Gold */
  color: #000080; /* Dark blue */
  border: 2px solid #FFD700;
}

.page-blog-game-strategies__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-blog-game-strategies__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-blog-game-strategies__button--secondary:hover {
  background-color: #FFD700;
  color: #000080;
  transform: translateY(-2px);
}

.page-blog-game-strategies__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  min-width: 120px;
}

.page-blog-game-strategies__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-game-strategies__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image to make text readable */
  display: block;
}

.page-blog-game-strategies__section-title {
  font-size: 2.5em;
  color: #000080; /* Dark blue */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-blog-game-strategies__introduction-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

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

.page-blog-game-strategies__strategy-section {
  padding: 80px 0;
}

.page-blog-game-strategies__strategy-section--slots {
  background-color: #eef2f6;
}

.page-blog-game-strategies__strategy-section--live-casino {
  background-color: #f8f8f8;
}

.page-blog-game-strategies__strategy-section--poker {
  background-color: #eef2f6;
}

.page-blog-game-strategies__content-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.page-blog-game-strategies__content-block--reversed {
  flex-direction: row-reverse;
}

.page-blog-game-strategies__image {
  flex: 1;
  min-width: 200px; /* Enforce minimum image width */
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.page-blog-game-strategies__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.page-blog-game-strategies__image img:hover {
  transform: scale(1.03);
}

.page-blog-game-strategies__text-content {
  flex: 1.5;
}

.page-blog-game-strategies__sub-title {
  font-size: 1.8em;
  color: #000080;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-game-strategies__sub-title:first-of-type {
  margin-top: 0;
}

.page-blog-game-strategies__general-tips-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

.page-blog-game-strategies__tip-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-game-strategies__tip-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-blog-game-strategies__tip-icon {
  width: 100%; /* Ensure images are not tiny icons */
  max-width: 250px; /* Constrain size within card */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-game-strategies__tip-title {
  font-size: 1.5em;
  color: #000080;
  margin-bottom: 15px;
}

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

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

.page-blog-game-strategies__cta-section .page-blog-game-strategies__section-title::after {
  background-color: #FFD700;
}

.page-blog-game-strategies__cta-section .page-blog-game-strategies__paragraph {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

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

.page-blog-game-strategies__related-articles {
  padding: 80px 0;
  background-color: #eef2f6;
}

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

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

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

.page-blog-game-strategies__article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-blog-game-strategies__article-title {
  font-size: 1.4em;
  color: #000080;
  padding: 20px 20px 10px;
  margin: 0;
  flex-grow: 1;
}

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

.page-blog-game-strategies__article-title a:hover {
  color: #FFD700;
}

.page-blog-game-strategies__article-excerpt {
  font-size: 0.95em;
  color: #555555;
  padding: 0 20px 15px;
}

.page-blog-game-strategies__read-more {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  padding: 0 20px 20px;
  transition: color 0.3s ease;
}

.page-blog-game-strategies__read-more:hover {
  color: #000080;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-blog-game-strategies__hero-title {
    font-size: 2.5em;
  }
  .page-blog-game-strategies__hero-description {
    font-size: 1.1em;
  }
  .page-blog-game-strategies__section-title {
    font-size: 2em;
  }
  .page-blog-game-strategies__content-block {
    flex-direction: column;
    text-align: center;
  }
  .page-blog-game-strategies__content-block--reversed {
    flex-direction: column;
  }
  .page-blog-game-strategies__image--left,
  .page-blog-game-strategies__image--right {
    order: -1; /* Image appears above text on smaller screens */
    margin-bottom: 30px;
  }
  .page-blog-game-strategies__text-content {
    text-align: center;
  }
  .page-blog-game-strategies__sub-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-blog-game-strategies__hero-title {
    font-size: 2em;
  }
  .page-blog-game-strategies__hero-description {
    font-size: 1em;
  }
  .page-blog-game-strategies__hero-cta {
    flex-direction: column;
  }
  .page-blog-game-strategies__button {
    width: 100%;
    max-width: 300px;
  }
  .page-blog-game-strategies__section-title {
    font-size: 1.8em;
  }
  .page-blog-game-strategies__paragraph {
    font-size: 1em;
  }
  .page-blog-game-strategies__tip-list {
    grid-template-columns: 1fr;
  }
  /* Mobile content image constraint */
  .page-blog-game-strategies img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-blog-game-strategies__hero-title {
    font-size: 1.8em;
  }
  .page-blog-game-strategies__hero-description {
    font-size: 0.9em;
  }
  .page-blog-game-strategies__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-blog-game-strategies__section-title {
    font-size: 1.5em;
  }
  .page-blog-game-strategies__sub-title {
    font-size: 1.4em;
  }
  .page-blog-game-strategies__tip-item {
    padding: 20px;
  }
  .page-blog-game-strategies__article-title {
    font-size: 1.2em;
  }
  .page-blog-game-strategies__articles-grid {
    grid-template-columns: 1fr;
  }
}