.page-faq {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-faq__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  overflow: hidden;
}

.page-faq__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.page-faq__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-faq__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(17, 39, 27, 0.7); /* Card B G with transparency */
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-faq__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-faq__hero-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-faq__btn-primary,
.page-faq__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-faq__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border: none;
}

.page-faq__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-faq__btn-secondary {
  background: #11271B; /* Card B G */
  color: #57E38D; /* Glow */
  border: 2px solid #2E7A4E; /* Border */
}

.page-faq__btn-secondary:hover {
  background: #2E7A4E; /* Border */
  color: #F2FFF6; /* Text Main */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-faq__content-area {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 20px;
  background-color: #11271B; /* Card B G */
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-faq__section-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
}

.page-faq__section-description {
  font-size: 16px;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-faq__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-faq__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #2E7A4E; /* Border */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-faq__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #11A84E; /* Main Color */
  border-bottom: 1px solid #2E7A4E;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-faq__faq-question::-webkit-details-marker {
  display: none; /* For details/summary */
}

.page-faq__faq-item[open] > .page-faq__faq-question {
  background-color: #22C768; /* Auxiliary Color */
}

.page-faq__faq-question:hover {
  background-color: #22C768; /* Auxiliary Color */
}

.page-faq__faq-qtext {
  flex-grow: 1;
  margin-right: 15px;
}

.page-faq__faq-toggle {
  font-size: 24px;
  line-height: 1;
  color: #F2FFF6;
}

.page-faq__faq-answer {
  padding: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
  background-color: #11271B; /* Card B G */
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-faq__faq-answer p,
.page-faq__faq-answer ul,
.page-faq__faq-answer ol {
  margin-bottom: 15px;
}

.page-faq__faq-answer p:last-child,
.page-faq__faq-answer ul:last-child,
.page-faq__faq-answer ol:last-child {
  margin-bottom: 0;
}

.page-faq__faq-answer strong {
  color: #F2FFF6; /* Text Main */
}

.page-faq__contact-list,
.page-faq__strategy-list,
.page-faq__rule-list,
.page-faq__game-type-list,
.page-faq__fairness-list,
.page-faq__live-casino-list,
.page-faq__vip-benefits-list {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 0;
  margin-bottom: 15px;
}

.page-faq__rule-list {
  list-style-type: decimal;
}

.page-faq__contact-list li,
.page-faq__strategy-list li,
.page-faq__rule-list li,
.page-faq__game-type-list li,
.page-faq__fairness-list li,
.page-faq__live-casino-list li,
.page-faq__vip-benefits-list li {
  margin-bottom: 8px;
  color: #A7D9B8; /* Text Secondary */
}

.page-faq__image-inline {
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  max-width: 100%;
  height: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-faq__cta-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #0A4B2C; /* Deep Green */
  margin-top: 40px;
  border-top: 1px solid #2E7A4E;
}

.page-faq__cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-faq__cta-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-faq__cta-description {
  font-size: 18px;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-faq__btn-large {
  padding: 18px 35px;
  font-size: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-faq__hero-content {
    padding: 15px;
  }

  .page-faq__main-title {
    font-size: clamp(24px, 7vw, 36px);
  }

  .page-faq__hero-description {
    font-size: 16px;
  }

  .page-faq__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-faq__btn-primary,
  .page-faq__btn-secondary {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-faq__content-area {
    padding: 20px 15px;
    margin: 20px auto;
  }

  .page-faq__section-title {
    font-size: clamp(20px, 6vw, 32px);
  }

  .page-faq__section-description {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .page-faq__faq-question {
    font-size: 16px;
    padding: 15px;
  }

  .page-faq__faq-answer {
    font-size: 14px;
    padding: 15px;
  }

  .page-faq__cta-section {
    padding: 40px 15px;
    margin-top: 20px;
  }

  .page-faq__cta-title {
    font-size: clamp(24px, 7vw, 36px);
  }

  .page-faq__cta-description {
    font-size: 16px;
  }

  .page-faq__btn-large {
    padding: 15px 25px;
    font-size: 18px;
  }

  /* Mobile image and video responsiveness */
  .page-faq img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-faq__hero-section,
  .page-faq__content-area,
  .page-faq__cta-section,
  .page-faq__faq-item,
  .page-faq__hero-content,
  .page-faq__cta-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-faq__hero-section {
    padding-top: 10px !important; /* body handles --header-offset */
  }

  .page-faq__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}