/* style/betting-platform-reviews-platform-b.css */
.page-betting-platform-reviews-platform-b {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light grey for main text on dark background */
  background-color: #0A192F; /* Main dark blue background */
}

.page-betting-platform-reviews-platform-b__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-betting-platform-reviews-platform-b__highlight {
  color: #FFD700; /* Gold accent color */
}

/* Hero Section */
.page-betting-platform-reviews-platform-b__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #333d4f 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-betting-platform-reviews-platform-b__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-betting-platform-reviews-platform-b__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-betting-platform-reviews-platform-b__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  margin: 10px;
}

.page-betting-platform-reviews-platform-b__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A192F; /* Dark blue text */
  border: 2px solid #FFD700;
}

.page-betting-platform-reviews-platform-b__btn--primary:hover {
  background-color: #e6c200; /* Darker gold */
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-betting-platform-reviews-platform-b__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-betting-platform-reviews-platform-b__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
}

.page-betting-platform-reviews-platform-b__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* Content Section */
.page-betting-platform-reviews-platform-b__content-section {
  padding: 60px 0;
  background-color: #1a2a43; /* Slightly lighter dark blue */
}

.page-betting-platform-reviews-platform-b__article {
  background-color: #0A192F;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-betting-platform-reviews-platform-b__section-title {
  font-size: 2.5em;
  color: #FFFFFF;
  margin-bottom: 30px;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 2px solid #FFD700;
}

.page-betting-platform-reviews-platform-b__subsection-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-betting-platform-reviews-platform-b__article p {
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.7;
  color: #E0E0E0;
}

.page-betting-platform-reviews-platform-b__article ul,
.page-betting-platform-reviews-platform-b__article ol {
  margin-bottom: 20px;
  padding-left: 25px;
}

.page-betting-platform-reviews-platform-b__article li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-betting-platform-reviews-platform-b__article li strong {
  color: #FFD700;
}

.page-betting-platform-reviews-platform-b__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-betting-platform-reviews-platform-b__article a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-betting-platform-reviews-platform-b__article a:hover {
  color: #e6c200;
  text-decoration: underline;
}

/* Criteria Grid */
.page-betting-platform-reviews-platform-b__criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-betting-platform-reviews-platform-b__criterion-card {
  background-color: #1a2a43;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid #FFD700;
}

.page-betting-platform-reviews-platform-b__criterion-card:hover {
  transform: translateY(-5px);
  background-color: #2b3a50;
}

.page-betting-platform-reviews-platform-b__criterion-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-betting-platform-reviews-platform-b__criterion-card p {
  font-size: 1em;
  color: #C0C0C0;
}

/* Steps List */
.page-betting-platform-reviews-platform-b__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-betting-platform-reviews-platform-b__steps-list li {
  background-color: #1a2a43;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 80px; /* Space for step number */
}

.page-betting-platform-reviews-platform-b__steps-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 25px;
  top: 25px;
  background-color: #FFD700;
  color: #0A192F;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-betting-platform-reviews-platform-b__steps-list h4 {
  color: #FFD700;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-betting-platform-reviews-platform-b__steps-list p {
  color: #E0E0E0;
  font-size: 1em;
}

/* FAQ Section */
.page-betting-platform-reviews-platform-b__faq-section {
  margin-top: 60px;
  padding: 40px;
  background-color: #0A192F;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-betting-platform-reviews-platform-b__faq-question {
  font-size: 1.4em;
  color: #FFFFFF;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
  transition: color 0.3s ease;
}

.page-betting-platform-reviews-platform-b__faq-question:hover {
  color: #FFD700;
}

