.page-sports-live-betting {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: var(--dark-bg); /* Inherit from shared.css */
}

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

/* HERO Section */
.page-sports-live-betting__hero-section {
  position: relative;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: var(--header-offset, 120px);
  margin-top: 0;
  background-color: #0A2463;
  overflow: hidden;
}

.page-sports-live-betting__hero-container {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.page-sports-live-betting__hero-image {
  width: 100%;
  margin: 0;
}

.page-sports-live-betting__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

/* LOGO Carousel Section */
.page-sports-live-betting__logo-carousel-section {
  width: 100%;
  padding: 30px 20px;
  background: #0D2B6F; /* Slightly lighter than main dark blue for contrast */
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
}

.page-sports-live-betting__logo-carousel-container {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.page-sports-live-betting__logo-carousel {
  display: flex;
  gap: 15px;
  overflow: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 0;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

.page-sports-live-betting__logo-carousel::-webkit-scrollbar {
  display: none;
}

.page-sports-live-betting__logo-item {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: auto;
}

.page-sports-live-betting__logo-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.page-sports-live-betting__logo-item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px;
  box-sizing: border-box;
  pointer-events: auto;
}

.page-sports-live-betting__logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Game Display Section */
.page-sports-live-betting__games-section {
  width: 100%;
  padding: 60px 20px;
  background: var(--dark-bg);
}

.page-sports-live-betting__games-container {
  max-width: 1400px;
  margin: 0 auto;
}

.page-sports-live-betting__games-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  align-items: start;
}

.page-sports-live-betting__featured-game-area {
  width: 100%;
}

.page-sports-live-betting__featured-game-title {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 20px 0;
  color: #ffd700;
  text-align: left;
}

.page-sports-live-betting__featured-game {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #1A3F87; /* Darker blue for contrast on dark background */
  border: 1px solid #0A2463;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports-live-betting__featured-game:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.page-sports-live-betting__featured-game-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-sports-live-betting__featured-game-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.page-sports-live-betting__featured-game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-sports-live-betting__games-grid-area {
  width: 100%;
}

.page-sports-live-betting__games-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: center;
}

.page-sports-live-betting__games-tab {
  background: none;
  border: none;
  padding: 0;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  color: #999999;
  transition: color 0.3s ease;
  text-decoration: none;
  position: relative;
}

.page-sports-live-betting__games-tab:hover {
  color: #ffffff;
}

.page-sports-live-betting__games-tab.active {
  color: #FFD700;
  text-decoration: underline;
}

.page-sports-live-betting__games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  display: none;
}

.page-sports-live-betting__games-grid.active {
  display: grid;
}

.page-sports-live-betting__game-card {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #1A3F87; /* Darker blue for contrast on dark background */
  border: 1px solid #0A2463;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports-live-betting__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-sports-live-betting__game-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-sports-live-betting__game-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.page-sports-live-betting__game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-sports-live-betting__game-card-title {
  font-size: 14px;
  font-weight: 500;
  margin: 10px 0 0 0;
  padding: 0 5px 10px;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  line-height: 1.4;
}

/* General Section Styles */
.page-sports-live-betting__section-title {
  font-size: 32px;
  font-weight: bold;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.page-sports-live-betting__main-title {
  font-size: 40px;
  font-weight: bold;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.page-sports-live-betting__description {
  font-size: 18px;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports-live-betting__text-content {
  font-size: 16px;
  color: #f0f0f0;
  margin-bottom: 20px;
  text-align: left;
}

.page-sports-live-betting__card-title {
  font-size: 20px;
  font-weight: bold;
  color: #FFD700;
  margin: 15px 0 10px;
  text-align: center;
}

.page-sports-live-betting__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-sports-live-betting__list-item {
  font-size: 16px;
  color: #f0f0f0;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-sports-live-betting__list-item::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: #FFD700;
}

.page-sports-live-betting__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  margin-bottom: 30px;
}

.page-sports-live-betting__steps-list .page-sports-live-betting__list-item {
  counter-increment: step-counter;
  padding-left: 40px;
}

.page-sports-live-betting__steps-list .page-sports-live-betting__list-item::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFD700;
  color: #0A2463;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

/* Intro Section */
.page-sports-live-betting__intro-section {
  padding: 80px 20px;
  text-align: center;
}

/* Highlights Section */
.page-sports-live-betting__highlights-section {
  padding: 60px 20px;
  background: #0A2463; /* Main dark blue for section */
}

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

.page-sports-live-betting__highlight-card {
  background: #1A3F87; /* Slightly lighter dark blue for cards */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports-live-betting__highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-sports-live-betting__highlight-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-sports-live-betting__highlight-card p {
  color: #f0f0f0;
  font-size: 15px;
}

/* Types Section */
.page-sports-live-betting__types-section {
  padding: 60px 20px;
  background: var(--dark-bg);
}

/* How To Bet Section */
.page-sports-live-betting__how-to-bet-section {
  padding: 60px 20px;
  background: #0A2463;
}

/* Tips Section */
.page-sports-live-betting__tips-section {
  padding: 60px 20px;
  background: var(--dark-bg);
}

/* FAQ Section */
.page-sports-live-betting__faq-section {
  padding: 60px 20px;
  background: #0A2463;
}

.page-sports-live-betting__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-sports-live-betting__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: #1A3F87; /* Dark blue for FAQ item background */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-sports-live-betting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #1A3F87; /* Dark blue */
  border-bottom: 1px solid #0A2463;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-sports-live-betting__faq-question:hover {
  background: #2A4F97;
}

.page-sports-live-betting__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  pointer-events: none;
}

