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

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

/* Hero Section */
.page-betting-products__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #0A244A 0%, #051a34 100%); /* Dark blue gradient */
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.page-betting-products__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.2;
}

.page-betting-products__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-betting-products__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

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

.page-betting-products__hero-description {
  font-size: 1.2em;
  color: #B0B0B0; /* Lighter grey for description */
  margin-bottom: 30px;
}

.page-betting-products__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-betting-products__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-betting-products__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A244A; /* Dark blue text on gold */
}

.page-betting-products__btn--primary:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-betting-products__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text on dark background */
  border: 2px solid #FFD700;
}

.page-betting-products__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A244A;
  transform: translateY(-2px);
}

.page-betting-products__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-betting-products__text-content {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 20px;
  text-align: justify;
}

/* Intro Section */
.page-betting-products__intro-section {
  padding: 60px 0;
  background-color: #0A244A;
}

.page-betting-products__features-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-betting-products__features-list li {
  background-color: #1a3a60; /* Slightly lighter dark blue */
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #E0E0E0;
  display: flex;
  align-items: center;
}

.page-betting-products__icon {
  margin-right: 15px;
  font-size: 1.5em;
  color: #FFD700; /* Gold icon */
}

.page-betting-products__icon--check::before {
  content: '✔'; /* Unicode checkmark */
}

/* Products Overview */
.page-betting-products__products-overview {
  padding: 60px 0;
  background-color: #123055; /* Slightly lighter dark blue for contrast */
}

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

.page-betting-products__product-card {
  background-color: #0A244A;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-products__product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-betting-products__product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
  border-bottom: 3px solid #FFD700;
}

.page-betting-products__product-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-betting-products__product-description {
  font-size: 0.95em;
  color: #B0B0B0;
  padding: 0 15px;
  margin-bottom: 20px;
  min-height: 100px; /* Ensure consistent height for description */
}

.page-betting-products__btn--details {
  background-color: #FFD700;
  color: #0A244A;
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.page-betting-products__btn--details:hover {
  background-color: #e6c200;
}

/* CTA Section */
.page-betting-products__cta-section {
  padding: 80px 0;
  background-color: #0A244A;
  text-align: center;
}

.page-betting-products__cta-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 40px;
}

.page-betting-products__step {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: #1a3a60;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-betting-products__step-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-betting-products__step p {
  color: #B0B0B0;
  font-size: 1em;
}

.page-betting-products__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

/* Safety Section */
.page-betting-products__safety-section {
  padding: 60px 0;
  background-color: #123055;
  text-align: center;
}

.page-betting-products__safety-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin-top: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.page-betting-products__faq-section {
  padding: 60px 0 80px 0;
  background-color: #0A244A;
}

.page-betting-products__faq-item {
  background-color: #1a3a60;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-betting-products__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-betting-products__faq-answer {
  color: #B0B0B0;
  font-size: 1em;
}

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

  .page-betting-products__section-title {
    font-size: 2em;
  }

  .page-betting-products__product-description {
    min-height: 80px;
  }
}

@media (max-width: 768px) {
  .page-betting-products__hero {
    padding: 60px 15px;
  }

  .page-betting-products__hero-title {
    font-size: 2.2em;
  }

  .page-betting-products__hero-description {
    font-size: 1em;
  }

  .page-betting-products__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-betting-products__btn {
    width: 100%;
    max-width: 300px;
  }

  .page-betting-products__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
    padding-top: 40px;
  }

  .page-betting-products__text-content {
    font-size: 1em;
  }

  .page-betting-products__product-grid {
    grid-template-columns: 1fr;
  }

  .page-betting-products__product-image {
    height: 180px;
  }

  .page-betting-products__step {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .page-betting-products__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-betting-products__faq-question {
    font-size: 1.1em;
  }
}

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

  .page-betting-products__section-title {
    font-size: 1.5em;
  }

  .page-betting-products__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-betting-products__product-description {
    min-height: auto;
  }
}