.page-game-strategy-guides {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
}

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

.page-game-strategy-guides__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000;
  padding: 0;
  text-align: center;
}

.page-game-strategy-guides__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.7;
  filter: brightness(0.7); /* Subtle darkening for text readability, not color change */
}

.page-game-strategy-guides__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: #FFFFFF;
  max-width: 90%;
}

.page-game-strategy-guides__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-game-strategy-guides__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFFFFF;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.page-game-strategy-guides__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.page-game-strategy-guides__button--register {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-game-strategy-guides__button--register:hover {
  background-color: #FFFFFF;
  color: #000000;
  transform: translateY(-3px);
}

.page-game-strategy-guides__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-game-strategy-guides__button--login:hover {
  background-color: #e0a83c;
  color: #FFFFFF;
  transform: translateY(-3px);
}

.page-game-strategy-guides__intro-section,
.page-game-strategy-guides__strategies-section,
.page-game-strategy-guides__cta-section {
  padding: 60px 0;
}

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

.page-game-strategy-guides__section-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  color: #333333;
}

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

.page-game-strategy-guides__strategy-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #333333;
}

.page-game-strategy-guides__strategy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.page-game-strategy-guides__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-game-strategy-guides__card-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #000000;
}

.page-game-strategy-guides__card-text {
  font-size: 1em;
  color: #555555;
  flex-grow: 1;
}

.page-game-strategy-guides__button--explore {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.page-game-strategy-guides__button--explore:hover {
  background-color: #333333;
  transform: translateY(-3px);
}

.page-game-strategy-guides__strategies-section--dark {
  background-color: #000000;
}

.page-game-strategy-guides__section-title--light {
  color: #FFFFFF;
}

.page-game-strategy-guides__section-text--light {
  color: #f0f0f0;
}

.page-game-strategy-guides__strategy-card--dark {
  background-color: #1a1a1a;
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.05);
}

.page-game-strategy-guides__card-title--light {
  color: #FCBC45;
}

.page-game-strategy-guides__card-text--light {
  color: #cccccc;
}

.page-game-strategy-guides__responsible-gaming-section {
  background-color: #000000;
  padding: 80px 0;
  text-align: center;
}

.page-game-strategy-guides__responsible-gaming-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.page-game-strategy-guides__responsible-gaming-image {
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  display: block;
}

.page-game-strategy-guides__responsible-gaming-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  max-width: 600px;
}

.page-game-strategy-guides__responsible-gaming-item {
  background-color: #1a1a1a;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  color: #f0f0f0;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
}

.page-game-strategy-guides__item-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #FCBC45;
}

.page-game-strategy-guides__item-text {
  font-size: 1em;
  color: #cccccc;
}

.page-game-strategy-guides__cta-section {
  background-color: #FCBC45;
  color: #000000;
  text-align: center;
  padding: 80px 20px;
}

.page-game-strategy-guides__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #000000;
}

.page-game-strategy-guides__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #333333;
}

.page-game-strategy-guides__button--join-now {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-game-strategy-guides__button--join-now:hover {
  background-color: #333333;
  border-color: #333333;
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-strategy-guides__hero-title {
    font-size: 3em;
  }
  .page-game-strategy-guides__hero-description {
    font-size: 1.1em;
  }
  .page-game-strategy-guides__section-title {
    font-size: 2em;
  }
  .page-game-strategy-guides__card-title {
    font-size: 1.4em;
  }
  .page-game-strategy-guides__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-game-strategy-guides__hero-title {
    font-size: 2.5em;
  }
  .page-game-strategy-guides__hero-description {
    font-size: 1em;
  }
  .page-game-strategy-guides__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-strategy-guides__button {
    width: 80%;
  }
  .page-game-strategy-guides__strategy-grid {
    grid-template-columns: 1fr;
  }
  .page-game-strategy-guides__section-title {
    font-size: 1.8em;
  }
  .page-game-strategy-guides__section-text {
    margin-bottom: 40px;
  }
  .page-game-strategy-guides__responsible-gaming-content {
    flex-direction: column;
  }
  .page-game-strategy-guides__responsible-gaming-image {
    max-width: 100%;
  }
  .page-game-strategy-guides__responsible-gaming-list {
    max-width: 100%;
  }
  .page-game-strategy-guides__cta-title {
    font-size: 2em;
  }
  .page-game-strategy-guides__cta-description {
    font-size: 1em;
  }
  /* Ensure all content images are responsive and do not overflow */
  .page-game-strategy-guides img {
    max-width: 100%;
    height: auto;
  }
  .page-game-strategy-guides__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-game-strategy-guides__card-image {
    max-width: 100%;
    height: auto;
  }
  .page-game-strategy-guides__responsible-gaming-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-game-strategy-guides__hero-title {
    font-size: 2em;
  }
  .page-game-strategy-guides__hero-description {
    font-size: 0.9em;
  }
  .page-game-strategy-guides__section-title {
    font-size: 1.5em;
  }
  .page-game-strategy-guides__card-title {
    font-size: 1.2em;
  }
  .page-game-strategy-guides__button {
    width: 90%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-game-strategy-guides__cta-title {
    font-size: 1.8em;
  }
  .page-game-strategy-guides__cta-description {
    font-size: 0.9em;
  }
}