.page-sports {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Body background is dark (#0a0a0a), so use light text */
  background-color: transparent; /* Inherit from body */
}

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

.page-sports__section {
  padding: 60px 0;
  text-align: center;
}

.page-sports__dark-bg {
  background-color: rgba(38, 169, 224, 0.1); /* Slightly transparent brand color for dark sections */
  color: #ffffff;
}

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

.page-sports__section-title {
  font-size: 2.8em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: inherit;
}

.page-sports__section-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: inherit;
}

.page-sports__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, body handles main offset */
  overflow: hidden;
  text-align: center;
}

.page-sports__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px; /* Space between image and text */
}

.page-sports__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-sports__hero-content {
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-sports__main-title {
  font-size: 3.2em;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.page-sports__lead-text {
  font-size: 1.3em;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-sports__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

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

.page-sports__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-sports__btn-secondary:hover {
  background-color: #e0f2f7;
  color: #1e87b3;
  border-color: #1e87b3;
}

.page-sports__cta-wrapper {
  margin-top: 40px;
}

.page-sports__why-choose .page-sports__section-title,
.page-sports__guide .page-sports__section-title,
.page-sports__faq-section .page-sports__section-title {
  color: #26A9E0;
}

.page-sports__why-choose .page-sports__section-description,
.page-sports__guide .page-sports__section-description,
.page-sports__faq-section .page-sports__section-description {
  color: #555555;
}

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

.page-sports__feature-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  color: #333333;
  min-height: 400px; /* Ensure cards have a minimum height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-sports__feature-card:hover {
  transform: translateY(-10px);
}

.page-sports__feature-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-sports__feature-title {
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-sports__feature-text {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-sports__betting-types .page-sports__section-title {
  color: #ffffff;
}

.page-sports__betting-types .page-sports__section-description {
  color: #e0e0e0;
}

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

.page-sports__type-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-sports__type-title {
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-sports__type-text {
  font-size: 1em;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-sports__type-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-sports__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-sports__guide-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 20px;
  color: #333333;
}

.page-sports__guide-step-title {
  font-size: 1.6em;
  font-weight: 700;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-sports__guide-item p {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
}

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

.page-sports__security .page-sports__section-description {
  color: #e0e0e0;
}

.page-sports__security-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.page-sports__security-image {
  max-width: 100%;
  height: auto;
  min-width: 200px;
  min-height: 200px;
  object-fit: contain;
}

.page-sports__security-features ul {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 700px;
}

.page-sports__security-features li {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #26A9E0;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.05em;
  line-height: 1.6;
  color: #ffffff;
}

.page-sports__security-features li strong {
  color: #26A9E0;
}

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

.page-sports__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: #26A9E0;
  cursor: pointer;
  background-color: #f0f8ff;
  border-bottom: 1px solid #e0e0e0;
  list-style: none; /* For details/summary native styling */
}

.page-sports__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker */
}

.page-sports__faq-item[open] > .page-sports__faq-question {
  border-bottom: 1px solid #d0d0d0;
}

.page-sports__faq-qtext {
  flex-grow: 1;
  color: #26A9E0;
}

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

.page-sports__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  background-color: #ffffff;
}

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

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

.page-sports__conclusion .page-sports__section-description {
  color: #e0e0e0;
}

/* Ensure all images are responsive and content area images are not too small */
.page-sports img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-sports__hero-image,
.page-sports__feature-image,
.page-sports__type-image,
.page-sports__security-image {
  min-width: 200px; /* Enforce minimum size for content images */
  min-height: 200px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-sports__main-title {
    font-size: 2.8em;
  }
  .page-sports__lead-text {
    font-size: 1.2em;
  }
  .page-sports__section-title {
    font-size: 2.2em;
  }
  .page-sports__features-grid,
  .page-sports__type-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-sports {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-sports__container {
    padding: 0 15px;
  }
  .page-sports__section {
    padding: 40px 0;
  }
  .page-sports__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
    padding-bottom: 40px;
  }
  .page-sports__hero-image-wrapper {
    margin-bottom: 20px;
  }
  .page-sports__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-sports__lead-text {
    font-size: 1em;
    margin-bottom: 25px;
  }
  .page-sports__section-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }
  .page-sports__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .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;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 1em;
  }
  .page-sports__cta-wrapper,
  .page-sports__button-group,
  .page-sports__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-sports__cta-buttons {
    display: flex;
    flex-direction: column;
  }
  .page-sports__features-grid,
  .page-sports__type-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-sports__feature-card,
  .page-sports__type-card {
    padding: 20px;
    min-height: auto;
  }
  .page-sports__feature-title,
  .page-sports__type-title {
    font-size: 1.4em;
  }
  .page-sports__guide-item {
    padding: 20px;
  }
  .page-sports__guide-step-title {
    font-size: 1.3em;
  }
  .page-sports__security-features {
    gap: 20px;
  }
  .page-sports__security-features li {
    font-size: 0.95em;
  }
  .page-sports__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-sports__faq-answer {
    padding: 15px 20px;
    font-size: 0.95em;
  }
  /* Mobile image specific rules */
  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !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;
  }
  .page-sports__hero-image,
  .page-sports__feature-image,
  .page-sports__type-image,
  .page-sports__security-image {
    min-width: 200px !important;
    min-height: 200px !important;
  }
  /* No video in this page, but if there was: */
  .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;
  }
}