.page-sports {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF5E1; /* Main Text color */
}

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

.page-sports__dark-section {
  background: #B71C1C; /* Background color */
  color: #FFF5E1;
}

.page-sports__light-bg {
  background: #ffffff;
  color: #333333;
}

.page-sports__section-title {
  font-size: 2.5em;
  color: #FFF5E1;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-sports__light-bg .page-sports__section-title {
  color: #C91F17;
}

.page-sports__text-block {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-sports__light-bg .page-sports__text-block {
  color: #333333;
}

/* Hero Section */
.page-sports__hero-section {
  position: relative;
  padding-top: 10px; /* Adjusted for shared header padding */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.page-sports__hero-image-container {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}

.page-sports__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-sports__hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
}

.page-sports__main-title {
  font-size: 3.2em;
  color: #FFCC66; /* Gold Glow */
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-sports__description {
  font-size: 1.3em;
  color: #FFF5E1;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Buttons */
.page-sports__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.page-sports__cta-buttons--center {
  margin-left: auto;
  margin-right: auto;
}

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

.page-sports__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button color */
  color: #7A0E0E; /* Deep Red for text on gold */
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-sports__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-sports__btn-secondary {
  background: transparent;
  color: #FFD86A; /* Gold color */
  border: 2px solid #F2B544; /* Border color */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-sports__btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.page-sports__btn-link {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
}

.page-sports__btn-link:hover {
  opacity: 0.9;
}

/* Intro Section */
.page-sports__intro-section {
  padding: 60px 20px;
  text-align: center;
}

/* Sport Categories */
.page-sports__sport-categories {
  padding: 60px 20px;
}

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

.page-sports__category-card {
  background: #D32F2F; /* Card BG color */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF5E1;
}

.page-sports__category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

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

.page-sports__category-title {
  font-size: 1.8em;
  color: #FFCC66; /* Glow color */
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-sports__category-description {
  font-size: 0.95em;
  color: #FFF5E1;
  margin-bottom: 20px;
  padding: 0 15px;
}

/* Betting Guide Section */
.page-sports__betting-guide-section {
  padding: 60px 20px;
}

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

.page-sports__guide-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.page-sports__guide-text {
  flex: 1;
  text-align: left;
}

.page-sports__guide-subtitle {
  font-size: 2em;
  color: #C91F17;
  margin-bottom: 20px;
}

.page-sports__guide-text p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #333333;
}

.page-sports__guide-list {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #333333;
}

.page-sports__guide-list li {
  margin-bottom: 10px;
  font-size: 1em;
}

.page-sports__guide-list strong {
  color: #C91F17;
}

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

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

.page-sports__promotion-card {
  background: #D32F2F; /* Card BG color */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF5E1;
}

.page-sports__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-sports__promotion-image {
  width: 100%;
  height: 225px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-sports__promotion-title {
  font-size: 1.6em;
  color: #FFCC66; /* Glow color */
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-sports__promotion-description {
  font-size: 0.95em;
  color: #FFF5E1;
  margin-bottom: 20px;
  padding: 0 15px;
}

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

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

.page-sports__faq-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-sports__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  color: #C91F17; /* Main color */
  background-color: #f8f8f8;
  border-bottom: 1px solid #e0e0e0;
}

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

.page-sports__faq-item[open] summary {
  background-color: #f0f0f0;
}

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

.page-sports__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
  color: #C91F17;
}

.page-sports__faq-item[open] .page-sports__faq-toggle {
  content: '−';
}

.page-sports__faq-answer {
  padding: 20px;
  font-size: 1em;
  color: #333333;
  border-top: 1px solid #eee;
  background-color: #ffffff;
}

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

/* General image styling for content area */
.page-sports img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-sports__hero-image-container {
    max-height: 500px;
  }

  .page-sports__main-title {
    font-size: 2.8em;
  }

  .page-sports__description {
    font-size: 1.2em;
  }

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

  .page-sports__guide-content {
    flex-direction: column;
  }

  .page-sports__guide-image {
    max-width: 100%;
  }
}

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

  .page-sports__container {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    box-sizing: border-box;
  }

  .page-sports__hero-section {
    padding-top: 10px !important; /* Fixed header spacing */
  }

  .page-sports__hero-image-container {
    max-height: none !important;
  }

  .page-sports__hero-image {
    object-fit: contain !important; /* Mobile hero image contain */
    aspect-ratio: unset !important;
    max-height: none !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-sports__hero-content {
    padding: 30px 15px;
  }

  .page-sports__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

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

  /* Buttons */
  .page-sports__cta-buttons {
    flex-direction: column !important;
    gap: 15px;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-sports__btn-primary,
  .page-sports__btn-secondary,
  .page-sports__btn-link {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1em;
  }

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

  .page-sports__text-block {
    font-size: 1em;
    text-align: left;
    margin-bottom: 20px;
  }

  /* Sport Categories Grid */
  .page-sports__category-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-sports__category-title {
    font-size: 1.5em;
  }

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

  /* Betting Guide Section */
  .page-sports__guide-content {
    flex-direction: column;
    gap: 20px;
  }

  .page-sports__guide-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-sports__guide-subtitle {
    font-size: 1.6em;
    text-align: center;
  }

  .page-sports__guide-text p,
  .page-sports__guide-list li {
    font-size: 0.95em;
  }

  /* Promotions Section */
  .page-sports__promotion-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-sports__promotion-title {
    font-size: 1.4em;
  }

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

  /* FAQ Section */
  .page-sports__faq-item summary {
    padding: 15px;
    font-size: 1em;
  }

  .page-sports__faq-answer {
    padding: 15px;
    font-size: 0.95em;
  }

  /* General image responsive */
  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !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;
  }
}