.page-live-sports {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-live-sports h1, .page-live-sports h2, .page-live-sports h3 {
  color: #2F4F4F;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-live-sports h1 {
  font-size: 3.2em;
  text-align: center;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-live-sports h2 {
  font-size: 2.5em;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-live-sports h3 {
  font-size: 1.8em;
  color: #2F4F4F;
}

.page-live-sports p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

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

.page-live-sports a:hover {
  color: #e6c200;
  text-decoration: underline;
}

/* Hero Section */
.page-live-sports .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #2F4F4F, #000000);
  color: #ffffff;
}

.page-live-sports .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-live-sports .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-live-sports .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-live-sports .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
}

.page-live-sports .hero-content h1 {
  color: #FFD700;
  margin-top: 0;
  font-size: 3.5em;
  line-height: 1.2;
}

.page-live-sports .hero-content p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-live-sports .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700;
  color: #2F4F4F;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-live-sports .cta-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  color: #2F4F4F;
  text-decoration: none;
}

/* Section Styling */
.page-live-sports .section-intro, 
.page-live-sports .section-why-on88, 
.page-live-sports .section-sports-types, 
.page-live-sports .section-how-to-bet, 
.page-live-sports .section-promotions, 
.page-live-sports .section-responsible-gambling, 
.page-live-sports .section-faq {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-live-sports .section-intro p {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 15px auto;
}

.page-live-sports .section-why-on88 {
  background-color: #f0f2f5;
}

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

.page-live-sports .feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live-sports .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-live-sports .feature-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0,0,0,0.1));
}

.page-live-sports .feature-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-live-sports .feature-item p {
  font-size: 1em;
  color: #555555;
}

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

.page-live-sports .sport-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-live-sports .sport-card h3 {
  padding: 15px 20px 10px;
  font-size: 1.6em;
  margin-bottom: 0;
}

.page-live-sports .sport-card h3 a {
  color: #2F4F4F;
  display: block;
}

.page-live-sports .sport-card h3 a:hover {
  color: #FFD700;
  text-decoration: none;
}

.page-live-sports .sport-card p {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #555555;
}

.page-live-sports .section-how-to-bet ol {
  list-style: none;
  counter-reset: my-awesome-counter;
  padding-left: 0;
  max-width: 800px;
  margin: 40px auto;
}

.page-live-sports .section-how-to-bet ol li {
  counter-increment: my-awesome-counter;
  margin-bottom: 20px;
  padding-left: 60px;
  position: relative;
  font-size: 1.1em;
}

.page-live-sports .section-how-to-bet ol li::before {
  content: counter(my-awesome-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFD700;
  color: #2F4F4F;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-live-sports .section-how-to-bet p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 20px auto;
}

.page-live-sports .section-promotions ul {
  list-style: none;
  padding-left: 0;
  max-width: 900px;
  margin: 40px auto;
}

.page-live-sports .section-promotions ul li {
  background-color: #f9f9f9;
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.1em;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
}

.page-live-sports .section-promotions p {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
}

.page-live-sports .section-responsible-gambling {
  background-color: #2F4F4F;
  color: #e0e0e0;
}

.page-live-sports .section-responsible-gambling h2 {
  color: #FFD700;
}

.page-live-sports .section-responsible-gambling p {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 15px auto;
  color: #cccccc;
}

/* FAQ Section */
.page-live-sports .faq-list {
  max-width: 900px;
  margin: 40px auto;
}

.page-live-sports .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-live-sports .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-live-sports .faq-question:hover {
  background: #f5f5f5;
}

.page-live-sports .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #2F4F4F;
}

.page-live-sports .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-live-sports .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #fcfcfc;
  color: #555555;
}

.page-live-sports .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 15px 25px;
  border-top: 1px solid #e0e0e0;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-live-sports h1 {
    font-size: 2.8em;
  }
  .page-live-sports h2 {
    font-size: 2em;
  }
  .page-live-sports .hero-content p {
    font-size: 1.1em;
  }
  .page-live-sports .features-grid, .page-live-sports .sport-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-live-sports .feature-item, .page-live-sports .sport-card {
    padding: 25px;
  }
  .page-live-sports .sport-card h3 {
    font-size: 1.4em;
  }
  .page-live-sports .section-intro, 
  .page-live-sports .section-why-on88, 
  .page-live-sports .section-sports-types, 
  .page-live-sports .section-how-to-bet, 
  .page-live-sports .section-promotions, 
  .page-live-sports .section-responsible-gambling, 
  .page-live-sports .section-faq {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .page-live-sports .hero-section {
    padding: 40px 15px;
  }
  .page-live-sports .hero-image img {
    border-radius: 4px;
  }
  .page-live-sports .hero-content h1 {
    font-size: 2.2em;
  }
  .page-live-sports .hero-content p {
    font-size: 1em;
  }
  .page-live-sports .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-live-sports h2 {
    font-size: 1.8em;
  }
  .page-live-sports h3 {
    font-size: 1.5em;
  }
  .page-live-sports p, .page-live-sports li {
    font-size: 0.95em;
  }
  .page-live-sports .features-grid, .page-live-sports .sport-cards {
    grid-template-columns: 1fr;
  }
  .page-live-sports .feature-item, .page-live-sports .sport-card {
    padding: 20px;
  }
  .page-live-sports .section-how-to-bet ol li {
    padding-left: 50px;
  }
  .page-live-sports .section-how-to-bet ol li::before {
    width: 35px;
    height: 35px;
    font-size: 1.1em;
  }
  .page-live-sports .faq-question {
    padding: 15px 20px;
  }
  .page-live-sports .faq-question h3 {
    font-size: 1.1em;
  }
  .page-live-sports .faq-answer {
    padding: 0 20px;
  }
  .page-live-sports .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-live-sports .hero-content h1 {
    font-size: 1.8em;
  }
  .page-live-sports .hero-content p {
    font-size: 0.9em;
  }
  .page-live-sports h2 {
    font-size: 1.5em;
  }
  .page-live-sports .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-live-sports .feature-item h3 {
    font-size: 1.3em;
  }
  .page-live-sports .sport-card h3 {
    font-size: 1.2em;
  }
}