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

.page-blog-gobet-chinh-thuc-review {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--gobet-text-main); /* Default text color for light-bg sections */
  background-color: var(--gobet-background); /* Default background from custom palette */
}

/* Smart Contrast Safeguard - applying default text color based on body background */
.page-blog-gobet-chinh-thuc-review.page-content {
  color: var(--gobet-text-main); /* Ensure text is visible on dark body background */
}

.page-blog-gobet-chinh-thuc-review__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  text-align: center;
  overflow: hidden;
}

.page-blog-gobet-chinh-thuc-review__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-blog-gobet-chinh-thuc-review__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-blog-gobet-chinh-thuc-review__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  color: var(--gobet-text-main);
  padding: 20px;
}

.page-blog-gobet-chinh-thuc-review__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--gobet-gold);
  line-height: 1.2;
  letter-spacing: 1px;
}

.page-blog-gobet-chinh-thuc-review__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--gobet-text-secondary);
}

.page-blog-gobet-chinh-thuc-review__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-gobet-chinh-thuc-review__cta-buttons--center {
  margin-top: 30px;
}

.page-blog-gobet-chinh-thuc-review__btn-primary,
.page-blog-gobet-chinh-thuc-review__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text breaking */
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
}

.page-blog-gobet-chinh-thuc-review__btn-primary {
  background: var(--gobet-button-gradient);
  color: #ffffff; /* Button text always white */
  border: 2px solid transparent;
}

.page-blog-gobet-chinh-thuc-review__btn-primary:hover {
  filter: brightness(1.2);
  transform: translateY(-2px);
}

.page-blog-gobet-chinh-thuc-review__btn-secondary {
  background: var(--gobet-card-bg);
  color: var(--gobet-primary);
  border: 2px solid var(--gobet-primary);
}

.page-blog-gobet-chinh-thuc-review__btn-secondary:hover {
  background: var(--gobet-primary);
  color: #ffffff;
}

.page-blog-gobet-chinh-thuc-review__content-area,
.page-blog-gobet-chinh-thuc-review__section {
  padding: 40px 20px;
}

.page-blog-gobet-chinh-thuc-review__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-gobet-chinh-thuc-review__section-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  color: var(--gobet-gold);
}

.page-blog-gobet-chinh-thuc-review__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--gobet-text-secondary);
}

.page-blog-gobet-chinh-thuc-review__text-main {
  color: var(--gobet-text-main);
}

.page-blog-gobet-chinh-thuc-review__dark-bg {
  background-color: var(--gobet-background);
  color: var(--gobet-text-main);
}

.page-blog-gobet-chinh-thuc-review__light-bg {
  background-color: var(--gobet-card-bg);
  color: var(--gobet-text-secondary);
}

.page-blog-gobet-chinh-thuc-review__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-gobet-chinh-thuc-review__grid-container--two-col {
  grid-template-columns: 1fr 1fr;
}

.page-blog-gobet-chinh-thuc-review__card {
  background-color: var(--gobet-card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  color: var(--gobet-text-secondary);
  border: 1px solid var(--gobet-border);
}

.page-blog-gobet-chinh-thuc-review__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-blog-gobet-chinh-thuc-review__card-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 20px 20px 10px 20px;
  color: var(--gobet-gold);
}

.page-blog-gobet-chinh-thuc-review__card-text {
  font-size: 0.95rem;
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-blog-gobet-chinh-thuc-review__sub-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--gobet-gold);
}

.page-blog-gobet-chinh-thuc-review__list {
  list-style: decimal;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--gobet-text-secondary);
}

.page-blog-gobet-chinh-thuc-review__list li {
  margin-bottom: 8px;
  font-size: 1rem;
}

.page-blog-gobet-chinh-thuc-review__faq-section {
  padding: 60px 20px;
}

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

.page-blog-gobet-chinh-thuc-review__faq-item {
  background-color: var(--gobet-card-bg);
  border: 1px solid var(--gobet-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-blog-gobet-chinh-thuc-review__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--gobet-text-main);
  background-color: var(--gobet-deep-green);
}

.page-blog-gobet-chinh-thuc-review__faq-question:hover {
  background-color: var(--gobet-primary);
}

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

.page-blog-gobet-chinh-thuc-review__faq-item.active .page-blog-gobet-chinh-thuc-review__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-gobet-chinh-thuc-review__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding: 0 25px;
  color: var(--gobet-text-secondary);
}

.page-blog-gobet-chinh-thuc-review__faq-item.active .page-blog-gobet-chinh-thuc-review__faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 15px 25px 20px 25px;
}

.page-blog-gobet-chinh-thuc-review__faq-answer p {
  margin: 0;
  font-size: 0.95rem;
}

.page-blog-gobet-chinh-thuc-review__conclusion-section {
  text-align: center;
  padding-bottom: 60px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-gobet-chinh-thuc-review__main-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .page-blog-gobet-chinh-thuc-review__section-title {
    font-size: 1.8rem;
  }
  .page-blog-gobet-chinh-thuc-review__grid-container--two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-blog-gobet-chinh-thuc-review__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body handles --header-offset */
  }
  .page-blog-gobet-chinh-thuc-review__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  .page-blog-gobet-chinh-thuc-review__description {
    font-size: 1rem;
  }
  .page-blog-gobet-chinh-thuc-review__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-gobet-chinh-thuc-review__btn-primary,
  .page-blog-gobet-chinh-thuc-review__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog-gobet-chinh-thuc-review__cta-buttons,
  .page-blog-gobet-chinh-thuc-review__button-group,
  .page-blog-gobet-chinh-thuc-review__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important; /* Ensure buttons wrap */
  }
  .page-blog-gobet-chinh-thuc-review__content-area,
  .page-blog-gobet-chinh-thuc-review__section,
  .page-blog-gobet-chinh-thuc-review__faq-section {
    padding: 30px 15px;
  }
  .page-blog-gobet-chinh-thuc-review__container {
    padding-left: 0px;
    padding-right: 0px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-blog-gobet-chinh-thuc-review__section-title {
    font-size: 1.5rem;
  }
  .page-blog-gobet-chinh-thuc-review__card-title {
    font-size: 1.2rem;
  }
  .page-blog-gobet-chinh-thuc-review__text-block, .page-blog-gobet-chinh-thuc-review p, .page-blog-gobet-chinh-thuc-review li {
    font-size: 0.9rem;
  }
  .page-blog-gobet-chinh-thuc-review img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-gobet-chinh-thuc-review__card {
    margin-left: 15px;
    margin-right: 15px;
  }
  .page-blog-gobet-chinh-thuc-review__grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog-gobet-chinh-thuc-review__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-blog-gobet-chinh-thuc-review__faq-answer {
    padding: 10px 20px 15px 20px;
  }
}