.page-betting-platform-reviews-platform-b__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-betting-platform-reviews-platform-b__faq-item.active .page-betting-platform-reviews-platform-b__faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.page-betting-platform-reviews-platform-b__faq-answer {
  font-size: 1.1em;
  color: #C0C0C0;
  margin-bottom: 20px;
  padding-left: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-betting-platform-reviews-platform-b__faq-item.active .page-betting-platform-reviews-platform-b__faq-answer {
  max-height: 200px; /* Adjust as needed */
  padding-top: 10px;
  padding-bottom: 10px;
}

/* CTA Bottom Section */
.page-betting-platform-reviews-platform-b__cta-bottom {
  background: linear-gradient(90deg, #0A192F 0%, #FFD700 100%); /* Gradient with gold */
  padding: 80px 0;
  text-align: center;
  color: #0A192F;
  border-top: 5px solid #FFD700;
}

.page-betting-platform-reviews-platform-b__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #0A192F;
}

.page-betting-platform-reviews-platform-b__cta-text {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333;
}

.page-betting-platform-reviews-platform-b__cta-bottom .page-betting-platform-reviews-platform-b__btn--primary {
  background-color: #0A192F;
  color: #FFD700;
  border-color: #0A192F;
}

.page-betting-platform-reviews-platform-b__cta-bottom .page-betting-platform-reviews-platform-b__btn--primary:hover {
  background-color: #2b3a50;
  border-color: #2b3a50;
  color: #FFD700;
}

.page-betting-platform-reviews-platform-b__cta-bottom .page-betting-platform-reviews-platform-b__btn--secondary {
  background-color: transparent;
  color: #0A192F;
  border-color: #0A192F;
}

.page-betting-platform-reviews-platform-b__cta-bottom .page-betting-platform-reviews-platform-b__btn--secondary:hover {
  background-color: #0A192F;
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-betting-platform-reviews-platform-b__hero-title {
    font-size: 2.5em;
  }
  .page-betting-platform-reviews-platform-b__section-title {
    font-size: 2em;
  }
  .page-betting-platform-reviews-platform-b__subsection-title {
    font-size: 1.6em;
  }
  .page-betting-platform-reviews-platform-b__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-betting-platform-reviews-platform-b__hero-section,
  .page-betting-platform-reviews-platform-b__content-section,
  .page-betting-platform-reviews-platform-b__cta-bottom {
    padding: 60px 0;
  }
  .page-betting-platform-reviews-platform-b__hero-title {
    font-size: 2em;
  }
  .page-betting-platform-reviews-platform-b__hero-subtitle {
    font-size: 1.1em;
  }
  .page-betting-platform-reviews-platform-b__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 8px;
  }
  .page-betting-platform-reviews-platform-b__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-betting-platform-reviews-platform-b__article {
    padding: 30px;
  }
  .page-betting-platform-reviews-platform-b__section-title {
    font-size: 1.8em;
  }
  .page-betting-platform-reviews-platform-b__subsection-title {
    font-size: 1.4em;
  }
  .page-betting-platform-reviews-platform-b__article p,
  .page-betting-platform-reviews-platform-b__article li,
  .page-betting-platform-reviews-platform-b__criterion-card p {
    font-size: 0.95em;
  }
  .page-betting-platform-reviews-platform-b__criteria-grid {
    grid-template-columns: 1fr;
  }
  .page-betting-platform-reviews-platform-b__steps-list li {
    padding-left: 65px;
  }
  .page-betting-platform-reviews-platform-b__steps-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
    left: 20px;
    top: 20px;
  }
  .page-betting-platform-reviews-platform-b__faq-section {
    padding: 30px;
  }
  .page-betting-platform-reviews-platform-b__faq-question {
    font-size: 1.2em;
  }
  .page-betting-platform-reviews-platform-b__faq-answer {
    font-size: 1em;
  }
  .page-betting-platform-reviews-platform-b__cta-title {
    font-size: 1.8em;
  }
  .page-betting-platform-reviews-platform-b__cta-text {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-betting-platform-reviews-platform-b__hero-title {
    font-size: 1.8em;
  }
  .page-betting-platform-reviews-platform-b__hero-subtitle {
    font-size: 1em;
  }
  .page-betting-platform-reviews-platform-b__btn {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }
  .page-betting-platform-reviews-platform-b__section-title {
    font-size: 1.5em;
  }
  .page-betting-platform-reviews-platform-b__subsection-title {
    font-size: 1.2em;
  }
  .page-betting-platform-reviews-platform-b__article p,
  .page-betting-platform-reviews-platform-b__article li,
  .page-betting-platform-reviews-platform-b__criterion-card p {
    font-size: 0.9em;
  }
  .page-betting-platform-reviews-platform-b__cta-title {
    font-size: 1.5em;
  }
  .page-betting-platform-reviews-platform-b__cta-text {
    font-size: 1em;
  }
}