.page-th-thao-live-betting {
  --primary-color: #FFD700;
  --secondary-color: #000080;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-light: #f4f7f6;
  --background-dark: #1a1a2e;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
}

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

.page-th-thao-live-betting__section {
  padding: 60px 0;
  text-align: center;
}

.page-th-thao-live-betting__section:nth-of-type(even) {
  background-color: var(--background-light);
}

.page-th-thao-live-betting h1,
.page-th-thao-live-betting h2 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-th-thao-live-betting h1 {
  font-size: 3.2em;
  color: var(--text-color-light);
}

.page-th-thao-live-betting h2 {
  font-size: 2.5em;
}

.page-th-thao-live-betting h3 {
  color: var(--secondary-color);
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-th-thao-live-betting p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-th-thao-live-betting__cta-button {
  display: inline-block;
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid var(--primary-color);
}

.page-th-thao-live-betting__cta-button:hover {
  background-color: darken(var(--primary-color), 10%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-th-thao-live-betting__button {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--text-color-light);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid var(--secondary-color);
}

.page-th-thao-live-betting__button:hover {
  background-color: lighten(var(--secondary-color), 10%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-th-thao-live-betting__button--small {
  padding: 8px 15px;
  font-size: 0.9em;
}

/* Hero Section */
.page-th-thao-live-betting__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 60px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #3a3a70 50%, var(--secondary-color) 100%);
  color: var(--text-color-light);
  overflow: hidden;
}

.page-th-thao-live-betting__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.page-th-thao-live-betting__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-th-thao-live-betting__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-th-thao-live-betting__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-th-thao-live-betting__hero-content h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-th-thao-live-betting__hero-content p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.9);
}

/* Why Choose Section */
.page-th-thao-live-betting__why-choose h2 {
  color: var(--secondary-color);
}

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

.page-th-thao-live-betting__feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-th-thao-live-betting__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-th-thao-live-betting__feature-icon {
  width: 120px; /* Min size 200x200px, but for icons, this is a visual representation. Actual images will be larger. */
  height: 120px; /* Placeholder for visual consistency, actual images will meet min size */
  object-fit: contain;
  margin-bottom: 20px;
}

.page-th-thao-live-betting__feature-item h3 {
  color: var(--secondary-color);
  font-size: 1.6em;
}

.page-th-thao-live-betting__feature-item p {
  font-size: 1em;
  color: var(--text-color-dark);
}

/* Key Features Section */
.page-th-thao-live-betting__key-features {
  background-color: var(--background-dark);
  color: var(--text-color-light);
}

.page-th-thao-live-betting__key-features h2 {
  color: var(--primary-color);
}

.page-th-thao-live-betting__key-features p {
  color: rgba(255, 255, 255, 0.8);
}

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

.page-th-thao-live-betting__list-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-th-thao-live-betting__list-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.page-th-thao-live-betting__list-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px var(--primary-color));
}

.page-th-thao-live-betting__list-item h3 {
  color: var(--primary-color);
  font-size: 1.5em;
}

.page-th-thao-live-betting__list-item p {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.7);
}

/* Bet Types Section */
.page-th-thao-live-betting__bet-type-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-th-thao-live-betting__bet-type-list li {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-th-thao-live-betting__bet-type-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-th-thao-live-betting__bet-type-list h3 {
  color: var(--secondary-color);
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-th-thao-live-betting__bet-type-list p {
  font-size: 0.95em;
  color: var(--text-color-dark);
  text-align: center;
}

/* Get Started Section */
.page-th-thao-live-betting__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-th-thao-live-betting__step-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-th-thao-live-betting__step-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-th-thao-live-betting__step-item h3 {
  color: var(--secondary-color);
  font-size: 1.6em;
}

.page-th-thao-live-betting__step-item p {
  font-size: 1em;
  color: var(--text-color-dark);
  margin-bottom: 25px;
}

/* Safety & Support Section */
.page-th-thao-live-betting__safety-support {
  background-color: var(--background-dark);
  color: var(--text-color-light);
}

.page-th-thao-live-betting__safety-support h2 {
  color: var(--primary-color);
}

.page-th-thao-live-betting__safety-support p {
  color: rgba(255, 255, 255, 0.8);
}

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

.page-th-thao-live-betting__info-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: background-color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-th-thao-live-betting__info-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-th-thao-live-betting__info-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px var(--primary-color));
}

.page-th-thao-live-betting__info-item h3 {
  color: var(--primary-color);
  font-size: 1.5em;
}

