/* style/sports.css */

/* Base styles for the sports page */
.page-sports {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
}

.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: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #F2C14E; /* Main Color */
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-sports__image-content {
  display: block;
  margin: 40px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

/* Hero Section */
.page-sports__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* body already handles --header-offset, so only a small top padding */
  overflow: hidden;
  background-color: #0A0A0A;
}

.page-sports__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%; /* Ensure it takes full width */
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  z-index: 0;
}

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

.page-sports__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  display: block;
}

.page-sports__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-sports__hero-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Use clamp for H1 */
  color: #F2C14E;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-sports__hero-description {
  font-size: 1.2em;
  color: #FFF6D6;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #FFF6D6;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-sports__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-sports__cta-button--secondary {
  background: #111111; /* Card BG */
  color: #F2C14E; /* Main Color */
  border: 2px solid #F2C14E;
}

.page-sports__cta-button--secondary:hover {
  background: #F2C14E;
  color: #111111;
}

/* Section common styles */
.page-sports__introduction-section,
.page-sports__sports-markets-section,
.page-sports__live-betting-section,
.page-sports__promotions-section,
.page-sports__mobile-betting-section,
.page-sports__security-section,
.page-sports__how-to-start-section,
.page-sports__why-choose-section,
.page-sports__faq-section,
.page-sports__final-cta-section {
  padding: 60px 0;
}

.page-sports__dark-section {
  background-color: #0A0A0A; /* Background */
  color: #FFF6D6; /* Text Main */
}

.page-sports__dark-section .page-sports__section-title {
  color: #F2C14E;
}

/* Sports Markets Grid */
.page-sports__markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-sports__market-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__market-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-sports__market-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__market-title {
  font-size: 1.4em;
  color: #FFD36B; /* Accent Color / Glow */
  margin-bottom: 15px;
}

.page-sports__market-description {
  font-size: 1em;
  color: #FFF6D6;
}

/* How to Start Section */
.page-sports__step-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__step-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
}

.page-sports__step-title {
  font-size: 1.3em;
  color: #F2C14E; /* Main Color */
  margin-bottom: 10px;
}

.page-sports__step-item p {
  color: #FFF6D6;
  font-size: 1em;
}

/* Why Choose Section */
.page-sports__advantages-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-sports__advantage-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  padding: 15px 25px;
  margin-bottom: 15px;
  color: #FFF6D6;
  font-size: 1.1em;
}

.page-sports__advantage-item strong {
  color: #F2C14E;
}

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

.page-sports__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: #F2C14E; /* Main Color */
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-sports__faq-question:hover {
  background-color: rgba(242, 193, 78, 0.1);
}

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

.page-sports__faq-item.active .page-sports__faq-toggle {
  transform: rotate(45deg);
}

.page-sports__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
  font-size: 1em;
}

.page-sports__faq-item.active .page-sports__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show all content */
  padding: 15px 25px 25px 25px;
}

.page-sports__faq-answer p {
  margin-bottom: 0;
  text-align: left;
}

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

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-sports {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-sports__container {
    padding: 0 15px !important;
  }

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

  .page-sports__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-sports__hero-title {
    font-size: 2.2em; /* Smaller H1 for mobile */
  }

  .page-sports__hero-description {
    font-size: 1em;
  }

  .page-sports__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 15px 20px !important;
    margin-bottom: 10px;
  }

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

  .page-sports__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 30px auto;
  }

  .page-sports__video-wrapper {
    padding-bottom: 56.25%; /* Maintain aspect ratio */
  }

  .page-sports__video {
    width: 100% !important;
    height: 100% !important;
  }

  .page-sports__markets-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-sports__market-item,
  .page-sports__step-item,
  .page-sports__advantage-item,
  .page-sports__faq-item {
    padding: 20px;
  }

  .page-sports__market-icon {
    width: 50px;
    height: 50px;
  }

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

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

  .page-sports__faq-item.active .page-sports__faq-answer {
    padding: 10px 20px 20px 20px;
  }

  .page-sports__step-title {
    font-size: 1.2em;
  }

  /* Ensure all sections and cards have proper padding/width */
  .page-sports__introduction-section .page-sports__container,
  .page-sports__sports-markets-section .page-sports__container,
  .page-sports__live-betting-section .page-sports__container,
  .page-sports__promotions-section .page-sports__container,
  .page-sports__mobile-betting-section .page-sports__container,
  .page-sports__security-section .page-sports__container,
  .page-sports__how-to-start-section .page-sports__container,
  .page-sports__why-choose-section .page-sports__container,
  .page-sports__faq-section .page-sports__container,
  .page-sports__final-cta-section .page-sports__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Specific image adjustments for mobile app image */
  .page-sports__image-content--mobile-app {
    width: 300px !important; /* Adjust width for mobile app image specifically */
    height: auto !important;
  }
}