/* style/index-sports-live.css */

/* Biến màu sắc */
:root {
  --primary-color: #0A2239;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-light: #f8f8f8;
  --background-dark: var(--primary-color);
}

/* Chung cho trang */
.page-index-sports-live {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Body background is dark, so text is light */
  background-color: var(--background-dark); /* Inherited from shared, but explicit for clarity */
}

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

.page-index-sports-live__section-title {
  font-size: 2.5em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-index-sports-live__subsection-title {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-index-sports-live__paragraph {
  font-size: 1.1em;
  margin-bottom: 15px;
  line-height: 1.7;
}

.page-index-sports-live__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-index-sports-live__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-index-sports-live__center-text {
  text-align: center;
}

/* Nền màu */
.page-index-sports-live__dark-bg {
  background-color: var(--background-dark);
  color: var(--text-light);
  padding: 80px 0;
}

.page-index-sports-live__light-bg {
  background-color: var(--background-light);
  color: var(--text-dark);
  padding: 80px 0;
}

/* Nút */
.page-index-sports-live__btn-primary,
.page-index-sports-live__btn-secondary,
.page-index-sports-live__btn-text {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-index-sports-live__btn-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
}

.page-index-sports-live__btn-primary:hover {
  background-color: transparent;
  color: var(--secondary-color);
}

.page-index-sports-live__btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-index-sports-live__btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.page-index-sports-live__btn-text {
  background: none;
  border: none;
  color: var(--secondary-color);
  padding: 0;
  text-decoration: underline;
}

.page-index-sports-live__btn-text:hover {
  color: var(--primary-color);
}

.page-index-sports-live__btn-center {
  display: block;
  margin: 30px auto 0 auto;
  max-width: 250px;
}

.page-index-sports-live__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Hero Section */
.page-index-sports-live__hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70vh;
  padding-top: var(--header-offset, 120px); /* Apply header offset */
  position: relative;
  overflow: hidden;
}

.page-index-sports-live__hero-content {
  flex: 1;
  padding: 20px;
  max-width: 50%;
  z-index: 1;
  text-align: center;
}

.page-index-sports-live__hero-title {
  font-size: 3.5em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index-sports-live__hero-description {
  font-size: 1.3em;
  color: var(--text-light);
  margin-bottom: 30px;
}

.page-index-sports-live__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.page-index-sports-live__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* About Section */
.page-index-sports-live__about-section {
  padding: 80px 0;
}

/* Sports Section */
.page-index-sports-live__sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-sports-live__sport-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-sports-live__sport-card:hover {
  transform: translateY(-10px);
}

.page-index-sports-live__sport-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-index-sports-live__sport-title {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.page-index-sports-live__sport-description {
  font-size: 1em;
  color: var(--text-light);
}

/* Features Section */
.page-index-sports-live__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-sports-live__feature-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  color: var(--text-dark);
}

.page-index-sports-live__feature-card:hover {
  transform: translateY(-10px);
}

.page-index-sports-live__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  min-width: 200px;
  min-height: 200px;
}

.page-index-sports-live__feature-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-index-sports-live__feature-description {
  font-size: 1em;
  color: var(--text-dark);
}

/* Guide Section */
.page-index-sports-live__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-sports-live__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-index-sports-live__step-title {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-index-sports-live__step-description {
  font-size: 1em;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* Promotions Section */
.page-index-sports-live__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-sports-live__promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-index-sports-live__promo-card:hover {
  transform: translateY(-10px);
}

.page-index-sports-live__promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-index-sports-live__promo-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-index-sports-live__promo-description {
  font-size: 1em;
  color: var(--text-dark);
  margin-bottom: 20px;
}

/* Security Section */
.page-index-sports-live__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-sports-live__security-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-index-sports-live__security-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  min-width: 200px;
  min-height: 200px;
}

.page-index-sports-live__security-title {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.page-index-sports-live__security-description {
  font-size: 1em;
  color: var(--text-light);
  margin-bottom: 15px;
}

/* FAQ Section */
.page-index-sports-live__faq-list {
  margin-top: 40px;
}

.page-index-sports-live__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  color: var(--text-dark);
}

.page-index-sports-live__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: var(--primary-color);
  background-color: #f0f0f0;
  transition: background-color 0.3s ease;
}

.page-index-sports-live__faq-question:hover {
  background-color: #e0e0e0;
}

.page-index-sports-live__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-index-sports-live__faq-item.active .page-index-sports-live__faq-question {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.page-index-sports-live__faq-item.active .page-index-sports-live__faq-toggle {
  transform: rotate(45deg);
}

.page-index-sports-live__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 1.05em;
  color: var(--text-dark);
}

.page-index-sports-live__faq-item.active .page-index-sports-live__faq-answer {
  max-height: 1000px !important; /* Ensure it expands sufficiently */
  padding: 15px 25px;
}

/* Conclusion Section */
.page-index-sports-live__conclusion-section {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-sports-live__hero-section {
    flex-direction: column-reverse;
    text-align: center;
    padding-top: var(--header-offset, 120px);
  }

  .page-index-sports-live__hero-content {
    max-width: 100%;
    padding: 30px 20px;
  }

  .page-index-sports-live__hero-image-wrapper {
    padding: 0 20px;
    margin-bottom: 30px;
  }

  .page-index-sports-live__hero-title {
    font-size: 2.8em;
  }

  .page-index-sports-live__hero-description {
    font-size: 1.1em;
  }

  .page-index-sports-live__section-title {
    font-size: 2em;
  }

  .page-index-sports-live__subsection-title {
    font-size: 1.5em;
  }
}

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

  .page-index-sports-live__hero-section {
    min-height: auto;
    padding: 60px 0 30px 0;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-index-sports-live__hero-title {
    font-size: 2.2em;
  }

  .page-index-sports-live__hero-description {
    font-size: 1em;
  }

  .page-index-sports-live__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-index-sports-live__btn-primary,
  .page-index-sports-live__btn-secondary,
  .page-index-sports-live a[class*="button"],
  .page-index-sports-live a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-index-sports-live__cta-buttons,
  .page-index-sports-live__button-group,
  .page-index-sports-live__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-index-sports-live__container {
    padding: 0 15px;
  }

  .page-index-sports-live__section-title {
    font-size: 1.8em;
  }

  .page-index-sports-live__paragraph,
  .page-index-sports-live__list-item,
  .page-index-sports-live__faq-answer {
    font-size: 1em;
  }

  /* Image responsive */
  .page-index-sports-live img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* All containers with images/content */
  .page-index-sports-live__section,
  .page-index-sports-live__card,
  .page-index-sports-live__container,
  .page-index-sports-live__hero-image-wrapper,
  .page-index-sports-live__sports-grid,
  .page-index-sports-live__features-grid,
  .page-index-sports-live__guide-steps,
  .page-index-sports-live__promo-grid,
  .page-index-sports-live__security-features,
  .page-index-sports-live__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-index-sports-live__sport-card,
  .page-index-sports-live__feature-card,
  .page-index-sports-live__step-card,
  .page-index-sports-live__promo-card,
  .page-index-sports-live__security-item {
    padding: 20px;
  }

  .page-index-sports-live__faq-question,
  .page-index-sports-live__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-index-sports-live__hero-title {
    font-size: 1.8em;
  }

  .page-index-sports-live__section-title {
    font-size: 1.5em;
  }

  .page-index-sports-live__hero-content {
    padding: 20px 15px;
  }

  .page-index-sports-live__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
}