.page-game-strategies-tips {
  color: #333333; /* Default text color for light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #FFFFFF;
}

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

/* Hero Section */
.page-game-strategies-tips__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  min-height: 500px;
  justify-content: center;
}

.page-game-strategies-tips__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-game-strategies-tips__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-game-strategies-tips__hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
  max-width: 800px;
  margin: 20px;
}

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

.page-game-strategies-tips__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-game-strategies-tips__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for primary CTA */
  color: #000000; /* Black text for contrast */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-game-strategies-tips__hero-button:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

/* Introduction Section */
.page-game-strategies-tips__introduction {
  padding: 60px 0;
  background-color: #F8F8F8;
  text-align: center;
}

.page-game-strategies-tips__section-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 30px;
  text-align: center;
}

.page-game-strategies-tips__text-content {
  font-size: 1.1em;
  color: #333333;
  max-width: 900px;
  margin: 0 auto 40px auto;
  text-align: left;
}

/* Strategy Sections */
.page-game-strategies-tips__strategy-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-game-strategies-tips__strategy-section--dark {
  background-color: #000000;
  color: #FFFFFF;
}

.page-game-strategies-tips__strategy-section--dark .page-game-strategies-tips__section-title,
.page-game-strategies-tips__strategy-section--dark .page-game-strategies-tips__card-title {
  color: #FFFFFF;
}

.page-game-strategies-tips__strategy-section--dark .page-game-strategies-tips__card-text {
  color: #F0F0F0;
}

.page-game-strategies-tips__strategy-section .page-game-strategies-tips__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-items: center;
}

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

.page-game-strategies-tips__strategy-section--dark .page-game-strategies-tips__strategy-card {
  background-color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

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

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

.page-game-strategies-tips__card-title {
  font-size: 1.5em;
  color: #000000;
  margin: 20px 20px 10px 20px;
}

.page-game-strategies-tips__strategy-section--dark .page-game-strategies-tips__card-title {
  color: #FFFFFF;
}

.page-game-strategies-tips__card-text {
  font-size: 1em;
  color: #555555;
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-game-strategies-tips__cta-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
}

.page-game-strategies-tips__cta-button:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

/* Responsible Gaming Section */
.page-game-strategies-tips__responsible-gaming {
  padding: 80px 0;
  background-color: #F0F0F0;
  text-align: center;
}

.page-game-strategies-tips__responsible-gaming .page-game-strategies-tips__text-content {
  text-align: center;
  margin-bottom: 30px;
}

.page-game-strategies-tips__cta-button--primary {
  background-color: #FCBC45;
  color: #000000;
  margin-right: 15px;
}

.page-game-strategies-tips__cta-button--secondary {
  background-color: #000000; /* Register color as secondary */
  color: #FFFFFF;
}

.page-game-strategies-tips__cta-button--secondary:hover {
  background-color: #333333;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-strategies-tips__hero-title {
    font-size: 3em;
  }

  .page-game-strategies-tips__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-game-strategies-tips__hero-section {
    padding-top: var(--header-offset, 120px); /* Still needs offset for mobile */
    padding: 40px 15px;
    min-height: 400px;
  }

  .page-game-strategies-tips__hero-title {
    font-size: 2.5em;
  }

  .page-game-strategies-tips__hero-description {
    font-size: 1em;
  }

  .page-game-strategies-tips__hero-content {
    padding: 20px 15px;
    margin: 10px;
  }

  .page-game-strategies-tips__section-title {
    font-size: 1.8em;
  }

  .page-game-strategies-tips__text-content {
    font-size: 1em;
    padding: 0 15px;
  }

  .page-game-strategies-tips__strategy-section .page-game-strategies-tips__container {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .page-game-strategies-tips__strategy-card {
    margin-bottom: 20px;
  }

  .page-game-strategies-tips__cta-button--primary,
  .page-game-strategies-tips__cta-button--secondary {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
  }

  /* Ensure images in content area are responsive and not smaller than 200px */
  .page-game-strategies-tips img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum display size */
    min-height: 200px; /* Enforce minimum display size */
  }
  .page-game-strategies-tips__hero-image {
    min-width: auto; /* Hero image can scale down more */
    min-height: auto;
  }
  .page-game-strategies-tips__strategy-image {
    height: auto; /* Allow auto height for responsive scaling */
    min-height: 200px; /* Ensure strategy images are not too small */
  }
}