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

/* body đã padding-top: var(--header-offset) từ shared.css, không lặp lại ở đây */
.page-blog-qh99-chinh-thuc-review {
  background-color: var(--page-bg);
  color: var(--text-main);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-blog-qh99-chinh-thuc-review__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px 0 60px 0; /* body đã có padding-top, chỉ cần một ít top padding ở đây */
}

.page-blog-qh99-chinh-thuc-review__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-qh99-chinh-thuc-review__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Làm mờ ảnh để văn bản dễ đọc hơn */
}

.page-blog-qh99-chinh-thuc-review__hero-content {
  position: relative;
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
  z-index: 1;
  margin-top: -150px; /* Di chuyển nội dung lên trên hình ảnh một chút */
}

.page-blog-qh99-chinh-thuc-review__main-title {
  color: var(--gold-color);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-qh99-chinh-thuc-review__description {
  color: var(--text-main);
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-blog-qh99-chinh-thuc-review__btn-primary,
.page-blog-qh99-chinh-thuc-review__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  border: none;
}

.page-blog-qh99-chinh-thuc-review__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-blog-qh99-chinh-thuc-review__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  margin-left: 20px;
}

.page-blog-qh99-chinh-thuc-review__btn-secondary:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-qh99-chinh-thuc-review__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-blog-qh99-chinh-thuc-review__article {
  background-color: var(--card-bg);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-qh99-chinh-thuc-review__section-title {
  color: var(--gold-color);
  font-size: 2.2em;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

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

.page-blog-qh99-chinh-thuc-review__sub-title {
  color: var(--text-main);
  font-size: 1.6em;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-blog-qh99-chinh-thuc-review__text-block p {
  margin-bottom: 15px;
  color: var(--text-secondary);
}

.page-blog-qh99-chinh-thuc-review__product-grid,
.page-blog-qh99-chinh-thuc-review__promotions-grid,
.page-blog-qh99-chinh-thuc-review__security-support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-qh99-chinh-thuc-review__product-card,
.page-blog-qh99-chinh-thuc-review__promotion-card,
.page-blog-qh99-chinh-thuc-review__security-card,
.page-blog-qh99-chinh-thuc-review__support-card,
.page-blog-qh99-chinh-thuc-review__responsible-gaming-card {
  background-color: var(--deep-green);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-qh99-chinh-thuc-review__product-image,
.page-blog-qh99-chinh-thuc-review__cta-image,
.page-blog-qh99-chinh-thuc-review__security-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-blog-qh99-chinh-thuc-review__product-title,
.page-blog-qh99-chinh-thuc-review__promotion-title {
  color: var(--gold-color);
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-blog-qh99-chinh-thuc-review__product-description,
.page-blog-qh99-chinh-thuc-review__promotion-description {
  color: var(--text-secondary);
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-qh99-chinh-thuc-review__cta-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: var(--deep-green);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  margin-top: 40px;
  overflow: hidden;
}

.page-blog-qh99-chinh-thuc-review__cta-image {
  width: 50%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 0;
}

.page-blog-qh99-chinh-thuc-review__cta-content {
  width: 50%;
  padding: 40px;
  box-sizing: border-box;
}

.page-blog-qh99-chinh-thuc-review__step-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  margin-bottom: 30px;
  text-align: left;
}

.page-blog-qh99-chinh-thuc-review__step-list li {
  color: var(--text-secondary);
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-blog-qh99-chinh-thuc-review__step-list li::before {
  content: '✔';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 0;
}

.page-blog-qh99-chinh-thuc-review__security-card,
.page-blog-qh99-chinh-thuc-review__support-card,
.page-blog-qh99-chinh-thuc-review__responsible-gaming-card {
  text-align: left;
}

.page-blog-qh99-chinh-thuc-review__security-card .page-blog-qh99-chinh-thuc-review__sub-title,
.page-blog-qh99-chinh-thuc-review__support-card .page-blog-qh99-chinh-thuc-review__sub-title,
.page-blog-qh99-chinh-thuc-review__responsible-gaming-card .page-blog-qh99-chinh-thuc-review__sub-title {
  color: var(--gold-color);
}

.page-blog-qh99-chinh-thuc-review__security-card p,
.page-blog-qh99-chinh-thuc-review__support-card p,
.page-blog-qh99-chinh-thuc-review__responsible-gaming-card p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.page-blog-qh99-chinh-thuc-review__conclusion-text {
  color: var(--text-main);
  font-size: 1.1em;
  text-align: center;
  margin: 40px 0;
}

.page-blog-qh99-chinh-thuc-review__text-link {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-blog-qh99-chinh-thuc-review__text-link:hover {
  color: var(--gold-color);
}

.page-blog-qh99-chinh-thuc-review__cta-buttons {
  text-align: center;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-qh99-chinh-thuc-review__faq-heading {
  margin-top: 60px;
}

.page-blog-qh99-chinh-thuc-review__faq-list {
  margin-top: 30px;
}

.page-blog-qh99-chinh-thuc-review__faq-item {
  background-color: var(--deep-green);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-qh99-chinh-thuc-review__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.1em;
  font-weight: 600;
  color: var(--gold-color);
  cursor: pointer;
  border-bottom: 1px solid var(--divider-color);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-qh99-chinh-thuc-review__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-qh99-chinh-thuc-review__faq-question:hover {
  background-color: var(--card-bg);
}

.page-blog-qh99-chinh-thuc-review__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-qh99-chinh-thuc-review__faq-item[open] .page-blog-qh99-chinh-thuc-review__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-qh99-chinh-thuc-review__faq-answer {
  padding: 15px 25px 20px;
  color: var(--text-secondary);
  font-size: 0.95em;
}

.page-blog-qh99-chinh-thuc-review__faq-answer p {
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-qh99-chinh-thuc-review__hero-content {
    margin-top: -100px;
  }
}

@media (max-width: 768px) {
  .page-blog-qh99-chinh-thuc-review {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-qh99-chinh-thuc-review__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-blog-qh99-chinh-thuc-review__hero-image-wrapper {
    max-height: 400px;
  }

  .page-blog-qh99-chinh-thuc-review__hero-content {
    padding: 20px 15px;
    margin-top: -80px; /* Adjust for smaller screens */
  }

  .page-blog-qh99-chinh-thuc-review__main-title {
    font-size: 2em;
  }

  .page-blog-qh99-chinh-thuc-review__description {
    font-size: 1em;
  }

  .page-blog-qh99-chinh-thuc-review__btn-primary,
  .page-blog-qh99-chinh-thuc-review__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 10px 0 !important;
  }

  .page-blog-qh99-chinh-thuc-review__content-area {
    padding: 20px 15px;
  }

  .page-blog-qh99-chinh-thuc-review__article {
    padding: 20px;
  }

  .page-blog-qh99-chinh-thuc-review__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-blog-qh99-chinh-thuc-review__sub-title {
    font-size: 1.4em;
  }

  .page-blog-qh99-chinh-thuc-review__product-grid,
  .page-blog-qh99-chinh-thuc-review__promotions-grid,
  .page-blog-qh99-chinh-thuc-review__security-support-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-qh99-chinh-thuc-review__product-image,
  .page-blog-qh99-chinh-thuc-review__cta-image,
  .page-blog-qh99-chinh-thuc-review__security-image {
    height: 180px;
  }

  .page-blog-qh99-chinh-thuc-review__cta-section {
    flex-direction: column;
  }

  .page-blog-qh99-chinh-thuc-review__cta-image,
  .page-blog-qh99-chinh-thuc-review__cta-content {
    width: 100%;
    padding: 20px;
  }

  .page-blog-qh99-chinh-thuc-review__cta-image {
    min-height: 250px;
  }

  .page-blog-qh99-chinh-thuc-review__step-list {
    text-align: left;
  }

  .page-blog-qh99-chinh-thuc-review__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-qh99-chinh-thuc-review img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-qh99-chinh-thuc-review__section,
  .page-blog-qh99-chinh-thuc-review__card,
  .page-blog-qh99-chinh-thuc-review__container,
  .page-blog-qh99-chinh-thuc-review__hero-section,
  .page-blog-qh99-chinh-thuc-review__content-area,
  .page-blog-qh99-chinh-thuc-review__cta-section,
  .page-blog-qh99-chinh-thuc-review__product-card,
  .page-blog-qh99-chinh-thuc-review__promotion-card,
  .page-blog-qh99-chinh-thuc-review__security-card,
  .page-blog-qh99-chinh-thuc-review__support-card,
  .page-blog-qh99-chinh-thuc-review__responsible-gaming-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-qh99-chinh-thuc-review video,
  .page-blog-qh99-chinh-thuc-review__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-qh99-chinh-thuc-review__video-section,
  .page-blog-qh99-chinh-thuc-review__video-container,
  .page-blog-qh99-chinh-thuc-review__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-qh99-chinh-thuc-review__video-section {
    padding-top: 10px !important;
  }

  .page-blog-qh99-chinh-thuc-review__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}