.page-live-streaming-betting-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for general text on dark backgrounds */
  background-color: #1A1A1A; /* Very dark gray for overall page background */
}

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

.page-live-streaming-betting-guide__hero-section {
  background: linear-gradient(135deg, #0A244A 0%, #0A244A 60%, #FFD700 100%); /* Main brand colors */
  color: #FFFFFF;
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-live-streaming-betting-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for title on dark background */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-live-streaming-betting-guide__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #FFFFFF; /* White for description on dark background */
}

.page-live-streaming-betting-guide__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  max-width: 700px;
  height: auto;
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .page-live-streaming-betting-guide__hero-image {
    width: 80%;
    right: -10%;
    opacity: 0.5;
  }
  .page-live-streaming-betting-guide__hero-title {
    font-size: 2.5em;
  }
  .page-live-streaming-betting-guide__hero-description {
    font-size: 1.1em;
  }
}

.page-live-streaming-betting-guide__section {
  padding: 60px 0;
  text-align: left;
}

.page-live-streaming-betting-guide__section--dark {
  background-color: #0A244A;
  color: #E0E0E0;
}

.page-live-streaming-betting-guide__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 40px;
  text-align: center;
  font-weight: bold;
}

.page-live-streaming-betting-guide__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-live-streaming-betting-guide__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-live-streaming-betting-guide__highlight {
  color: #FFD700;
  font-weight: bold;
}

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

.page-live-streaming-betting-guide__grid--two-col {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
  .page-live-streaming-betting-guide__grid--two-col {
    grid-template-columns: 1fr;
  }
  .page-live-streaming-betting-guide__grid--reverse {
    flex-direction: column-reverse;
  }
}

.page-live-streaming-betting-guide__feature-card,
.page-live-streaming-betting-guide__tip-card {
  background-color: #1A1A1A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-live-streaming-betting-guide__feature-card:hover,
.page-live-streaming-betting-guide__tip-card:hover {
  transform: translateY(-10px);
  background-color: #0F1D33; /* Slightly lighter dark blue for hover */
}

.page-live-streaming-betting-guide__feature-title,
.page-live-streaming-betting-guide__tip-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-live-streaming-betting-guide__feature-text,
.page-live-streaming-betting-guide__tip-text {
  font-size: 1em;
  color: #E0E0E0;
}

.page-live-streaming-betting-guide__ordered-list,
.page-live-streaming-betting-guide__unordered-list {
  list-style-position: inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-live-streaming-betting-guide__ordered-list li,
.page-live-streaming-betting-guide__unordered-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-live-streaming-betting-guide__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

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

.page-live-streaming-betting-guide__btn--primary:hover {
  background-color: #E6C200; /* Slightly darker gold */
  transform: translateY(-2px);
}

.page-live-streaming-betting-guide__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-live-streaming-betting-guide__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A244A; /* Dark blue text on gold hover */
  transform: translateY(-2px);
}

.page-live-streaming-betting-guide__cta-section {
  background-color: #1A1A1A;
  padding: 80px 0;
  text-align: center;
}

.page-live-streaming-betting-guide__cta-content {
  background-color: #0A244A;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  border: 1px solid #FFD700;
}

.page-live-streaming-betting-guide__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-live-streaming-betting-guide__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #FFFFFF;
}

.page-live-streaming-betting-guide__cta-buttons .page-live-streaming-betting-guide__btn {
  margin: 0 10px;
}

.page-live-streaming-betting-guide__image-responsive {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-live-streaming-betting-guide__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-live-streaming-betting-guide__content-block {
  padding: 20px;
}

@media (max-width: 992px) {
  .page-live-streaming-betting-guide__hero-title {
    font-size: 3em;
  }
  .page-live-streaming-betting-guide__section-title {
    font-size: 2em;
  }
  .page-live-streaming-betting-guide__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-live-streaming-betting-guide__hero-section {
    padding: 80px 0 40px;
  }
  .page-live-streaming-betting-guide__hero-title {
    font-size: 2.5em;
  }
  .page-live-streaming-betting-guide__hero-description {
    font-size: 1em;
  }
  .page-live-streaming-betting-guide__section {
    padding: 40px 0;
  }
  .page-live-streaming-betting-guide__section-title {
    font-size: 1.8em;
  }
  .page-live-streaming-betting-guide__sub-title {
    font-size: 1.5em;
  }
  .page-live-streaming-betting-guide__grid {
    grid-template-columns: 1fr;
  }
  .page-live-streaming-betting-guide__cta-title {
    font-size: 1.8em;
  }
  .page-live-streaming-betting-guide__cta-description {
    font-size: 1em;
  }
  .page-live-streaming-betting-guide__btn {
    display: block;
    margin: 15px auto;
  }
  .page-live-streaming-betting-guide__btn--secondary {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .page-live-streaming-betting-guide__hero-title {
    font-size: 2em;
  }
  .page-live-streaming-betting-guide__section-title {
    font-size: 1.5em;
  }
  .page-live-streaming-betting-guide__sub-title {
    font-size: 1.3em;
  }
  .page-live-streaming-betting-guide__cta-title {
    font-size: 1.5em;
  }
  .page-live-streaming-betting-guide__feature-title,
  .page-live-streaming-betting-guide__tip-title {
    font-size: 1.3em;
  }
}