.page-sports {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* 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;
  text-align: center;
}

.page-sports__hero-section {
  position: relative;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Ensure hero section has height */
}

.page-sports__hero-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

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

.page-sports__hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  background: rgba(8, 22, 15, 0.7); /* Deep Green with transparency */
  margin-top: -100px; /* Pull content up slightly over image */
  width: 100%;
  box-sizing: border-box;
}

.page-sports__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-sports__description {
  font-size: 1.15rem;
  color: #A7D9B8; /* Text Secondary */
  max-width: 800px;
  margin: 0 auto 30px auto;
}

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

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

.page-sports__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  border: 2px solid transparent;
}

.page-sports__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4);
}

.page-sports__btn-secondary {
  background: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2E7A4E; /* Border */
}

.page-sports__btn-secondary:hover {
  background: #2E7A4E; /* Border */
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(46, 122, 78, 0.4);
}

.page-sports__section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-sports__section-description {
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-sports__video-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #0A4B2C; /* Deep Green */
}

.page-sports__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 30px auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.page-sports__video-cta {
  margin-top: 40px;
}

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

.page-sports__card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-sports__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-sports__card-title {
  font-size: 1.5rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-sports__card-text {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-sports__card-link {
  display: inline-block;
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: bold;
  margin-top: auto; /* Push link to bottom */
  position: relative;
  padding-bottom: 5px;
}

.page-sports__card-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #57E38D; /* Glow */
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.page-sports__card-link:hover::after {
  transform: scaleX(1);
}

.page-sports__tips-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
  text-align: left;
}

.page-sports__tip-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #F2FFF6; /* Text Main */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-sports__tip-item strong {
  color: #57E38D; /* Glow */
}

.page-sports__download-app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  text-align: left;
}

.page-sports__download-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-sports__download-text .page-sports__section-title,
.page-sports__download-text .page-sports__section-description {
  text-align: left;
}

.page-sports__app-benefits {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.05rem;
}

.page-sports__app-benefits li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.page-sports__app-benefits li::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: #57E38D; /* Glow */
}

.page-sports__download-image {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  text-align: center;
}

.page-sports__app-screenshot {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid #2E7A4E; /* Border */
}

.page-sports__faq-list {
  margin-top: 40px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  list-style: none;
  user-select: none;
}

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

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

.page-sports__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
  transition: transform 0.3s ease;
}

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

.page-sports__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
}

.page-sports__conclusion-section {
  background-color: #0A4B2C; /* Deep Green */
  padding-bottom: 80px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-sports__hero-content {
    margin-top: -80px;
  }
}

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

  .page-sports__hero-section {
    min-height: 400px;
  }

  .page-sports__hero-content {
    padding: 30px 15px;
    margin-top: -60px;
  }

  .page-sports__main-title {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }

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

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

  .page-sports__btn-primary,
  .page-sports__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    min-width: unset;
    padding: 12px 20px;
    font-size: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-sports__section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .page-sports__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .page-sports__features-grid,
  .page-sports__steps-grid,
  .page-sports__bet-type-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .page-sports__card {
    padding: 25px;
  }

  .page-sports__card-title {
    font-size: 1.3rem;
  }

  .page-sports__card-text {
    font-size: 0.95rem;
  }

  .page-sports__tip-item {
    padding: 15px;
    font-size: 1rem;
  }

  .page-sports__download-app-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .page-sports__download-text,
  .page-sports__download-image {
    max-width: 100%;
    min-width: unset;
  }

  .page-sports__download-text .page-sports__section-title,
  .page-sports__download-text .page-sports__section-description {
    text-align: center;
  }

  .page-sports__app-benefits {
    text-align: left;
    padding: 0 15px;
  }

  .page-sports__app-benefits li {
    padding-left: 25px;
  }

  .page-sports__faq-question {
    font-size: 1.1rem;
    padding: 15px;
  }

  .page-sports__faq-toggle {
    font-size: 1.5rem;
  }

  .page-sports__faq-answer {
    padding: 0 15px 15px 15px;
    font-size: 0.95rem;
  }

  /* Mobile specific image/video/container rules */
  .page-sports img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-sports video,
  .page-sports__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-sports__section,
  .page-sports__card,
  .page-sports__container,
  .page-sports__video-section,
  .page-sports__video-container,
  .page-sports__video-wrapper,
  .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;
    overflow: hidden !important; /* Ensure no overflow */
  }

  .page-sports__video-section {
    padding-top: 10px !important;
  }

  .page-sports__hero-section .page-sports__hero-image-wrapper {
    height: 300px; /* Adjust hero image height for mobile */
  }
  .page-sports__hero-image {
    height: 100%; /* Make image fill wrapper */
  }
}