/* style/betting-brands-review-b-comprehensive.css */

/* Variables for color scheme */
:root {
  --page-betting-brands-review-b-comprehensive-primary-color: #0A2463;
  --page-betting-brands-review-b-comprehensive-secondary-color: #FFD700;
  --page-betting-brands-review-b-comprehensive-text-light: #F8F8F8; /* Light text for dark backgrounds */
  --page-betting-brands-review-b-comprehensive-text-dark: #222222; /* Dark text for light backgrounds */
  --page-betting-brands-review-b-comprehensive-accent-color: #f5db9c; /* Complementary to primary */
  --page-betting-brands-review-b-comprehensive-background-light: #e0e0e0; /* A very light grey for subtle sections */
}

.page-betting-brands-review-b-comprehensive {
  font-family: 'Arial', sans-serif;
  color: var(--page-betting-brands-review-b-comprehensive-text-dark);
  line-height: 1.6;
  background-color: #ffffff;
}

.page-betting-brands-review-b-comprehensive__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-betting-brands-review-b-comprehensive__hero-section {
  background: linear-gradient(135deg, var(--page-betting-brands-review-b-comprehensive-primary-color) 0%, #1a3a7a 100%);
  color: var(--page-betting-brands-review-b-comprehensive-text-light);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-betting-brands-review-b-comprehensive__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,dark_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-betting-brands-review-b-comprehensive__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
  position: relative;
  z-index: 1;
}

.page-betting-brands-review-b-comprehensive__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #e0e0e0;
  position: relative;
  z-index: 1;
}

.page-betting-brands-review-b-comprehensive__section-title {
  font-size: 2.5em;
  color: var(--page-betting-brands-review-b-comprehensive-primary-color);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-betting-brands-review-b-comprehensive__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--page-betting-brands-review-b-comprehensive-secondary-color);
  border-radius: 2px;
}

.page-betting-brands-review-b-comprehensive__subsection-title {
  font-size: 1.8em;
  color: var(--page-betting-brands-review-b-comprehensive-primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid var(--page-betting-brands-review-b-comprehensive-secondary-color);
  padding-left: 15px;
}

.page-betting-brands-review-b-comprehensive__intro-section,
.page-betting-brands-review-b-comprehensive__content-section,
.page-betting-brands-review-b-comprehensive__cta-final-section {
  padding: 60px 0;
}

.page-betting-brands-review-b-comprehensive__intro-section {
  background-color: #f9f9f9;
}

.page-betting-brands-review-b-comprehensive__content-section:nth-of-type(odd) {
  background-color: #fefefe;
}

.page-betting-brands-review-b-comprehensive__content-section:nth-of-type(even) {
  background-color: #f9f9f9;
}

.page-betting-brands-review-b-comprehensive p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: var(--page-betting-brands-review-b-comprehensive-text-dark);
}

.page-betting-brands-review-b-comprehensive__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-betting-brands-review-b-comprehensive__image--full-width {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.page-betting-brands-review-b-comprehensive__cta-button {
  display: inline-block;
  background-color: var(--page-betting-brands-review-b-comprehensive-secondary-color);
  color: var(--page-betting-brands-review-b-comprehensive-primary-color);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  position: relative;
  z-index: 1;
}

.page-betting-brands-review-b-comprehensive__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
}

.page-betting-brands-review-b-comprehensive__cta-button--inline {
    margin-top: 20px;
    margin-right: 15px;
}

.page-betting-brands-review-b-comprehensive__cta-final-section {
  background: var(--page-betting-brands-review-b-comprehensive-primary-color);
  color: var(--page-betting-brands-review-b-comprehensive-text-light);
  text-align: center;
  padding: 80px 0;
}

.page-betting-brands-review-b-comprehensive__cta-final-section .page-betting-brands-review-b-comprehensive__section-title {
  color: var(--page-betting-brands-review-b-comprehensive-text-light);
}

.page-betting-brands-review-b-comprehensive__cta-final-section .page-betting-brands-review-b-comprehensive__section-title::after {
    background-color: var(--page-betting-brands-review-b-comprehensive-secondary-color);
}

.page-betting-brands-review-b-comprehensive__cta-buttons-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-betting-brands-review-b-comprehensive__cta-button--large {
  padding: 18px 40px;
  font-size: 1.4em;
  min-width: 280px;
}

.page-betting-brands-review-b-comprehensive__cta-button--secondary {
  background-color: transparent;
  border: 2px solid var(--page-betting-brands-review-b-comprehensive-secondary-color);
  color: var(--page-betting-brands-review-b-comprehensive-secondary-color);
  box-shadow: none;
}

.page-betting-brands-review-b-comprehensive__cta-button--secondary:hover {
  background-color: var(--page-betting-brands-review-b-comprehensive-secondary-color);
  color: var(--page-betting-brands-review-b-comprehensive-primary-color);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-betting-brands-review-b-comprehensive .highlight {
    color: var(--page-betting-brands-review-b-comprehensive-secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-betting-brands-review-b-comprehensive__hero-title {
    font-size: 2.8em;
  }

  .page-betting-brands-review-b-comprehensive__hero-subtitle {
    font-size: 1.3em;
  }

  .page-betting-brands-review-b-comprehensive__section-title {
    font-size: 2em;
  }

  .page-betting-brands-review-b-comprehensive__subsection-title {
    font-size: 1.5em;
  }

  .page-betting-brands-review-b-comprehensive p {
    font-size: 1em;
  }

  .page-betting-brands-review-b-comprehensive__cta-button--large {
    min-width: unset;
    width: 100%;
  }

  .page-betting-brands-review-b-comprehensive__cta-buttons-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-betting-brands-review-b-comprehensive__hero-section {
    padding: 80px 0;
  }

  .page-betting-brands-review-b-comprehensive__hero-title {
    font-size: 2.2em;
  }

  .page-betting-brands-review-b-comprehensive__hero-subtitle {
    font-size: 1.1em;
  }

  .page-betting-brands-review-b-comprehensive__section-title {
    font-size: 1.8em;
  }

  .page-betting-brands-review-b-comprehensive__subsection-title {
    font-size: 1.3em;
  }

  .page-betting-brands-review-b-comprehensive__intro-section,
  .page-betting-brands-review-b-comprehensive__content-section,
  .page-betting-brands-review-b-comprehensive__cta-final-section {
    padding: 40px 0;
  }

  .page-betting-brands-review-b-comprehensive__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }

  .page-betting-brands-review-b-comprehensive__cta-button--large {
    padding: 15px 30px;
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-betting-brands-review-b-comprehensive__hero-title {
    font-size: 1.8em;
  }

  .page-betting-brands-review-b-comprehensive__hero-subtitle {
    font-size: 1em;
  }

  .page-betting-brands-review-b-comprehensive__section-title {
    font-size: 1.5em;
  }

  .page-betting-brands-review-b-comprehensive__subsection-title {
    font-size: 1.2em;
  }
}