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

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

/* 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 as body handles header offset */
  overflow: hidden;
}

.page-sports__hero-image-wrapper {
  width: 100%;
  height: auto;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
  margin-bottom: 40px;
}

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

.page-sports__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}

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

.page-sports__hero-description {
  font-size: 1.2rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-sports__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-sports__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(17, 168, 78, 0.4);
}

.page-sports__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3rem;
}

/* General Section Styling */
.page-sports__introduction-section,
.page-sports__popular-sports-section,
.page-sports__betting-types-section,
.page-sports__live-betting-section,
.page-sports__promotions-section,
.page-sports__why-choose-section,
.page-sports__faq-section,
.page-sports__final-cta-section {
  padding: 80px 0;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-sports__introduction-section:last-of-type,
.page-sports__final-cta-section:last-of-type {
  border-bottom: none;
}

.page-sports__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
}

.page-sports__text-block {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-sports__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-sports__content-wrapper p {
  flex: 1;
  text-align: left;
}

.page-sports__image-content {
  flex: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.page-sports__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin-top: 40px;
  object-fit: cover;
}

/* Popular Sports */
.page-sports__sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-sports__sports-item {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #2E7A4E; /* Border */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-sports__sports-list {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.page-sports__sports-list li {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.page-sports__sports-list li::before {
  content: '•';
  color: #2AD16F; /* Highlight */
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

/* Betting Types */
.page-sports__betting-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-sports__card-title {
  font-size: 1.4rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

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

/* Live Betting */
.page-sports__live-betting-content {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-sports__live-betting-list {
  flex: 1;
  list-style: none;
  padding: 0;
}

.page-sports__live-betting-list li {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}

.page-sports__live-betting-list li::before {
  content: '✔';
  color: #57E38D; /* Glow */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-sports__image-live-betting {
  flex: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

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

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

/* Why Choose Section */
.page-sports__why-choose-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-sports__why-choose-list li {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
  text-align: left;
}

.page-sports__why-choose-list li strong {
  color: #F2FFF6; /* Text Main */
}

.page-sports__why-choose-list li::before {
  content: '⭐';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
}

/* FAQ Section */
.page-sports__faq-list {
  max-width: 900px;
  margin: 0 auto 40px auto;
}

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

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green for summary */
  list-style: none;
}

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

.page-sports__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  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.5;
}

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

.page-sports__image-faq-bg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin-top: 40px;
  object-fit: cover;
}

/* Final CTA */
.page-sports__final-cta-section {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports__hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

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

  .page-sports__content-wrapper,
  .page-sports__live-betting-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-sports__content-wrapper p,
  .page-sports__live-betting-list {
    text-align: center;
  }

  .page-sports__image-content,
  .page-sports__image-live-betting {
    max-width: 100%;
  }
}

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

  .page-sports__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

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

  .page-sports__hero-description {
    font-size: 1rem;
  }

  .page-sports__cta-button,
  .page-sports__cta-button--large {
    font-size: 1rem;
    padding: 12px 25px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .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: clamp(1.5rem, 5vw, 2rem);
  }

  .page-sports__text-block {
    font-size: 1rem;
    margin-left: 0;
    margin-right: 0;
  }

  .page-sports__introduction-section,
  .page-sports__popular-sports-section,
  .page-sports__betting-types-section,
  .page-sports__live-betting-section,
  .page-sports__promotions-section,
  .page-sports__why-choose-section,
  .page-sports__faq-section,
  .page-sports__final-cta-section {
    padding: 50px 0;
  }

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

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

  .page-sports__section,
  .page-sports__card,
  .page-sports__container,
  .page-sports__hero-image-wrapper,
  .page-sports__content-wrapper,
  .page-sports__sports-grid,
  .page-sports__betting-types-grid,
  .page-sports__live-betting-content,
  .page-sports__promotions-grid,
  .page-sports__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-sports__sports-list li,
  .page-sports__live-betting-list li,
  .page-sports__why-choose-list li {
    padding-left: 20px; /* Adjust padding for smaller screens */
  }

  .page-sports__sports-list li::before,
  .page-sports__live-betting-list li::before,
  .page-sports__why-choose-list li::before {
    left: 0;
  }

  .page-sports__faq-item {
    margin-left: 0;
    margin-right: 0;
  }

  .page-sports__faq-question {
    padding: 15px;
  }

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

@media (max-width: 480px) {
  .page-sports__hero-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

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

  .page-sports__cta-button {
    padding: 10px 20px;
  }

  .page-sports__sports-grid,
  .page-sports__betting-types-grid,
  .page-sports__promotions-grid {
    grid-template-columns: 1fr;
  }
}