.page-index-online-betting-products-overview {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light grey text for dark background */
  background-color: #1a1a1a; /* Very dark grey background */
  line-height: 1.6;
  font-size: 16px;
}

.page-index-online-betting-products-overview a {
  color: #00BFFF; /* Deep Sky Blue for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-online-betting-products-overview a:hover {
  color: #FFD700; /* Gold on hover */
}

.page-index-online-betting-products-overview__link-inline {
  color: #00BFFF;
  font-weight: bold;
}

.page-index-online-betting-products-overview__link-inline:hover {
  color: #FFD700;
}

.page-index-online-betting-products-overview__keyword-highlight {
  color: #FFD700; /* Gold for keywords */
  font-weight: bold;
}

.page-index-online-betting-products-overview__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%); /* Darker gradient */
  color: #f0f0f0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.page-index-online-betting-products-overview__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[IMAGE:hero_banner]'); /* Use hero image as background overlay */
  background-size: cover;
  background-position: center;
  opacity: 0.15; /* Subtle overlay */
  z-index: 0;
}

.page-index-online-betting-products-overview__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-index-online-betting-products-overview__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-online-betting-products-overview__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-index-online-betting-products-overview__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-index-online-betting-products-overview__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #1a1a1a; /* Dark text for gold background */
}

.page-index-online-betting-products-overview__btn--primary:hover {
  background-color: #e6c200; /* Darker gold */
  transform: translateY(-2px);
}

.page-index-online-betting-products-overview__btn--secondary {
  background-color: #00BFFF; /* Deep Sky Blue */
  color: #1a1a1a; /* Dark text for blue background */
  border: 2px solid #00BFFF;
}

.page-index-online-betting-products-overview__btn--secondary:hover {
  background-color: #00a1e0; /* Darker blue */
  border-color: #00a1e0;
  color: #f0f0f0; /* Lighter text on hover */
  transform: translateY(-2px);
}

.page-index-online-betting-products-overview__btn--center {
  display: block;
  margin: 30px auto 0 auto;
  width: fit-content;
}

.page-index-online-betting-products-overview__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-index-online-betting-products-overview__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-index-online-betting-products-overview__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #00BFFF; /* Deep Sky Blue underline */
  border-radius: 2px;
}

.page-index-online-betting-products-overview__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #c0c0c0;
}

.page-index-online-betting-products-overview__product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index-online-betting-products-overview__product-card {
  background-color: #2a2a2a; /* Slightly lighter dark grey */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-index-online-betting-products-overview__product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.page-index-online-betting-products-overview__product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700; /* Gold border */
}

.page-index-online-betting-products-overview__product-title {
  font-size: 1.8em;
  color: #00BFFF; /* Deep Sky Blue */
  padding: 20px 20px 10px 20px;
}

.page-index-online-betting-products-overview__product-description {
  font-size: 1em;
  color: #c0c0c0;
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-index-online-betting-products-overview__product-card .page-index-online-betting-products-overview__btn {
  margin: 0 20px 20px 20px;
  text-align: center;
}

.page-index-online-betting-products-overview__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 30px;
}

.page-index-online-betting-products-overview__feature-item {
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-index-online-betting-products-overview__feature-item:hover {
  transform: translateY(-5px);
}

.page-index-online-betting-products-overview__feature-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-index-online-betting-products-overview__feature-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
}

.page-index-online-betting-products-overview__feature-description {
  font-size: 1em;
  color: #c0c0c0;
}

.page-index-online-betting-products-overview__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-index-online-betting-products-overview__steps-list li {
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-left: 80px;
  text-align: left;
}

.page-index-online-betting-products-overview__steps-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 30px;
  background-color: #00BFFF; /* Deep Sky Blue */
  color: #1a1a1a; /* Dark text */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

.page-index-online-betting-products-overview__step-title {
  font-size: 1.4em;
  color: #FFD700; /* Gold */
  margin-bottom: 10px;
}

.page-index-online-betting-products-overview__step-description {
  font-size: 0.95em;
  color: #c0c0c0;
}

.page-index-online-betting-products-overview__list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 30px auto;
}

.page-index-online-betting-products-overview__list li {
  background-color: #2a2a2a;
  margin-bottom: 15px;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 45px;
  color: #c0c0c0;
}

.page-index-online-betting-products-overview__list li::before {
  content: '✓';
  color: #FFD700; /* Gold checkmark */
  font-size: 1.2em;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
}

.page-index-online-betting-products-overview__cta-section {
  background: linear-gradient(90deg, #1a1a1a 0%, #00BFFF 100%); /* Blue gradient */
  padding: 80px 20px;
  text-align: center;
  color: #f0f0f0;
}

.page-index-online-betting-products-overview__cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
}

.page-index-online-betting-products-overview__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

.page-index-online-betting-products-overview__cta-buttons .page-index-online-betting-products-overview__btn {
  margin: 0 15px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-online-betting-products-overview__hero-title {
    font-size: 2.8em;
  }
  .page-index-online-betting-products-overview__section-title {
    font-size: 2em;
  }
  .page-index-online-betting-products-overview__product-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-index-online-betting-products-overview__feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index-online-betting-products-overview__hero-section {
    padding: 60px 15px;
  }
  .page-index-online-betting-products-overview__hero-title {
    font-size: 2.2em;
  }
  .page-index-online-betting-products-overview__hero-description {
    font-size: 1.1em;
  }
  .page-index-online-betting-products-overview__section {
    padding: 40px 15px;
  }
  .page-index-online-betting-products-overview__section-title {
    font-size: 1.8em;
  }
  .page-index-online-betting-products-overview__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-index-online-betting-products-overview__product-card {
    margin-bottom: 20px;
  }
  .page-index-online-betting-products-overview__steps-list {
    grid-template-columns: 1fr;
  }
  .page-index-online-betting-products-overview__steps-list li {
    padding-left: 60px;
  }
  .page-index-online-betting-products-overview__steps-list li::before {
    left: 15px;
    width: 35px;
    height: 35px;
    font-size: 1.3em;
  }
  .page-index-online-betting-products-overview__cta-title {
    font-size: 2.2em;
  }
  .page-index-online-betting-products-overview__cta-description {
    font-size: 1.1em;
  }
  .page-index-online-betting-products-overview__cta-buttons .page-index-online-betting-products-overview__btn {
    display: block;
    margin: 15px auto;
  }
}

@media (max-width: 480px) {
  .page-index-online-betting-products-overview__hero-title {
    font-size: 1.8em;
  }
  .page-index-online-betting-products-overview__hero-description {
    font-size: 0.95em;
  }
  .page-index-online-betting-products-overview__btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-index-online-betting-products-overview__section-title {
    font-size: 1.5em;
  }
  .page-index-online-betting-products-overview__product-title {
    font-size: 1.5em;
  }
  .page-index-online-betting-products-overview__feature-title {
    font-size: 1.3em;
  }
  .page-index-online-betting-products-overview__cta-title {
    font-size: 1.8em;
  }
}