/* style/live-scores-streaming-esports.css */
.page-live-scores-streaming-esports {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #FFFFFF; /* Light text on dark background */
  background-color: #1A2E4C; /* Main dark blue background */
  line-height: 1.6;
}

.page-live-scores-streaming-esports h1, .page-live-scores-streaming-esports h2, .page-live-scores-streaming-esports h3, .page-live-scores-streaming-esports h4 {
  color: #FFD700; /* Gold for titles */
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-live-scores-streaming-esports h1 {
  font-size: 2.8rem;
  text-align: center;
}

.page-live-scores-streaming-esports h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.page-live-scores-streaming-esports h2::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-live-scores-streaming-esports h3 {
  font-size: 1.8rem;
  color: #FFD700;
}

.page-live-scores-streaming-esports h4 {
  font-size: 1.4rem;
  color: #FFD700;
}

.page-live-scores-streaming-esports p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #E0E0E0; /* Slightly off-white for body text */
}

.page-live-scores-streaming-esports strong {
  color: #FFD700;
}

.page-live-scores-streaming-esports a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-live-scores-streaming-esports a:hover {
  color: #FFF;
}

.page-live-scores-streaming-esports__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  text-transform: uppercase;
  font-size: 1rem;
  border: none;
}

.page-live-scores-streaming-esports__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A2E4C; /* Dark text on gold */
}

.page-live-scores-streaming-esports__btn--primary:hover {
  background-color: #E5C100;
  transform: translateY(-2px);
}

.page-live-scores-streaming-esports__btn--secondary {
  background-color: #1A2E4C; /* Dark blue button */
  color: #FFD700; /* Gold text on dark blue */
  border: 2px solid #FFD700;
}

.page-live-scores-streaming-esports__btn--secondary:hover {
  background-color: #2F4D7A;
  transform: translateY(-2px);
}

/* Hero Section */
.page-live-scores-streaming-esports__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1A2E4C 0%, #0D1B2A 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-live-scores-streaming-esports__hero-content {
  max-width: 900px;
  margin-bottom: 30px;
  z-index: 1;
}

.page-live-scores-streaming-esports__hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.page-live-scores-streaming-esports__hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #CCCCCC;
}

.page-live-scores-streaming-esports__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-top: 30px;
  z-index: 0;
}

.page-live-scores-streaming-esports__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* General Section Styling */
.page-live-scores-streaming-esports__section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-live-scores-streaming-esports__section--why-choose {
  background-color: #0D1B2A;
}

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

.page-live-scores-streaming-esports__grid-item {
  background-color: #1A2E4C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live-scores-streaming-esports__grid-item h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-live-scores-streaming-esports__grid-item p {
  color: #E0E0E0;
  flex-grow: 1;
}

.page-live-scores-streaming-esports__grid-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
}

.page-live-scores-streaming-esports__section--games {
  background-color: #1A2E4C;
}

.page-live-scores-streaming-esports__game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-live-scores-streaming-esports__game-card {
  background-color: #0D1B2A;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #FFD700;
}

.page-live-scores-streaming-esports__game-card h3 {
  color: #FFD700;
  margin-top: 0;
}

.page-live-scores-streaming-esports__section--betting {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background-color: #0D1B2A;
}

.page-live-scores-streaming-esports__betting-content {
  max-width: 800px;
  margin-bottom: 40px;
}

.page-live-scores-streaming-esports__betting-content h2 {
  margin-bottom: 20px;
}

.page-live-scores-streaming-esports__betting-image-wrapper {
  width: 100%;
  max-width: 700px;
}

.page-live-scores-streaming-esports__betting-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-live-scores-streaming-esports__section--guide {
  background-color: #1A2E4C;
  text-align: center;
}

.page-live-scores-streaming-esports__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-live-scores-streaming-esports__step-card {
  background-color: #0D1B2A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.page-live-scores-streaming-esports__step-card h4 {
  color: #FFD700;
  margin-top: 0;
}

.page-live-scores-streaming-esports__cta-download {
  margin-top: 50px;
  padding: 30px;
  background-color: #0D1B2A;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-live-scores-streaming-esports__cta-download p {
  font-size: 1.2rem;
  margin-bottom: 0;
}

.page-live-scores-streaming-esports__section--promo {
  background-color: #0D1B2A;
  text-align: center;
}

.page-live-scores-streaming-esports__promo-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-live-scores-streaming-esports__section--safety, .page-live-scores-streaming-esports__section--future {
  background-color: #1A2E4C;
  text-align: center;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-live-scores-streaming-esports__hero {
    flex-direction: row;
    text-align: left;
    padding: 100px 40px;
    gap: 40px;
  }

  .page-live-scores-streaming-esports__hero-content {
    text-align: left;
    margin-bottom: 0;
    flex: 1;
  }

  .page-live-scores-streaming-esports__hero-content h1 {
    font-size: 4rem;
  }

  .page-live-scores-streaming-esports__hero-image-wrapper {
    flex: 1;
    margin-top: 0;
  }

  .page-live-scores-streaming-esports__section--betting {
    flex-direction: row;
    text-align: left;
    gap: 40px;
  }

  .page-live-scores-streaming-esports__betting-content {
    text-align: left;
    margin-bottom: 0;
    flex: 1;
  }

  .page-live-scores-streaming-esports__betting-image-wrapper {
    flex: 1;
  }
}

@media (max-width: 767px) {
  .page-live-scores-streaming-esports h1 {
    font-size: 2.5rem;
  }

  .page-live-scores-streaming-esports h2 {
    font-size: 1.8rem;
  }

  .page-live-scores-streaming-esports h3 {
    font-size: 1.5rem;
  }

  .page-live-scores-streaming-esports p {
    font-size: 1rem;
  }

  .page-live-scores-streaming-esports__section {
    padding: 40px 15px;
  }

  .page-live-scores-streaming-esports__hero-content p {
    font-size: 1.1rem;
  }

  .page-live-scores-streaming-esports__btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}