.page-sports-live-betting__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-sports-live-betting__faq-item.active .page-sports-live-betting__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg);
}

.page-sports-live-betting__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
}

.page-sports-live-betting__faq-item.active .page-sports-live-betting__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  background: #0D2B6F; /* Slightly different dark blue for answer background */
  border-radius: 0 0 8px 8px;
}

.page-sports-live-betting__faq-answer p {
  color: #e0e0e0;
  font-size: 15px;
  margin: 0;
}

/* Contact Section */
.page-sports-live-betting__contact-section {
  padding: 60px 20px;
  text-align: center;
  background: var(--dark-bg);
}

/* Buttons */
.page-sports-live-betting__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-sports-live-betting__btn-primary,
.page-sports-live-betting__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-sports-live-betting__btn-primary {
  background: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
}

.page-sports-live-betting__btn-primary:hover {
  background: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

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

.page-sports-live-betting__btn-secondary:hover {
  background: #FFD700;
  color: #0A2463;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

/* Dark background sections */
.page-sports-live-betting__dark-section {
  background-color: var(--dark-bg);
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports-live-betting__games-layout {
    grid-template-columns: 1fr;
  }
  
  .page-sports-live-betting__games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-sports-live-betting__main-title {
    font-size: 34px;
  }

  .page-sports-live-betting__section-title {
    font-size: 28px;
  }

  .page-sports-live-betting__hero-image img {
    height: 500px;
  }

  .page-sports-live-betting__featured-game-image {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .page-sports-live-betting {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-sports-live-betting__hero-section {
    padding-top: var(--header-offset, 120px) !important;
  }
  
  .page-sports-live-betting__hero-image img {
    height: 300px;
  }

  .page-sports-live-betting__logo-carousel-section {
    padding: 20px 15px;
  }
  
  .page-sports-live-betting__logo-item {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
  }
  
  .page-sports-live-betting__logo-carousel {
    gap: 12px;
  }
  
  .page-sports-live-betting__logo-item a {
    padding: 8px;
  }

  .page-sports-live-betting__games-section {
    padding: 40px 15px;
  }
  
  .page-sports-live-betting__games-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .page-sports-live-betting__featured-game-title {
    font-size: 20px;
  }
  
  .page-sports-live-betting__featured-game-image {
    height: 300px;
  }
  
  .page-sports-live-betting__games-tabs {
    gap: 15px;
  }
  
  .page-sports-live-betting__games-tab {
    font-size: 16px;
  }
  
  .page-sports-live-betting__games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .page-sports-live-betting__game-card-image {
    height: 150px;
  }
  
  .page-sports-live-betting__game-card-title {
    font-size: 13px;
    margin: 8px 0 0 0;
    padding: 0 3px;
  }

  .page-sports-live-betting__main-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .page-sports-live-betting__description {
    font-size: 16px;
  }

  .page-sports-live-betting__section-title {
    font-size: 24px;
  }

  .page-sports-live-betting__intro-section,
  .page-sports-live-betting__highlights-section,
  .page-sports-live-betting__types-section,
  .page-sports-live-betting__how-to-bet-section,
  .page-sports-live-betting__tips-section,
  .page-sports-live-betting__faq-section,
  .page-sports-live-betting__contact-section {
    padding: 40px 15px;
  }

  .page-sports-live-betting__grid-3-cols {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-sports-live-betting__highlight-card {
    padding: 20px;
  }

  .page-sports-live-betting__card-title {
    font-size: 18px;
  }

  .page-sports-live-betting__list-item,
  .page-sports-live-betting__faq-question h3,
  .page-sports-live-betting__faq-answer p {
    font-size: 15px;
  }

  .page-sports-live-betting__faq-question {
    padding: 15px;
  }

  .page-sports-live-betting__faq-item.active .page-sports-live-betting__faq-answer {
    padding: 15px !important;
  }

  .page-sports-live-betting__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-sports-live-betting__btn-primary,
  .page-sports-live-betting__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* General image responsive rule for content area images */
  .page-sports-live-betting img:not(.page-sports-live-betting__logo-item img) {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-sports-live-betting__container,
  .page-sports-live-betting__logo-carousel-container,
  .page-sports-live-betting__games-container,
  .page-sports-live-betting__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-sports-live-betting__featured-game-area,
  .page-sports-live-betting__games-grid-area {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .page-sports-live-betting__main-title {
    font-size: 24px;
  }

  .page-sports-live-betting__section-title {
    font-size: 22px;
  }

  .page-sports-live-betting__games-grid {
    grid-template-columns: 1fr;
  }
}

/* Dark background sections ensure light text */
.page-sports-live-betting__dark-section {
  background-color: #0A2463;
  color: #ffffff;
}

/* Ensure all text within the main content is readable */
.page-sports-live-betting p, 
.page-sports-live-betting li, 
.page-sports-live-betting h1, 
.page-sports-live-betting h2, 
.page-sports-live-betting h3, 
.page-sports-live-betting h4, 
.page-sports-live-betting h5, 
.page-sports-live-betting h6 {
  color: #ffffff; /* Default to white for main text on dark background */
}

/* Override specific elements for branding/contrast */
.page-sports-live-betting__section-title,
.page-sports-live-betting__main-title,
.page-sports-live-betting__card-title,
.page-sports-live-betting__featured-game-title {
  color: #FFD700; /* Gold/yellow for titles */
}

.page-sports-live-betting__game-card-title {
  color: #ffffff;
}

.page-sports-live-betting__games-tab.active {
  color: #FFD700;
}

.page-sports-live-betting__games-tab {
  color: #999999;
}

.page-sports-live-betting__games-tab:hover {
  color: #ffffff;
}