.page-faq {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF1E8; /* Light text for dark body background */
  background-color: #140C0C; /* Body background color */
}

.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 for hero section */
  background-color: #140C0C;
}

.page-faq__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-faq__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-faq__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-faq__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

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

.page-faq__intro-text {
  font-size: clamp(16px, 2vw, 19px);
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #FFF1E8;
}

.page-faq__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-faq__cta-button:hover {
  background: linear-gradient(180deg, #FFC06A 0%, #E87A24 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

.page-faq__content-section {
  padding: 80px 20px;
  background-color: #140C0C;
}

.page-faq__container {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.page-faq__section-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: #F3C54D; /* Gold color for section titles */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 2px 3px rgba(0,0,0,0.4);
}

.page-faq__section-description {
  font-size: 17px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #FFF1E8;
}

.page-faq__faq-list {
  margin-top: 30px;
}

details.page-faq__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #6A1E1E; /* Border color */
  overflow: hidden;
  background: #2A1212; /* Card background color */
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

details.page-faq__faq-item summary.page-faq__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFF1E8;
}

details.page-faq__faq-item summary.page-faq__faq-question::-webkit-details-marker {
  display: none;
}

details.page-faq__faq-item summary.page-faq__faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.page-faq__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F3C54D;
}

.page-faq__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FFB04A;
  flex-shrink: 0;
  margin-left: 20px;
  width: 30px;
  text-align: center;
}

details.page-faq__faq-item .page-faq__faq-answer {
  padding: 0 25px 25px;
  background: #2A1212;
  border-radius: 0 0 10px 10px;
  color: #FFF1E8;
}

.page-faq__faq-answer p {
  margin-bottom: 15px;
  font-size: 16px;
}

.page-faq__faq-answer ul,
.page-faq__faq-answer ol {
  margin-left: 25px;
  margin-bottom: 15px;
  list-style-position: inside;
}

.page-faq__faq-answer li {
  margin-bottom: 8px;
  font-size: 16px;
}

.page-faq__faq-answer a {
  color: #FFB04A; /* Gold for links */
  text-decoration: none;
  font-weight: bold;
}

.page-faq__faq-answer a:hover {
  text-decoration: underline;
}

.page-faq__faq-answer strong {
  color: #F3C54D;
}

.page-faq__download-app-button, 
.page-faq__contact-button, 
.page-faq__promo-button, 
.page-faq__game-button, 
.page-faq__safe-access-button,
.page-faq__support-button,
.page-faq__policy-button,
.page-faq__blog-button {
  display: inline-block;
  padding: 12px 25px;
  background: #C61F1F; /* Primary color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  margin-top: 15px;
  margin-right: 10px;
  transition: background-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  border: none;
  cursor: pointer;
}

.page-faq__download-app-button:hover, 
.page-faq__contact-button:hover, 
.page-faq__promo-button:hover, 
.page-faq__game-button:hover, 
.page-faq__safe-access-button:hover,
.page-faq__support-button:hover,
.page-faq__policy-button:hover,
.page-faq__blog-button:hover {
  background: #E53030; /* Secondary color on hover */
}

.page-faq__cta-section {
  padding: 80px 20px;
  background-color: #2A1212; /* Card BG color */
  text-align: center;
}

.page-faq__cta-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: #F3C54D;
  margin-bottom: 20px;
}

.page-faq__cta-description {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #FFF1E8;
}

.page-faq__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-faq__btn-primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #ffffff;
  border-radius: 50px;
  padding: 15px 40px;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

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

.page-faq__btn-secondary {
  background: #6A1E1E; /* Deep Red */
  color: #FFF1E8;
  border-radius: 50px;
  padding: 15px 40px;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.page-faq__btn-secondary:hover {
  background: #7E0D0D; /* Slightly darker Deep Red */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

.page-faq__btn-tertiary {
  background: transparent;
  color: #FFB04A;
  border: 2px solid #FFB04A;
  border-radius: 50px;
  padding: 13px 38px;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.page-faq__btn-tertiary:hover {
  background: rgba(255, 176, 74, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

.page-faq__cta-image-wrapper {
  margin-top: 50px;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-faq__cta-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  object-fit: cover;
}

/* General image responsiveness */
.page-faq img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-faq {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-faq__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important; /* Keep small top padding */
  }

  .page-faq__main-title {
    font-size: 28px;
  }

  .page-faq__intro-text {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .page-faq__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    width: 100%;
    margin-top: 15px;
  }

  .page-faq__content-section {
    padding: 50px 15px;
  }

  .page-faq__section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

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

  details.page-faq__faq-item summary.page-faq__faq-question {
    padding: 15px 18px;
  }

  .page-faq__faq-qtext {
    font-size: 16px;
  }

  .page-faq__faq-toggle {
    font-size: 24px;
    margin-left: 15px;
  }

  details.page-faq__faq-item .page-faq__faq-answer {
    padding: 0 18px 18px;
  }

  .page-faq__faq-answer p, 
  .page-faq__faq-answer li {
    font-size: 15px;
  }

  .page-faq__download-app-button, 
  .page-faq__contact-button, 
  .page-faq__promo-button, 
  .page-faq__game-button, 
  .page-faq__safe-access-button,
  .page-faq__support-button,
  .page-faq__policy-button,
  .page-faq__blog-button {
    font-size: 14px;
    padding: 10px 20px;
    margin-right: 5px;
    margin-bottom: 10px;
  }

  .page-faq__cta-section {
    padding: 50px 15px;
  }

  .page-faq__cta-title {
    font-size: 28px;
  }

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

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

  .page-faq__btn-primary,
  .page-faq__btn-secondary,
  .page-faq__btn-tertiary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 25px;
    font-size: 16px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-faq img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-faq__container,
  .page-faq__cta-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
}