/* style/blog-game-strategies-tips.css */

.page-blog-game-strategies-tips {
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF;
}

.page-blog-game-strategies-tips__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  padding-bottom: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Prevent image overflow */
}

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

.page-blog-game-strategies-tips__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability, not color change */
}

.page-blog-game-strategies-tips__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-game-strategies-tips__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-blog-game-strategies-tips__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-blog-game-strategies-tips__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-blog-game-strategies-tips__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-blog-game-strategies-tips__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-blog-game-strategies-tips__button--register:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-blog-game-strategies-tips__button--login {
  background-color: #FCBC45;
  color: #000000;
}

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

.page-blog-game-strategies-tips__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.8;
}

.page-blog-game-strategies-tips__article {
  margin-bottom: 60px;
}

.page-blog-game-strategies-tips__article-heading {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-game-strategies-tips__article-heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

.page-blog-game-strategies-tips__article-subheading {
  font-size: 1.8em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 15px;
  border-left: 5px solid #FCBC45;
  padding-left: 15px;
}

.page-blog-game-strategies-tips__article-paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-blog-game-strategies-tips__list {
  list-style-type: disc;
  margin-left: 30px;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-blog-game-strategies-tips__list-item {
  margin-bottom: 10px;
}

.page-blog-game-strategies-tips__image-container {
  margin: 40px auto;
  text-align: center;
}

.page-blog-game-strategies-tips__article-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-blog-game-strategies-tips__call-to-action {
  text-align: center;
  margin-top: 50px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-blog-game-strategies-tips__button--register-large {
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 10px;
}

.page-blog-game-strategies-tips__button--register-large:hover {
  background-color: #e0a53b;
  transform: translateY(-3px);
}

.page-blog-game-strategies-tips__button--promo {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #FCBC45;
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 10px;
}

.page-blog-game-strategies-tips__button--promo:hover {
  background-color: #1a1a1a;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-game-strategies-tips__hero-title {
    font-size: 3em;
  }
  .page-blog-game-strategies-tips__hero-description {
    font-size: 1.2em;
  }
  .page-blog-game-strategies-tips__article-heading {
    font-size: 2em;
  }
  .page-blog-game-strategies-tips__article-subheading {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-blog-game-strategies-tips__hero-section {
    padding-bottom: 40px;
  }
  .page-blog-game-strategies-tips__hero-content {
    padding: 30px 15px;
  }
  .page-blog-game-strategies-tips__hero-title {
    font-size: 2.2em;
  }
  .page-blog-game-strategies-tips__hero-description {
    font-size: 1em;
  }
  .page-blog-game-strategies-tips__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-game-strategies-tips__button {
    width: 80%;
    padding: 12px 20px;
  }
  .page-blog-game-strategies-tips__content-area {
    padding: 30px 15px;
  }
  .page-blog-game-strategies-tips__article-heading {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-blog-game-strategies-tips__article-subheading {
    font-size: 1.3em;
    margin-top: 30px;
  }
  .page-blog-game-strategies-tips__article-paragraph,
  .page-blog-game-strategies-tips__list {
    font-size: 0.95em;
  }
  .page-blog-game-strategies-tips__article-image {
    max-width: 100%;
    height: auto;
  }
  .page-blog-game-strategies-tips__call-to-action {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-game-strategies-tips__button--register-large,
  .page-blog-game-strategies-tips__button--promo {
    width: 90%;
    padding: 15px 30px;
    font-size: 1.1em;
  }

  /* Ensure all content images do not cause horizontal scroll */
  .page-blog-game-strategies-tips__content-area img {
    max-width: 100%;
    height: auto;
  }
  .page-blog-game-strategies-tips {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-blog-game-strategies-tips__hero-title {
    font-size: 1.8em;
  }
  .page-blog-game-strategies-tips__hero-description {
    font-size: 0.9em;
  }
  .page-blog-game-strategies-tips__button {
    width: 95%;
  }
  .page-blog-game-strategies-tips__article-heading {
    font-size: 1.5em;
  }
  .page-blog-game-strategies-tips__article-subheading {
    font-size: 1.2em;
  }
  .page-blog-game-strategies-tips__button--register-large,
  .page-blog-game-strategies-tips__button--promo {
    width: 100%;
  }
}