/* style/sports.css */

/* Base styles for page-sports */
.page-sports {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default light text for dark body background */
  line-height: 1.6;
  background-color: transparent; /* Body background is handled by shared.css */
}

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

.page-sports__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #26A9E0; /* Primary brand color for titles */
  text-align: center;
  margin-bottom: 30px;
  padding-top: 40px; /* Consistent spacing */
}

.page-sports__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__btn-primary,
.page-sports__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

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

.page-sports__btn-primary:hover {
  background-color: #1a7fb2;
  border-color: #1a7fb2;
}

.page-sports__btn-secondary {
  background-color: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-sports__btn-secondary:hover {
  background-color: #c96806;
  border-color: #c96806;
}

/* Hero Section */
.page-sports__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  background-color: #0d0d0d; /* Match body background */
  color: #ffffff;
}

.page-sports__hero-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.page-sports__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 20px;
}

.page-sports__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-sports__hero-content {
  text-align: center;
  max-width: 900px;
}

.page-sports__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive H1 font size */
  font-weight: 800;
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-sports__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-sports__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Ensure buttons wrap on smaller screens */
}

/* Video Section */
.page-sports__video-section {
  padding: 60px 0;
  background-color: #0d0d0d;
  color: #ffffff;
}

.page-sports__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 30px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

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

.page-sports__video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10; /* Ensure link is clickable over video */
}

.page-sports__video-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: #f0f0f0;
}

/* Intro Section */
.page-sports__intro-section {
  padding: 60px 0;
  background-color: #0d0d0d;
}

.page-sports__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-sports__text-block p {
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-sports__image-block img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Bet Types Section */
.page-sports__bet-types-section {
  padding: 60px 0;
  background-color: #0d0d0d;
}

.page-sports__bet-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-sports__card {
  background-color: rgba(255, 255, 255, 0.08); /* Light background for contrast */
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-sports__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-sports__card p {
  color: #f0f0f0;
}

/* Top Sports Section */
.page-sports__top-sports-section {
  padding: 60px 0;
  background-color: #0d0d0d;
}

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

.page-sports__sport-card {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-sports__sport-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-sports__sport-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin: 20px 0 10px;
  padding: 0 20px;
  font-weight: 600;
}

.page-sports__sport-card p {
  font-size: 0.95em;
  color: #f0f0f0;
  padding: 0 20px 20px;
}

/* Advantages Section */
.page-sports__advantages-section {
  padding: 60px 0;
  background-color: #0d0d0d;
}

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

.page-sports__advantage-card {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-sports__advantage-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  object-fit: cover;
}

.page-sports__advantage-title {
  font-size: 1.3em;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-sports__advantage-card p {
  font-size: 0.95em;
  color: #f0f0f0;
}

/* Guide Section */
.page-sports__guide-section {
  padding: 60px 0;
  background-color: #0d0d0d;
}

.page-sports__guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: guide-step;
}

.page-sports__guide-item {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 80px; /* Space for step number */
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-sports__guide-item::before {
  counter-increment: guide-step;
  content: "0" counter(guide-step);
  position: absolute;
  left: 20px;
  top: 30px;
  font-size: 2em;
  font-weight: 700;
  color: #26A9E0;
  line-height: 1;
}

.page-sports__guide-step-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-sports__guide-item p {
  color: #f0f0f0;
}

.page-sports__guide-item a {
  color: #EA7C07;
  text-decoration: underline;
}

.page-sports__guide-item a:hover {
  color: #c96806;
}

/* Promotions Section */
.page-sports__promotions-section {
  padding: 60px 0;
  background-color: #0d0d0d;
}

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

.page-sports__promo-card {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-sports__promo-image {
  width: 100%;
  height: 250px; /* Fixed height for promo images */
  object-fit: cover;
  display: block;
}

.page-sports__promo-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin: 20px 0 10px;
  padding: 0 20px;
  font-weight: 600;
}

.page-sports__promo-card p {
  font-size: 0.95em;
  color: #f0f0f0;
  padding: 0 20px 20px;
}

.page-sports__promotions-cta {
  text-align: center;
}

/* FAQ Section */
.page-sports__faq-section {
  padding: 60px 0;
  background-color: #0d0d0d;
}

.page-sports__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-sports__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: #26A9E0;
  cursor: pointer;
  list-style: none; /* For details/summary */
}

.page-sports__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome */
}

.page-sports__faq-item summary {
  list-style: none;
}

.page-sports__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #EA7C07;
  transition: transform 0.3s ease;
}

.page-sports__faq-item[open] .page-sports__faq-toggle {
  transform: rotate(45deg); /* Rotate for 'minus' effect */
}

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

.page-sports__faq-answer p {
  margin-bottom: 10px;
}

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

.page-sports__faq-answer a:hover {
  color: #c96806;
}

/* Conclusion Section */
.page-sports__conclusion-section {
  padding: 60px 0 80px;
  background-color: #0d0d0d;
}

.page-sports__conclusion-section .page-sports__section-description {
  margin-bottom: 40px;
}

.page-sports__cta-buttons {
  text-align: center;
}

/* Responsive Design */
@media (min-width: 769px) {
  .page-sports__content-grid {
    grid-template-columns: 2fr 1fr;
  }
  .page-sports__hero-content-wrapper {
    flex-direction: column;
  }
  .page-sports__hero-image-wrapper {
    order: 1;
  }
  .page-sports__hero-content {
    order: 2;
  }
}

@media (max-width: 768px) {
  .page-sports__container {
    padding: 0 15px; /* Adjust padding for mobile */
  }

  .page-sports__section-title {
    font-size: 2em;
    padding-top: 30px;
    margin-bottom: 20px;
  }

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

  .page-sports__hero-section {
    padding-bottom: 40px;
  }

  .page-sports__main-title {
    font-size: clamp(2em, 8vw, 2.5em);
    margin-bottom: 15px;
  }

  .page-sports__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-sports__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-sports__btn-primary,
  .page-sports__btn-secondary {
    width: 100%;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-sports__video-section,
  .page-sports__intro-section,
  .page-sports__bet-types-section,
  .page-sports__top-sports-section,
  .page-sports__advantages-section,
  .page-sports__guide-section,
  .page-sports__promotions-section,
  .page-sports__faq-section,
  .page-sports__conclusion-section {
    padding: 40px 0;
  }

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

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

  .page-sports__video-section,
  .page-sports__video-container,
  .page-sports__video-wrapper,
  .page-sports__section,
  .page-sports__card,
  .page-sports__container,
  .page-sports__hero-section,
  .page-sports__intro-section,
  .page-sports__bet-types-section,
  .page-sports__top-sports-section,
  .page-sports__advantages-section,
  .page-sports__guide-section,
  .page-sports__promotions-section,
  .page-sports__faq-section,
  .page-sports__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no overflow */
  }

  .page-sports__video-section {
    padding-top: 10px !important; /* Small top padding for video section on mobile */
  }

  .page-sports__guide-item {
    padding-left: 60px;
  }

  .page-sports__guide-item::before {
    left: 15px;
    font-size: 1.8em;
    top: 25px;
  }

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

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

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

@media (min-width: 1201px) {
  .page-sports__hero-section {
    padding-bottom: 80px;
  }
  .page-sports__video-section,
  .page-sports__intro-section,
  .page-sports__bet-types-section,
  .page-sports__top-sports-section,
  .page-sports__advantages-section,
  .page-sports__guide-section,
  .page-sports__promotions-section,
  .page-sports__faq-section,
  .page-sports__conclusion-section {
    padding: 80px 0;
  }
}