.page-sports {
  color: #ffffff;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-sports__section-spacing {
  padding: 80px 20px;
}

.page-sports__bg-dark {
  background-color: #1A202C;
}

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

.page-sports__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

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

.page-sports__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.page-sports__button--primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

.page-sports__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-sports__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-sports__button--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

.page-sports__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-sports__button--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-sports__center-cta {
  text-align: center;
  margin-top: 50px;
}

.page-sports__cta-spacing {
  margin-top: 80px;
}

.page-sports__image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 40px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-sports__image--responsive {
  max-width: 100%;
  height: auto;
}

.page-sports__image--margin-top {
  margin-top: 60px;
}

/* Hero Section */
.page-sports__hero-section {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Minimum height for hero */
}

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

.page-sports__hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-sports__hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-sports__hero-title {
  font-size: 3.8em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.page-sports__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

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

/* Overview Section */
.page-sports__overview-section .page-sports__section-description {
  margin-bottom: 20px;
}

/* Features Section */
.page-sports__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-sports__feature-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-sports__feature-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.15);
}

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

.page-sports__feature-text {
  font-size: 1em;
  color: #e0e0e0;
}

/* Markets Section */
.page-sports__markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-sports__market-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 10px;
  border-left: 5px solid #FFD700;
  transition: background-color 0.3s ease;
}

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

.page-sports__market-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-sports__market-text {
  font-size: 0.95em;
  color: #e0e0e0;
}

/* Live Betting Section */
.page-sports__live-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-sports__live-feature-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-sports__live-feature-title {
  font-size: 1.7em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-sports__live-feature-text {
  font-size: 1em;
  color: #e0e0e0;
}

/* Promotions Section */
.page-sports__promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-sports__promo-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(26, 32, 44, 0.8));
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

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

.page-sports__promo-text {
  font-size: 1em;
  color: #e0e0e0;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Mobile Section */
.page-sports__mobile-flex {
  display: flex;
  align-items: center;
  gap: 50px;
}

.page-sports__mobile-content {
  flex: 1;
}

.page-sports__mobile-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-sports__mobile-actions {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
}

/* Security Section */
.page-sports__security-flex {
  display: flex;
  align-items: center;
  gap: 50px;
}

.page-sports__security-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-sports__security-content {
  flex: 1;
}

/* Get Started Section */
.page-sports__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-sports__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
  min-height: 280px; /* Ensure cards have similar height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-sports__step-card:hover {
  transform: translateY(-8px);
}

.page-sports__step-number {
  font-size: 3em;
  color: rgba(255, 215, 0, 0.4);
  font-weight: bold;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.page-sports__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
  position: relative;
  z-index: 1;
  margin-top: 40px; /* Push title down to avoid number overlap */
}

.page-sports__step-text {
  font-size: 1em;
  color: #e0e0e0;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports__hero-title {
    font-size: 3em;
  }
  .page-sports__hero-description {
    font-size: 1.2em;
  }
  .page-sports__section-title {
    font-size: 2.2em;
  }
  .page-sports__mobile-flex, .page-sports__security-flex {
    flex-direction: column;
    text-align: center;
  }
  .page-sports__mobile-actions {
    justify-content: center;
  }
  .page-sports__mobile-image-wrapper, .page-sports__security-image-wrapper {
    order: -1; /* Image first on mobile */
    margin-bottom: 30px;
  }
  .page-sports__image--margin-top {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-title {
    font-size: 2.5em;
  }
  .page-sports__hero-description {
    font-size: 1em;
  }
  .page-sports__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-sports__button {
    width: 100%;
  }
  .page-sports__section-spacing {
    padding: 60px 15px;
  }
  .page-sports__section-title {
    font-size: 1.8em;
  }
  .page-sports__section-description {
    font-size: 0.95em;
  }
  .page-sports__features-grid, .page-sports__markets-grid, .page-sports__live-features, .page-sports__promos-grid, .page-sports__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-sports__hero-content {
    padding: 20px;
  }
  /* Mobile responsive for all images within .page-sports */
  .page-sports img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure content images are not too small */
    min-height: 200px; /* Ensure content images are not too small */
  }
  .page-sports__image {
    margin: 20px auto;
  }
  .page-sports__step-title {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .page-sports__hero-title {
    font-size: 2em;
  }
  .page-sports__hero-description {
    font-size: 0.9em;
  }
  .page-sports__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-sports__section-title {
    font-size: 1.5em;
  }
  .page-sports__section-description {
    font-size: 0.9em;
  }
}

/* Ensure all content images are at least 200px wide in CSS */
.page-sports__image,
.page-sports__overview-section img,
.page-sports__features-section img,
.page-sports__markets-section img,
.page-sports__live-betting-section img,
.page-sports__promos-section img,
.page-sports__mobile-section img,
.page-sports__security-section img,
.page-sports__get-started-section img {
  min-width: 200px;
  min-height: 200px;
}