/* style/faq-account-issues.css */

/* Custom Colors */
:root {
  --hello88-main-color: #11A84E;
  --hello88-secondary-color: #22C768;
  --hello88-card-bg: #11271B;
  --hello88-background: #08160F;
  --hello88-text-main: #F2FFF6;
  --hello88-text-secondary: #A7D9B8;
  --hello88-border: #2E7A4E;
  --hello88-glow: #57E38D;
  --hello88-gold: #F2C14E;
  --hello88-divider: #1E3A2A;
  --hello88-deep-green: #0A4B2C;
  --hello88-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

/* Base styles for the page content, considering dark body background */
.page-faq-account-issues {
  background-color: var(--hello88-background);
  color: var(--hello88-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 40px;
}

/* Hero Section */
.page-faq-account-issues__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more at bottom */
  background-color: var(--hello88-deep-green);
  overflow: hidden;
}

.page-faq-account-issues__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-faq-account-issues__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim the image for text contrast */
  min-height: 250px;
}

.page-faq-account-issues__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  margin-top: -100px; /* Pull content up over the image slightly for visual flow */
  color: var(--hello88-text-main);
}

.page-faq-account-issues__main-title {
  font-weight: bold;
  color: var(--hello88-gold);
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
  /* No fixed font-size, relying on responsive design and other properties */
}

.page-faq-account-issues__hero-description {
  font-size: 1.1em;
  color: var(--hello88-text-secondary);
  margin-bottom: 30px;
}

.page-faq-account-issues__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

/* General Content Area */
.page-faq-account-issues__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  color: var(--hello88-text-main);
}

.page-faq-account-issues__section-title {
  font-size: 2.2em;
  color: var(--hello88-gold);
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
  line-height: 1.3;
}

.page-faq-account-issues__paragraph {
  font-size: 1.05em;
  color: var(--hello88-text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

.page-faq-account-issues__paragraph-small {
  font-size: 0.9em;
  color: var(--hello88-text-secondary);
  text-align: center;
  margin-top: 10px;
}

.page-faq-account-issues__image-inline {
  display: block;
  margin: 20px auto;
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--hello88-border);
}

/* FAQ List */
.page-faq-account-issues__faq-list {
  margin-top: 30px;
}

.page-faq-account-issues__faq-item {
  background-color: var(--hello88-card-bg);
  border: 1px solid var(--hello88-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-faq-account-issues__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--hello88-text-main);
  cursor: pointer;
  background-color: var(--hello88-card-bg);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-faq-account-issues__faq-question::-webkit-details-marker {
  display: none;
}

.page-faq-account-issues__faq-question:hover {
  background-color: var(--hello88-deep-green);
}

.page-faq-account-issues__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--hello88-secondary-color);
}

.page-faq-account-issues__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1.05em;
  color: var(--hello88-text-secondary);
  text-align: justify;
}

.page-faq-account-issues__faq-answer p {
  margin-bottom: 10px;
}

.page-faq-account-issues__faq-answer p:last-child {
  margin-bottom: 0;
}

/* Call to Action Section */
.page-faq-account-issues__cta-section {
  background-color: var(--hello88-card-bg);
  border: 1px solid var(--hello88-border);
  border-radius: 8px;
  padding: 40px;
  margin-top: 60px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.page-faq-account-issues__cta-title {
  font-size: 2em;
  color: var(--hello88-gold);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-faq-account-issues__cta-description {
  font-size: 1.1em;
  color: var(--hello88-text-secondary);
  margin-bottom: 30px;
}

.page-faq-account-issues__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

/* Buttons */
.page-faq-account-issues__btn-primary,
.page-faq-account-issues__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-faq-account-issues__btn-primary {
  background: var(--hello88-button-gradient);
  color: var(--hello88-text-main);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-faq-account-issues__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-faq-account-issues__btn-secondary {
  background-color: transparent;
  color: var(--hello88-secondary-color);
  border: 2px solid var(--hello88-secondary-color);
}

.page-faq-account-issues__btn-secondary:hover {
  background-color: var(--hello88-secondary-color);
  color: var(--hello88-background);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Links within text */
.page-faq-account-issues a {
  color: var(--hello88-secondary-color);
  text-decoration: none;
}

.page-faq-account-issues a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-faq-account-issues__main-title {
    font-size: 2.5em;
  }

  .page-faq-account-issues__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-faq-account-issues {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-faq-account-issues__hero-content {
    margin-top: -60px;
    padding: 15px;
  }

  .page-faq-account-issues__main-title {
    font-size: clamp(1.8em, 7vw, 2.2em);
    margin-bottom: 10px;
  }

  .page-faq-account-issues__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-faq-account-issues__hero-cta-buttons,
  .page-faq-account-issues__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-faq-account-issues__btn-primary,
  .page-faq-account-issues__btn-secondary,
  .page-faq-account-issues a[class*="button"],
  .page-faq-account-issues a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-faq-account-issues__content-area {
    padding: 30px 15px;
  }

  .page-faq-account-issues__section-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-faq-account-issues__paragraph {
    font-size: 1em;
  }

  .page-faq-account-issues__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-faq-account-issues__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 1em;
  }

  .page-faq-account-issues__image-inline {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-faq-account-issues__cta-section {
    padding: 30px 20px;
    margin-top: 40px;
  }

  .page-faq-account-issues__cta-title {
    font-size: 1.8em;
  }

  .page-faq-account-issues__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-faq-account-issues__main-title {
    font-size: clamp(1.6em, 8vw, 2em);
  }

  .page-faq-account-issues__section-title {
    font-size: 1.6em;
  }

  .page-faq-account-issues__faq-question {
    font-size: 1em;
  }
}