.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 15px;
}

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

.page-sports__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: #FFD36B; /* Glow */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-sports__section-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: #FFF6D6;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Hero Section */
.page-sports__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-sports__hero-image {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}

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

.page-sports__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 15px;
}

.page-sports__main-title {
  font-size: clamp(36px, 5vw, 58px);
  color: #FFD36B; /* Glow */
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.page-sports__hero-description {
  font-size: clamp(18px, 2.5vw, 24px);
  color: #FFF6D6;
  margin-bottom: 40px;
  line-height: 1.5;
}

.page-sports__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-sports__cta-buttons--center {
  margin-top: 40px;
}

.page-sports__btn-primary,
.page-sports__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-sports__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for bright button */
  border: none;
}

.page-sports__btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-sports__btn-secondary {
  background: transparent;
  color: #FFD36B; /* Glow */
  border: 2px solid #FFD36B; /* Glow */
}

.page-sports__btn-secondary:hover {
  background: rgba(255, 211, 107, 0.1);
  color: #FFF6D6;
}

/* Dark Section Styling */
.page-sports__dark-section {
  background-color: #111111; /* Card BG */
}

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

.page-sports__odds-card {
  background-color: #0A0A0A; /* Background */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF6D6;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-sports__odds-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 211, 107, 0.1);
}

.page-sports__odds-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  object-fit: cover;
}

.page-sports__card-title {
  font-size: 22px;
  color: #FFD36B; /* Glow */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-sports__card-text {
  font-size: 15px;
  color: #FFF6D6;
}

/* Sports Diversity Section */
.page-sports__sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-sports__sports-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF6D6;
}

.page-sports__sports-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 211, 107, 0.1);
}

.page-sports__sports-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-sports__item-title {
  font-size: 20px;
  color: #FFD36B; /* Glow */
  margin: 15px 15px 10px;
  font-weight: 600;
}

.page-sports__item-text {
  font-size: 15px;
  margin: 0 15px 20px;
  color: #FFF6D6;
}

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

.page-sports__advantage-card {
  background-color: #0A0A0A; /* Background */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF6D6;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-sports__advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 211, 107, 0.1);
}

.page-sports__advantage-card img {
  
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD36B);
  display: block;
}

/* Guide Section */
.page-sports__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-sports__step-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFF6D6;
}

.page-sports__step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  background-color: #F2C14E; /* Main Color */
  color: #111111;
  font-size: 36px;
  font-weight: bold;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-20deg);
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.5);
}

.page-sports__step-title {
  font-size: 22px;
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
  margin-top: 40px;
  font-weight: 600;
}

.page-sports__step-text {
  font-size: 15px;
  color: #FFF6D6;
}

/* Mobile Section */
.page-sports__mobile-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

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

.page-sports__mobile-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-sports__mobile-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: block;
}

/* FAQ Section */
details.page-sports__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #3A2A12; /* Border */
  overflow: hidden;
  background: #111111; /* Card BG */
}
details.page-sports__faq-item summary.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFF6D6;
}
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: rgba(242, 193, 78, 0.1);
}
.page-sports__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFF6D6;
}
.page-sports__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FFD36B; /* Glow */
  flex-shrink: 0;
  margin-left: 15px;
  width: 32px;
  text-align: center;
}
details.page-sports__faq-item .page-sports__faq-answer {
  padding: 0 25px 25px;
  background: #0A0A0A; /* Background */
  border-radius: 0 0 8px 8px;
  color: #FFF6D6;
}

/* Conclusion Section */
.page-sports__conclusion-section .page-sports__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* General Image Styling */
.page-sports img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styling */
@media (max-width: 1024px) {
  .page-sports__section-padding {
    padding: 40px 0;
  }
  .page-sports__hero-image img {
    object-fit: cover;
    height: 500px;
  }
  .page-sports__main-title {
    font-size: clamp(32px, 4.5vw, 50px);
  }
  .page-sports__hero-description {
    font-size: clamp(16px, 2.2vw, 20px);
  }
  .page-sports__odds-grid,
  .page-sports__sports-grid,
  .page-sports__advantages-grid,
  .page-sports__guide-steps {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-sports__mobile-container {
    flex-direction: column;
    text-align: center;
  }
  .page-sports__mobile-content {
    order: 2;
  }
  .page-sports__mobile-image {
    order: 1;
    margin-bottom: 30px;
  }
  .page-sports__mobile-image img {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-sports__section-padding {
    padding: 30px 0 !important;
  }
  .page-sports__hero-section {
    padding-bottom: 40px !important;
  }
  .page-sports__hero-image img {
    object-fit: contain !important;
    aspect-ratio: unset !important;
    height: auto !important;
    max-height: 400px !important;
  }
  .page-sports__hero-content {
    padding: 0 10px !important;
  }
  .page-sports__main-title {
    font-size: clamp(28px, 8vw, 38px) !important;
  }
  .page-sports__hero-description {
    font-size: 16px !important;
  }
  .page-sports__cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
    padding: 0 15px !important;
  }
  .page-sports__btn-primary,
  .page-sports__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 16px !important;
  }
  .page-sports__section-title {
    font-size: clamp(24px, 7vw, 32px) !important;
    margin-bottom: 15px !important;
  }
  .page-sports__section-subtitle {
    font-size: 15px !important;
    margin-bottom: 30px !important;
  }
  .page-sports__text-block {
    font-size: 15px !important;
    margin-bottom: 15px !important;
  }

  .page-sports__odds-grid,
  .page-sports__advantages-grid,
  .page-sports__guide-steps {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .page-sports__sports-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 20px !important;
  }

  .page-sports__sports-item img {
    height: 200px !important;
  }
  .page-sports__item-title {
    font-size: 18px !important;
    margin: 12px 12px 8px !important;
  }
  .page-sports__item-text {
    font-size: 14px !important;
    margin: 0 12px 15px !important;
  }

  .page-sports__mobile-container {
    padding: 0 15px !important;
  }
  .page-sports__mobile-image img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  details.page-sports__faq-item summary.page-sports__faq-question {
    padding: 15px 20px !important;
  }
  .page-sports__faq-qtext {
    font-size: 16px !important;
  }
  .page-sports__faq-toggle {
    font-size: 24px !important;
    width: 28px !important;
  }
  details.page-sports__faq-item .page-sports__faq-answer {
    padding: 0 20px 20px !important;
  }

  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-sports__section,
  .page-sports__card,
  .page-sports__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .page-sports__odds-card img, .page-sports__advantage-card img {
     /* Adjust for smaller icons if needed, but maintain min 200px rule for content images */
    height: auto !important;
  }
  .page-sports__advantage-card img {
    filter: drop-shadow(0 0 3px #FFD36B) !important;
  }
}