/* style/index-review-sinbet.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1A1A1A; /* Dark Grey/Black */
  --accent-color: #E74C3C; /* Red for emphasis */
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #0a0a0a;
  --card-background: #1f1f1f;
  --border-color: rgba(255, 255, 255, 0.1);
}

.page-index-review-sinbet {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default light text for dark body background */
  background-color: var(--background-dark); /* Inherited from body or shared.css */
}

/* Fixed navigation bar spacing */
.page-index-review-sinbet__hero-review-banner {
  padding-top: 120px; /* Desktop: Adjust based on actual fixed header height */
  background: var(--background-dark);
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.page-index-review-sinbet__hero-review-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-index-review-sinbet__hero-review-image {
  width: 100%;
  max-width: 900px; /* Adjust max-width for the main image */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-index-review-sinbet__hero-review-content {
  text-align: center;
}

.page-index-review-sinbet__main-title {
  font-size: 3.2em;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-index-review-sinbet__intro-text {
  font-size: 1.2em;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 900px;
}

.page-index-review-sinbet__intro-text strong {
  color: var(--primary-color);
}

.page-index-review-sinbet__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(135deg, var(--primary-color), #FFA500);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.3em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
}

.page-index-review-sinbet__cta-button:hover {
  background: linear-gradient(135deg, #FFA500, var(--primary-color));
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-index-review-sinbet__cta-button--secondary {
  background: linear-gradient(135deg, #FFD700, #FFC107);
  color: var(--secondary-color);
}

.page-index-review-sinbet__cta-button--secondary:hover {
  background: linear-gradient(135deg, #FFC107, #FFD700);
}

.page-index-review-sinbet__review-sections-wrapper {
  padding: 60px 20px;
  background-color: var(--background-dark); /* Ensure dark background */
  color: var(--text-light);
}

.page-index-review-sinbet__review-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-index-review-sinbet__review-card,
.page-index-review-sinbet__conclusion-card {
  background-color: var(--card-background); /* Dark card background */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--border-color);
}

.page-index-review-sinbet__section-title {
  font-size: 2.2em;
  color: var(--primary-color);
  margin-bottom: 25px;
  font-weight: bold;
  text-align: center;
}

.page-index-review-sinbet__section-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.page-index-review-sinbet__review-content-block p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: var(--text-light);
  text-align: left;
}

.page-index-review-sinbet__review-content-block ul {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 15px;
  color: var(--text-light);
  text-align: left;
}

.page-index-review-sinbet__review-content-block ul li {
  margin-bottom: 8px;
  font-size: 1.1em;
}

.page-index-review-sinbet__review-content-block strong {
  color: var(--primary-color);
}

.page-index-review-sinbet__conclusion-card {
  background-color: var(--secondary-color);
  padding: 50px;
}

.page-index-review-sinbet__conclusion-card .page-index-review-sinbet__section-title {
  color: var(--primary-color);
}

.page-index-review-sinbet__conclusion-card p {
  font-size: 1.2em;
  color: var(--text-light);
  margin-bottom: 25px;
  text-align: center;
}

/* FAQ Section */
.page-index-review-sinbet__faq-section {
  padding: 60px 20px;
  background-color: var(--background-dark);
}

.page-index-review-sinbet__faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-index-review-sinbet__faq-main-title {
  font-size: 2.5em;
  color: var(--primary-color);
  margin-bottom: 40px;
  text-align: center;
  font-weight: bold;
}

.page-index-review-sinbet__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.page-index-review-sinbet__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  background-color: var(--card-background);
  color: var(--text-light);
}

.page-index-review-sinbet__faq-item.active .page-index-review-sinbet__faq-answer {
  max-height: 2000px !important; /* Sufficiently large */
  padding: 20px !important;
  opacity: 1;
  border-radius: 0 0 8px 8px;
}

.page-index-review-sinbet__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: var(--secondary-color);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: var(--text-light);
}

.page-index-review-sinbet__faq-question:hover {
  background-color: #2a2a2a;
  border-color: #3a3a3a;
}

.page-index-review-sinbet__faq-question:active {
  background-color: #3a3a3a;
}

.page-index-review-sinbet__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.15em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--primary-color);
}

.page-index-review-sinbet__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-index-review-sinbet__faq-item.active .page-index-review-sinbet__faq-toggle {
  color: var(--primary-color);
  transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-sinbet__main-title {
    font-size: 2.8em;
  }
  .page-index-review-sinbet__section-title {
    font-size: 2em;
  }
  .page-index-review-sinbet__intro-text,
  .page-index-review-sinbet__review-content-block p,
  .page-index-review-sinbet__review-content-block ul li,
  .page-index-review-sinbet__conclusion-card p {
    font-size: 1em;
  }
  .page-index-review-sinbet__cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }
  .page-index-review-sinbet__review-card, .page-index-review-sinbet__conclusion-card {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-index-review-sinbet__hero-review-banner {
    padding-top: 100px !important; /* Mobile: Adjust based on actual fixed header height */
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-index-review-sinbet__hero-review-container {
    padding: 30px 0;
  }
  .page-index-review-sinbet__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-index-review-sinbet__intro-text {
    font-size: 0.95em;
    margin-bottom: 25px;
  }
  .page-index-review-sinbet__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-review-sinbet__review-sections-wrapper, .page-index-review-sinbet__faq-section {
    padding: 40px 15px;
  }
  .page-index-review-sinbet__review-container {
    gap: 30px;
  }
  .page-index-review-sinbet__review-card, .page-index-review-sinbet__conclusion-card {
    padding: 25px;
  }
  .page-index-review-sinbet__section-title {
    font-size: 1.6em;
    margin-bottom: 20px;
  }
  .page-index-review-sinbet__section-image {
    margin-bottom: 25px;
  }
  .page-index-review-sinbet__review-content-block p,
  .page-index-review-sinbet__review-content-block ul li,
  .page-index-review-sinbet__conclusion-card p {
    font-size: 0.9em;
    text-align: justify;
  }
  .page-index-review-sinbet__review-content-block ul {
    margin-left: 20px;
  }
  .page-index-review-sinbet__faq-main-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-index-review-sinbet__faq-question {
    padding: 15px;
  }
  .page-index-review-sinbet__faq-question h3 {
    font-size: 1em;
  }
  .page-index-review-sinbet__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-index-review-sinbet__faq-answer {
    padding: 0 15px;
  }
  .page-index-review-sinbet__faq-item.active .page-index-review-sinbet__faq-answer {
    padding: 15px !important;
  }
  /* Ensure all images are responsive and do not overflow */
  .page-index-review-sinbet img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-index-review-sinbet__review-card,
  .page-index-review-sinbet__conclusion-card,
  .page-index-review-sinbet__faq-item,
  .page-index-review-sinbet__hero-review-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* Contrast Fixes */
.page-index-review-sinbet__light-text {
  color: var(--text-light);
}

.page-index-review-sinbet__dark-bg {
  background-color: var(--background-dark);
}

.page-index-review-sinbet__card-background {
  background-color: var(--card-background);
}

/* Ensure strong elements have sufficient contrast on various backgrounds */
.page-index-review-sinbet__intro-text strong,
.page-index-review-sinbet__review-content-block strong,
.page-index-review-sinbet__faq-question h3 {
  color: var(--primary-color);
}