.page-sports-live-betting {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark, so text is light */
  background-color: #0d1117; /* Inherited from body, explicit for clarity */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-sports-live-betting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-sports-live-betting__section {
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.page-sports-live-betting__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #ffc107; /* Highlight titles with accent color */
}

.page-sports-live-betting__btn-primary,
.page-sports-live-betting__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-sports-live-betting__btn-primary {
  background-color: #007bff;
  color: #ffffff;
  border: 2px solid #007bff;
}

.page-sports-live-betting__btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.page-sports-live-betting__btn-secondary {
  background-color: transparent;
  color: #ffc107;
  border: 2px solid #ffc107;
}

.page-sports-live-betting__btn-secondary:hover {
  background-color: #ffc107;
  color: #0d1117;
}

/* Hero Section */
.page-sports-live-betting__hero-section {
  background: linear-gradient(135deg, #0d1117, #1a2a3a);
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.page-sports-live-betting__hero-content {
  z-index: 2;
  position: relative;
  max-width: 600px;
  padding-right: 40px;
}

.page-sports-live-betting__hero-title {
  font-size: 48px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-sports-live-betting__hero-description {
  font-size: 18px;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-sports-live-betting__hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-sports-live-betting__hero-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
}

/* About Section */
.page-sports-live-betting__about-section {
  background-color: #1a2a3a;
  color: #ffffff;
}

.page-sports-live-betting__grid-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  text-align: left;
}

.page-sports-live-betting__text-content p {
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-sports-live-betting__text-content a {
  color: #ffc107;
  text-decoration: underline;
}

.page-sports-live-betting__text-content a:hover {
  color: #e0a800;
}

.page-sports-live-betting__image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* Features Section */
.page-sports-live-betting__features-section {
  background-color: #007bff;
  color: #ffffff;
  padding-bottom: 120px;
}

.page-sports-live-betting__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-sports-live-betting__feature-card {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-sports-live-betting__feature-card:hover {
  transform: translateY(-10px);
  background-color: rgba(0, 0, 0, 0.4);
}

.page-sports-live-betting__feature-title {
  font-size: 24px;
  font-weight: bold;
  color: #ffc107;
  margin-bottom: 15px;
}

.page-sports-live-betting__feature-card p {
  color: #f0f0f0;
}

.page-sports-live-betting__feature-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 40px;
}

/* How-To Section */
.page-sports-live-betting__how-to-section {
  background-color: #0d1117;
  color: #ffffff;
}

.page-sports-live-betting__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-sports-live-betting__step-card {
  background-color: #1a2a3a;
  padding: 30px;
  border-radius: 8px;
  text-align: left;
  border-left: 5px solid #ffc107;
}

.page-sports-live-betting__step-title {
  font-size: 22px;
  font-weight: bold;
  color: #ffc107;
  margin-bottom: 10px;
}

.page-sports-live-betting__step-card p {
  color: #f0f0f0;
}

.page-sports-live-betting__step-card a {
  color: #007bff;
  text-decoration: underline;
}

.page-sports-live-betting__step-card a:hover {
  color: #0056b3;
}

.page-sports-live-betting__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-sports-live-betting__how-to-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 60px;
}

/* Popular Sports Section */
.page-sports-live-betting__popular-sports-section {
  background-color: #1a2a3a;
  color: #ffffff;
}

.page-sports-live-betting__sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-sports-live-betting__sport-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-sports-live-betting__sport-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.1);
}

.page-sports-live-betting__sport-card img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 15px;
  display: block;
}

.page-sports-live-betting__sport-title {
  font-size: 20px;
  font-weight: bold;
  color: #ffc107;
  margin-bottom: 10px;
}