/* style/resources-wk777-game-strategies.css */

.page-resources-wk777-game-strategies {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF; /* Ensure consistency with body background */
  padding-top: var(--header-offset, 120px); /* Space for fixed header */
}

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

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

.page-resources-wk777-game-strategies__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

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

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

.page-resources-wk777-game-strategies__button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-resources-wk777-game-strategies__button--primary {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-resources-wk777-game-strategies__button--primary:hover {
  background-color: #E0A83D;
  border-color: #E0A83D;
}

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

.page-resources-wk777-game-strategies__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.page-resources-wk777-game-strategies__button--inline {
  background-color: #000000;
  color: #FFFFFF;
  border: 1px solid #000000;
  padding: 8px 15px;
  font-size: 0.9em;
  margin-top: 15px;
  border-radius: 5px;
}

.page-resources-wk777-game-strategies__button--inline:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-resources-wk777-game-strategies__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-resources-wk777-game-strategies__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Overlay effect */
  display: block;
}

.page-resources-wk777-game-strategies__content-area {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-resources-wk777-game-strategies__article {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-wk777-game-strategies__section-title {
  font-size: 2.2em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
}

.page-resources-wk777-game-strategies__sub-section-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-resources-wk777-game-strategies__paragraph {
  margin-bottom: 1.5em;
  font-size: 1.05em;
  line-height: 1.7;
}

.page-resources-wk777-game-strategies__figure {
  margin: 30px 0;
  text-align: center;
}

.page-resources-wk777-game-strategies__figure img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}

.page-resources-wk777-game-strategies__figcaption {
  font-style: italic;
  font-size: 0.9em;
  color: #666666;
  margin-top: 10px;
}

.page-resources-wk777-game-strategies__list {
  list-style: disc inside;
  margin-bottom: 1.5em;
  padding-left: 20px;
}

.page-resources-wk777-game-strategies__list-item {
  margin-bottom: 0.8em;
  font-size: 1.05em;
}

.page-resources-wk777-game-strategies__call-to-action {
  text-align: center;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

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

@media (max-width: 768px) {
  .page-resources-wk777-game-strategies__hero-title {
    font-size: 2.5em;
  }

  .page-resources-wk777-game-strategies__hero-description {
    font-size: 1.1em;
  }

  .page-resources-wk777-game-strategies__hero-actions {
    flex-direction: column;
  }

  .page-resources-wk777-game-strategies__button {
    width: 100%;
  }

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

  .page-resources-wk777-game-strategies__sub-section-title {
    font-size: 1.5em;
  }

  .page-resources-wk777-game-strategies__paragraph,
  .page-resources-wk777-game-strategies__list-item {
    font-size: 1em;
  }

  .page-resources-wk777-game-strategies__content-area,
  .page-resources-wk777-game-strategies__article {
    padding: 20px;
  }

  .page-resources-wk777-game-strategies__hero-section {
    padding: 60px 20px;
  }

  /* Mobile image overflow prevention */
  .page-resources-wk777-game-strategies img {
    max-width: 100%;
    height: auto;
  }
  .page-resources-wk777-game-strategies {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-resources-wk777-game-strategies__hero-title {
    font-size: 2em;
  }

  .page-resources-wk777-game-strategies__hero-description {
    font-size: 0.95em;
  }

  .page-resources-wk777-game-strategies__section-title {
    font-size: 1.5em;
  }

  .page-resources-wk777-game-strategies__sub-section-title {
    font-size: 1.3em;
  }

  .page-resources-wk777-game-strategies__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}