.page-resources-go99-game-faq-deep-dive {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-resources-go99-game-faq-deep-dive__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-go99-game-faq-deep-dive__hero {
  background: linear-gradient(135deg, #0A6847 0%, #06402A 100%); /* Darker green gradient */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-resources-go99-game-faq-deep-dive__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 L 0 10" fill="none" stroke="%23FFD700" stroke-width="0.1"/></pattern><rect width="100%" height="100%" fill="url(%23grid)" opacity="0.05"/></svg>') repeat;
  opacity: 0.1;
}

.page-resources-go99-game-faq-deep-dive__hero-content {
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-go99-game-faq-deep-dive__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for title highlight */
}

.page-resources-go99-game-faq-deep-dive__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-resources-go99-game-faq-deep-dive__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A6847; /* Dark green text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-go99-game-faq-deep-dive__hero-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-resources-go99-game-faq-deep-dive__hero-image {
  margin-top: 40px;
  max-width: 600px;
  width: 100%;
  z-index: 1;
}

.page-resources-go99-game-faq-deep-dive__hero-image .hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-go99-game-faq-deep-dive__introduction,
.page-resources-go99-game-faq-deep-dive__faq-section,
.page-resources-go99-game-faq-deep-dive__cta {
  padding: 60px 0;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.page-resources-go99-game-faq-deep-dive__introduction {
  text-align: center;
  background-color: #f0fdf7; /* Lighter green tint */
  padding-top: 40px;
  padding-bottom: 40px;
}

.page-resources-go99-game-faq-deep-dive__introduction p {
  font-size: 1.1em;
  max-width: 900px;
  margin: 20px auto;
  color: #444;
}

.page-resources-go99-game-faq-deep-dive__section-title {
  font-size: 2.5em;
  color: #0A6847; /* Dark green */
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-go99-game-faq-deep-dive__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  border-radius: 2px;
}

.page-resources-go99-game-faq-deep-dive__faq-item {
  background-color: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-go99-game-faq-deep-dive__faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-resources-go99-game-faq-deep-dive__faq-question {
  font-size: 1.8em;
  color: #0A6847; /* Dark green */
  margin-bottom: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-resources-go99-game-faq-deep-dive__faq-question::after {
  content: '+';
  font-size: 1.2em;
  color: #FFD700;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-resources-go99-game-faq-deep-dive__faq-question.active::after {
  transform: rotate(45deg);
}

.page-resources-go99-game-faq-deep-dive__faq-answer {
  font-size: 1.05em;
  color: #555;
  padding-top: 15px;
  border-top: 1px dashed #eee;
  display: none;
}

.page-resources-go99-game-faq-deep-dive__faq-answer.open {
  display: block;
}

.page-resources-go99-game-faq-deep-dive__faq-answer p {
  margin-bottom: 15px;
}

.page-resources-go99-game-faq-deep-dive__faq-answer ul,
.page-resources-go99-game-faq-deep-dive__faq-answer ol {
  margin-left: 25px;
  margin-bottom: 15px;
}

.page-resources-go99-game-faq-deep-dive__faq-answer li {
  margin-bottom: 8px;
  color: #444;
}

.page-resources-go99-game-faq-deep-dive__faq-answer .faq-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-go99-game-faq-deep-dive__button {
  display: inline-block;
  background-color: #0A6847; /* Dark green button */
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-resources-go99-game-faq-deep-dive__button:hover {
  background-color: #128256; /* Lighter green on hover */
  transform: translateY(-2px);
}

.page-resources-go99-game-faq-deep-dive__cta {
  background: linear-gradient(135deg, #0A6847, #FFD700); /* Green to gold gradient */
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-resources-go99-game-faq-deep-dive__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #fff;
}

.page-resources-go99-game-faq-deep-dive__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-resources-go99-game-faq-deep-dive__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-go99-game-faq-deep-dive__button--primary {
  background-color: #FFD700; /* Gold */
  color: #0A6847; /* Dark green */
  font-size: 1.1em;
  padding: 15px 30px;
}

.page-resources-go99-game-faq-deep-dive__button--primary:hover {
  background-color: #e6c200;
  color: #06402A;
}

.page-resources-go99-game-faq-deep-dive__button--secondary {
  background-color: rgba(255, 255, 255, 0.2); /* Transparent white */
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 1.1em;
  padding: 15px 30px;
}

.page-resources-go99-game-faq-deep-dive__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: #fff;
}

.page-resources-go99-game-faq-deep-dive .highlight {
  color: #FFD700;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-go99-game-faq-deep-dive__hero-title {
    font-size: 2.5em;
  }

  .page-resources-go99-game-faq-deep-dive__hero-description {
    font-size: 1em;
  }

  .page-resources-go99-game-faq-deep-dive__section-title {
    font-size: 2em;
  }

  .page-resources-go99-game-faq-deep-dive__faq-question {
    font-size: 1.5em;
  }

  .page-resources-go99-game-faq-deep-dive__faq-answer {
    font-size: 0.95em;
  }

  .page-resources-go99-game-faq-deep-dive__cta-title {
    font-size: 2em;
  }

  .page-resources-go99-game-faq-deep-dive__cta-description {
    font-size: 1em;
  }

  .page-resources-go99-game-faq-deep-dive__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-go99-game-faq-deep-dive__hero-image {
    display: none; /* Hide hero image on smaller screens if it takes too much space */
  }
}

@media (max-width: 480px) {
  .page-resources-go99-game-faq-deep-dive__hero {
    padding: 60px 0;
  }

  .page-resources-go99-game-faq-deep-dive__hero-title {
    font-size: 2em;
  }

  .page-resources-go99-game-faq-deep-dive__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-go99-game-faq-deep-dive__section-title {
    font-size: 1.8em;
  }

  .page-resources-go99-game-faq-deep-dive__faq-question {
    font-size: 1.3em;
  }

  .page-resources-go99-game-faq-deep-dive__faq-item {
    padding: 20px;
  }

  .page-resources-go99-game-faq-deep-dive__button {
    width: 100%;
    box-sizing: border-box;
  }

  .page-resources-go99-game-faq-deep-dive__cta-buttons a {
    width: 100%;
    box-sizing: border-box;
  }
}