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

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

.page-sports__dark-section {
  background-color: #08160F; /* Custom Background */
  color: #F2FFF6; /* Custom Text Main */
  padding: 60px 0;
}

.page-sports__light-bg {
  background-color: #0A4B2C; /* Custom Deep Green for lighter contrast against main dark bg */
  color: #F2FFF6; /* Custom Text Main */
  padding: 60px 0;
}

.page-sports__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #F2C14E; /* Custom Gold */
}

.page-sports__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #A7D9B8; /* Custom Text Secondary */
}

.page-sports__hero-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.page-sports__hero-image-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
}

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

.page-sports__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 20px;
  background: rgba(8, 22, 15, 0.7); /* Semi-transparent background for readability */
  border-radius: 10px;
  max-width: 900px;
  margin-top: 150px; /* Push content down to avoid overlapping image */
  margin-bottom: 50px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.page-sports__main-title {
  font-size: 48px;
  font-weight: 900;
  color: #F2C14E; /* Custom Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-sports__hero-description {
  font-size: 20px;
  color: #F2FFF6; /* Custom Text Main */
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  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: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure button fits container */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-sports__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom Button Gradient */
  color: #F2FFF6; /* Custom Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-sports__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

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

.page-sports__btn-secondary:hover {
  background: rgba(242, 193, 78, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-sports__about-section {
  padding: 60px 20px;
}

.page-sports__grid-2-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-sports__text-block p {
  margin-bottom: 15px;
  color: #F2FFF6; /* Custom Text Main */
  font-size: 16px;
}

.page-sports__image-block {
  text-align: center;
}

.page-sports__image-full-width {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-sports__sports-categories {
  padding: 60px 20px;
}

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

.page-sports__card {
  background-color: #11271B; /* Custom Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  color: #F2FFF6; /* Custom Text Main */
}

.page-sports__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-sports__card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #F2C14E; /* Custom Gold */
  padding: 0 15px;
}

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

.page-sports__btn-link {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom Button Gradient */
  color: #F2FFF6; /* Custom Text Main */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: auto;
}

.page-sports__btn-link:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.page-sports__live-betting {
  padding: 60px 20px;
}

.page-sports__promotions-section {
  padding: 60px 20px;
}

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

.page-sports__promotions-list li {
  background-color: #11271B; /* Custom Card BG */
  border: 1px solid #2E7A4E; /* Custom Border */
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 16px;
  color: #A7D9B8; /* Custom Text Secondary */
  display: flex;
  align-items: center;
}

.page-sports__promotions-list li::before {
  content: '⭐';
  margin-right: 15px;
  font-size: 24px;
  line-height: 1;
}

.page-sports__list-item-title {
  font-weight: bold;
  color: #F2FFF6; /* Custom Text Main */
  margin-right: 10px;
}

.page-sports__faq-section {
  padding: 60px 20px;
}

details.page-sports__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #2E7A4E; /* Custom Border */
  overflow: hidden;
  background: #11271B; /* Custom Card BG */
  color: #F2FFF6; /* Custom 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: #1E3A2A; /* Custom Divider for hover */
}

.page-sports__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F2FFF6; /* Custom Text Main */
}

.page-sports__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #F2C14E; /* Custom Gold */
  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: #08160F; /* Custom Background */
  border-radius: 0 0 5px 5px;
  color: #A7D9B8; /* Custom Text Secondary */
}

.page-sports__join-us-cta {
  padding: 80px 20px;
  text-align: center;
}

.page-sports__btn-large {
  padding: 18px 40px;
  font-size: 20px;
}

/* --- Desktop Specific Styles (wider than 768px) --- */
@media (min-width: 769px) {
  .page-sports__categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Mobile Responsive Styles (max-width: 768px) --- */
@media (max-width: 768px) {
  .page-sports__container,
  .page-sports__hero-content,
  .page-sports__cta-buttons,
  .page-sports__grid-2-columns,
  .page-sports__text-block,
  .page-sports__image-block,
  .page-sports__categories-grid,
  .page-sports__card,
  .page-sports__promotions-list,
  .page-sports__faq-list,
  .page-sports__join-us-cta {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* HERO 主图区域 */
  .page-sports__hero-section {
    padding-top: 10px;
    min-height: 450px;
  }
  .page-sports__hero-image-wrapper {
    position: static;
    height: 250px;
  }
  .page-sports__hero-image {
    object-fit: contain !important;
    aspect-ratio: unset !important;
    height: 100% !important;
    width: 100% !important;
  }
  .page-sports__hero-content {
    padding: 30px 15px;
    margin-top: 0; /* Reset margin for mobile */
    margin-bottom: 20px;
    max-width: 100%;
    width: 100%;
    background: rgba(8, 22, 15, 0.9); /* Slightly darker overlay for readability */
  }
  .page-sports__main-title {
    font-size: clamp(28px, 8vw, 36px);
    margin-bottom: 15px;
  }
  .page-sports__hero-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .page-sports__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-sports__btn-primary, .page-sports__btn-secondary, .page-sports__btn-large {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* 产品展示图区域 / Các Loại Hình Thể Thao Phổ Biến */
  .page-sports__categories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    overflow-x: hidden;
  }
  .page-sports__card-image {
    height: 180px;
  }
  .page-sports__card-title {
    font-size: 20px;
  }
  .page-sports__card-text {
    font-size: 14px;
  }

  /* 装饰主标题 + 长文 SEO 区 */
  .page-sports__section-title {
    font-size: clamp(28px, 8vw, 32px);
    margin-bottom: 15px;
  }
  .page-sports__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .page-sports__grid-2-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-sports__grid-2-columns--reverse-mobile {
    flex-direction: column-reverse; /* For Live Betting section */
  }
  .page-sports__text-block p {
    font-size: 15px;
  }
  .page-sports__image-block img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* 通用图片与容器 */
  .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__about-section,
  .page-sports__sports-categories,
  .page-sports__live-betting,
  .page-sports__promotions-section,
  .page-sports__faq-section,
  .page-sports__join-us-cta {
    padding: 40px 15px; /* Adjust section padding */
  }

  /* FAQ */
  details.page-sports__faq-item summary.page-sports__faq-question {
    padding: 15px;
  }
  .page-sports__faq-qtext {
    font-size: 16px;
  }
  details.page-sports__faq-item .page-sports__faq-answer {
    padding: 0 15px 15px;
  }

  /* Promotions List */
  .page-sports__promotions-list li {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    font-size: 14px;
  }
  .page-sports__promotions-list li::before {
    margin-bottom: 10px;
    margin-right: 0;
  }
  .page-sports__list-item-title {
    margin-bottom: 5px;
  }
}

@media (max-width: 849px) and (min-width: 769px) {
  .page-sports__hero-image {
    object-fit: contain !important;
    aspect-ratio: unset !important;
  }
  .page-sports__main-title {
    font-size: clamp(36px, 5vw, 48px);
  }
  .page-sports__hero-description {
    font-size: 18px;
  }
}