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

:root {
  --page-sports-live-streaming-primary-color: #017439;
  --page-sports-live-streaming-secondary-color: #FFFFFF;
  --page-sports-live-streaming-text-dark: #333333;
  --page-sports-live-streaming-text-light: #ffffff;
  --page-sports-live-streaming-button-register: #C30808;
  --page-sports-live-streaming-button-login: #C30808;
  --page-sports-live-streaming-button-font: #FFFF00;
}

.page-sports-live-streaming {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--page-sports-live-streaming-text-dark); /* Default text color for light background */
  background-color: var(--page-sports-live-streaming-secondary-color); /* Body background is light */
}

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

/* Hero Section */
.page-sports-live-streaming__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px);
  background-color: var(--page-sports-live-streaming-primary-color);
  color: var(--page-sports-live-streaming-text-light);
  overflow: hidden;
}

.page-sports-live-streaming__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-sports-live-streaming__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-sports-live-streaming__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-sports-live-streaming__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--page-sports-live-streaming-text-light);
}

.page-sports-live-streaming__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: var(--page-sports-live-streaming-text-light);
}

.page-sports-live-streaming__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* General Section Styling */
.page-sports-live-streaming__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
}

.page-sports-live-streaming__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-sports-live-streaming__light-bg {
  background-color: var(--page-sports-live-streaming-secondary-color);
  color: var(--page-sports-live-streaming-text-dark);
  padding: 60px 0;
}

.page-sports-live-streaming__dark-bg {
  background-color: var(--page-sports-live-streaming-primary-color);
  color: var(--page-sports-live-streaming-text-light);
  padding: 60px 0;
}

.page-sports-live-streaming__dark-bg .page-sports-live-streaming__section-title,
.page-sports-live-streaming__dark-bg .page-sports-live-streaming__section-description {
  color: var(--page-sports-live-streaming-text-light);
}

/* Buttons */
.page-sports-live-streaming__btn-primary,
.page-sports-live-streaming__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-sports-live-streaming__btn-primary {
  background-color: var(--page-sports-live-streaming-button-register);
  color: var(--page-sports-live-streaming-button-font);
  border: 2px solid var(--page-sports-live-streaming-button-register);
}

.page-sports-live-streaming__btn-primary:hover {
  background-color: #a30606;
  border-color: #a30606;
}

.page-sports-live-streaming__btn-secondary {
  background-color: transparent;
  color: var(--page-sports-live-streaming-text-light);
  border: 2px solid var(--page-sports-live-streaming-text-light);
}

.page-sports-live-streaming__light-bg .page-sports-live-streaming__btn-secondary {
  color: var(--page-sports-live-streaming-primary-color);
  border-color: var(--page-sports-live-streaming-primary-color);
}

.page-sports-live-streaming__btn-secondary:hover {
  background-color: var(--page-sports-live-streaming-text-light);
  color: var(--page-sports-live-streaming-primary-color);
}

.page-sports-live-streaming__light-bg .page-sports-live-streaming__btn-secondary:hover {
  background-color: var(--page-sports-live-streaming-primary-color);
  color: var(--page-sports-live-streaming-text-light);
}

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

/* Video Section */
.page-sports-live-streaming__video-section {
  padding: 60px 0;
}

.page-sports-live-streaming__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 0 auto;
  border-radius: 10px;
}

.page-sports-live-streaming__video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

.page-sports-live-streaming__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.page-sports-live-streaming__feature-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  color: var(--page-sports-live-streaming-text-light);
}

.page-sports-live-streaming__feature-icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-sports-live-streaming__feature-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--page-sports-live-streaming-text-light);
}

.page-sports-live-streaming__feature-description {
  font-size: 1em;
  line-height: 1.5;
  color: var(--page-sports-live-streaming-text-light);
}

/* How-To Section */
.page-sports-live-streaming__how-to-section {
  padding: 60px 0;
}

