/* style/resources-how-to-watch-live.css */
.page-resources-how-to-watch-live {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark #1a1a1a, so text should be light */
  background-color: #1a1a1a; /* Ensure consistency with body background */
}

.page-resources-how-to-watch-live__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-how-to-watch-live__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-resources-how-to-watch-live__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-how-to-watch-live__btn-primary,
.page-resources-how-to-watch-live__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-how-to-watch-live__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-resources-how-to-watch-live__btn-primary:hover {
  background-color: #1e87c0;
  border-color: #1e87c0;
}

.page-resources-how-to-watch-live__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-how-to-watch-live__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-resources-how-to-watch-live__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-resources-how-to-watch-live__cta-buttons--center {
  justify-content: center;
}

/* Hero Section */
.page-resources-how-to-watch-live__hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background: linear-gradient(to right, #1a1a1a, #26A9E020);
  min-height: 600px;
  flex-wrap: wrap;
  gap: 40px;
}

.page-resources-how-to-watch-live__hero-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  text-align: left;
}

.page-resources-how-to-watch-live__hero-title {
  font-size: 3.5em;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-how-to-watch-live__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-resources-how-to-watch-live__hero-image-wrapper {
  flex: 1;
  min-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-resources-how-to-watch-live__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Ensure minimum size */
}

/* Video Guide Section */
.page-resources-how-to-watch-live__video-guide-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-resources-how-to-watch-live__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  margin-bottom: 50px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-how-to-watch-live__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  cursor: pointer;
}

.page-resources-how-to-watch-live__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none; /* Allow click events to pass through */
}

.page-resources-how-to-watch-live__video-wrapper:hover .page-resources-how-to-watch-live__video-overlay {
  opacity: 1;
}

.page-resources-how-to-watch-live__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-resources-how-to-watch-live__step-card {
  background-color: #222222;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-how-to-watch-live__step-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-resources-how-to-watch-live__step-description {
  color: #f0f0f0;
}

/* Features Section */
.page-resources-how-to-watch-live__features-section {
  padding: 80px 0;
}

.page-resources-how-to-watch-live__dark-section {
  background-color: #222222;
  color: #ffffff;
}

.page-resources-how-to-watch-live__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-how-to-watch-live__feature-card {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-how-to-watch-live__feature-icon {
  width: 100%; /* Occupy main visual area */
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px; /* Ensure minimum size */
}

.page-resources-how-to-watch-live__feature-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-resources-how-to-watch-live__feature-description {
  color: #f0f0f0;
}

/* Betting Guide Section */
.page-resources-how-to-watch-live__betting-guide-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-resources-how-to-watch-live__betting-content {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap-reverse; /* Image on right for desktop, top for mobile */
}

.page-resources-how-to-watch-live__betting-text {
  flex: 1;
  min-width: 300px;
}

.page-resources-how-to-watch-live__betting-subtitle {
  font-size: 1.8em;
  color: #26A9E0;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-resources-how-to-watch-live__betting-text p {
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-resources-how-to-watch-live__betting-image-wrapper {
  flex: 1;
  min-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-resources-how-to-watch-live__betting-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Ensure minimum size */
}

/* Entertainment Section */
.page-resources-how-to-watch-live__entertainment-section {
  padding: 80px 0;
}

.page-resources-how-to-watch-live__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-resources-how-to-watch-live__game-card {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-how-to-watch-live__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-how-to-watch-live__game-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px; /* Ensure minimum size */
}

.page-resources-how-to-watch-live__game-title {
  font-size: 1.3em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-resources-how-to-watch-live__game-description {
  color: #f0f0f0;
}

/* FAQ Section */
.page-resources-how-to-watch-live__faq-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-resources-how-to-watch-live__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-how-to-watch-live__faq-item {
  background-color: #222222;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-how-to-watch-live__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #26A9E0;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-resources-how-to-watch-live__faq-question:hover {
  background-color: #1e87c0;
}

.page-resources-how-to-watch-live__faq-question h3 {
  margin: 0;
  color: #ffffff;
}

.page-resources-how-to-watch-live__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-how-to-watch-live__faq-item.active .page-resources-how-to-watch-live__faq-toggle {
  transform: rotate(45deg); /* Change + to X or similar */
}

.page-resources-how-to-watch-live__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
  background-color: #1a1a1a;
}

.page-resources-how-to-watch-live__faq-item.active .page-resources-how-to-watch-live__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px 25px;
}

.page-resources-how-to-watch-live__faq-answer p {
  margin: 0;
}

/* CTA Download Section */
.page-resources-how-to-watch-live__cta-download-section {
  padding: 80px 0;
  text-align: center;
  background-color: #222222;
}

.page-resources-how-to-watch-live__download-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-resources-how-to-watch-live__download-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-how-to-watch-live__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  min-width: 200px; /* Ensure minimum size */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-how-to-watch-live__hero-section {
    flex-direction: column;
    text-align: center;
  }

  .page-resources-how-to-watch-live__hero-content {
    max-width: 100%;
    text-align: center;
  }

  .page-resources-how-to-watch-live__hero-image-wrapper {
    min-width: unset;
  }

  .page-resources-how-to-watch-live__betting-content {
    flex-direction: column-reverse;
  }

  .page-resources-how-to-watch-live__betting-image-wrapper {
    min-width: unset;
  }
}

@media (max-width: 768px) {
  .page-resources-how-to-watch-live {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-how-to-watch-live__hero-title {
    font-size: 2.5em;
  }

  .page-resources-how-to-watch-live__hero-description,
  .page-resources-how-to-watch-live__section-intro {
    font-size: 1em;
  }

  .page-resources-how-to-watch-live__section-title {
    font-size: 2em;
  }

  .page-resources-how-to-watch-live__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-how-to-watch-live__btn-primary,
  .page-resources-how-to-watch-live__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Images responsiveness */
  .page-resources-how-to-watch-live img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important; /* Enforce minimum size */
  }
  
  /* Video responsiveness */
  .page-resources-how-to-watch-live video,
  .page-resources-how-to-watch-live__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-how-to-watch-live__video-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 0;
    padding-right: 0;
  }

  /* General container padding for mobile */
  .page-resources-how-to-watch-live__container,
  .page-resources-how-to-watch-live__hero-section,
  .page-resources-how-to-watch-live__video-guide-section,
  .page-resources-how-to-watch-live__features-section,
  .page-resources-how-to-watch-live__betting-guide-section,
  .page-resources-how-to-watch-live__entertainment-section,
  .page-resources-how-to-watch-live__faq-section,
  .page-resources-how-to-watch-live__cta-download-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
  }

  .page-resources-how-to-watch-live__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure offset is applied */
  }

  .page-resources-how-to-watch-live__faq-question,
  .page-resources-how-to-watch-live__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-how-to-watch-live__faq-item.active .page-resources-how-to-watch-live__faq-answer {
    padding: 15px !important;
  }
}