/* style/sports.css */
.page-sports {
  font-family: Arial, sans-serif;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
  line-height: 1.6;
}

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

.page-sports__section {
  padding: 60px 0;
}

.page-sports__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, header offset handled by body in shared.css */
  background-color: #0D0E12; /* Ensure hero section background matches body */
}

.page-sports__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; /* Ensure full width for flex container */
}

.page-sports__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 8px; /* Added border-radius for aesthetics */
  overflow: hidden; /* Ensure image corners are rounded */
}

.page-sports__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px; /* Match container */
}

.page-sports__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-sports__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem); /* Use clamp for H1 font-size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFF3E6; /* Text Main */
}

.page-sports__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF3E6; /* Text Main */
}

.page-sports__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px; /* Adjusted margin-top */
  transition: all 0.3s ease;
  border: none; /* Ensure no default button border */
  cursor: pointer;
  box-sizing: border-box; /* Crucial for button responsiveness */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text breaking */
}

.page-sports__cta-button:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%); /* Invert gradient on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-sports__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #FFF3E6; /* Text Main */
}

.page-sports__section-title--light {
  color: #FFF3E6; /* Text Main */
}

.page-sports__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #FFF3E6; /* Text Main */
}

.page-sports__text-block--light {
  color: #FFF3E6; /* Text Main */
}

.page-sports__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 20px;
  color: #FFF3E6; /* Text Main */
}

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

.page-sports__card {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF3E6; /* Text Main */
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-sports__card img {
  max-width: 100%;
  height: auto;
  min-width: 200px; /* Min size for images */
  min-height: 200px; /* Min size for images */
  border-radius: 6px;
  margin-bottom: 20px;
  object-fit: cover;
  display: block; /* Ensure it behaves as a block element */
}

.page-sports__card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFF3E6; /* Text Main */
}

.page-sports__card-title--dark {
  color: #333333; /* For light background cards */
}

.page-sports__card-description {
  font-size: 0.95rem;
  line-height: 1.5;
  flex-grow: 1; /* Allow description to take available space */
  color: #FFF3E6; /* Text Main */
}

.page-sports__card-description--dark {
  color: #333333; /* For light background cards */
}

.page-sports__btn-primary {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 44px;
  font-size: 0.95rem;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-sizing: border-box; /* Crucial for button responsiveness */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text breaking */
}

.page-sports__btn-primary:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-sports__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-sports__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-sports__text-content {
  flex: 1;
}

.page-sports__image-wrapper {
  flex: 1;
  min-width: 250px; /* Ensure minimum size for image wrapper */
}

.page-sports__image-wrapper img {
  max-width: 100%;
  height: auto;
  min-width: 200px; /* Min size for images */
  min-height: 200px; /* Min size for images */
  border-radius: 8px;
  object-fit: cover;
}

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

.page-sports__feature-list li {
  margin-bottom: 10px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  color: #FFF3E6; /* Text Main */
}

.page-sports__list-icon {
  color: #FFA53A; /* Auxiliary color */
  font-size: 1.2rem;
  margin-right: 10px;
  font-weight: bold;
}

.page-sports__step-list {
  list-style: decimal;
  padding-left: 20px;
  margin-top: 20px;
  color: #FFF3E6; /* Text Main */
}

.page-sports__step-list li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #FFF3E6; /* Text Main */
}

.page-sports__step-list li strong {
  color: #FFA53A; /* Auxiliary color */
}

.page-sports__step-list li a {
  color: #FFA53A; /* Link color */
  text-decoration: underline;
}

.page-sports__step-list li a:hover {
  color: #FFB04D; /* Glow color on hover */
}

.page-sports__promotions-section {
  background-color: #17191F; /* Card BG, used as dark section background */
  padding: 80px 0;
}

.page-sports__dark-section {
  background-color: #17191F; /* Card BG */
  color: #FFF3E6; /* Text Main */
}

.page-sports__grid--promotions {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-sports__promotion-card {
  background-color: #FFF3E6; /* Light background for promotion cards */
  color: #333333; /* Dark text for light background */
  border: 1px solid #e0e0e0; /* Lighter border for light card */
}

.page-sports__promotion-card img {
  border-radius: 4px;
  min-width: 200px;
  min- /* Adjusted min height for promotion images */
}

.page-sports__btn-secondary {
  display: inline-block;
  padding: 10px 25px;
  background: #ffffff; /* White background */
  color: #FF8C1A; /* Primary color text */
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: 2px solid #FF8C1A; /* Primary color border */
  cursor: pointer;
  box-sizing: border-box; /* Crucial for button responsiveness */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text breaking */
}

.page-sports__btn-secondary:hover {
  background: #FF8C1A; /* Primary color background on hover */
  color: #ffffff; /* White text on hover */
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-sports__note-text a {
  color: #FFA53A; /* Auxiliary color for links in notes */
  text-decoration: underline;
}

.page-sports__note-text a:hover {
  color: #FFB04D; /* Glow color on hover */
}

.page-sports__cta-button--contact {
  background: #FFA53A; /* Auxiliary color for contact button */
  color: #ffffff;
}

.page-sports__cta-button--contact:hover {
  background: #FFB04D; /* Glow color on hover */
}

.page-sports__faq-section {
  padding-bottom: 80px;
}

details.page-sports__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #A84F0C; /* Border */
  overflow: hidden;
  background: #17191F; /* Card BG */
  color: #FFF3E6; /* Text Main */
}
details.page-sports__faq-item summary.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-sports__faq-item summary.page-sports__faq-question::-webkit-details-marker {
  display: none;
}
details.page-sports__faq-item summary.page-sports__faq-question:hover {
  background: #2a2c34; /* Slightly lighter dark background on hover */
}
.page-sports__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFF3E6; /* Text Main */
}
.page-sports__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFA53A; /* Auxiliary color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-sports__faq-item .page-sports__faq-answer {
  padding: 0 20px 20px;
  background: #0D0E12; /* Background */
  border-radius: 0 0 5px 5px;
  color: #FFF3E6; /* Text Main */
}

.page-sports__cta-bottom-section {
  background-color: #FF8C1A; /* Primary color */
  padding: 80px 0;
  text-align: center;
}

.page-sports__cta-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-sports__cta-bottom-content .page-sports__section-title {
  color: #ffffff;
}

.page-sports__cta-bottom-content .page-sports__text-block {
  color: #ffffff;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__button-group {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow wrapping on small screens */
  justify-content: center; /* Center buttons */
  width: 100%; /* Ensure container takes full width for responsiveness */
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-sports__cta-button--large {
  padding: 18px 45px;
  font-size: 1.1rem;
}