.page-sports-live-streaming__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-sports-live-streaming__step-item {
  background-color: var(--page-sports-live-streaming-secondary-color);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

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

.page-sports-live-streaming__step-description {
  font-size: 1.1em;
  color: var(--page-sports-live-streaming-text-dark);
}

.page-sports-live-streaming__step-description a {
  color: var(--page-sports-live-streaming-primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-sports-live-streaming__step-description a:hover {
  text-decoration: underline;
}

/* Promotions Section */
.page-sports-live-streaming__promotions-section {
  padding: 60px 0;
}

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

.page-sports-live-streaming__card {
  background-color: var(--page-sports-live-streaming-secondary-color);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  color: var(--page-sports-live-streaming-text-dark);
  padding-bottom: 20px;
}

.page-sports-live-streaming__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-sports-live-streaming__card-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-sports-live-streaming__card-title a {
  color: var(--page-sports-live-streaming-primary-color);
  text-decoration: none;
}

.page-sports-live-streaming__card-title a:hover {
  text-decoration: underline;
}

.page-sports-live-streaming__card-text {
  font-size: 1em;
  line-height: 1.5;
  padding: 0 15px 20px 15px;
}

.page-sports-live-streaming__card .page-sports-live-streaming__btn-primary {
  background-color: var(--page-sports-live-streaming-primary-color);
  color: var(--page-sports-live-streaming-text-light);
  border-color: var(--page-sports-live-streaming-primary-color);
}

.page-sports-live-streaming__card .page-sports-live-streaming__btn-primary:hover {
  background-color: #005a2b;
  border-color: #005a2b;
}

/* FAQ Section */
.page-sports-live-streaming__faq-section {
  padding: 60px 0;
}

.page-sports-live-streaming__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports-live-streaming__faq-item {
  background-color: var(--page-sports-live-streaming-secondary-color);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-sports-live-streaming__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--page-sports-live-streaming-primary-color);
  cursor: pointer;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
  user-select: none;
}

.page-sports-live-streaming__faq-item[open] .page-sports-live-streaming__faq-question {
  border-bottom-color: transparent;
}

.page-sports-live-streaming__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-sports-live-streaming__faq-item[open] .page-sports-live-streaming__faq-toggle {
  transform: rotate(45deg);
}

.page-sports-live-streaming__faq-answer {
  padding: 20px 25px;
  font-size: 1.1em;
  color: var(--page-sports-live-streaming-text-dark);
  background-color: var(--page-sports-live-streaming-secondary-color);
  border-top: 1px solid #e0e0e0;
}

.page-sports-live-streaming__faq-answer p {
  margin: 0;
}

.page-sports-live-streaming__faq-answer a {
  color: var(--page-sports-live-streaming-primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-sports-live-streaming__faq-answer a:hover {
  text-decoration: underline;
}

/* Contact CTA */
.page-sports-live-streaming__contact-cta {
  padding: 80px 0;
  text-align: center;
}

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

/* Image & Video Responsiveness */
.page-sports-live-streaming img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-sports-live-streaming__hero-section {
    min-height: 400px;
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-sports-live-streaming__hero-title {
    font-size: 2em;
  }

  .page-sports-live-streaming__hero-description {
    font-size: 1em;
  }

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

  .page-sports-live-streaming__btn-primary,
  .page-sports-live-streaming__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-sports-live-streaming__section-title {
    font-size: 1.8em;
  }

  .page-sports-live-streaming__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-sports-live-streaming__light-bg,
  .page-sports-live-streaming__dark-bg {
    padding: 40px 0;
  }

  .page-sports-live-streaming__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Image & Video Mobile Adaptations */
  .page-sports-live-streaming img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-sports-live-streaming video,
  .page-sports-live-streaming__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-sports-live-streaming__video-section,
  .page-sports-live-streaming__video-container,
  .page-sports-live-streaming__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }

  .page-sports-live-streaming__video-wrapper {
    padding-bottom: 56.25% !important; /* Ensure aspect ratio is maintained */
  }

  .page-sports-live-streaming__feature-grid,
  .page-sports-live-streaming__promotion-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-sports-live-streaming__feature-item,
  .page-sports-live-streaming__card {
    padding: 20px;
  }

  .page-sports-live-streaming__feature-icon {
    width: 120px;
    height: 120px;
  }

  .page-sports-live-streaming__card-image {
    height: 200px;
  }

  .page-sports-live-streaming__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-sports-live-streaming__faq-answer {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-sports-live-streaming__faq-list {
    margin-left: 0;
    margin-right: 0;
  }

  .page-sports-live-streaming__contact-cta {
    padding: 60px 15px;
  }

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