/* style/live-streaming-historical-match-replays.css */

/* Base styles for the page content, ensuring contrast with body background #000 */
.page-live-streaming-historical-match-replays {
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #0d0d0d; /* Slightly lighter than body background for subtle contrast */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Essential for fixed header spacing */
}

.page-live-streaming-historical-match-replays__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-live-streaming-historical-match-replays__main-title {
  font-size: 2.8em;
  color: #FFCC00; /* Gold for main titles */
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-live-streaming-historical-match-replays__section-title {
  font-size: 2em;
  color: #FFCC00; /* Gold for section titles */
  text-align: center;
  margin-top: 40px;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.page-live-streaming-historical-match-replays__description,
.page-live-streaming-historical-match-replays p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
  color: #ffffff;
}

.page-live-streaming-historical-match-replays strong {
  color: #FFCC00;
}

/* Buttons */
.page-live-streaming-historical-match-replays__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-live-streaming-historical-match-replays__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: none;
}

.page-live-streaming-historical-match-replays__btn--primary {
  background-color: #CC3300; /* Main brand color */
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(204, 51, 0, 0.4);
}

.page-live-streaming-historical-match-replays__btn--primary:hover {
  background-color: #e63900;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(204, 51, 0, 0.6);
}

.page-live-streaming-historical-match-replays__btn--secondary {
  background-color: #FFCC00; /* Accent brand color */
  color: #333333;
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.page-live-streaming-historical-match-replays__btn--secondary:hover {
  background-color: #ffe066;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
}

.page-live-streaming-historical-match-replays__btn-small {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  background-color: #CC3300;
  color: #ffffff;
  transition: background-color 0.3s ease;
  margin-top: 15px;
}

.page-live-streaming-historical-match-replays__btn-small:hover {
  background-color: #e63900;
}

/* Sections */
.page-live-streaming-historical-match-replays__intro-section,
.page-live-streaming-historical-match-replays__archive-section,
.page-live-streaming-historical-match-replays__why-us-section,
.page-live-streaming-historical-match-replays__highlight-matches-section,
.page-live-streaming-historical-match-replays__how-to-watch-section,
.page-live-streaming-historical-match-replays__security-section,
.page-live-streaming-historical-match-replays__faq-section,
.page-live-streaming-historical-match-replays__cta-section {
  padding: 60px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-live-streaming-historical-match-replays__intro-section {
  background: linear-gradient(135deg, #CC3300, #992600);
  padding-top: 80px;
  padding-bottom: 80px;
  color: #ffffff;
}

.page-live-streaming-historical-match-replays__dark-bg {
  background-color: #CC3300;
  color: #ffffff;
  padding: 60px 0;
}

.page-live-streaming-historical-match-replays__dark-bg .page-live-streaming-historical-match-replays__section-title {
  color: #FFCC00;
}

.page-live-streaming-historical-match-replays__dark-bg .page-live-streaming-historical-match-replays p {
  color: #ffffff;
}

.page-live-streaming-historical-match-replays__cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Feature Grid & Cards */
.page-live-streaming-historical-match-replays__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-live-streaming-historical-match-replays__feature-card,
.page-live-streaming-historical-match-replays__match-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 204, 0, 0.2);
}

.page-live-streaming-historical-match-replays__feature-card:hover,
.page-live-streaming-historical-match-replays__match-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-live-streaming-historical-match-replays__feature-image,
.page-live-streaming-historical-match-replays__match-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid #FFCC00;
  box-shadow: 0 2px 10px rgba(255, 204, 0, 0.3);
}

.page-live-streaming-historical-match-replays__card-title {
  font-size: 1.4em;
  color: #FFCC00;
  margin-bottom: 15px;
}

/* Lists */
.page-live-streaming-historical-match-replays__benefit-list,
.page-live-streaming-historical-match-replays__security-list,
.page-live-streaming-historical-match-replays__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-live-streaming-historical-match-replays__benefit-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.page-live-streaming-historical-match-replays__list-item {
  background: rgba(255, 255, 255, 0.08);
  border-left: 5px solid #CC3300;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-live-streaming-historical-match-replays__list-title {
  font-size: 1.25em;
  color: #FFCC00;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-live-streaming-historical-match-replays__steps-list {
  counter-reset: step-counter;
  display: grid;
  gap: 30px;
}

