/* style/sports.css */

/* Base styles for the page */
.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-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-sports__cta-center {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

/* Buttons */
.page-sports__btn-primary,
.page-sports__btn-secondary,
.page-sports__btn-small {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  border: 2px solid transparent;
  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%);
  color: #F2FFF6; /* Text Main */
  margin-right: 15px;
}

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

.page-sports__btn-secondary {
  background: transparent;
  color: #57E38D; /* Glow */
  border-color: #57E38D; /* Glow */
}

.page-sports__btn-secondary:hover {
  background: #57E38D;
  color: #08160F; /* Background */
  transform: translateY(-2px);
}

.page-sports__btn-small {
  padding: 10px 20px;
  font-size: 0.95em;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border-radius: 6px;
  margin-top: 15px;
}

.page-sports__btn-small:hover {
  opacity: 0.9;
}

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

/* Hero Section */
.page-sports__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

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

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

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

.page-sports__intro-text {
  font-size: 1.2em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Benefits Section */
.page-sports__benefits-section {
  padding: 60px 0;
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-sports__benefit-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

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

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

/* Popular Sports Section */
.page-sports__popular-sports-section {
  padding: 80px 0;
}

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

.page-sports__sport-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-sports__sport-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-sports__sport-card .page-sports__card-title {
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-sports__sport-card .page-sports__card-text {
  padding: 0 20px 20px;
}

/* Betting Guide Section */
.page-sports__betting-guide-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-sports__guide-step {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #2E7A4E; /* Border */
}

.page-sports__step-title {
  font-size: 1.4em;
  color: #57E38D; /* Glow */
  margin-bottom: 10px;
}

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

/* Promotions Section */
.page-sports__promotions-section {
  padding: 80px 0;
}

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

.page-sports__promo-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  text-align: center;
  padding-bottom: 20px;
}

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

.page-sports__promo-card .page-sports__card-title {
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-sports__promo-card .page-sports__card-text {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  padding: 0 20px;
}

/* Mobile Experience Section */
.page-sports__mobile-experience-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

.page-sports__mobile-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

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

.page-sports__mobile-subtitle {
  font-size: 2em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
}

.page-sports__mobile-description {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-sports__mobile-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-sports__mobile-features li {
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.page-sports__feature-icon {
  color: #57E38D; /* Glow */
  font-weight: bold;
  font-size: 1.2em;
  margin-right: 10px;
}

.page-sports__mobile-image-wrapper {
  flex: 0 0 400px;
  max-width: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

.page-sports__mobile-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsible Gambling Section */
.page-sports__responsible-gambling-section {
  padding: 80px 0;
}

.page-sports__responsible-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-sports__responsible-image-wrapper {
  flex: 0 0 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

.page-sports__responsible-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-sports__responsible-text {
  flex: 1;
}

.page-sports__responsible-subtitle {
  font-size: 2em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
}

.page-sports__responsible-description {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-sports__responsible-tips {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-sports__responsible-tips li {
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.page-sports__tip-icon {
  color: #F2C14E; /* Gold */
  font-weight: bold;
  font-size: 1.2em;
  margin-right: 10px;
  line-height: 1.6;
}

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

.page-sports__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: transparent;
  position: relative;
  list-style: none; /* For details/summary */
}

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

.page-sports__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #57E38D; /* Glow */
}

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

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

/* Final CTA Section */
.page-sports__cta-final-section {
  padding: 80px 0;
  text-align: center;
}

/* Global image responsiveness */
.page-sports img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Media queries for responsiveness */

/* Tablet and Mobile */
@media (max-width: 1024px) {
  .page-sports__hero-image-wrapper {
    max-height: 500px;
  }

  .page-sports__mobile-content,
  .page-sports__responsible-content {
    flex-direction: column;
    text-align: center;
  }

  .page-sports__mobile-image-wrapper,
  .page-sports__responsible-image-wrapper {
    max-width: 100%;
    flex: none;
    margin-top: 30px;
  }

  .page-sports__mobile-text,
  .page-sports__responsible-text {
    flex: none;
    width: 100%;
  }

  .page-sports__mobile-features,
  .page-sports__responsible-tips {
    text-align: left;
    padding-left: 20px;
  }

  .page-sports__mobile-subtitle,
  .page-sports__responsible-subtitle {
    font-size: 1.8em;
  }
}

/* Mobile specific styles */
@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-sports__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px !important;
  }

  .page-sports__main-title {
    font-size: clamp(2em, 8vw, 2.5em);
    margin-bottom: 15px;
  }

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

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

  /* 按钮与按钮容器 */
  .page-sports__btn-primary,
  .page-sports__btn-secondary,
  .page-sports__btn-small,
  .page-sports a[class*="button"],
  .page-sports a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-right: 0 !important; /* Remove margin for stacked buttons */
  }
  
  .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;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  /* 其他内容模块 */
  .page-sports__section-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

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

  .page-sports__benefits-section,
  .page-sports__popular-sports-section,
  .page-sports__betting-guide-section,
  .page-sports__promotions-section,
  .page-sports__mobile-experience-section,
  .page-sports__responsible-gambling-section,
  .page-sports__faq-section,
  .page-sports__cta-final-section {
    padding: 40px 0;
  }

  .page-sports__container {
    padding: 0 15px;
  }

  /* 产品展示图区域 & 通用图片与容器 */
  .page-sports__benefits-grid,
  .page-sports__sports-grid,
  .page-sports__guide-steps,
  .page-sports__promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-sports__hero-image-wrapper,
  .page-sports__sport-card,
  .page-sports__promo-card,
  .page-sports__mobile-image-wrapper,
  .page-sports__responsible-image-wrapper,
  .page-sports__benefit-card,
  .page-sports__guide-step,
  .page-sports__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 !important; /* Reset padding for full width cards if needed */
  }

  .page-sports__sport-card .page-sports__card-title,
  .page-sports__sport-card .page-sports__card-text,
  .page-sports__promo-card .page-sports__card-title,
  .page-sports__promo-card .page-sports__card-text {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-sports__mobile-text,
  .page-sports__responsible-text {
    padding: 0 15px;
  }

  .page-sports__mobile-subtitle,
  .page-sports__responsible-subtitle {
    font-size: 1.6em;
  }

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

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