.page-resources-game-guides-tips {
  color: #333333; /* Default text color for light body background */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
}

.page-resources-game-guides-tips__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0d0d0d; /* Dark background to complement gold/red */
  padding-top: var(--header-offset, 120px); /* Ensure header offset */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-resources-game-guides-tips__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.page-resources-game-guides-tips__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-resources-game-guides-tips__main-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold primary color */
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  line-height: 1.2;
}

.page-resources-game-guides-tips__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-resources-game-guides-tips__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-game-guides-tips__button--primary {
  background-color: #FFD700; /* Gold primary color */
  color: #8B0000; /* Dark red text for contrast */
  border: 2px solid #FFD700;
}

.page-resources-game-guides-tips__button--primary:hover {
  background-color: #e0b800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-game-guides-tips__button--secondary {
  background-color: #8B0000; /* Dark red auxiliary color */
  color: #FFD700; /* Gold text for contrast */
  border: 2px solid #8B0000;
}

.page-resources-game-guides-tips__button--secondary:hover {
  background-color: #6a0000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-game-guides-tips__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  gap: 40px;
}

.page-resources-game-guides-tips__article-nav {
  flex: 0 0 280px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: calc(var(--header-offset, 120px) + 20px); /* Stick below header */
  align-self: flex-start;
}

.page-resources-game-guides-tips__nav-title {
  font-size: 1.8em;
  color: #8B0000; /* Dark red */
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-resources-game-guides-tips__nav-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-resources-game-guides-tips__nav-list li {
  margin-bottom: 10px;
}

.page-resources-game-guides-tips__nav-link {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  display: block;
  padding: 8px 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources-game-guides-tips__nav-link:hover,
.page-resources-game-guides-tips__nav-link--active {
  background-color: #FFD700;
  color: #8B0000;
}

.page-resources-game-guides-tips__back-link {
  display: inline-block;
  margin-top: 20px;
  color: #8B0000;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-game-guides-tips__back-link:hover {
  text-decoration: underline;
}

.page-resources-game-guides-tips__article-content {
  flex: 1;
  max-width: 800px; /* Content width control */
}

.page-resources-game-guides-tips__article-heading {
  font-size: 2.5em;
  color: #8B0000;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 15px;
}

.page-resources-game-guides-tips__sub-heading {
  font-size: 2em;
  color: #8B0000;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-resources-game-guides-tips__article-content p {
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.7;
}

.page-resources-game-guides-tips__article-image {
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 100%; /* Ensure images are responsive */
  height: auto;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-resources-game-guides-tips__call-to-action {
  text-align: center;
  background-color: #f9f9f9;
  border: 1px solid #FFD700;
  border-radius: 10px;
  padding: 40px;
  margin-top: 60px;
}

.page-resources-game-guides-tips__cta-title {
  font-size: 2.2em;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-resources-game-guides-tips__cta-text {
  font-size: 1.1em;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-game-guides-tips__hero-content {
    padding: 30px;
  }
  .page-resources-game-guides-tips__main-title {
    font-size: 2.8em;
  }
  .page-resources-game-guides-tips__intro-text {
    font-size: 1.1em;
  }
  .page-resources-game-guides-tips__content-area {
    flex-direction: column;
    gap: 20px;
  }
  .page-resources-game-guides-tips__article-nav {
    position: static;
    width: 100%;
    flex: none;
  }
  .page-resources-game-guides-tips__article-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-resources-game-guides-tips__hero-section {
    min-height: 400px;
  }
  .page-resources-game-guides-tips__hero-content {
    padding: 20px;
  }
  .page-resources-game-guides-tips__main-title {
    font-size: 2em;
  }
  .page-resources-game-guides-tips__intro-text {
    font-size: 1em;
  }
  .page-resources-game-guides-tips__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-game-guides-tips__button {
    width: 100%;
    max-width: 300px;
  }
  .page-resources-game-guides-tips__article-heading {
    font-size: 2em;
  }
  .page-resources-game-guides-tips__sub-heading {
    font-size: 1.5em;
  }
  .page-resources-game-guides-tips__article-content p {
    font-size: 1em;
  }
  /* Mobile content image constraint */
  .page-resources-game-guides-tips img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min size even on mobile */
    min-height: 200px;
  }
  .page-resources-game-guides-tips__content-area {
    padding: 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-game-guides-tips__main-title {
    font-size: 1.8em;
  }
  .page-resources-game-guides-tips__article-heading {
    font-size: 1.8em;
  }
  .page-resources-game-guides-tips__sub-heading {
    font-size: 1.3em;
  }
}