/* style/sports.css */

/* Base styles for the page-sports scope */
.page-sports {
  font-family: 'Arial', sans-serif;
  color: #FFF6D6; /* Main text color for dark background */
  background-color: #0A0A0A; /* Page background from custom colors */
}

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

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

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

.page-sports__hero-content {
  max-width: 960px;
  margin: 40px auto 0 auto;
  text-align: center;
  padding: 0 20px;
  z-index: 1;
}

.page-sports__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #FFD36B;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-sports__description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #FFF6D6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.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.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-sports__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  border: none;
}

.page-sports__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-sports__btn-secondary {
  background: none;
  color: #FFD36B;
  border: 2px solid #FFD36B;
}

.page-sports__btn-secondary:hover {
  background: #FFD36B;
  color: #111111;
  transform: translateY(-2px);
}

.page-sports__video-section {
  width: 100%;
  padding: 10px 20px 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #0A0A0A;
}

.page-sports__video-container {
  width: 100%;
  max-width: 1000px; /* Max width for the video */
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
}

.page-sports__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #FFD36B;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.3;
}

.page-sports__section-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #FFF6D6;
  margin-bottom: 40px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

.page-sports__text-block {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #FFF6D6;
}

.page-sports__section-intro .page-sports__text-block {
  font-size: 1.1rem;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-sports__grid-item {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid #3A2A12;
}

.page-sports__image-content {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-sports__sub-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #F2C14E;
  margin-bottom: 15px;
}

.page-sports__download-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-sports__download-content {
  flex: 1;
  min-width: 300px;
}

.page-sports__download-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-sports__download-steps {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-sports__download-steps li {
  background-color: #111111;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 5px solid #F2C14E;
  color: #FFF6D6;
  line-height: 1.6;
}

.page-sports__download-steps li strong {
  color: #FFD36B;
}

.page-sports__dark-section {
  background-color: #111111; /* Card BG for section */
  padding: 80px 20px;
  border-radius: 15px;
  margin-top: 40px;
  border: 1px solid #3A2A12;
}

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

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

.page-sports__card {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white on dark */
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  color: #FFF6D6;
}

.page-sports__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #F2C14E;
  margin-bottom: 15px;
}

.page-sports__card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #FFF6D6;
}

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

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

.page-sports__promo-card {
  background-color: #111111;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  border: 1px solid #3A2A12;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-sports__promo-card .page-sports__image-content {
  height: 200px;
  object-fit: contain;
}

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

.page-sports__tip-card {
  background-color: #111111;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  border: 1px solid #3A2A12;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-sports__tip-card .page-sports__image-content {
  height: 180px;
  object-fit: cover;
}

.page-sports__section-faq {
  background-color: #0A0A0A;
}

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

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

.page-sports__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFD36B;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

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

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

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

.page-sports__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  line-height: 1.7;
  color: #FFF6D6;
}

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

.page-sports__section-conclusion {
  text-align: center;
  padding-bottom: 80px;
}

.page-sports__section-conclusion .page-sports__text-block {
  font-size: 1.1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-sports__hero-image-wrapper {
    max-height: 600px;
  }
  .page-sports__hero-content {
    margin-top: 30px;
  }
  .page-sports__section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-sports__hero-image-wrapper {
    max-height: 400px;
  }
  .page-sports__hero-content {
    margin-top: 20px;
    padding: 0 15px;
  }
  .page-sports__main-title {
    font-size: 2rem;
  }
  .page-sports__description {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  .page-sports__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-sports__btn-primary,
  .page-sports__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .page-sports__video-section {
    padding: 10px 15px 40px 15px !important;
  }
  .page-sports__video-container {
    padding: 0;
  }
  .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 {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-sports__content-area {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-sports__section-title {
    font-size: 1.8rem;
  }
  .page-sports__section-description {
    font-size: 0.95rem;
  }
  .page-sports__sub-title {
    font-size: 1.3rem;
  }
  .page-sports__text-block {
    font-size: 0.9rem;
  }
  .page-sports__download-flex {
    flex-direction: column;
    gap: 20px;
  }
  .page-sports__dark-section {
    padding: 60px 15px;
  }
  .page-sports__card-title {
    font-size: 1.2rem;
  }
  .page-sports__card-text {
    font-size: 0.85rem;
  }
  .page-sports__faq-item summary {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-sports__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 0.9rem;
  }
  .page-sports__download-steps li {
    font-size: 0.95rem;
  }
}