.page-betting-news-insights {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

.page-betting-news-insights__hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 450px;
}

.page-betting-news-insights__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-betting-news-insights__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #ffffff;
}

.page-betting-news-insights__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

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

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

.page-betting-news-insights__section-title {
  font-size: 2.5em;
  color: #0056b3;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: bold;
}

.page-betting-news-insights__introduction,
.page-betting-news-insights__features,
.page-betting-news-insights__trends,
.page-betting-news-insights__regulations,
.page-betting-news-insights__strategies,
.page-betting-news-insights__platform-news,
.page-betting-news-insights__responsible-betting,
.page-betting-news-insights__detail-pages,
.page-betting-news-insights__cta-final {
  padding: 60px 0;
}

.page-betting-news-insights__introduction {
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
}

.page-betting-news-insights__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
  text-align: justify;
}

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

.page-betting-news-insights__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-news-insights__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-betting-news-insights__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 123, 255, 0.5));
}

.page-betting-news-insights__feature-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-betting-news-insights__feature-text {
  font-size: 1em;
  color: #666;
}

.page-betting-news-insights__image-full-width {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-betting-news-insights__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  margin-top: 20px;
}

.page-betting-news-insights__btn--primary {
  background-color: #007bff;
  color: #ffffff;
  border: 2px solid #007bff;
}

.page-betting-news-insights__btn--primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

.page-betting-news-insights__btn--secondary {
  background-color: #ffc107;
  color: #333;
  border: 2px solid #ffc107;
}

.page-betting-news-insights__btn--secondary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-2px);
}

.page-betting-news-insights__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-betting-news-insights__cta-buttons {
  text-align: center;
  margin-top: 40px;
}

.page-betting-news-insights__cta-buttons .page-betting-news-insights__btn {
  margin: 0 10px;
}

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

.page-betting-news-insights__detail-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-news-insights__detail-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-betting-news-insights__detail-title {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-betting-news-insights__detail-title a {
  color: #007bff;
  text-decoration: none;
}

.page-betting-news-insights__detail-title a:hover {
  text-decoration: underline;
}

.page-betting-news-insights__detail-description {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-betting-news-insights__cta-final {
  background-color: #007bff;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-betting-news-insights__cta-final .page-betting-news-insights__section-title {
  color: #ffffff;
}

.page-betting-news-insights__cta-final .page-betting-news-insights__text {
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-betting-news-insights__cta-final .page-betting-news-insights__btn--primary {
  background-color: #ffc107;
  color: #333;
  border-color: #ffc107;
}

.page-betting-news-insights__cta-final .page-betting-news-insights__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
}

.page-betting-news-insights__cta-final .page-betting-news-insights__btn--secondary {
  background-color: #ffffff;
  color: #007bff;
  border-color: #ffffff;
}

.page-betting-news-insights__cta-final .page-betting-news-insights__btn--secondary:hover {
  background-color: #e0e0e0;
  border-color: #e0e0e0;
}

.text-highlight {
  color: #ffc107;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-betting-news-insights__hero-title {
    font-size: 2.8em;
  }
  .page-betting-news-insights__hero-subtitle {
    font-size: 1.2em;
  }
  .page-betting-news-insights__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-betting-news-insights__hero {
    padding: 60px 0;
  }
  .page-betting-news-insights__hero-title {
    font-size: 2.2em;
  }
  .page-betting-news-insights__hero-subtitle {
    font-size: 1em;
  }
  .page-betting-news-insights__introduction,
  .page-betting-news-insights__features,
  .page-betting-news-insights__trends,
  .page-betting-news-insights__regulations,
  .page-betting-news-insights__strategies,
  .page-betting-news-insights__platform-news,
  .page-betting-news-insights__responsible-betting,
  .page-betting-news-insights__detail-pages,
  .page-betting-news-insights__cta-final {
    padding: 40px 0;
  }
  .page-betting-news-insights__feature-grid,
  .page-betting-news-insights__detail-list {
    grid-template-columns: 1fr;
  }
  .page-betting-news-insights__cta-buttons .page-betting-news-insights__btn {
    margin: 10px 0;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .page-betting-news-insights__hero-title {
    font-size: 1.8em;
  }
  .page-betting-news-insights__hero-subtitle {
    font-size: 0.9em;
  }
  .page-betting-news-insights__section-title {
    font-size: 1.8em;
  }
  .page-betting-news-insights__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
}