/* style/sports.css */
.page-sports {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
}

.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%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Adjust based on content */
  padding: 10px 0 60px 0; /* body handles padding-top, this is for visual spacing */
  overflow: hidden;
}

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

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

.page-sports__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
  border-radius: 10px;
}

.page-sports__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #FFB04D; /* Glow */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255,176,77,0.7);
}

.page-sports__hero-description {
  font-size: 1.2rem;
  color: #FFF3E6;
  margin-bottom: 30px;
}

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

.page-sports__btn-primary,
.page-sports__btn-secondary,
.page-sports__btn-link {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-sports__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button color */
  color: #ffffff;
  border: 2px solid transparent;
}

.page-sports__btn-primary:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
  box-shadow: 0 0 15px rgba(255,176,77,0.8);
}

.page-sports__btn-secondary {
  background-color: #17191F; /* Card BG */
  color: #FFA53A; /* Accent color */
  border: 2px solid #FFA53A;
}

.page-sports__btn-secondary:hover {
  background-color: #FFA53A;
  color: #17191F;
  box-shadow: 0 0 15px rgba(255,176,77,0.8);
}

.page-sports__btn-link {
  background-color: transparent;
  color: #FFA53A;
  border: 1px solid #FFA53A;
  padding: 8px 15px;
  font-size: 0.9rem;
}

.page-sports__btn-link:hover {
  background-color: #FFA53A;
  color: #17191F;
}

/* General Section Styling */
.page-sports__section-title {
  font-size: 2.5rem;
  color: #FFB04D; /* Glow */
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  font-weight: 700;
}

.page-sports__sub-title {
  font-size: 1.8rem;
  color: #FFA53A; /* Accent color */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-sports__text-block {
  font-size: 1.1rem;
  color: #FFF3E6;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-sports__dark-section {
  background-color: #17191F; /* Card BG */
  padding: 60px 0;
}

.page-sports__image-content {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  display: block;
}

/* Popular Sports Section */
.page-sports__popular-sports-section {
  padding: 60px 0;
}

.page-sports__sports-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-sports__sports-item {
  background-color: #17191F; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C; /* Border color */
}

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

.page-sports__sports-description {
  color: #FFF3E6;
  font-size: 1rem;
}

/* World Cup Section */
.page-sports__world-cup-section {
  padding: 60px 0;
}

.page-sports__strategy-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px 0;
}

.page-sports__strategy-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #FFA53A;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  color: #FFF3E6;
  font-size: 1.1rem;
}

.page-sports__strategy-item strong {
  color: #FFB04D;
}

.page-sports__world-cup-section a {
  color: #FFA53A;
  text-decoration: none;
}

.page-sports__world-cup-section a:hover {
  text-decoration: underline;
}

/* Promotions Section */
.page-sports__promotions-section {
  padding: 60px 0;
}

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

.page-sports__promo-card {
  background-color: #17191F; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C; /* Border color */
  display: flex;
  flex-direction: column;
  color: #FFF3E6;
}

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

.page-sports__card-title {
  font-size: 1.4rem;
  color: #FFB04D; /* Glow */
  margin: 20px 20px 10px 20px;
}

.page-sports__card-description {
  font-size: 1rem;
  color: #FFF3E6;
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-sports__promo-card .page-sports__btn-link {
  margin: 0 20px 20px 20px;
  text-align: center;
}

/* Features Section */
.page-sports__features-section {
  padding: 60px 0;
}

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

.page-sports__feature-item {
  background-color: #17191F; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C; /* Border color */
  text-align: center;
  color: #FFF3E6;
}

.page-sports__feature-title {
  font-size: 1.3rem;
  color: #FF8C1A; /* Main color */
  margin-bottom: 15px;
}

.page-sports__feature-description {
  font-size: 1rem;
  color: #FFF3E6;
  margin-bottom: 20px;
}

/* Responsible Gambling Section */
.page-sports__responsible-gambling-section {
  padding: 60px 0;
  text-align: center;
}

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

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

.page-sports__faq-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #FFF3E6;
}

.page-sports__faq-item summary {
  list-style: none;
}

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

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #FFB04D; /* Glow */
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid transparent; /* default */
  transition: background-color 0.3s ease, border-bottom 0.3s ease;
}

.page-sports__faq-item[open] .page-sports__faq-question {
  border-bottom: 1px solid #A84F0C; /* Border color */
  background-color: rgba(255, 255, 255, 0.1);
}

.page-sports__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-sports__faq-qtext {
  flex-grow: 1;
}

.page-sports__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: 15px;
  color: #FFA53A;
}

.page-sports__faq-answer {
  padding: 15px 25px 20px 25px;
  font-size: 1rem;
  color: #FFF3E6;
}

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

.page-sports__faq-answer a {
  color: #FFA53A;
  text-decoration: none;
}

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

/* Call to Action Section */
.page-sports__call-to-action-section {
  padding: 80px 0;
  text-align: center;
}

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

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

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

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

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

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

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

  .page-sports__btn-primary,
  .page-sports__btn-secondary,
  .page-sports__btn-link {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-sports__section-title {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .page-sports__sub-title {
    font-size: 1.5rem;
  }

  .page-sports__text-block {
    font-size: 1rem;
  }

  .page-sports__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

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

  .page-sports__promo-card,
  .page-sports__feature-item,
  .page-sports__sports-item {
    padding: 20px;
  }

  .page-sports__card-image {
    height: 180px;
  }

  .page-sports__video-section {
    padding-top: 10px !important;
  }

  .page-sports__hero-video-wrapper,
  .page-sports__hero-video {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important; /* Ensure video takes full height */
    object-fit: cover !important;
  }

  .page-sports__hero-video-wrapper {
    overflow: hidden !important;
  }

  .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__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

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