/* style/sports.css */
.page-sports {
  font-family: 'Arial', sans-serif;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
  line-height: 1.6;
}

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

.page-sports__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #1F2D3D; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-sports__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2F6BFF, #6FA3FF);
  border-radius: 2px;
}

.page-sports__section-title--light {
  color: #ffffff;
}

.page-sports__section-title--light::after {
  background: #ffffff;
}

.page-sports__text-block {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.page-sports__text-block--light {
  color: #f0f0f0;
}

.page-sports__highlight {
  color: #2F6BFF;
  font-weight: bold;
}

.page-sports__text-block--light .page-sports__highlight {
  color: #A5C4FF;
}

/* HERO Section */
.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, body handles header offset */
  overflow: hidden;
  background-color: #F4F7FB;
}

.page-sports__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-sports__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-sports__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-sports__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-sports__main-title {
  font-size: clamp(28px, 4vw, 48px); /* Responsive font size */
  font-weight: 900;
  color: #1F2D3D;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.page-sports__hero-description {
  font-size: 18px;
  color: #495057;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.page-sports__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(47, 107, 255, 0.3);
  border: none;
}

.page-sports__cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(47, 107, 255, 0.4);
}

/* Intro Section */
.page-sports__intro-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-sports__btn-primary {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  padding: 15px 35px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(47, 107, 255, 0.2);
  border: none;
}

.page-sports__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(47, 107, 255, 0.3);
}

/* Features Section */
.page-sports__features-section {
  padding: 80px 0;
  background-color: #F4F7FB;
}

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

.page-sports__feature-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF;
}

.page-sports__feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-sports__feature-card img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-sports__card-title {
  font-size: 22px;
  font-weight: bold;
  color: #2F6BFF;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-sports__feature-card p {
  font-size: 16px;
  color: #495057;
  line-height: 1.6;
}

/* Betting Types Section */
.page-sports__betting-types-section {
  padding: 80px 0;
  background-color: #2F6BFF;
  color: #ffffff;
  text-align: center;
}

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

.page-sports__type-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: background-color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-sports__type-card:hover {
  background: rgba(255, 255, 255, 0.25);
}

.page-sports__type-card .page-sports__card-title {
  color: #ffffff;
  margin-bottom: 15px;
}

.page-sports__type-card p {
  font-size: 16px;
  color: #f0f0f0;
  line-height: 1.6;
}

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

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

.page-sports__promo-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF;
}

.page-sports__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-sports__promo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-sports__promo-card .page-sports__card-title {
  padding: 20px 25px 10px;
  text-align: left;
  font-size: 20px;
}

.page-sports__promo-card p {
  padding: 0 25px 25px;
  font-size: 16px;
  color: #495057;
  line-height: 1.6;
  text-align: left;
}

.page-sports__promo-card a {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: bold;
}

.page-sports__promo-card a:hover {
  text-decoration: underline;
}

.page-sports__btn-secondary {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 15px 35px;
  background: #ffffff;
  color: #2F6BFF;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  border: 2px solid #2F6BFF;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(47, 107, 255, 0.1);
}

.page-sports__btn-secondary:hover {
  background: #2F6BFF;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(47, 107, 255, 0.3);
}

/* Tips Section */
.page-sports__tips-section {
  padding: 80px 0;
  background-color: #2F6BFF;
  color: #ffffff;
}

.page-sports__tips-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}

.page-sports__tips-list li {
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 10px;
  font-size: 17px;
  line-height: 1.7;
  border-left: 5px solid #6FA3FF;
  transition: background-color 0.3s ease;
}

.page-sports__tips-list li:hover {
  background: rgba(255, 255, 255, 0.2);
}

.page-sports__tip-highlight {
  font-weight: bold;
  color: #A5C4FF;
}

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

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

details.page-sports__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #D6E2FF;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

details.page-sports__faq-item summary.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  font-size: 18px;
  font-weight: 600;
  color: #1F2D3D;
}

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: #f0f5ff;
}

.page-sports__faq-qtext {
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #1F2D3D;
}

.page-sports__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #2F6BFF;
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-sports__faq-item .page-sports__faq-answer {
  padding: 0 25px 25px;
  background: #fbfdff;
  border-radius: 0 0 10px 10px;
  font-size: 16px;
  color: #495057;
  line-height: 1.7;
}

.page-sports__faq-answer p {
  margin: 0;
}

.page-sports__faq-answer a {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: bold;
}

.page-sports__faq-answer a:hover {
  text-decoration: underline;
}

/* CTA Banner */
.page-sports__cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #2F6BFF 0%, #6FA3FF 100%);
  color: #ffffff;
  text-align: center;
}

.page-sports__cta-banner .page-sports__section-title {
  margin-bottom: 25px;
}

.page-sports__cta-banner .page-sports__text-block {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 18px;
}

.page-sports__cta-button--large {
  padding: 20px 60px;
  font-size: 22px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-sports__section-title {
    font-size: 32px;
  }
  .page-sports__hero-description {
    font-size: 17px;
  }
  .page-sports__cta-button {
    padding: 15px 40px;
    font-size: 18px;
  }
  .page-sports__features-grid, .page-sports__types-grid, .page-sports__promotions-grid {
    gap: 20px;
  }
  .page-sports__feature-card, .page-sports__type-card, .page-sports__promo-card {
    padding: 25px;
  }
  .page-sports__card-title {
    font-size: 20px;
  }
  .page-sports__promo-card img {
    
  }
}

@media (max-width: 768px) {
  .page-sports__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-sports__hero-image img {
    border-radius: 8px;
  }
  .page-sports__main-title {
    font-size: clamp(24px, 7vw, 36px);
  }
  .page-sports__hero-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .page-sports__cta-button {
    padding: 14px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-sports__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-sports__section-title::after {
    width: 60px;
  }
  .page-sports__text-block {
    font-size: 15px;
  }
  .page-sports__intro-section, .page-sports__features-section, .page-sports__betting-types-section, .page-sports__promotions-section, .page-sports__tips-section, .page-sports__faq-section, .page-sports__cta-banner {
    padding: 50px 0;
  }
  .page-sports__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-sports__features-grid, .page-sports__types-grid, .page-sports__promotions-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-sports__feature-card img {
    max-width: 250px;
  }
  .page-sports__promo-card img {
    
  }
  .page-sports__btn-primary, .page-sports__btn-secondary {
    padding: 14px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-sports__tips-list li {
    padding: 15px 20px;
    font-size: 15px;
  }
  details.page-sports__faq-item summary.page-sports__faq-question {
    padding: 15px 20px;
  }
  .page-sports__faq-qtext {
    font-size: 16px;
  }
  .page-sports__faq-toggle {
    font-size: 24px;
  }
  details.page-sports__faq-item .page-sports__faq-answer {
    padding: 0 20px 20px;
  }
  .page-sports__cta-button--large {
    padding: 16px 40px;
    font-size: 18px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .page-sports__main-title {
    font-size: clamp(22px, 8vw, 32px);
  }
  .page-sports__hero-description {
    font-size: 15px;
  }
  .page-sports__cta-button {
    font-size: 15px;
    padding: 12px 25px;
  }
  .page-sports__section-title {
    font-size: 24px;
  }
  .page-sports__card-title {
    font-size: 18px;
  }
  .page-sports__promo-card img {
    
  }
  .page-sports__faq-qtext {
    font-size: 15px;
  }
  .page-sports__faq-toggle {
    font-size: 22px;
  }
  .page-sports__cta-button--large {
    font-size: 16px;
    padding: 14px 30px;
  }
}