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

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

.page-betting-news__hero-section {
  background: linear-gradient(135deg, #FF4500, #1E90FF);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-betting-news__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

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

.page-betting-news__hero-actions .page-betting-news__btn {
  margin: 10px;
  padding: 15px 30px;
  font-size: 1.1em;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: bold;
  display: inline-block;
}

.page-betting-news__btn--primary {
  background-color: #ffffff;
  color: #FF4500;
  border: 2px solid #ffffff;
}

.page-betting-news__btn--primary:hover {
  background-color: #FF4500;
  color: #ffffff;
  border-color: #ffffff;
}

.page-betting-news__btn--secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-betting-news__btn--secondary:hover {
  background-color: #ffffff;
  color: #1E90FF;
}

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

.page-betting-news__section--dark {
  background-color: #f8f8f8;
}

.page-betting-news__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 60px;
  color: #1E90FF;
  font-weight: bold;
}

.page-betting-news__section-title .highlight,
.page-betting-news__hero-title .highlight {
  color: #FF4500;
}

.page-betting-news__grid-2-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.page-betting-news__grid-3-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-betting-news__grid-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
}

.page-betting-news__grid-item .page-betting-news__image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-betting-news__item-title {
  font-size: 1.8em;
  color: #FF4500;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-betting-news__card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-betting-news__card:hover {
  transform: translateY(-10px);
}

.page-betting-news__card-image {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-betting-news__card-title {
  font-size: 1.5em;
  color: #1E90FF;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-betting-news__promo-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
}

.page-betting-news__promo-title {
  font-size: 1.6em;
  color: #FF4500;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-betting-news__btn--promo {
  background-color: #1E90FF;
  color: #ffffff;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.page-betting-news__btn--promo:hover {
  background-color: #1565b3;
}

.page-betting-news__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-betting-news__step {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
}

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

.page-betting-news__step-title {
  font-size: 1.6em;
  color: #FF4500;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-betting-news__btn--outline {
  background-color: transparent;
  color: #1E90FF;
  border: 2px solid #1E90FF;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  display: inline-block;
  transition: all 0.3s ease;
}

.page-betting-news__btn--outline:hover {
  background-color: #1E90FF;
  color: #ffffff;
}

.page-betting-news__safety-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.page-betting-news__feature-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
}

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

.page-betting-news__feature-title {
  font-size: 1.5em;
  color: #1E90FF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-betting-news__cta-final {
  background-color: #1E90FF;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-betting-news__cta-title {
  font-size: 2.8em;
  margin-bottom: 25px;
  font-weight: bold;
}

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

.page-betting-news__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-betting-news__hero-title {
    font-size: 2.5em;
  }
  .page-betting-news__section-title {
    font-size: 2em;
  }
  .page-betting-news__grid-2-cols,
  .page-betting-news__safety-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-betting-news__hero-section {
    padding: 80px 0;
  }
  .page-betting-news__hero-title {
    font-size: 2em;
  }
  .page-betting-news__hero-subtitle {
    font-size: 1em;
  }
  .page-betting-news__section {
    padding: 60px 0;
  }
  .page-betting-news__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }
  .page-betting-news__grid-3-cols,
  .page-betting-news__promo-grid,
  .page-betting-news__guide-steps {
    grid-template-columns: 1fr;
  }
  .page-betting-news__cta-title {
    font-size: 2.2em;
  }
  .page-betting-news__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-betting-news__hero-section {
    padding: 60px 0;
  }
  .page-betting-news__hero-title {
    font-size: 1.8em;
  }
  .page-betting-news__hero-actions .page-betting-news__btn {
    font-size: 0.9em;
    padding: 12px 20px;
    margin: 5px;
  }
  .page-betting-news__section-title {
    font-size: 1.5em;
  }
  .page-betting-news__item-title,
  .page-betting-news__card-title,
  .page-betting-news__promo-title,
  .page-betting-news__step-title,
  .page-betting-news__feature-title {
    font-size: 1.3em;
  }
  .page-betting-news__cta-title {
    font-size: 1.8em;
  }
  .page-betting-news__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}