/* style/sports.css */

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

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

.page-sports__section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

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

.page-sports__content-area {
  max-width: 900px;
  margin: 0 auto;
  font-size: 17px;
  color: #F2FFF6;
}

.page-sports__content-area p {
  margin-bottom: 15px;
}

.page-sports__content-area strong {
  color: #F2C14E; /* Gold */
}

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

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

.page-sports__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: 2px solid transparent;
  margin-right: 20px;
}

.page-sports__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-sports__btn-secondary {
  background: #11271B; /* Card BG */
  color: #2AD16F; /* A lighter green from button gradient */
  border: 2px solid #2AD16F;
}

.page-sports__btn-secondary:hover {
  background: #2AD16F;
  color: #ffffff;
}

.page-sports__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

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

.page-sports__hero-image-wrapper {
  width: 100%;
  max-height: 675px;
  overflow: hidden;
  position: relative;
  margin-bottom: 40px; /* Space between image and content */
}

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

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

.page-sports__main-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -1px;
}

/* About Section */
.page-sports__about-section {
  padding: 80px 0;
  background-color: #11271B; /* Card BG, but used for section here */
}

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

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

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

.page-sports__feature-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #F2FFF6;
}

.page-sports__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-sports__feature-icon {
  width: 100%;
  height: auto;
  max-width: 120px; /* Smaller icon size for card */
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-sports__card-title {
  font-size: 24px;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

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

/* Types of Betting Section */
.page-sports__types-of-betting {
  padding: 80px 0;
}

.page-sports__betting-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-sports__betting-list li {
  background-color: #11271B; /* Card BG */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 17px;
  color: #F2FFF6;
  border-left: 5px solid #2AD16F; /* A lighter green from button gradient */
}

.page-sports__betting-list li strong {
  color: #F2C14E; /* Gold */
}

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

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

.page-sports__promo-card {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #F2FFF6;
  text-align: center;
}

.page-sports__promo-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-sports__promo-card p {
  color: #A7D9B8;
  margin-bottom: 20px;
}

/* Get Started Section */
.page-sports__get-started-section {
  padding: 80px 0;
}

.page-sports__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-sports__steps-list li {
  background-color: #11271B; /* Card BG */
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 18px;
  color: #F2FFF6;
  border-left: 5px solid #F2C14E; /* Gold */
}

.page-sports__steps-list li strong {
  color: #2AD16F; /* A lighter green from button gradient */
}

/* Responsible Gaming Section */
.page-sports__responsible-gaming-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

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

.page-sports__responsible-list li {
  background-color: #11271B; /* Card BG */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 17px;
  color: #F2FFF6;
  border-left: 5px solid #A7D9B8; /* Text Secondary */
}

.page-sports__responsible-list li strong {
  color: #F2C14E; /* Gold */
}

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

.page-sports__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-sports__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #F2FFF6;
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

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

.page-sports__faq-qtext {
  flex-grow: 1;
  color: #F2C14E; /* Gold */
}

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

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

.page-sports__faq-answer p {
  margin-bottom: 10px;
}

/* Contact CTA Section */
.page-sports__contact-cta-section {
  padding: 80px 0 100px 0;
  text-align: center;
  background-color: #08160F; /* Background */
}

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

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

  .page-sports__hero-section {
    padding-bottom: 40px;
  }

  .page-sports__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-sports__hero-image {
    max-height: 400px;
  }

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

  .page-sports__description {
    font-size: 16px;
    margin-bottom: 20px;
  }

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

  .page-sports__btn-primary,
  .page-sports__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 12px 20px;
    font-size: 16px;
  }

  .page-sports__section-title {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 30px;
  }

  .page-sports__about-section,
  .page-sports__features-section,
  .page-sports__types-of-betting,
  .page-sports__promotions-section,
  .page-sports__get-started-section,
  .page-sports__responsible-gaming-section,
  .page-sports__faq-section,
  .page-sports__contact-cta-section {
    padding: 60px 0;
  }

  .page-sports__features-grid,
  .page-sports__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-sports__feature-icon {
    max-width: 100px;
  }

  .page-sports__card-title {
    font-size: 20px;
  }

  .page-sports__content-area,
  .page-sports__betting-list li,
  .page-sports__steps-list li,
  .page-sports__responsible-list li,
  .page-sports__faq-item summary,
  .page-sports__faq-answer {
    font-size: 16px;
  }

  .page-sports__faq-item summary {
    padding: 15px 20px;
  }

  /* Ensure all images are responsive */
  .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 {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Desktop specific adjustments */
@media (min-width: 769px) {
  .page-sports__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }

  .page-sports__hero-image {
    height: 100%;
    width: 100%;
  }

  .page-sports__hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 600px; /* Ensure hero section has a minimum height */
  }
  
  .page-sports__hero-section {
    min-height: 675px; /* Minimum height for desktop hero */
    padding: 0;
  }
}