.page-resources-23wim-net-game-guides {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #1a1a2e; /* Inherited from body, but explicitly set for sections if needed */
}

.page-resources-23wim-net-game-guides__dark-bg {
  background-color: #1a1a2e;
  color: #ffffff;
}

.page-resources-23wim-net-game-guides__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-resources-23wim-net-game-guides__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  box-sizing: border-box;
}

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

.page-resources-23wim-net-game-guides__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-resources-23wim-net-game-guides__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
  color: #ffffff;
}

.page-resources-23wim-net-game-guides__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-resources-23wim-net-game-guides__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-23wim-net-game-guides__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-23wim-net-game-guides__btn-primary,
.page-resources-23wim-net-game-guides__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-resources-23wim-net-game-guides__btn-primary {
  background-color: #017439;
  color: #ffffff;
  border: 2px solid #017439;
}

.page-resources-23wim-net-game-guides__btn-primary:hover {
  background-color: #005a2e;
  border-color: #005a2e;
}

.page-resources-23wim-net-game-guides__btn-secondary {
  background-color: #ffffff;
  color: #017439;
  border: 2px solid #017439;
}

.page-resources-23wim-net-game-guides__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #005a2e;
  border-color: #005a2e;
}

.page-resources-23wim-net-game-guides__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-resources-23wim-net-game-guides__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  color: #017439;
}

.page-resources-23wim-net-game-guides__section-title--white {
  color: #ffffff;
}

.page-resources-23wim-net-game-guides__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
  color: #333333; /* For light background */
}

.page-resources-23wim-net-game-guides__text-block--white {
  color: #ffffff; /* For dark background */
}

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

.page-resources-23wim-net-game-guides__card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  color: #333333;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-23wim-net-game-guides__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-23wim-net-game-guides__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-resources-23wim-net-game-guides__card-title {
  font-size: 1.5em;
  padding: 20px 20px 10px;
  color: #017439;
}

.page-resources-23wim-net-game-guides__card-title a {
  color: #017439;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-23wim-net-game-guides__card-title a:hover {
  color: #005a2e;
  text-decoration: underline;
}

.page-resources-23wim-net-game-guides__card-description {
  font-size: 1em;
  padding: 0 20px 20px;
  color: #555555;
  flex-grow: 1;
}

.page-resources-23wim-net-game-guides__list {
  list-style-type: disc;
  margin-left: 20px;
  padding: 0;
  margin-bottom: 20px;
  color: #333333; /* For light background */
}

.page-resources-23wim-net-game-guides__list-item {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #333333; /* For light background */
}

.page-resources-23wim-net-game-guides__list-item strong {
  color: #017439;
}

.page-resources-23wim-net-game-guides__video-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #1a1a2e;
  color: #ffffff;
  box-sizing: border-box;
}

.page-resources-23wim-net-game-guides__video-content {
  max-width: 1000px;
  margin: 0 auto;
}

.page-resources-23wim-net-game-guides__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin-top: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-23wim-net-game-guides__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  cursor: pointer;
}

.page-resources-23wim-net-game-guides__video-caption {
  margin-top: 20px;
  font-style: italic;
  font-size: 0.95em;
  color: #f0f0f0;
}

.page-resources-23wim-net-game-guides__faq-list {
  margin-top: 40px;
}

.page-resources-23wim-net-game-guides__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-resources-23wim-net-game-guides__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  background-color: #ffffff;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-resources-23wim-net-game-guides__faq-question:hover {
  background-color: #f0f0f0;
}

.page-resources-23wim-net-game-guides__faq-question h3 {
  margin: 0;
  color: #017439;
  font-size: 1.1em;
}

.page-resources-23wim-net-game-guides__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #017439;
  transition: transform 0.3s ease;
}

.page-resources-23wim-net-game-guides__faq-item.active .page-resources-23wim-net-game-guides__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-23wim-net-game-guides__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555555;
}

.page-resources-23wim-net-game-guides__faq-item.active .page-resources-23wim-net-game-guides__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 15px 25px;
}

.page-resources-23wim-net-game-guides__faq-answer p {
  margin: 0;
  color: #555555;
}

.page-resources-23wim-net-game-guides__cta-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #017439;
  color: #ffffff;
  box-sizing: border-box;
}

.page-resources-23wim-net-game-guides__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-23wim-net-game-guides__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-resources-23wim-net-game-guides__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-resources-23wim-net-game-guides__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-resources-23wim-net-game-guides__hero-title {
    font-size: 2.8em;
  }
  .page-resources-23wim-net-game-guides__section-title {
    font-size: 2em;
  }
  .page-resources-23wim-net-game-guides__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-resources-23wim-net-game-guides__hero-section {
    height: 500px;
  }
  .page-resources-23wim-net-game-guides__hero-title {
    font-size: 2.2em;
  }
  .page-resources-23wim-net-game-guides__hero-description {
    font-size: 1em;
  }
  .page-resources-23wim-net-game-guides__content-area {
    padding: 40px 15px;
  }
  .page-resources-23wim-net-game-guides__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-resources-23wim-net-game-guides__text-block,
  .page-resources-23wim-net-game-guides__list-item,
  .page-resources-23wim-net-game-guides__card-description,
  .page-resources-23wim-net-game-guides__faq-answer p {
    font-size: 0.95em;
  }
  .page-resources-23wim-net-game-guides__card-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-23wim-net-game-guides__card-title {
    font-size: 1.3em;
  }
  .page-resources-23wim-net-game-guides__video-section,
  .page-resources-23wim-net-game-guides__cta-section {
    padding: 50px 15px;
  }
  .page-resources-23wim-net-game-guides__cta-title {
    font-size: 1.8em;
  }
  .page-resources-23wim-net-game-guides__cta-description {
    font-size: 1em;
  }
  .page-resources-23wim-net-game-guides__hero-cta-buttons,
  .page-resources-23wim-net-game-guides__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-23wim-net-game-guides__btn-primary,
  .page-resources-23wim-net-game-guides__btn-secondary {
    width: 100%;
    max-width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    text-align: center;
  }
  .page-resources-23wim-net-game-guides__faq-question h3 {
    font-size: 1em;
  }
  /* Mobile responsive for images, videos, and containers */
  .page-resources-23wim-net-game-guides img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-23wim-net-game-guides video,
  .page-resources-23wim-net-game-guides__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-23wim-net-game-guides__section,
  .page-resources-23wim-net-game-guides__card,
  .page-resources-23wim-net-game-guides__container,
  .page-resources-23wim-net-game-guides__video-section,
  .page-resources-23wim-net-game-guides__video-container,
  .page-resources-23wim-net-game-guides__video-wrapper,
  .page-resources-23wim-net-game-guides__cta-buttons,
  .page-resources-23wim-net-game-guides__button-group,
  .page-resources-23wim-net-game-guides__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-23wim-net-game-guides__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
}

@media (max-width: 480px) {
  .page-resources-23wim-net-game-guides__hero-section {
    height: 400px;
  }
  .page-resources-23wim-net-game-guides__hero-title {
    font-size: 1.8em;
  }
  .page-resources-23wim-net-game-guides__section-title {
    font-size: 1.5em;
  }
  .page-resources-23wim-net-game-guides__cta-title {
    font-size: 1.6em;
  }
  .page-resources-23wim-net-game-guides__hero-cta-buttons,
  .page-resources-23wim-net-game-guides__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
}