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

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

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

.page-sports__dark-section {
  background-color: #11271B; /* Card BG, used as dark section background */
  color: #F2FFF6; /* Text Main */
}

.page-sports__section-title {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
  line-height: 1.2;
}

.page-sports__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #A7D9B8; /* Text Secondary */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-sports__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #08160F; /* Background */
  overflow: hidden;
}

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

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

.page-sports__hero-content {
  padding: 40px 20px 60px;
  max-width: 900px;
  text-align: center;
  background-color: #08160F; /* Background */
  width: 100%;
  box-sizing: border-box;
}

.page-sports__main-title {
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.2;
  /* No fixed large font-size, rely on weight/line-height for h1 */
}

.page-sports__description {
  font-size: 1.15em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

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

.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: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 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, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  border: none;
}

.page-sports__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-sports__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Lighter shade of primary for contrast */
  border: 2px solid #2AD16F; /* Border color */
}

.page-sports__btn-secondary:hover {
  background-color: rgba(42, 209, 111, 0.1);
  transform: translateY(-2px);
}

/* Intro Video Section */
.page-sports__intro-video-section {
  padding: 10px 0 60px 0;
  background-color: #08160F; /* Background */
  text-align: center;
}

.page-sports__video-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 20px;
}

.page-sports__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
  background-color: #11271B;
}

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

.page-sports__video-caption {
  text-align: center;
  padding: 20px 0;
}

.page-sports__video-title {
  font-size: 2em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-sports__video-description {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

/* Feature Grid (Why Choose) */
.page-sports__features-grid,
.page-sports__market-grid,
.page-sports__steps-grid,
.page-sports__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.page-sports__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #F2FFF6; /* Text Main */
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-sports__feature-icon,
.page-sports__market-image,
.page-sports__step-image,
.page-sports__promo-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-sports__feature-title,
.page-sports__market-title,
.page-sports__step-title,
.page-sports__promo-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #F2FFF6; /* Text Main */
}

.page-sports__feature-text,
.page-sports__market-text,
.page-sports__step-text,
.page-sports__promo-text {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

/* Live Betting Section */
.page-sports__live-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-sports__live-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-sports__live-text-content {
  text-align: left;
}

.page-sports__live-subtitle {
  font-size: 1.8em;
  color: #F2FFF6; /* Text Main */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-sports__live-text {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

/* Responsible Gaming */
.page-sports__responsible-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
  object-fit: cover;
}

.page-sports__responsible-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  max-width: 700px;
  text-align: left;
}

.page-sports__responsible-item {
  background-color: #0A4B2C; /* Deep Green */
  border-left: 5px solid #2AD16F;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: #F2FFF6; /* Text Main */
  font-size: 1.1em;
}

/* FAQ Section */
.page-sports__faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  padding: 0 20px;
}

.page-sports__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6; /* Text Main */
}

.page-sports__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  font-weight: bold;
  font-size: 1.1em;
  color: #F2FFF6; /* Text Main */
  transition: background-color 0.3s ease;
}

.page-sports__faq-item summary:hover {
  background-color: #13994A;
}

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

.page-sports__faq-qtext {
  flex-grow: 1;
}

.page-sports__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-sports__faq-item[open] .page-sports__faq-toggle {
  content: "−";
}

.page-sports__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  border-top: 1px solid #2E7A4E;
}

/* Final CTA */
.page-sports__final-cta {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

.page-sports__final-cta .page-sports__section-title {
  color: #F2FFF6;
}

.page-sports__final-cta .page-sports__section-description {
  color: #A7D9B8;
}

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

.page-sports video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .page-sports {
    font-size: 15px;
    line-height: 1.5;
  }

  .page-sports__container {
    padding-left: 15px;
    padding-right: 15px;
  }

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

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

  .page-sports__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-sports__hero-section {
    padding-bottom: 40px;
  }

  .page-sports__hero-content {
    padding: 30px 15px 40px;
  }

  .page-sports__main-title {
    font-size: 2.2em;
    margin-bottom: 10px;
  }

  .page-sports__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .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 !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-sports__intro-video-section {
    padding: 10px 0 40px 0;
  }

  .page-sports__video-container {
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-sports__video-wrapper {
    padding-bottom: 56.25% !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

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

  .page-sports__video-title {
    font-size: 1.6em;
  }

  .page-sports__features-grid,
  .page-sports__market-grid,
  .page-sports__steps-grid,
  .page-sports__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .page-sports__live-content {
    flex-direction: column;
    gap: 30px;
    padding: 0 15px;
  }

  .page-sports__live-subtitle {
    font-size: 1.5em;
    margin-top: 20px;
  }

  .page-sports__responsible-list {
    padding: 0 15px;
  }

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

  .page-sports__faq-item summary {
    padding: 15px 20px;
    font-size: 1em;
  }

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

  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-sports__hero-image-wrapper,
  .page-sports__feature-icon,
  .page-sports__market-image,
  .page-sports__step-image,
  .page-sports__promo-image,
  .page-sports__live-image,
  .page-sports__responsible-image {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-sports__card {
    padding: 20px;
  }

  .page-sports__final-cta {
    padding: 60px 0;
  }
}