/* style/sports.css */
/* body background is #121212 (dark), so text color should be light (#ffffff) */

.page-sports {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text on dark body background */
  background-color: transparent; /* Rely on body background */
}

.page-sports__dark-bg {
  background-color: #1a1a1a; /* Slightly lighter dark for sections */
  color: #ffffff;
}

.page-sports__light-bg {
  background-color: #262626; /* Dark grey for contrast on dark body */
  color: #ffffff;
}

.page-sports__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px; /* Small top padding, more at bottom */
  text-align: center;
  overflow: hidden;
}

.page-sports__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit hero image height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.page-sports__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-sports__hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative; /* Ensure content is above any potential background */
  z-index: 2;
}

.page-sports__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-sports__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-sports__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-sports__text-block {
  font-size: 1.05em;
  margin-bottom: 30px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

.page-sports__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-sports__btn-primary:hover {
  background-color: #1e87b8;
  border-color: #1e87b8;
  transform: translateY(-2px);
}

.page-sports__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-sports__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-sports__features-grid,
.page-sports__sports-grid,
.page-sports__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-sports__feature-card,
.page-sports__sport-card,
.page-sports__promo-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  color: #ffffff;
  height: 100%; /* Ensure cards have equal height */
}

.page-sports__feature-card:hover,
.page-sports__sport-card:hover,
.page-sports__promo-card:hover {
  transform: translateY(-5px);
}

.page-sports__feature-card img,
.page-sports__sport-card img,
.page-sports__promo-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px;
}

.page-sports__feature-title,
.page-sports__sport-title,
.page-sports__promo-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-sports__promo-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-sports__promo-title a:hover {
  text-decoration: underline;
}

.page-sports__feature-text,
.page-sports__sport-description,
.page-sports__promo-description {
  font-size: 0.95em;
  color: #f0f0f0;
  flex-grow: 1; /* Allow text to grow and push button to bottom */
}

.page-sports__video-section {
  position: relative;
  width: 100%;
  padding: 10px 20px 60px; /* Small top padding, more at bottom */
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-sports__video-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-top: 30px;
}

.page-sports__video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-sports__video-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.page-sports__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-sports__live-betting-list,
.page-sports__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-sports__live-betting-list li,
.page-sports__guide-list li {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.05em;
  color: #ffffff;
  border-left: 4px solid #26A9E0;
}

.page-sports__live-betting-list li strong,
.page-sports__guide-list li strong {
  color: #26A9E0;
}

.page-sports__live-betting-image,
.page-sports__guide-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 10px;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px;
}

.page-sports__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

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

.page-sports__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-sports__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1em;
  font-weight: 600;
  color: #26A9E0;
  transition: background-color 0.3s ease;
}

.page-sports__faq-item summary:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-sports__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-sports__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #ffffff;
}

.page-sports__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #f0f0f0;
}

.page-sports__faq-answer p {
  margin: 0;
  padding-top: 10px;
}

.page-sports__faq-answer a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-sports__faq-item.active .page-sports__faq-answer {
  max-height: 2000px; /* Sufficiently large to show content */
  transition: max-height 0.5s ease-in-out;
}

.page-sports__faq-item:not(.active) .page-sports__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.page-sports__cta-section {
  padding: 80px 20px;
  text-align: center;
}

.page-sports__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-sports__content-area {
    padding: 40px 15px;
  }

  .page-sports__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }

  .page-sports__section-title {
    font-size: clamp(1.6em, 4vw, 2.5em);
  }
}

@media (max-width: 768px) {
  .page-sports__hero-section {
    padding: 10px 15px 40px;
  }

  .page-sports__hero-image-wrapper {
    margin-bottom: 30px;
  }

  .page-sports__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em) !important;
  }

  .page-sports__description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-sports__section-title {
    font-size: clamp(1.5em, 5vw, 2em) !important;
    margin-bottom: 30px;
  }

  .page-sports__text-block {
    font-size: 0.95em;
    margin-bottom: 25px;
  }

  .page-sports__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-sports__button-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-sports__features-grid,
  .page-sports__sports-grid,
  .page-sports__promotions-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-sports__feature-card,
  .page-sports__sport-card,
  .page-sports__promo-card {
    padding: 25px;
  }

  .page-sports__feature-card img,
  .page-sports__sport-card img,
  .page-sports__promo-card img,
  .page-sports__live-betting-image,
  .page-sports__guide-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-sports__video-section {
    padding-top: 10px !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-sports__video-wrapper,
  .page-sports__video-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-sports__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-sports__content-area,
  .page-sports__faq-list {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-sports__faq-item summary {
    font-size: 1em;
    padding: 15px;
  }

  .page-sports__faq-answer {
    padding: 0 15px 15px;
  }
}

@media (max-width: 480px) {
  .page-sports__main-title {
    font-size: clamp(1.5em, 7vw, 2em) !important;
  }

  .page-sports__section-title {
    font-size: clamp(1.3em, 6vw, 1.8em) !important;
  }

  .page-sports__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-sports__hero-content {
    padding: 0 10px;
  }

  .page-sports__cta-section {
    padding: 60px 15px;
  }
}