.page-sports {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark, so text is light */
  background-color: #121212; /* Inherited from shared, but for clarity */
}

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

.page-sports__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-sports__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__btn-primary,
.page-sports__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-sports__btn-primary {
  background-color: #B80000;
  color: #ffffff;
  border-color: #B80000;
}

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

.page-sports__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
}

.page-sports__btn-secondary:hover {
  background-color: #FFD700;
  color: #B80000;
}

/* Hero Section */
.page-sports__hero-section {
  position: relative;
  width: 100%;
  height: 70vh; /* Adjust height for better visual */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  min-height: 500px; /* Ensure minimum height */
}

.page-sports__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.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: 2;
}

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

.page-sports__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
}

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

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

/* About Section */
.page-sports__about-section {
  padding: 80px 0;
  background-color: #1a1a1a; /* Slightly lighter dark background */
}

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

.page-sports__feature-item {
  background-color: rgba(255, 255, 255, 0.05); /* Semi-transparent white on dark */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-sports__feature-text {
  color: #cccccc;
}

/* Sports Categories Section */
.page-sports__sports-categories {
  padding: 80px 0;
  background-color: #0d0d0d;
}

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

.page-sports__category-card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white on dark */
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

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

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

.page-sports__category-title {
  font-size: 1.3em;
  color: #FFD700;
  padding: 15px;
  margin-bottom: 0;
}

.page-sports__category-text {
  font-size: 0.95em;
  color: #cccccc;
  padding: 0 15px 15px;
}

/* Live Betting Section */
.page-sports__live-betting-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

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

.page-sports__live-betting-text {
  flex: 1;
}

.page-sports__live-betting-text p {
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-sports__live-betting-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-sports__live-betting-text li {
  color: #cccccc;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-sports__live-betting-text li::before {
  content: '⚡'; /* Icon */
  position: absolute;
  left: 0;
  color: #FFD700;
}

.page-sports__live-betting-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-sports__live-betting-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

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

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

.page-sports__promo-card {
  background-color: rgba(184, 0, 0, 0.2); /* Semi-transparent brand color */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #B80000;
}

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

.page-sports__promo-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-sports__promo-text {
  color: #cccccc;
  margin-bottom: 20px;
}

/* Mobile App Section */
.page-sports__mobile-app-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-sports__mobile-app-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
}

.page-sports__mobile-app-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-sports__mobile-app-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.page-sports__mobile-app-text {
  flex: 1;
}

.page-sports__mobile-app-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-sports__mobile-app-text li {
  color: #cccccc;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-sports__mobile-app-text li::before {
  content: '📱'; /* Icon */
  position: absolute;
  left: 0;
  color: #FFD700;
}

/* Video Section */
.page-sports__video-section {
  padding: 80px 0;
  background-color: #0d0d0d;
}

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

.page-sports__video-link-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.page-sports__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* FAQ Section */
.page-sports__faq-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-sports__faq-list {
  margin-top: 40px;
}

.page-sports__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
  cursor: pointer;
  background-color: #B80000; /* Brand color for question background */
  transition: background-color 0.3s ease;
}

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

.page-sports__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  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;
  color: #cccccc;
  background-color: rgba(255, 255, 255, 0.02);
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports__hero-title {
    font-size: 2.8em;
  }

  .page-sports__hero-description {
    font-size: 1.1em;
  }

  .page-sports__live-betting-content,
  .page-sports__mobile-app-content {
    flex-direction: column;
  }

  .page-sports__live-betting-text,
  .page-sports__mobile-app-text {
    order: 2;
  }

  .page-sports__live-betting-image-wrapper,
  .page-sports__mobile-app-image-wrapper {
    order: 1;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-section {
    height: 60vh;
    min-height: 400px;
  }

  .page-sports__hero-title {
    font-size: 2.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%;
    max-width: 100% !important;
    padding: 12px 20px;
  }

  .page-sports__section-title {
    font-size: 2em;
  }

  .page-sports__section-description {
    font-size: 0.95em;
  }

  .page-sports__features-grid,
  .page-sports__categories-grid,
  .page-sports__promotions-grid {
    grid-template-columns: 1fr;
  }

  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .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,
  .page-sports__hero-section,
  .page-sports__about-section,
  .page-sports__sports-categories,
  .page-sports__live-betting-section,
  .page-sports__promotions-section,
  .page-sports__mobile-app-section,
  .page-sports__faq-section,
  .page-sports__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }

  .page-sports__video-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure header offset on mobile for video section */
  }

  .page-sports__cta-button,
  .page-sports__btn-primary,
  .page-sports__btn-secondary,
  .page-sports a[class*="button"],
  .page-sports a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-sports__hero-buttons,
  .page-sports__cta-buttons,
  .page-sports__button-group,
  .page-sports__btn-container {
    flex-direction: column;
    gap: 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }

  .page-sports__hero-buttons > * {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Content area images should not be smaller than 200px */
  .page-sports__about-section img, 
  .page-sports__sports-categories img, 
  .page-sports__live-betting-section img, 
  .page-sports__promotions-section img, 
  .page-sports__mobile-app-section img, 
  .page-sports__video-section img, 
  .page-sports__faq-section img {
    min-width: 200px !important;
    min-height: 200px !important;
  }
}

@media (max-width: 480px) {
  .page-sports__hero-title {
    font-size: 1.8em;
  }

  .page-sports__hero-description {
    font-size: 0.9em;
  }

  .page-sports__section-title {
    font-size: 1.8em;
  }
}