/* style/blog-pq88-new-user-guide.css */

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

.page-blog-pq88-new-user-guide {
  background-color: var(--pq88-background-color);
  color: var(--pq88-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-pq88-new-user-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-pq88-new-user-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 60px;
  overflow: hidden;
}

.page-blog-pq88-new-user-guide__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  filter: brightness(0.6);
}

.page-blog-pq88-new-user-guide__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: #ffffff;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.page-blog-pq88-new-user-guide__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--pq88-text-main);
}

.page-blog-pq88-new-user-guide__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--pq88-text-secondary);
}

.page-blog-pq88-new-user-guide__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--pq88-text-main);
  position: relative;
  padding-bottom: 15px;
}

.page-blog-pq88-new-user-guide__section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--pq88-primary-color);
  border-radius: 2px;
}

.page-blog-pq88-new-user-guide__sub-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--pq88-primary-color);
}

.page-blog-pq88-new-user-guide__content-area {
  padding: 20px;
  background-color: var(--pq88-card-bg);
  border-radius: 8px;
  color: var(--pq88-text-secondary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-pq88-new-user-guide__content-area p {
  margin-bottom: 15px;
  color: var(--pq88-text-secondary);
}

.page-blog-pq88-new-user-guide__introduction-section,
.page-blog-pq88-new-user-guide__deposit-section,
.page-blog-pq88-new-user-guide__withdrawal-section,
.page-blog-pq88-new-user-guide__faq-section {
  padding: 60px 0;
}

.page-blog-pq88-new-user-guide__dark-bg {
  background-color: var(--pq88-deep-green);
  color: var(--pq88-text-main);
}

.page-blog-pq88-new-user-guide__dark-bg .page-blog-pq88-new-user-guide__section-title {
  color: var(--pq88-text-main);
}

.page-blog-pq88-new-user-guide__dark-bg .page-blog-pq88-new-user-guide__sub-title {
  color: var(--pq88-gold-color);
}

.page-blog-pq88-new-user-guide__dark-bg .page-blog-pq88-new-user-guide__content-area {
  background-color: var(--pq88-card-bg);
  color: var(--pq88-text-secondary);
}

.page-blog-pq88-new-user-guide__dark-bg .page-blog-pq88-new-user-guide__content-area p,
.page-blog-pq88-new-user-guide__dark-bg .page-blog-pq88-new-user-guide__content-area li {
  color: var(--pq88-text-secondary);
}

.page-blog-pq88-new-user-guide__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: var(--pq88-text-secondary);
}

.page-blog-pq88-new-user-guide__list li,
.page-blog-pq88-new-user-guide__ordered-list li {
  margin-bottom: 8px;
  color: var(--pq88-text-secondary);
}

.page-blog-pq88-new-user-guide__list strong {
  color: var(--pq88-text-main);
}

.page-blog-pq88-new-user-guide__ordered-list {
  list-style: decimal;
  margin-left: 20px;
  margin-bottom: 15px;
  color: var(--pq88-text-secondary);
}

.page-blog-pq88-new-user-guide__btn-primary,
.page-blog-pq88-new-user-guide__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-pq88-new-user-guide__btn-primary {
  background: var(--pq88-button-gradient);
  color: #ffffff;
  border: none;
}

.page-blog-pq88-new-user-guide__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-pq88-new-user-guide__btn-secondary {
  background: transparent;
  color: var(--pq88-primary-color);
  border: 2px solid var(--pq88-primary-color);
}

.page-blog-pq88-new-user-guide__btn-secondary:hover {
  background: var(--pq88-primary-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-pq88-new-user-guide__btn-text {
  color: var(--pq88-gold-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: 10px;
}

.page-blog-pq88-new-user-guide__btn-text:hover {
  color: var(--pq88-glow-color);
  text-decoration: underline;
}

.page-blog-pq88-new-user-guide__cta-block {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background-color: var(--pq88-card-bg);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--pq88-border-color);
}

.page-blog-pq88-new-user-guide__cta-block p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--pq88-text-main);
}

.page-blog-pq88-new-user-guide__guide-section {
  padding: 60px 0;
  text-align: center;
}

.page-blog-pq88-new-user-guide__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-pq88-new-user-guide__step-item {
  background-color: var(--pq88-card-bg);
  padding: 25px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--pq88-border-color);
}

.page-blog-pq88-new-user-guide__step-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 20px;
}

.page-blog-pq88-new-user-guide__step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--pq88-primary-color);
  margin-bottom: 15px;
}

.page-blog-pq88-new-user-guide__games-section {
  padding: 60px 0;
  text-align: center;
}

