.page-betting-news {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light gray for general text on dark background */
  background-color: #0A2239; /* Main dark blue background */
}

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

.page-betting-news__hero {
  position: relative;
  padding: 120px 0;
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
}

.page-betting-news__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-betting-news__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 34, 57, 0.9), rgba(224, 179, 0, 0.5)); /* Dark blue to gold gradient */
  z-index: 1;
}

.page-betting-news__hero .page-betting-news__container {
  position: relative;
  z-index: 2;
}

.page-betting-news__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #E0B300; /* Gold for main title */
  font-weight: bold;
  line-height: 1.2;
}

.page-betting-news__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-betting-news__hero-btn,
.page-betting-news__cta-btn {
  display: inline-block;
  background-color: #E0B300; /* Gold button */
  color: #0A2239; /* Dark blue text on gold button */
  padding: 15px 30px;
  border-radius: 8px;
  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-news__hero-btn:hover,
.page-betting-news__cta-btn:hover {
  background-color: #FFD700; /* Brighter gold on hover */
  transform: translateY(-3px);
}

.page-betting-news__section {
  padding: 80px 0;
  text-align: center;
}

.page-betting-news__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #E0B300; /* Gold for section titles */
  font-weight: bold;
}

.page-betting-news__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #F8F8F8;
}

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

.page-betting-news__news-card,
.page-betting-news__industry-card,
.page-betting-news__detail-card {
  background-color: #1A3A5A; /* Slightly lighter dark blue for cards */
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-betting-news__news-card:hover,
.page-betting-news__industry-card:hover,
.page-betting-news__detail-card:hover {
  transform: translateY(-5px);
}

.page-betting-news__news-image,
.page-betting-news__industry-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-betting-news__news-content,
.page-betting-news__industry-content,
.page-betting-news__detail-card {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-betting-news__news-title,
.page-betting-news__industry-title,
.page-betting-news__detail-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #E0B300; /* Gold for card titles */
  line-height: 1.3;
}

.page-betting-news__news-title a,
.page-betting-news__industry-title a,
.page-betting-news__detail-title a {
  color: #E0B300;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-betting-news__news-title a:hover,
.page-betting-news__industry-title a:hover,
.page-betting-news__detail-title a:hover {
  color: #FFD700;
}

.page-betting-news__news-excerpt,
.page-betting-news__industry-excerpt,
.page-betting-news__detail-description {
  font-size: 1em;
  color: #CCCCCC; /* Lighter gray for excerpts */
  margin-bottom: 20px;
  line-height: 1.6;
}

.page-betting-news__read-more {
  display: inline-block;
  color: #E0B300;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  margin-top: auto; /* Pushes button to the bottom */
}

.page-betting-news__read-more:hover {
  color: #FFD700;
}

.page-betting-news__expert-analysis {
  background-color: #0A2239;
}

.page-betting-news__analysis-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-betting-news__analysis-item {
  background-color: #1A3A5A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-betting-news__analysis-title {
  font-size: 1.8em;
  color: #E0B300;
  margin-bottom: 15px;
}

.page-betting-news__analysis-item p {
  color: #CCCCCC;
  line-height: 1.6;
}

.page-betting-news__promotions-cta {
  background-color: #1A3A5A; /* Dark blue background for CTA */
  padding: 100px 0;
}

.page-betting-news__promotions-cta .page-betting-news__section-title {
  color: #FFFFFF;
  font-size: 3em;
}

.page-betting-news__promotions-cta .page-betting-news__section-description {
  color: #F8F8F8;
  font-size: 1.2em;
  margin-bottom: 50px;
}

.page-betting-news__cta-btn--primary {
  background-color: #E0B300;
  color: #0A2239;
  margin-right: 20px;
}

.page-betting-news__cta-btn--secondary {
  background-color: transparent;
  color: #E0B300;
  border: 2px solid #E0B300;
}

.page-betting-news__cta-btn--secondary:hover {
  background-color: #E0B300;
  color: #0A2239;
}

.page-betting-news__related-pages {
  background-color: #0A2239;
}

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

.page-betting-news__floating-ad {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  background-color: #E0B300;
  color: #0A2239;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  padding: 15px;
  text-align: center;
  display: none; /* Hidden by default, shown by JS */
  animation: page-betting-news-slideIn 0.5s forwards;
}

.page-betting-news__floating-ad-close {
  position: absolute;
  top: 5px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.5em;
  color: #0A2239;
  cursor: pointer;
  line-height: 1;
}

.page-betting-news__floating-ad-title {
  font-size: 1.4em;
  margin-bottom: 5px;
  color: #0A2239;
}

.page-betting-news__floating-ad-text {
  font-size: 1em;
  margin-bottom: 15px;
  color: #333333;
}

.page-betting-news__floating-ad-btn {
  display: inline-block;
  background-color: #0A2239;
  color: #E0B300;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.page-betting-news__floating-ad-btn:hover {
  background-color: #1A3A5A;
}

@keyframes page-betting-news-slideIn {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

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

  .page-betting-news__news-grid,
  .page-betting-news__industry-grid,
  .page-betting-news__analysis-points,
  .page-betting-news__detail-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-betting-news__promotions-cta .page-betting-news__section-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-betting-news__hero {
    padding: 80px 0;
  }

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

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

  .page-betting-news__section {
    padding: 60px 0;
  }

  .page-betting-news__section-title {
    font-size: 1.8em;
  }

  .page-betting-news__promotions-cta .page-betting-news__section-title {
    font-size: 2em;
  }

  .page-betting-news__cta-btn--primary,
  .page-betting-news__cta-btn--secondary {
    margin-right: 0;
    margin-bottom: 15px;
    width: 100%;
  }

  .page-betting-news__floating-ad {
    width: 90%;
    left: 5%;
    right: 5%;
    bottom: 15px;
  }
}

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

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

  .page-betting-news__news-card,
  .page-betting-news__industry-card,
  .page-betting-news__analysis-item,
  .page-betting-news__detail-card {
    margin: 0 10px;
  }

  .page-betting-news__promotions-cta .page-betting-news__section-title {
    font-size: 1.8em;
  }
}