/* style/sports.css */
.page-sports {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Dark body background #1a1a2e, so use light text */
  background-color: transparent; /* Body background from shared.css */
}

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

/* Hero Section */
.page-sports__hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  box-sizing: border-box;
}

.page-sports__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 1;
}

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

.page-sports__hero-title {
  font-size: 3.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-sports__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

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

/* General Sections */
.page-sports__section-title {
  font-size: 2.5em;
  color: #FFFFFF; /* Default for dark sections */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

.page-sports__intro-section, 
.page-sports__live-betting-section,
.page-sports__why-choose-us-section,
.page-sports__cta-section,
.page-sports__video-section {
  padding: 60px 0;
  background-color: #1a1a2e; /* Ensure sections have a background */
  color: #ffffff;
}

.page-sports__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #f0f0f0;
}

.page-sports__dark-section {
  background-color: #1a1a2e;
  color: #ffffff;
}

.page-sports__popular-sports-section, .page-sports__promotions-section, .page-sports__faq-section {
  padding: 60px 0;
  background-color: #FFFFFF;
  color: #333333;
}

.page-sports__popular-sports-section .page-sports__section-title, 
.page-sports__promotions-section .page-sports__section-title, 
.page-sports__faq-section .page-sports__section-title {
  color: #017439; /* Brand color for titles on light background */
}

/* Buttons */
.page-sports__btn-primary,
.page-sports__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  text-align: center;
  box-sizing: border-box;
}

.page-sports__btn-primary {
  background-color: #017439;
  color: #FFFFFF;
  border: 2px solid #017439;
}

.page-sports__btn-primary:hover {
  background-color: #025f2e;
  border-color: #025f2e;
}

.page-sports__btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-sports__btn-secondary:hover {
  background-color: #FFFFFF;
  color: #017439;
}

/* Video Section */
.page-sports__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 10px;
}

.page-sports__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  cursor: pointer;
}

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

.page-sports__sport-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
  color: #333333;
}

.page-sports__sport-card:hover {
  transform: translateY(-5px);
}

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

.page-sports__sport-title {
  font-size: 1.8em;
  color: #017439;
  margin: 20px 0 10px;
  padding: 0 15px;
}

.page-sports__sport-description {
  font-size: 1em;
  color: #555555;
  padding: 0 20px 20px;
  text-align: justify;
}

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

.page-sports__live-betting-content > .page-sports__text-block {
  flex: 1;
  min-width: 300px;
}

.page-sports__live-betting-image {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  max-width: 50%; /* Adjust for flexible layout */
  height: auto;
  display: block;
}

/* Promotions Section */
.page-sports__promotions-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-sports__promotions-content > .page-sports__text-block {
  flex: 1;
  min-width: 300px;
  color: #333333;
}

.page-sports__promotions-image {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 50%;
  height: auto;
  display: block;
}

/* Why Choose Us Section */
.page-sports__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-sports__feature-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter background for cards */
  padding: 30px;
  border-radius: 10px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  color: #f0f0f0;
}

.page-sports__feature-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-sports__feature-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%; /* Make icons round */
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px;
}

.page-sports__feature-title {
  font-size: 1.5em;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.page-sports__feature-description {
  font-size: 1em;
  color: #cccccc;
}

/* FAQ Section */
.page-sports__faq-list {
  margin-top: 40px;
}

.page-sports__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #eaf7ed;
  color: #017439;
  transition: background-color 0.3s ease;
}

.page-sports__faq-question:hover {
  background-color: #dbeed8;
}

.page-sports__faq-toggle {
  font-size: 1.5em;
  font-weight: normal;
  transition: transform 0.3s ease;
}

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

.page-sports__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #ffffff;
  color: #555555;
}

.page-sports__faq-item.active .page-sports__faq-answer {
  max-height: 1000px !important; /* Sufficient height for content */
  padding: 15px 25px;
}

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

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

.page-sports__cta-section .page-sports__text-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports__hero-title {
    font-size: 2.8em;
  }
  .page-sports__hero-description {
    font-size: 1.1em;
  }
  .page-sports__section-title {
    font-size: 2em;
  }
  .page-sports__live-betting-image,
  .page-sports__promotions-image {
    max-width: 100%;
  }
  .page-sports__live-betting-content,
  .page-sports__promotions-content {
    flex-direction: column;
    text-align: center;
  }
  .page-sports__live-betting-content > .page-sports__text-block,
  .page-sports__promotions-content > .page-sports__text-block {
    order: 2;
  }
  .page-sports__live-betting-image,
  .page-sports__promotions-image {
    order: 1;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-section {
    min-height: 450px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-sports__hero-title {
    font-size: 2em;
  }
  .page-sports__hero-description {
    font-size: 1em;
  }
  .page-sports__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-sports__btn-primary, .page-sports__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }
  .page-sports__hero-buttons, .page-sports__cta-section .page-sports__container {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
  }
  .page-sports__section-title {
    font-size: 1.8em;
  }
  .page-sports__text-block {
    font-size: 0.95em;
  }
  .page-sports__sports-grid, .page-sports__features-grid {
    grid-template-columns: 1fr;
  }
  .page-sports__sport-image {
    height: 200px;
  }
  .page-sports__sport-title {
    font-size: 1.5em;
  }
  .page-sports__feature-icon {
    width: 100px;
    height: 100px;
  }
  .page-sports__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-sports__faq-answer {
    padding: 0 20px;
  }
  .page-sports__faq-item.active .page-sports__faq-answer {
    padding: 10px 20px;
  }

  /* Mobile image responsiveness */
  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-sports__sport-card, .page-sports__feature-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Mobile video responsiveness */
  .page-sports video,
  .page-sports__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-sports__video-section,
  .page-sports__video-container,
  .page-sports__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-sports__video-wrapper {
    padding-bottom: 56.25% !important; /* Maintain aspect ratio */
    height: auto !important;
  }
  .page-sports__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }

  /* General container padding for mobile */
  .page-sports__container {
    padding: 0 15px;
  }
  .page-sports__intro-section, 
  .page-sports__live-betting-section,
  .page-sports__why-choose-us-section,
  .page-sports__cta-section,
  .page-sports__video-section,
  .page-sports__popular-sports-section, 
  .page-sports__promotions-section, 
  .page-sports__faq-section {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
  }
}