.page-resources-understanding-game-bonuses {
  color: #ffffff; /* Default text color for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: var(--neon-dark-bg-1); /* Inherit from shared.css */
}

.page-resources-understanding-game-bonuses__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  min-height: 500px;
  overflow: hidden;
  color: #ffffff;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-resources-understanding-game-bonuses__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-resources-understanding-game-bonuses__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-understanding-game-bonuses__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFF00; /* Use specific color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-understanding-game-bonuses__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-understanding-game-bonuses__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-understanding-game-bonuses__btn-primary {
  background-color: #C30808; /* Color for Register */
  color: #FFFF00; /* Font color for Register */
  border: 2px solid #C30808;
}

.page-resources-understanding-game-bonuses__btn-primary:hover {
  background-color: #e02020;
  transform: translateY(-2px);
}

.page-resources-understanding-game-bonuses__btn-secondary {
  background-color: transparent;
  color: #FFFF00;
  border: 2px solid #FFFF00;
  margin-left: 15px;
}

.page-resources-understanding-game-bonuses__btn-secondary:hover {
  background-color: #FFFF00;
  color: #C30808;
  transform: translateY(-2px);
}

.page-resources-understanding-game-bonuses__content-area {
  max-width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #FFFFFF; /* Light background for main content */
  color: #333333; /* Dark text for light background */
}

.page-resources-understanding-game-bonuses__container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-resources-understanding-game-bonuses__sub-section-title {
  font-size: 1.8em;
  color: #017439;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-resources-understanding-game-bonuses__text-block {
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.7;
}

.page-resources-understanding-game-bonuses__inline-link {
  color: #017439;
  text-decoration: underline;
}

.page-resources-understanding-game-bonuses__inline-link:hover {
  color: #005a2d;
  text-decoration: none;
}

.page-resources-understanding-game-bonuses__image-wrapper {
  margin: 40px 0;
  text-align: center;
}

.page-resources-understanding-game-bonuses__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}

.page-resources-understanding-game-bonuses__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-resources-understanding-game-bonuses__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333333;
}

.page-resources-understanding-game-bonuses__faq-list {
  margin-top: 40px;
  border-top: 1px solid #e0e0e0;
}

.page-resources-understanding-game-bonuses__faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.page-resources-understanding-game-bonuses__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  font-size: 1.2em;
  font-weight: bold;
  color: #017439;
  cursor: pointer;
  transition: color 0.3s ease;
}

.page-resources-understanding-game-bonuses__faq-question:hover {
  color: #005a2d;
}

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

.page-resources-understanding-game-bonuses__faq-item.active .page-resources-understanding-game-bonuses__faq-toggle {
  transform: rotate(45deg); /* Change '+' to 'x' or '-' */
}

.page-resources-understanding-game-bonuses__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: #555555;
}

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

.page-resources-understanding-game-bonuses__faq-answer p {
  margin-bottom: 10px;
}

.page-resources-understanding-game-bonuses__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-resources-understanding-game-bonuses__button-group--center {
  text-align: center;
}

@media (max-width: 1024px) {
  .page-resources-understanding-game-bonuses__hero-title {
    font-size: 3em;
  }
  .page-resources-understanding-game-bonuses__section-title {
    font-size: 2em;
  }
  .page-resources-understanding-game-bonuses__sub-section-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-resources-understanding-game-bonuses__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Mobile fixed header offset */
  }
  .page-resources-understanding-game-bonuses__hero-title {
    font-size: 2.2em;
  }
  .page-resources-understanding-game-bonuses__hero-description {
    font-size: 1em;
  }
  .page-resources-understanding-game-bonuses__cta-button {
    padding: 12px 20px;
    font-size: 0.9em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: 0 !important;
  }
  .page-resources-understanding-game-bonuses__btn-secondary {
    margin-top: 15px;
  }
  .page-resources-understanding-game-bonuses__button-group {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-resources-understanding-game-bonuses__content-area {
    padding: 30px 15px;
  }
  .page-resources-understanding-game-bonuses__section-title {
    font-size: 1.8em;
  }
  .page-resources-understanding-game-bonuses__sub-section-title {
    font-size: 1.3em;
  }
  .page-resources-understanding-game-bonuses__text-block, 
  .page-resources-understanding-game-bonuses__list-item, 
  .page-resources-understanding-game-bonuses__faq-question,
  .page-resources-understanding-game-bonuses__faq-answer p {
    font-size: 1em;
    line-height: 1.6;
  }
  .page-resources-understanding-game-bonuses img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-understanding-game-bonuses__image-wrapper,
  .page-resources-understanding-game-bonuses__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }
  .page-resources-understanding-game-bonuses__faq-answer {
    padding: 0 5px;
  }
  .page-resources-understanding-game-bonuses__faq-item.active .page-resources-understanding-game-bonuses__faq-answer {
    padding: 10px 5px;
  }
  .page-resources-understanding-game-bonuses__list {
    margin-left: 15px;
  }
}