/* style/resources-tg7775-game-strategy.css */
.page-resources-tg7775-game-strategy {
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF; /* Explicitly set for content area */
  line-height: 1.6;
  font-family: Arial, sans-serif;
  padding-top: var(--header-offset, 120px); /* For desktop fixed header */
}

.page-resources-tg7775-game-strategy__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-resources-tg7775-game-strategy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-tg7775-game-strategy__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

.page-resources-tg7775-game-strategy__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45;
  line-height: 1.2;
}

.page-resources-tg7775-game-strategy__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-resources-tg7775-game-strategy__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

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

.page-resources-tg7775-game-strategy__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-resources-tg7775-game-strategy__button--register:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

.page-resources-tg7775-game-strategy__button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-resources-tg7775-game-strategy__button--login:hover {
  background-color: #e6a73c;
  transform: translateY(-2px);
}

.page-resources-tg7775-game-strategy__article-content {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.page-resources-tg7775-game-strategy__content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-tg7775-game-strategy__back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
}

.page-resources-tg7775-game-strategy__back-link:hover {
  text-decoration: underline;
  color: #FCBC45;
}

.page-resources-tg7775-game-strategy__section-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 25px;
  text-align: center;
}

.page-resources-tg7775-game-strategy__sub-section-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-resources-tg7775-game-strategy__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-resources-tg7775-game-strategy__image {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-resources-tg7775-game-strategy__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-resources-tg7775-game-strategy__list-item {
  margin-bottom: 10px;
}

.page-resources-tg7775-game-strategy__blockquote {
  background-color: #f9f9f9;
  border-left: 5px solid #FCBC45;
  padding: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #555555;
  font-size: 1.1em;
  border-radius: 4px;
}

.page-resources-tg7775-game-strategy__call-to-action {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #000000;
  border-radius: 10px;
  color: #FFFFFF;
}

.page-resources-tg7775-game-strategy__cta-text {
  font-size: 1.8em;
  margin-bottom: 25px;
  color: #FCBC45;
  font-weight: bold;
}

.page-resources-tg7775-game-strategy__button--play-now {
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-resources-tg7775-game-strategy__button--play-now:hover {
  background-color: #e6a73c;
  transform: translateY(-3px);
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-resources-tg7775-game-strategy__hero-title {
    font-size: 2.8em;
  }
  .page-resources-tg7775-game-strategy__hero-description {
    font-size: 1.1em;
  }
  .page-resources-tg7775-game-strategy__section-title {
    font-size: 2em;
  }
  .page-resources-tg7775-game-strategy__sub-section-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-resources-tg7775-game-strategy {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
  }
  .page-resources-tg7775-game-strategy__hero-section {
    min-height: 400px;
  }
  .page-resources-tg7775-game-strategy__hero-content {
    padding: 30px 15px;
  }
  .page-resources-tg7775-game-strategy__hero-title {
    font-size: 2em;
  }
  .page-resources-tg7775-game-strategy__hero-description {
    font-size: 1em;
  }
  .page-resources-tg7775-game-strategy__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-tg7775-game-strategy__button {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
  .page-resources-tg7775-game-strategy__article-content {
    padding: 40px 15px;
  }
  .page-resources-tg7775-game-strategy__section-title {
    font-size: 1.8em;
  }
  .page-resources-tg7775-game-strategy__sub-section-title {
    font-size: 1.4em;
  }
  .page-resources-tg7775-game-strategy__paragraph,
  .page-resources-tg7775-game-strategy__list-item,
  .page-resources-tg7775-game-strategy__blockquote {
    font-size: 1em;
  }
  /* Content area images must not overflow */
  .page-resources-tg7775-game-strategy img {
    max-width: 100%;
    height: auto;
  }
  .page-resources-tg7775-game-strategy__cta-text {
    font-size: 1.5em;
  }
}

@media (max-width: 480px) {
  .page-resources-tg7775-game-strategy__hero-title {
    font-size: 1.8em;
  }
  .page-resources-tg7775-game-strategy__section-title {
    font-size: 1.6em;
  }
  .page-resources-tg7775-game-strategy__sub-section-title {
    font-size: 1.2em;
  }
  .page-resources-tg7775-game-strategy__cta-text {
    font-size: 1.3em;
  }
}