.page-resources-game-guide {
  color: #ffffff; /* Default text color for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Body background handled by shared.css */
}

.page-resources-game-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  min-height: 600px;
  overflow: hidden;
  background-color: #000000; /* Auxiliary color for hero background */
}

.page-resources-game-guide__hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-resources-game-guide__hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken video for text readability */
}

.page-resources-game-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: #ffffff;
}

.page-resources-game-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FF0000; /* Main brand color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-game-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-game-guide__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-game-guide__section {
  padding: 60px 20px;
  background-color: #1a1a1a; /* Dark background for sections */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-game-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-resources-game-guide__section-title {
  font-size: 2.5em;
  color: #FF0000; /* Main brand color for section titles */
  text-align: center;
  margin-bottom: 40px;
}

.page-resources-game-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
  text-align: justify;
}

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

.page-resources-game-guide__image--full-width {
  width: 100%;
}

.page-resources-game-guide__image--centered {
  margin-left: auto;
  margin-right: auto;
}

.page-resources-game-guide__image--mobile-mockup {
  max-width: 400px;
  height: auto;
}

.page-resources-game-guide__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-game-guide__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-resources-game-guide__btn-primary,
.page-resources-game-guide__btn-secondary,
.page-resources-game-guide__card-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
}

.page-resources-game-guide__btn-primary {
  background-color: #FF0000; /* Main brand color */
  color: #ffffff;
  border: 2px solid #FF0000;
}

.page-resources-game-guide__btn-primary:hover {
  background-color: #cc0000;
  border-color: #cc0000;
  transform: translateY(-2px);
}

.page-resources-game-guide__btn-secondary {
  background-color: transparent;
  color: #FF0000; /* Main brand color */
  border: 2px solid #FF0000;
}

.page-resources-game-guide__btn-secondary:hover {
  background-color: #FF0000;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-resources-game-guide__card-button {
  background-color: #FF0000; /* Main brand color */
  color: #ffffff;
  border: none;
  width: 100%;
  max-width: 200px;
  margin-top: 20px;
}

.page-resources-game-guide__card-button:hover {
  background-color: #cc0000;
}

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

.page-resources-game-guide__game-card {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter dark background */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

.page-resources-game-guide__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #FF0000; /* Main brand color */
}

.page-resources-game-guide__card-title a {
  color: #FF0000;
  text-decoration: none;
}

.page-resources-game-guide__card-title a:hover {
  text-decoration: underline;
}

.page-resources-game-guide__card-description {
  font-size: 1em;
  color: #cccccc;
  flex-grow: 1;
}

.page-resources-game-guide__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-game-guide__step-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-resources-game-guide__step-title {
  font-size: 1.8em;
  color: #FF0000; /* Main brand color */
  margin-bottom: 20px;
}

.page-resources-game-guide__step-item p {
  color: #cccccc;
  margin-bottom: 25px;
}

.page-resources-game-guide__mobile-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.page-resources-game-guide__mobile-text {
  max-width: 500px;
  text-align: left;
}

.page-resources-game-guide__mobile-text p {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-resources-game-guide__contact-methods {
  list-style: none;
  padding: 0;
  text-align: center;
  margin-top: 30px;
}

.page-resources-game-guide__contact-methods .page-resources-game-guide__list-item {
  font-size: 1.2em;
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-resources-game-guide__faq-list {
  margin-top: 40px;
}

.page-resources-game-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.page-resources-game-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FF0000; /* Main brand color */
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.08);
  transition: background-color 0.3s ease;
}

.page-resources-game-guide__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.page-resources-game-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-game-guide__faq-item.active .page-resources-game-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-game-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: #cccccc;
  background-color: rgba(255, 255, 255, 0.03);
}

.page-resources-game-guide__faq-item.active .page-resources-game-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px;
}

.page-resources-game-guide__faq-answer p {
  margin: 0;
}

.page-resources-game-guide__cta-final {
  padding: 80px 20px;
  text-align: center;
}

.page-resources-game-guide__cta-final .page-resources-game-guide__dark-bg {
  background-color: #000000; /* Auxiliary color for CTA background */
  padding: 60px 30px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
}

.page-resources-game-guide__cta-final .page-resources-game-guide__section-title {
  color: #FF0000; /* Main brand color */
  margin-bottom: 25px;
}

.page-resources-game-guide__cta-final .page-resources-game-guide__text-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.page-resources-game-guide__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

  .page-resources-game-guide__hero-description {
    font-size: 1.2em;
  }

  .page-resources-game-guide__section-title {
    font-size: 2em;
  }

  .page-resources-game-guide__game-card {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .page-resources-game-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-game-guide__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
    min-height: 450px;
  }

  .page-resources-game-guide__hero-title {
    font-size: 2.2em;
  }

  .page-resources-game-guide__hero-description {
    font-size: 1em;
  }

  .page-resources-game-guide__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-game-guide__btn-primary,
  .page-resources-game-guide__btn-secondary,
  .page-resources-game-guide__card-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-resources-game-guide__section {
    padding: 40px 15px;
  }

  .page-resources-game-guide__container {
    padding: 0;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-resources-game-guide__text-block,
  .page-resources-game-guide__list-item,
  .page-resources-game-guide__card-description,
  .page-resources-game-guide__step-item p {
    font-size: 0.95em;
  }

  .page-resources-game-guide__image,
  .page-resources-game-guide__hero-video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-resources-game-guide__game-grid,
  .page-resources-game-guide__step-by-step {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-game-guide__game-card {
    padding: 20px;
  }

  .page-resources-game-guide__card-image {
    height: 180px; /* Adjust height for mobile cards */
    min-width: 200px;
    min-height: 180px;
  }

  .page-resources-game-guide__mobile-cta {
    flex-direction: column;
    gap: 20px;
  }

  .page-resources-game-guide__mobile-text {
    text-align: center;
    width: 100%;
  }

  .page-resources-game-guide__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-resources-game-guide__faq-answer {
    padding: 15px;
  }

  .page-resources-game-guide__cta-final .page-resources-game-guide__dark-bg {
    padding: 40px 20px;
  }

  .page-resources-game-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}