.page-blog-pq88-new-user-guide__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-pq88-new-user-guide__game-card {
  background-color: var(--pq88-card-bg);
  padding: 20px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--pq88-border-color);
  display: flex;
  flex-direction: column;
}

.page-blog-pq88-new-user-guide__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 15px;
}

.page-blog-pq88-new-user-guide__game-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  flex-grow: 1;
}

.page-blog-pq88-new-user-guide__game-title a {
  color: var(--pq88-text-main);
  text-decoration: none;
}

.page-blog-pq88-new-user-guide__game-title a:hover {
  color: var(--pq88-primary-color);
  text-decoration: underline;
}

.page-blog-pq88-new-user-guide__promotion-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-pq88-new-user-guide__card {
  background-color: var(--pq88-card-bg);
  padding: 20px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--pq88-border-color);
  display: flex;
  flex-direction: column;
}

.page-blog-pq88-new-user-guide__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 15px;
}

.page-blog-pq88-new-user-guide__card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  flex-grow: 1;
}

.page-blog-pq88-new-user-guide__card-title a {
  color: var(--pq88-text-main);
  text-decoration: none;
}

.page-blog-pq88-new-user-guide__card-title a:hover {
  color: var(--pq88-primary-color);
  text-decoration: underline;
}

.page-blog-pq88-new-user-guide__faq-list {
  margin-top: 40px;
}

.page-blog-pq88-new-user-guide__faq-item {
  background-color: var(--pq88-card-bg);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--pq88-border-color);
}

.page-blog-pq88-new-user-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: var(--pq88-card-bg);
  color: var(--pq88-text-main);
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 1px solid var(--pq88-divider-color);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-pq88-new-user-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-pq88-new-user-guide__faq-question:hover {
  background-color: var(--pq88-deep-green);
}

.page-blog-pq88-new-user-guide__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--pq88-primary-color);
}

.page-blog-pq88-new-user-guide__faq-answer {
  padding: 15px 25px 25px;
  color: var(--pq88-text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.page-blog-pq88-new-user-guide__faq-answer p {
  margin-bottom: 10px;
}

.page-blog-pq88-new-user-guide__conclusion-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--pq88-deep-green);
}

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

  .page-blog-pq88-new-user-guide__container {
    padding: 0 15px;
  }

  .page-blog-pq88-new-user-guide__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-pq88-new-user-guide__hero-content {
    padding: 20px 15px;
  }

  .page-blog-pq88-new-user-guide__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-blog-pq88-new-user-guide__description {
    font-size: 1rem;
  }

  .page-blog-pq88-new-user-guide__section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-blog-pq88-new-user-guide__sub-title {
    font-size: clamp(1.3rem, 5vw, 1.6rem);
  }

  .page-blog-pq88-new-user-guide__introduction-section,
  .page-blog-pq88-new-user-guide__deposit-section,
  .page-blog-pq88-new-user-guide__withdrawal-section,
  .page-blog-pq88-new-user-guide__promotions-section,
  .page-blog-pq88-new-user-guide__faq-section,
  .page-blog-pq88-new-user-guide__conclusion-section,
  .page-blog-pq88-new-user-guide__guide-section,
  .page-blog-pq88-new-user-guide__games-section {
    padding: 40px 0;
  }

  .page-blog-pq88-new-user-guide__content-area,
  .page-blog-pq88-new-user-guide__step-item,
  .page-blog-pq88-new-user-guide__game-card,
  .page-blog-pq88-new-user-guide__card,
  .page-blog-pq88-new-user-guide__cta-block,
  .page-blog-pq88-new-user-guide__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-blog-pq88-new-user-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-pq88-new-user-guide__step-by-step,
  .page-blog-pq88-new-user-guide__game-grid,
  .page-blog-pq88-new-user-guide__promotion-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-pq88-new-user-guide__cta-button,
  .page-blog-pq88-new-user-guide__btn-primary,
  .page-blog-pq88-new-user-guide__btn-secondary,
  .page-blog-pq88-new-user-guide a[class*="button"],
  .page-blog-pq88-new-user-guide 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;
    margin-bottom: 10px; /* Space between stacked buttons */
  }

  .page-blog-pq88-new-user-guide__cta-block .page-blog-pq88-new-user-guide__btn-primary {
    margin-left: 0;
    margin-right: 0;
  }

  .page-blog-pq88-new-user-guide__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .page-blog-pq88-new-user-guide__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-pq88-new-user-guide__faq-answer {
    padding: 10px 20px 20px;
  }
}