.page-th-thao-live-betting__info-item p {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

/* FAQ Section */
.page-th-thao-live-betting__faq-list {
  margin-top: 40px;
  text-align: left;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.faq-question h3 {
  margin: 0;
  color: var(--secondary-color);
  font-size: 1.2em;
}

.faq-toggle {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
  background: #f9f9f9;
  color: var(--text-color-dark);
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 15px;
  border-radius: 0 0 5px 5px;
  border: 1px solid #e0e0e0;
  border-top: none;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--secondary-color);
}

.page-th-thao-live-betting__faq-button {
  display: inline-block;
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.page-th-thao-live-betting__faq-button:hover {
  background-color: darken(var(--primary-color), 10%);
}

/* Latest News Section */
.page-th-thao-live-betting__latest-news {
  background-color: var(--background-light);
}

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

.page-th-thao-live-betting__blog-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-th-thao-live-betting__blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-th-thao-live-betting__blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-th-thao-live-betting__blog-card h3 {
  font-size: 1.4em;
  margin: 15px 15px 10px;
  color: var(--secondary-color);
}

.page-th-thao-live-betting__blog-card h3 a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-th-thao-live-betting__blog-card h3 a:hover {
  color: var(--primary-color);
}

.page-th-thao-live-betting__blog-card p {
  font-size: 0.95em;
  color: var(--text-color-dark);
  margin: 0 15px 15px;
}

.page-th-thao-live-betting__blog-card .page-th-thao-live-betting__button {
  margin: 0 15px 20px;
}

.page-th-thao-live-betting__view-all-button {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-th-thao-live-betting h1 {
    font-size: 2.8em;
  }

  .page-th-thao-live-betting h2 {
    font-size: 2em;
  }

  .page-th-thao-live-betting h3 {
    font-size: 1.5em;
  }

  .page-th-thao-live-betting__hero-content p {
    font-size: 1.1em;
  }

  .page-th-thao-live-betting__features-grid,
  .page-th-thao-live-betting__feature-list,
  .page-th-thao-live-betting__steps,
  .page-th-thao-live-betting__info-grid,
  .page-th-thao-live-betting__blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-th-thao-live-betting__section {
    padding: 40px 0;
  }

  .page-th-thao-live-betting h1 {
    font-size: 2.2em;
  }

  .page-th-thao-live-betting h2 {
    font-size: 1.8em;
  }

  .page-th-thao-live-betting h3 {
    font-size: 1.3em;
  }

  .page-th-thao-live-betting__hero-content p {
    font-size: 1em;
  }

  .page-th-thao-live-betting__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-th-thao-live-betting__button {
    padding: 8px 15px;
    font-size: 0.9em;
  }

  .page-th-thao-live-betting__hero-image img {
    border-radius: 4px;
  }

  .page-th-thao-live-betting__feature-icon,
  .page-th-thao-live-betting__list-icon,
  .page-th-thao-live-betting__bet-type-icon,
  .page-th-thao-live-betting__step-icon,
  .page-th-thao-live-betting__info-icon {
    width: 80px;
    height: 80px;
  }

  .faq-question {
    padding: 12px;
  }

  .faq-question h3 {
    font-size: 1.1em;
  }

  .faq-toggle {
    font-size: 18px;
  }

  .faq-item.active .faq-answer {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .page-th-thao-live-betting__container {
    padding: 0 15px;
  }

  .page-th-thao-live-betting h1 {
    font-size: 1.8em;
  }

  .page-th-thao-live-betting h2 {
    font-size: 1.5em;
  }

  .page-th-thao-live-betting h3 {
    font-size: 1.2em;
  }

  .page-th-thao-live-betting__hero-content p {
    font-size: 0.95em;
  }

  .page-th-thao-live-betting__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-th-thao-live-betting__features-grid,
  .page-th-thao-live-betting__feature-list,
  .page-th-thao-live-betting__steps,
  .page-th-thao-live-betting__info-grid,
  .page-th-thao-live-betting__blog-grid {
    grid-template-columns: 1fr;
  }

  .page-th-thao-live-betting__feature-item,
  .page-th-thao-live-betting__list-item,
  .page-th-thao-live-betting__step-item,
  .page-th-thao-live-betting__info-item {
    padding: 20px;
  }

  .page-th-thao-live-betting__blog-card h3 {
    font-size: 1.2em;
  }

  .page-th-thao-live-betting__blog-card p {
    font-size: 0.9em;
  }
}