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

.page-sports *,
.page-sports *::before,
.page-sports *::after {
  box-sizing: inherit;
}

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

.page-sports__section {
  padding: 60px 0;
  text-align: center;
}

.page-sports__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

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

.page-sports__highlight {
  color: #2AD16F; /* A brighter green from button gradient */
}

/* Buttons */
.page-sports__btn-primary,
.page-sports__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-sports__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-sports__btn-secondary {
  background: transparent;
  color: #2AD16F; /* A brighter green */
  border: 2px solid #2AD16F;
}

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

/* Hero Section */
.page-sports__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #F2FFF6;
  padding: 10px 0 60px 0; /* body handles top padding, this is decorative */
  overflow: hidden;
}

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

.page-sports__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-sports__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px 0 20px;
  text-align: center;
}

.page-sports__main-title {
  font-size: clamp(38px, 6vw, 60px);
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.page-sports__hero-description {
  font-size: clamp(18px, 2.5vw, 24px);
  margin-bottom: 40px;
  color: #A7D9B8;
  text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.page-sports__hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Why Choose Section */
.page-sports__why-choose .page-sports__section-title {
  color: #F2FFF6;
}

.page-sports__why-choose .page-sports__section-description {
  color: #A7D9B8;
}

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

.page-sports__feature-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(17, 168, 78, 0.2);
}

.page-sports__feature-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__feature-title {
  font-size: 24px;
  color: #F2FFF6;
  margin-bottom: 15px;
}

.page-sports__feature-text {
  font-size: 16px;
  color: #A7D9B8;
}

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

.page-sports__sport-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__sport-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(17, 168, 78, 0.2);
}

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

.page-sports__sport-card h3,
.page-sports__sport-card p {
  padding: 0 20px;
}

.page-sports__sport-title {
  font-size: 22px;
  color: #F2FFF6;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-sports__sport-text {
  font-size: 16px;
  color: #A7D9B8;
  margin-bottom: 20px;
}

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

.page-sports__promo-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-sports__promo-title {
  font-size: 22px;
  color: #F2FFF6;
  margin-bottom: 15px;
}

.page-sports__promo-text {
  font-size: 16px;
  color: #A7D9B8;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-sports__promo-card .page-sports__btn-primary {
  margin-top: auto;
  width: 100%;
}

.page-sports__full-promo-cta {
  margin-top: 50px;
}

/* Live Betting Section */
.page-sports__live-betting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-sports__live-betting-feature {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
}

.page-sports__live-betting-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile App Section */
.page-sports__app-download-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
  text-align: left;
}

.page-sports__app-image-wrapper {
  flex: 1 1 40%;
  min-width: 300px;
  max-width: 500px;
}

.page-sports__app-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.page-sports__app-info {
  flex: 1 1 50%;
  min-width: 300px;
  max-width: 600px;
}

.page-sports__app-features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  color: #A7D9B8;
  font-size: 18px;
}

.page-sports__app-features-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}

.page-sports__app-features-list li::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: #2AD16F;
  font-size: 20px;
  line-height: 1;
}

/* FAQ Section */
.page-sports__faq-list {
  margin-top: 50px;
  text-align: left;
}

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

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 20px;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #11271B;
  transition: background-color 0.3s ease;
}

.page-sports__faq-item[open] .page-sports__faq-question {
  background-color: #0A4B2C; /* Deep Green */
}

.page-sports__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-sports__faq-toggle {
  font-size: 24px;
  line-height: 1;
  color: #2AD16F;
  margin-left: 15px;
}

.page-sports__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 16px;
  color: #A7D9B8;
  line-height: 1.8;
}

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

/* Final CTA Section */
.page-sports__cta-final {
  padding-bottom: 80px;
}

.page-sports__cta-final .page-sports__btn-large {
  padding: 16px 32px;
  font-size: 20px;
  margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-sports__hero-content {
    padding-top: 60px;
  }
  .page-sports__section {
    padding: 40px 0;
  }
  .page-sports__section-title {
    font-size: clamp(24px, 3.5vw, 38px);
  }
  .page-sports__section-description {
    font-size: 16px;
  }
  .page-sports__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-sports__btn-primary,
  .page-sports__btn-secondary {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-section {
    padding-bottom: 40px;
  }
  .page-sports__hero-content {
    padding-top: 40px;
  }
  .page-sports__main-title {
    font-size: clamp(32px, 8vw, 48px);
  }
  .page-sports__hero-description {
    font-size: clamp(16px, 4vw, 20px);
  }
  .page-sports__section {
    padding: 30px 0;
  }
  .page-sports__container {
    padding: 0 15px;
  }
  .page-sports__section-title {
    font-size: clamp(22px, 5vw, 32px);
  }
  .page-sports__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .page-sports__btn-primary,
  .page-sports__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-sports__hero-cta-group {
    gap: 10px;
  }
  /* All images */
  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  /* All image containers */
  .page-sports__hero-image-wrapper,
  .page-sports__feature-card,
  .page-sports__sport-card,
  .page-sports__promo-card,
  .page-sports__live-betting-feature,
  .page-sports__app-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
  .page-sports__app-download-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-sports__app-image-wrapper,
  .page-sports__app-info {
    min-width: unset;
    width: 100%;
    max-width: 100%;
  }
  .page-sports__app-info {
    text-align: center;
  }
  .page-sports__app-features-list {
    text-align: left;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-sports__app-features-list li {
    padding-left: 25px;
  }
  .page-sports__app-features-list li::before {
    left: 0;
  }
  .page-sports__faq-question,
  .page-sports__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-sports__faq-item {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .page-sports__section-title {
    font-size: clamp(20px, 6vw, 28px);
  }
  .page-sports__hero-description {
    font-size: 15px;
  }
  .page-sports__feature-title,
  .page-sports__promo-title,
  .page-sports__sport-title {
    font-size: 20px;
  }
  .page-sports__feature-text,
  .page-sports__promo-text,
  .page-sports__sport-text {
    font-size: 15px;
  }
  .page-sports__faq-question {
    font-size: 18px;
  }
  .page-sports__faq-answer {
    font-size: 15px;
  }
}