.page-gaming-guides-strategies {
  color: #FFF6D6;
  background-color: #0A0A0A;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding for first section */
}

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

.page-gaming-guides-strategies__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  background-color: #111111;
  border-bottom: 1px solid #3A2A12;
}

.page-gaming-guides-strategies__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Constrain image height */
  overflow: hidden;
}

.page-gaming-guides-strategies__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Ensure minimum size */
}

.page-gaming-guides-strategies__hero-content {
  padding: 20px;
  max-width: 900px;
}

.page-gaming-guides-strategies__hero-content h1 {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: bold;
  line-height: 1.2;
  color: #F2C14E;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.page-gaming-guides-strategies__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #E5E5E5;
}

.page-gaming-guides-strategies__hero-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.page-gaming-guides-strategies__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  min-width: 200px; /* Ensure buttons are not too small */
  text-align: center;
  border: none;
  cursor: pointer;
  color: #0A0A0A;
}

.page-gaming-guides-strategies__button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
}

.page-gaming-guides-strategies__button--primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-gaming-guides-strategies__button--secondary {
  background-color: #111111;
  color: #F2C14E;
  border: 2px solid #F2C14E;
}

.page-gaming-guides-strategies__button--secondary:hover {
  background-color: #F2C14E;
  color: #111111;
  transform: translateY(-2px);
}

.page-gaming-guides-strategies__button--center {
  margin-top: 30px;
}

.page-gaming-guides-strategies__section-title {
  font-size: 2.2em;
  color: #F2C14E;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 40px;
}

.page-gaming-guides-strategies__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #E5E5E5;
}

.page-gaming-guides-strategies__introduction-section,
.page-gaming-guides-strategies__game-guides-section,
.page-gaming-guides-strategies__tips-section,
.page-gaming-guides-strategies__faq-section,
.page-gaming-guides-strategies__cta-section {
  padding: 40px 0;
  background-color: #0A0A0A;
}

.page-gaming-guides-strategies__introduction-section {
  border-bottom: 1px solid #3A2A12;
}

.page-gaming-guides-strategies__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-gaming-guides-strategies__feature-card {
  background-color: #111111;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
}

.page-gaming-guides-strategies__feature-icon {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
  min-height: 200px; /* Ensure minimum size */
  min-width: 200px;
}

.page-gaming-guides-strategies__feature-title {
  font-size: 1.5em;
  color: #FFD36B;
  margin-bottom: 10px;
}

.page-gaming-guides-strategies__feature-text {
  color: #CCC;
}

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

.page-gaming-guides-strategies__game-card {
  background-color: #111111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
  display: flex;
  flex-direction: column;
}

.page-gaming-guides-strategies__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  min-height: 200px; /* Ensure minimum size */
}

.page-gaming-guides-strategies__game-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-gaming-guides-strategies__game-title {
  font-size: 1.4em;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-gaming-guides-strategies__game-title a {
  color: #F2C14E;
  text-decoration: none;
}

.page-gaming-guides-strategies__game-title a:hover {
  text-decoration: underline;
}

.page-gaming-guides-strategies__game-description {
  color: #CCC;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-gaming-guides-strategies__read-more {
  color: #FFD36B;
  text-decoration: none;
  font-weight: bold;
  align-self: flex-start;
}

.page-gaming-guides-strategies__read-more:hover {
  text-decoration: underline;
}

.page-gaming-guides-strategies__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-gaming-guides-strategies__tip-item {
  background-color: #111111;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
}

.page-gaming-guides-strategies__tip-icon {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 15px;
  object-fit: contain;
  min-height: 200px; /* Ensure minimum size */
  min-width: 200px;
}

.page-gaming-guides-strategies__tip-title {
  font-size: 1.3em;
  color: #FFD36B;
  margin-bottom: 10px;
}

.page-gaming-guides-strategies__tip-text {
  color: #CCC;
}

.page-gaming-guides-strategies__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-gaming-guides-strategies__faq-item {
  background-color: #111111;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #3A2A12;
}

.page-gaming-guides-strategies__faq-question {
  font-size: 1.2em;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-gaming-guides-strategies__faq-answer {
  color: #E5E5E5;
  line-height: 1.5;
}

.page-gaming-guides-strategies__cta-section {
  text-align: center;
  padding: 50px 0;
  background-color: #111111;
  border-top: 1px solid #3A2A12;
}

.page-gaming-guides-strategies__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .page-gaming-guides-strategies__hero-content h1 {
    font-size: 2em;
  }

  .page-gaming-guides-strategies__hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .page-gaming-guides-strategies__button {
    width: 80%;
    max-width: 300px;
  }

  .page-gaming-guides-strategies__section-title {
    font-size: 1.8em;
  }

  .page-gaming-guides-strategies__features-grid,
  .page-gaming-guides-strategies__card-grid,
  .page-gaming-guides-strategies__tips-grid {
    grid-template-columns: 1fr;
  }

  .page-gaming-guides-strategies__feature-icon,
  .page-gaming-guides-strategies__tip-icon {
    max-width: 150px;
    min-width: 150px;
    height: auto;
  }

  .page-gaming-guides-strategies__cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .page-gaming-guides-strategies__hero-image,
  .page-gaming-guides-strategies__game-image,
  .page-gaming-guides-strategies__feature-icon,
  .page-gaming-guides-strategies__tip-icon {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
  }
}