/* General Styling */
.page-sports {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light body background */
  background: #F4F7FB; /* Body background from custom colors */
}

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

.page-sports__section {
  padding: 60px 0;
  background: #F4F7FB; /* Default section background */
}

.page-sports__dark-section {
  background: #2F6BFF;
  color: #ffffff;
}

.page-sports__section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #1F2D3D; /* Text Main */
  line-height: 1.2;
}

.page-sports__dark-section .page-sports__section-title {
  color: #ffffff;
}

.page-sports__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
}

.page-sports__dark-section .page-sports__section-description {
  color: #ffffff;
}

/* Buttons */
.page-sports__btn-primary,
.page-sports__btn-secondary,
.page-sports__btn-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  max-width: 100%; /* Button responsive base */
  box-sizing: border-box; /* Button responsive base */
  white-space: normal; /* Button responsive base */
  word-wrap: break-word; /* Button responsive base */
}

.page-sports__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Custom button color */
  color: #ffffff;
  border: 2px solid transparent;
}

.page-sports__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

.page-sports__btn-secondary {
  background: #ffffff;
  color: #2F6BFF;
  border: 2px solid #2F6BFF; /* Border color from custom colors */
}

.page-sports__btn-secondary:hover {
  background: #f0f8ff;
  color: #2F6BFF;
  border-color: #2F6BFF;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.2);
}

.page-sports__btn-text-link {
  background: none;
  color: #2F6BFF;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 500;
  text-decoration: underline;
  border: none;
}

.page-sports__btn-text-link:hover {
  color: #6FA3FF;
}

.page-sports__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  width: 100%; /* Button container responsive base */
  max-width: 100%; /* Button container responsive base */
  box-sizing: border-box; /* Button container responsive base */
  overflow: hidden; /* Button container responsive base */
}

/* Hero Section */
.page-sports__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding for hero section */
  background: #F4F7FB;
}

.page-sports__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
}

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

.page-sports__hero-content {
  max-width: 900px;
  margin: 40px auto 60px;
  text-align: center;
  padding: 0 20px;
}

.page-sports__main-title {
  font-size: clamp(32px, 4.5vw, 48px); /* Responsive H1 font size */
  font-weight: 800;
  color: #1F2D3D; /* Text Main */
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-sports__hero-description {
  font-size: 19px;
  line-height: 1.7;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 30px;
}

/* Sports Categories Section */
.page-sports__sports-categories .page-sports__section-title,
.page-sports__sports-categories .page-sports__section-description {
  color: #1F2D3D;
}

.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: #FFFFFF; /* Card BG */
  border: 1px solid #D6E2FF; /* Border color */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.page-sports__card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1F2D3D; /* Text Main */
  line-height: 1.3;
}

.page-sports__card-title a {
  color: #1F2D3D; /* Text Main */
  text-decoration: none;
}

.page-sports__card-title a:hover {
  color: #2F6BFF;
  text-decoration: underline;
}

.page-sports__card-text {
  font-size: 15px;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Features Section */
.page-sports__features-section {
  background: #2F6BFF; /* Main color */
  color: #ffffff;
}

.page-sports__features-section .page-sports__section-title,
.page-sports__features-section .page-sports__section-description {
  color: #ffffff;
}

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

.page-sports__feature-card {
  background: #FFFFFF; /* Light BG for cards on dark section */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  color: #1F2D3D; /* Text Main for light cards */
}

.page-sports__feature-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Promotions Section */
.page-sports__promotions-section .page-sports__section-title,
.page-sports__promotions-section .page-sports__section-description {
  color: #1F2D3D;
}

.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: #FFFFFF; /* Card BG */
  border: 1px solid #D6E2FF; /* Border color */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 25px;
}

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

/* How To Bet Section */
.page-sports__how-to-bet .page-sports__section-title,
.page-sports__how-to-bet .page-sports__section-description {
  color: #1F2D3D;
}

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

.page-sports__step-card {
  background: #FFFFFF; /* Card BG */
  border: 1px solid #D6E2FF; /* Border color */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-sports__step-number {
  font-size: 48px;
  font-weight: 800;
  color: #2F6BFF;
  margin-bottom: 15px;
  line-height: 1;
}

/* FAQ Section */
.page-sports__faq-section {
  background: #F4F7FB;
}
.page-sports__faq-section .page-sports__section-title,
.page-sports__faq-section .page-sports__section-description {
  color: #1F2D3D;
}

details.page-sports__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
}
details.page-sports__faq-item summary.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #1F2D3D; /* Text Main */
}