/* style/betting-brand-reviews-best-platforms.css */
.page-betting-brand-reviews-best-platforms {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-betting-brand-reviews-best-platforms__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-betting-brand-reviews-best-platforms__hero {
  background: linear-gradient(135deg, #007bff, #4da3ff);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-betting-brand-reviews-best-platforms__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,blue,gold]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-betting-brand-reviews-best-platforms__hero .page-betting-brand-reviews-best-platforms__container {
  position: relative;
  z-index: 1;
}

.page-betting-brand-reviews-best-platforms__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-betting-brand-reviews-best-platforms__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-betting-brand-reviews-best-platforms__cta-button {
  display: inline-block;
  background-color: #ffc107; /* Auxiliary color */
  color: #000000; /* Ensure high contrast */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-betting-brand-reviews-best-platforms__cta-button:hover {
  background-color: #e0a800; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-betting-brand-reviews-best-platforms__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-betting-brand-reviews-best-platforms__cta-button--final {
  background-color: #007bff; /* Main color */
  color: #ffffff; /* Ensure high contrast */
}

.page-betting-brand-reviews-best-platforms__cta-button--final:hover {
  background-color: #0056b3; /* Darker blue on hover */
}

.page-betting-brand-reviews-best-platforms__hero-image {
  max-width: 80%;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-betting-brand-reviews-best-platforms__intro-section,
.page-betting-brand-reviews-best-platforms__criteria-section,
.page-betting-brand-reviews-best-platforms__top-platforms-section,
.page-betting-brand-reviews-best-platforms__benefits-section,
.page-betting-brand-reviews-best-platforms__guide-section,
.page-betting-brand-reviews-best-platforms__faq-section,
.page-betting-brand-reviews-best-platforms__call-to-action {
  padding: 60px 0;
}

.page-betting-brand-reviews-best-platforms__section-heading {
  font-size: 2.2em;
  color: #007bff; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-betting-brand-reviews-best-platforms__section-heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #ffc107; /* Auxiliary color */
  border-radius: 2px;
}

.page-betting-brand-reviews-best-platforms__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-betting-brand-reviews-best-platforms__text-content strong {
  color: #007bff;
}

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

.page-betting-brand-reviews-best-platforms__criterion-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-brand-reviews-best-platforms__criterion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-betting-brand-reviews-best-platforms__criterion-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-betting-brand-reviews-best-platforms__criterion-title {
  font-size: 1.5em;
  color: #007bff; /* Main color */
  margin-bottom: 15px;
}

.page-betting-brand-reviews-best-platforms__criterion-description {
  font-size: 0.95em;
  color: #555;
}

/* Platform List */
.page-betting-brand-reviews-best-platforms__platform-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-betting-brand-reviews-best-platforms__platform-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-betting-brand-reviews-best-platforms__platform-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 25px;
  border-radius: 50%;
  border: 3px solid #ffc107; /* Auxiliary color */
  padding: 5px;
}

.page-betting-brand-reviews-best-platforms__platform-info {
  flex-grow: 1;
}

.page-betting-brand-reviews-best-platforms__platform-name {
  font-size: 1.8em;
  color: #007bff; /* Main color */
  margin-bottom: 15px;
}

.page-betting-brand-reviews-best-platforms__platform-description {
  font-size: 1em;
  color: #444;
  margin-bottom: 20px;
  text-align: justify;
}

.page-betting-brand-reviews-best-platforms__platform-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-betting-brand-reviews-best-platforms__platform-features li {
  margin-bottom: 8px;
  font-size: 0.95em;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-betting-brand-reviews-best-platforms__platform-features li::before {
  content: '✔';
  color: #28a745; /* Green checkmark */
  margin-right: 8px;
  font-weight: bold;
}

.page-betting-brand-reviews-best-platforms__platform-cta {
  display: inline-block;
  background-color: #007bff; /* Main color */
  color: #ffffff; /* Ensure high contrast */
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
  border: none;
  cursor: pointer;
}

.page-betting-brand-reviews-best-platforms__platform-cta:hover {
  background-color: #0056b3; /* Darker blue on hover */
  transform: translateY(-2px);
}

/* Benefits Section */
.page-betting-brand-reviews-best-platforms__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-betting-brand-reviews-best-platforms__benefit-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-brand-reviews-best-platforms__benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-betting-brand-reviews-best-platforms__benefit-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: #ffc107; /* Auxiliary color */
  padding: 10px;
}

.page-betting-brand-reviews-best-platforms__benefit-title {
  font-size: 1.6em;
  color: #007bff; /* Main color */
  margin-bottom: 15px;
}

.page-betting-brand-reviews-best-platforms__benefit-description {
  font-size: 0.95em;
  color: #555;
}

/* Guide Section */
.page-betting-brand-reviews-best-platforms__guide-list {
  list-style: none;
  counter-reset: guide-counter;
  padding: 0;
  margin-top: 30px;
}

.page-betting-brand-reviews-best-platforms__guide-list li {
  background-color: #fff;
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  position: relative;
  padding-left: 70px;
}

.page-betting-brand-reviews-best-platforms__guide-list li::before {
  counter-increment: guide-counter;
  content: counter(guide-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #007bff; /* Main color */
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3em;
  font-weight: bold;
}

.page-betting-brand-reviews-best-platforms__guide-list li strong {
  color: #007bff;
}

/* FAQ Section */
.page-betting-brand-reviews-best-platforms__faq-item {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-betting-brand-reviews-best-platforms__faq-question {
  font-size: 1.3em;
  color: #007bff; /* Main color */
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}