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

.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 as body handles header offset */
  overflow: hidden;
}

.page-sports__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 20px;
}

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

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

.page-sports__main-title {
  font-size: clamp(2em, 3.5vw, 3.5em);
  color: #F2C14E; /* Main color */
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-sports__description {
  font-size: clamp(1em, 1.2vw, 1.2em);
  margin-bottom: 30px;
  color: #FFF6D6; /* Text Main */
}

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

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

.page-sports__btn-primary,
.page-sports__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  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%); /* Button color */
  color: #0A0A0A; /* Dark text for contrast on bright button */
  border: 2px solid transparent;
}

.page-sports__btn-primary:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  box-shadow: 0 0 15px #FFD36B;
}

.page-sports__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Main color */
  border: 2px solid #F2C14E; /* Border color */
}

.page-sports__btn-secondary:hover {
  background: #F2C14E;
  color: #0A0A0A;
  box-shadow: 0 0 15px #F2C14E;
}

.page-sports__btn-small {
  padding: 8px 18px;
  font-size: 0.9em;
}

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

.page-sports__section--features {
  background-color: #0A0A0A; /* Background */
}

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

.page-sports__dark-bg {
  background-color: #0A0A0A; /* Background */
}

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

.page-sports__section-title {
  font-size: clamp(1.8em, 2.5vw, 2.8em);
  color: #F2C14E; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-sports__text-block {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF6D6; /* Text Main */
}

.page-sports__feature-grid,
.page-sports__sport-categories,
.page-sports__steps-grid,
.page-sports__responsible-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-sports__card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF6D6; /* Text Main */
}

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

.page-sports__feature-icon {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-sports__feature-title,
.page-sports__category-title,
.page-sports__step-title,
.page-sports__responsible-title,
.page-sports__app-subtitle {
  font-size: 1.4em;
  color: #F2C14E; /* Main color */
  margin-bottom: 10px;
}

.page-sports__feature-description,
.page-sports__category-description,
.page-sports__step-description,
.page-sports__responsible-description {
  font-size: 1em;
  color: #FFF6D6; /* Text Main */
}

.page-sports__category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-sports__category-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-sports__step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-sports__step-number {
  width: 50px;
  height: 50px;
  background-color: #F2C14E; /* Main color */
  color: #0A0A0A;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-sports__live-betting-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.page-sports__live-betting-image {
  max-width: 100%;
  width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-sports__live-betting-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 500px;
  text-align: left;
}

.page-sports__live-betting-list li {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #FFF6D6; /* Text Main */
}

.page-sports__live-betting-list li:last-child {
  margin-bottom: 0;
}

.page-sports__list-title {
  color: #FFD36B; /* Auxiliary color / Glow */
  font-size: 1.2em;
  margin-bottom: 5px;
}

.page-sports__app-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.page-sports__app-image {
  max-width: 100%;
  width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-sports__app-features {
  max-width: 500px;
  text-align: left;
  color: #FFF6D6; /* Text Main */
}

.page-sports__app-features p {
  margin-bottom: 15px;
}

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

.page-sports__faq-list {
  margin-top: 40px;
}

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

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #111111;
  transition: background-color 0.3s ease;
}

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

.page-sports__faq-title {
  font-size: 1.15em;
  color: #F2C14E; /* Main color */
  margin: 0;
}

.page-sports__faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #F2C14E; /* Main color */
  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 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6; /* Text Main */
}

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

.page-sports__section--cta {
  background-color: #111111; /* Card BG */
  text-align: center;
}

.page-sports__cta-content {
  max-width: 800px;
}

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

  .page-sports__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* Ensure small top padding */
  }

  .page-sports__main-title {
    font-size: 2em;
  }

  .page-sports__description {
    font-size: 1em;
  }

  .page-sports__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  .page-sports__btn-primary,
  .page-sports__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-sports__section {
    padding: 40px 15px;
  }

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

  .page-sports__text-block {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-sports__feature-grid,
  .page-sports__sport-categories,
  .page-sports__steps-grid,
  .page-sports__responsible-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-sports__card {
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .page-sports__live-betting-content,
  .page-sports__app-showcase {
    flex-direction: column;
    gap: 30px;
  }

  .page-sports__live-betting-image,
  .page-sports__app-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .page-sports__live-betting-list,
  .page-sports__app-features {
    max-width: 100%;
    text-align: center;
  }

  .page-sports__live-betting-list li {
    padding: 15px;
  }

  .page-sports__faq-question {
    padding: 15px;
  }

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

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

  /* Ensure all images are responsive */
  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }

  .page-sports__section,
  .page-sports__card,
  .page-sports__container,
  .page-sports__cta-buttons,
  .page-sports__button-group,
  .page-sports__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}