.page-resources-okfun-app-game-strategies {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #FFFFFF;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-resources-okfun-app-game-strategies__hero-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 20px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.page-resources-okfun-app-game-strategies__hero-content {
  max-width: 800px;
  margin-bottom: 40px;
  z-index: 1;
}

.page-resources-okfun-app-game-strategies__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFFFF;
  line-height: 1.2;
}

.page-resources-okfun-app-game-strategies__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-resources-okfun-app-game-strategies__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-okfun-app-game-strategies__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  font-size: 1em;
  min-width: 200px; /* Ensure buttons are not too small */
}

.page-resources-okfun-app-game-strategies__button--primary {
  background-color: #FCBC45; /* Login color for primary action */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-resources-okfun-app-game-strategies__button--primary:hover {
  background-color: #e0a53a;
  transform: translateY(-2px);
}

.page-resources-okfun-app-game-strategies__button--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-resources-okfun-app-game-strategies__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.page-resources-okfun-app-game-strategies__button--large {
  padding: 18px 40px;
  font-size: 1.1em;
  min-width: 250px;
}

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

.page-resources-okfun-app-game-strategies__button--outline {
  background-color: transparent;
  color: #000000;
  border: 2px solid #000000;
}

.page-resources-okfun-app-game-strategies__button--outline:hover {
  background-color: #000000;
  color: #FFFFFF;
}

.page-resources-okfun-app-game-strategies__hero-image-container {
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
  position: relative;
  z-index: 0;
}

.page-resources-okfun-app-game-strategies__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-resources-okfun-app-game-strategies__content-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.page-resources-okfun-app-game-strategies__content-section--introduction {
  background-color: #f8f8f8;
}

.page-resources-okfun-app-game-strategies__container {
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-okfun-app-game-strategies__container--centered {
  text-align: center;
}

.page-resources-okfun-app-game-strategies__section-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.page-resources-okfun-app-game-strategies__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #FCBC45;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-resources-okfun-app-game-strategies__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #333333;
}

.page-resources-okfun-app-game-strategies__paragraph--small {
  font-size: 0.9em;
  color: #666666;
  margin-top: 20px;
}

.page-resources-okfun-app-game-strategies__paragraph a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-okfun-app-game-strategies__paragraph a:hover {
  text-decoration: underline;
}

.page-resources-okfun-app-game-strategies__game-strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-okfun-app-game-strategies__strategy-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-resources-okfun-app-game-strategies__strategy-card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-okfun-app-game-strategies__strategy-card-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 15px;
}

.page-resources-okfun-app-game-strategies__strategy-card-description {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources-okfun-app-game-strategies__tip-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.page-resources-okfun-app-game-strategies__tip-item {
  background-color: #fefefe;
  border-left: 5px solid #FCBC45;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.page-resources-okfun-app-game-strategies__tip-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

.page-resources-okfun-app-game-strategies__resource-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
}

.page-resources-okfun-app-game-strategies__resource-list li a {
  color: #FCBC45;
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-resources-okfun-app-game-strategies__resource-list li a:hover {
  color: #000000;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-okfun-app-game-strategies__hero-section {
    padding: 60px 15px 30px;
  }

  .page-resources-okfun-app-game-strategies__main-title {
    font-size: 2.2em;
  }

  .page-resources-okfun-app-game-strategies__hero-description {
    font-size: 1em;
  }

  .page-resources-okfun-app-game-strategies__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-okfun-app-game-strategies__button {
    width: 100%;
    max-width: 300px;
  }

  .page-resources-okfun-app-game-strategies__section-title {
    font-size: 1.8em;
  }

  .page-resources-okfun-app-game-strategies__paragraph {
    font-size: 1em;
  }

  .page-resources-okfun-app-game-strategies__game-strategy-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-okfun-app-game-strategies__strategy-card-image {
    height: 180px;
  }

  /* Mobile content area images must not overflow */
  .page-resources-okfun-app-game-strategies img {
    max-width: 100%;
    height: auto;
  }

  .page-resources-okfun-app-game-strategies__content-section {
    padding: 40px 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-okfun-app-game-strategies__main-title {
    font-size: 1.8em;
  }
}