/* style/index-review-saobet.css */

:root {
  --primary-color: #1A202C; /* Deep Blue/Charcoal */
  --secondary-color: #FFD700; /* Gold */
  --accent-color: #E53E3E; /* Red for emphasis/offers */
  --text-dark: #1A202C;
  --text-light: #FFFFFF;
  --background-light: #F8F8F8;
  --background-dark: #2D3748;
  --border-color: #E0E0E0;
}

.page-index-review-saobet {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--background-light);
}

.page-index-review-saobet__hero-review {
  position: relative;
  width: 100%;
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #3a475a 100%); /* Slightly lighter dark gradient */
  color: var(--text-light);
  text-align: center;
  overflow: hidden;
}

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

.page-index-review-saobet__hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
  object-fit: cover;
}

.page-index-review-saobet__hero-content {
  z-index: 1;
}

.page-index-review-saobet__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-index-review-saobet__subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}

.page-index-review-saobet__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.page-index-review-saobet__section:last-of-type {
  border-bottom: none;
}

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

.page-index-review-saobet__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

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

.page-index-review-saobet__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #333;
}

.page-index-review-saobet__cta-button {
  display: inline-block;
  padding: 16px 45px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  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 gold */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-index-review-saobet__center-cta {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.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: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}

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

.page-index-review-saobet__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.page-index-review-saobet__game-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin: 20px 15px 10px;
}

.page-index-review-saobet__game-description {
  font-size: 0.95em;
  color: #555;
  padding: 0 20px 15px;
  flex-grow: 1;
}

.page-index-review-saobet__game-link {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--text-light);
  padding: 12px 25px;
  border-radius: 0 0 12px 12px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: auto; /* Push to bottom */
}

.page-index-review-saobet__game-link:hover {
  background-color: #c93030; /* Darker red */
}

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

.page-index-review-saobet__promotion-item {
  background: #ffffff;
  border-left: 5px solid var(--secondary-color);
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-index-review-saobet__promotion-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 10px;
}

.page-index-review-saobet__promotion-description {
  font-size: 1em;
  color: #444;
}

.page-index-review-saobet__guide-steps {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-saobet__step-item {
  flex: 1;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-review-saobet__step-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-index-review-saobet__step-description {
  font-size: 1em;
  color: #555;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-index-review-saobet__payment-methods {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-saobet__payment-card {
  flex: 1;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-index-review-saobet__payment-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-index-review-saobet__payment-description {
  font-size: 1em;
  color: #555;
}

.page-index-review-saobet__security-features {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-saobet__feature-card {
  flex: 1;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-index-review-saobet__feature-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-index-review-saobet__feature-description {
  font-size: 1em;
  color: #555;
}

.page-index-review-saobet__pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-saobet__pros-card, .page-index-review-saobet__cons-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.page-index-review-saobet__pros-title {
  font-size: 1.8em;
  color: #28a745; /* Green for pros */
  margin-bottom: 20px;
  text-align: center;
}

.page-index-review-saobet__cons-title {
  font-size: 1.8em;
  color: #dc3545; /* Red for cons */
  margin-bottom: 20px;
  text-align: center;
}

.page-index-review-saobet__pros-list, .page-index-review-saobet__cons-list {
  list-style: none;
  padding: 0;
}

.page-index-review-saobet__pros-list li p, .page-index-review-saobet__cons-list li p {
  margin-bottom: 10px;
  font-size: 1em;
  color: #444;
  position: relative;
  padding-left: 30px;
  text-align: left;
}

.page-index-review-saobet__pros-list li p::before {
  content: '✔';
  color: #28a745;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-index-review-saobet__cons-list li p::before {
  content: '✖';
  color: #dc3545;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-index-review-saobet__faq-list {
  margin-top: 40px;
}

/* FAQ default state - answer hidden */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
}

/* FAQ expanded state */
.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 15px;
  background: #f9f9f9;
  border-radius: 0 0 8px 8px;
  border: 1px solid var(--border-color);
  border-top: none;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* Question style */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  margin-bottom: 10px; /* Space between FAQ items */
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--primary-color);
}

.faq-question:hover {
  background: #f5f5f5;
  border-color: var(--secondary-color);
}

/* Toggle icon */
.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease, color 0.3s ease;
}

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

/* Responsive design */
@media (max-width: 992px) {
  .page-index-review-saobet__main-title {
    font-size: 2.8em;
  }

  .page-index-review-saobet__subtitle {
    font-size: 1.2em;
  }

  .page-index-review-saobet__section-title {
    font-size: 2em;
  }

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

  .page-index-review-saobet__guide-steps,
  .page-index-review-saobet__payment-methods,
  .page-index-review-saobet__security-features,
  .page-index-review-saobet__pros-cons-grid {
    flex-direction: column;
    gap: 20px;
  }
}

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

  .page-index-review-saobet__main-title {
    font-size: 2.2em;
  }

  .page-index-review-saobet__subtitle {
    font-size: 1em;
  }

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

  .page-index-review-saobet__section {
    padding: 40px 0;
  }

  .page-index-review-saobet__section-title {
    font-size: 1.8em;
  }

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

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

  .page-index-review-saobet__promotion-item,
  .page-index-review-saobet__step-item,
  .page-index-review-saobet__payment-card,
  .page-index-review-saobet__feature-card,
  .page-index-review-saobet__pros-card,
  .page-index-review-saobet__cons-card {
    padding: 20px;
  }

  .page-index-review-saobet__promotion-title,
  .page-index-review-saobet__step-title,
  .page-index-review-saobet__payment-title,
  .page-index-review-saobet__feature-title,
  .page-index-review-saobet__pros-title,
  .page-index-review-saobet__cons-title {
    font-size: 1.4em;
  }

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

  .faq-question h3 {
    font-size: 1em;
  }

  .faq-toggle {
    font-size: 20px;
  }
}