.page-live-streaming-historical-match-replays__steps-list .page-live-streaming-historical-match-replays__list-item {
  position: relative;
  padding-left: 60px;
  text-align: left;
  border-left: none;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.page-live-streaming-historical-match-replays__steps-list .page-live-streaming-historical-match-replays__list-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 15px;
  top: 20px;
  background-color: #CC3300;
  color: #ffffff;
  width: 35px;
  height: 35px;
  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-streaming-historical-match-replays__benefits-list-dark .page-live-streaming-historical-match-replays__list-item-dark {
  background: rgba(255, 255, 255, 0.15);
  border-left: 5px solid #FFCC00;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-live-streaming-historical-match-replays__benefits-list-dark .page-live-streaming-historical_match-replays__list-title-dark {
  font-size: 1.25em;
  color: #FFCC00;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-live-streaming-historical-match-replays__security-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-live-streaming-historical-match-replays__security-list .page-live-streaming-historical-match-replays__list-item {
  border-left-color: #FFCC00;
}

/* Highlight Matches */
.page-live-streaming-historical-match-replays__match-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* FAQ */
.page-live-streaming-historical-match-replays__faq-list {
  margin-top: 30px;
}

.page-live-streaming-historical-match-replays__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.page-live-streaming-historical-match-replays__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 15px;
  opacity: 0;
  color: #f0f0f0;
}

.page-live-streaming-historical-match-replays__faq-item.active .page-live-streaming-historical-match-replays__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0 0 5px 5px;
}

.page-live-streaming-historical-match-replays__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 204, 0, 0.2);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-live-streaming-historical-match-replays__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFCC00;
}

.page-live-streaming-historical-match-replays__faq-question:active {
  background: rgba(255, 255, 255, 0.2);
}

.page-live-streaming-historical-match-replays__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.15em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #FFCC00;
}

.page-live-streaming-historical-match-replays__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #FFCC00;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-live-streaming-historical-match-replays__faq-item.active .page-live-streaming-historical-match-replays__faq-toggle {
  color: #CC3300;
  transform: rotate(45deg);
}

/* Links */
.page-live-streaming-historical-match-replays a {
  color: #FFCC00;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-live-streaming-historical-match-replays a:hover {
  color: #ffe066;
  text-decoration: underline;
}

/* Responsive design */
@media (max-width: 1024px) {
  .page-live-streaming-historical-match-replays__main-title {
    font-size: 2.5em;
  }
  .page-live-streaming-historical-match-replays__section-title {
    font-size: 1.8em;
  }
  .page-live-streaming-historical-match-replays__feature-grid,
  .page-live-streaming-historical-match-replays__benefit-list,
  .page-live-streaming-historical-match-replays__security-list,
  .page-live-streaming-historical-match-replays__match-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-live-streaming-historical-match-replays {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-live-streaming-historical-match-replays__main-title {
    font-size: 2em;
  }
  .page-live-streaming-historical-match-replays__section-title {
    font-size: 1.6em;
  }
  .page-live-streaming-historical-match-replays__description,
  .page-live-streaming-historical-match-replays p {
    font-size: 1em;
  }
  .page-live-streaming-historical-match-replays__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live-streaming-historical-match-replays__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-live-streaming-historical-match-replays__container {
    padding: 15px;
  }
  .page-live-streaming-historical-match-replays img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-live-streaming-historical-match-replays__section,
  .page-live-streaming-historical-match-replays__card,
  .page-live-streaming-historical-match-replays__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-live-streaming-historical-match-replays__feature-image,
  .page-live-streaming-historical-match-replays__match-image {
    height: 200px; /* Adjust height for mobile */
  }
  .page-live-streaming-historical-match-replays__steps-list .page-live-streaming-historical-match-replays__list-item {
    padding-left: 50px;
  }
  .page-live-streaming-historical-match-replays__steps-list .page-live-streaming-historical-match-replays__list-item::before {
    left: 10px;
    width: 30px;
    height: 30px;
    font-size: 1em;
  }
  .page-live-streaming-historical-match-replays__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-live-streaming-historical-match-replays__faq-question h3 {
    font-size: 1em;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  .page-live-streaming-historical-match-replays__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-live-streaming-historical-match-replays__faq-answer {
    padding: 0 15px;
  }
  .page-live-streaming-historical-match-replays__faq-item.active .page-live-streaming-historical-match-replays__faq-answer {
    padding: 15px !important;
  }
}

@media (max-width: 480px) {
  .page-live-streaming-historical-match-replays__main-title {
    font-size: 1.8em;
  }
  .page-live-streaming-historical-match-replays__section-title {
    font-size: 1.4em;
  }
  .page-live-streaming-historical-match-replays__feature-grid,
  .page-live-streaming-historical-match-replays__benefit-list,
  .page-live-streaming-historical-match-replays__security-list,
  .page-live-streaming-historical-match-replays__match-cards {
    grid-template-columns: 1fr;
  }
}