.page-index-review-saobet {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-index-review-saobet__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-review-saobet__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-index-review-saobet__section:nth-of-type(even) {
  background-color: #ffffff;
}

.page-index-review-saobet__section-title {
  font-size: 38px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}

.page-index-review-saobet__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--auxiliary-color);
  border-radius: 2px;
}

.page-index-review-saobet__subsection-title {
  font-size: 28px;
  color: #4A148C; /* Primary color */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-review-saobet__text-content {
  font-size: 17px;
  margin-bottom: 15px;
  color: #555555;
}

.page-index-review-saobet__hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #4A148C, #6A1B9A);
  color: #ffffff;
}

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

.page-index-review-saobet__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

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

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

.page-index-review-saobet__hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Auxiliary color */
  line-height: 1.2;
}

.page-index-review-saobet__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-index-review-saobet__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #FFD700; /* Auxiliary color */
  color: #4A148C; /* Primary color */
  text-decoration: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-index-review-saobet__cta-button:hover {
  background: #E6C200; /* Slightly darker auxiliary */
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-review-saobet__cta-button--small {
  padding: 12px 30px;
  font-size: 16px;
  margin-top: 15px;
  border-radius: 30px;
}

.page-index-review-saobet__cta-button--large {
  padding: 22px 60px;
  font-size: 24px;
  margin-top: 30px;
  border-radius: 60px;
}

.page-index-review-saobet__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-saobet__game-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-review-saobet__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.page-index-review-saobet__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-index-review-saobet__game-title {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
  padding: 0 15px;
  font-weight: bold;
}

.page-index-review-saobet__game-description {
  font-size: 15px;
  color: #666666;
  padding: 0 20px;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-index-review-saobet__card-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--auxiliary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-review-saobet__card-button:hover {
  background: #E6C200;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-index-review-saobet__content-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-index-review-saobet__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-index-review-saobet__steps-list li {
  background-color: #ffffff;
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-index-review-saobet__steps-list li .page-index-review-saobet__subsection-title {
  margin-top: 0;
  color: #4A148C;
  font-size: 26px;
}

.page-index-review-saobet__steps-list li .page-index-review-saobet__text-content {
  font-size: 16px;
  margin-bottom: 20px;
}

/* FAQ styles */
.page-index-review-saobet__faq-list {
  margin-top: 40px;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f5f5f5;
}

.faq-question h3 {
  margin: 0;
  font-size: 20px;
  color: var(--primary-color);
  font-weight: bold;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--auxiliary-color);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  border-radius: 0 0 8px 8px;
}

.faq-answer p {
  padding: 15px 0;
  margin: 0;
  color: #555555;
  font-size: 16px;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 15px 25px;
  border-top: 1px solid #e0e0e0;
}

.faq-item.active .faq-question {
  background-color: #f0f0f0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-color);
}

.page-index-review-saobet__footer-bottom {
  background-color: #333333;
  padding: 20px 0;
  text-align: center;
}

.page-index-review-saobet__copyright {
  color: #cccccc;
  font-size: 14px;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-review-saobet__section-title {
    font-size: 32px;
  }

  .page-index-review-saobet__subsection-title {
    font-size: 24px;
  }

  .page-index-review-saobet__hero-title {
    font-size: 40px;
  }

  .page-index-review-saobet__hero-description {
    font-size: 18px;
  }

  .page-index-review-saobet__cta-button {
    padding: 15px 35px;
    font-size: 18px;
  }

  .page-index-review-saobet__cta-button--large {
    padding: 18px 45px;
    font-size: 20px;
  }

  .page-index-review-saobet__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-index-review-saobet__game-title {
    font-size: 22px;
  }

  .faq-question h3 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .page-index-review-saobet__section {
    padding: 40px 0;
  }

  .page-index-review-saobet__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-index-review-saobet__subsection-title {
    font-size: 22px;
    margin-top: 30px;
  }

  .page-index-review-saobet__hero {
    padding: 40px 15px;
  }

  .page-index-review-saobet__hero-title {
    font-size: 32px;
  }

  .page-index-review-saobet__hero-description {
    font-size: 16px;
  }

  .page-index-review-saobet__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }

  .page-index-review-saobet__cta-button--large {
    padding: 15px 35px;
    font-size: 18px;
  }

  .page-index-review-saobet__game-grid {
    grid-template-columns: 1fr;
  }

  .page-index-review-saobet__game-image {
    height: 180px;
  }

  .page-index-review-saobet__steps-list li {
    padding: 20px;
  }

  .faq-question {
    padding: 15px 20px;
  }

  .faq-question h3 {
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-answer p {
    padding: 10px 0;
    font-size: 15px;
  }

  .faq-item.active .faq-answer {
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .page-index-review-saobet__hero-title {
    font-size: 28px;
  }

  .page-index-review-saobet__hero-description {
    font-size: 15px;
  }

  .page-index-review-saobet__section-title {
    font-size: 24px;
  }

  .page-index-review-saobet__subsection-title {
    font-size: 20px;
  }
}