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

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

.page-sports__section-title {
  font-size: 2.5em;
  color: #007bff; /* Primary color for titles */
  text-align: center;
  margin-bottom: 30px;
  margin-top: 60px;
  font-weight: bold;
}

.page-sports__sub-title {
  font-size: 1.8em;
  color: #007bff;
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.page-sports__text-content {
  font-size: 1em;
  color: #333333;
  margin-bottom: 20px;
}

.page-sports__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.page-sports__button--primary {
  background-color: #007bff; /* Primary color */
  color: #ffffff;
  border: 2px solid #007bff;
}

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

.page-sports__button--secondary {
  background-color: #ffc107; /* Auxiliary color */
  color: #333333;
  border: 2px solid #ffc107;
}

.page-sports__button--secondary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-2px);
}

.page-sports__button--large {
  padding: 15px 35px;
  font-size: 1.1em;
}

.page-sports__button--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

/* Hero Section */
.page-sports__hero-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 0; /* Adjust padding, offset is handled by main */
}

.page-sports__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-sports__hero-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.page-sports__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  z-index: 2;
  max-width: 800px;
  width: 90%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-sports__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
}

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

/* Why Choose Section */
.page-sports__why-choose-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

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

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

.page-sports__feature-icon {
  width: 100%; /* Ensure images are not tiny */
  min-width: 200px;
  min-height: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

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

.page-sports__feature-description {
  font-size: 1em;
  color: #555555;
}

/* Getting Started Section */
.page-sports__getting-started-section {
  padding: 60px 0;
}

.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-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-sports__step-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-sports__step-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

/* Categories Section */
.page-sports__categories-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

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

.page-sports__category-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.page-sports__category-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-sports__category-title {
  font-size: 1.8em;
  color: #007bff;
  padding: 20px 20px 10px;
  font-weight: bold;
}

.page-sports__category-description {
  font-size: 1em;
  color: #555555;
  padding: 0 20px 20px;
}

/* Live Betting Section */
.page-sports__live-betting-section {
  padding: 60px 0;
}

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

.page-sports__live-betting-image {
  flex: 1;
  min-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-height: 200px;
}

.page-sports__live-betting-text {
  flex: 2;
  min-width: 300px;
}

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

.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-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-sports__promo-image {
  width: 100%;
  height: 200px; /* Fixed height for promo images */
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-sports__promo-title {
  font-size: 1.6em;
  color: #007bff;
  padding: 20px 20px 10px;
}

.page-sports__promo-description {
  font-size: 1em;
  color: #555555;
  padding: 0 20px 20px;
}

.page-sports__cta-promotions {
  text-align: center;
  margin-top: 50px;
}

/* Responsible Gaming Section */
.page-sports__responsible-gaming-section {
  padding: 60px 0;
}

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

.page-sports__responsible-gaming-image {
  flex: 1;
  min-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-height: 200px;
}

.page-sports__responsible-gaming-list {
  flex: 2;
  min-width: 300px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-sports__list-item {
  background-color: #f0f8ff; /* Light blue background */
  border-left: 5px solid #007bff;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1.05em;
  color: #333333;
}

.page-sports__responsible-gaming-outro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 40px auto 0 auto;
  color: #555555;
}

/* FAQ Section */
.page-sports__faq-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

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

.page-sports__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-sports__faq-question {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-sports__faq-answer {
  font-size: 1em;
  color: #555555;
}

/* CTA Section */
.page-sports__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #007bff; /* Primary color background */
  color: #ffffff;
}

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

.page-sports__cta-section .page-sports__section-intro {
  color: #f0f0f0;
  margin-bottom: 50px;
}

.page-sports__cta-actions {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.page-sports__cta-actions .page-sports__button--primary {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #333333;
}

.page-sports__cta-actions .page-sports__button--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
}

.page-sports__cta-actions .page-sports__button--secondary {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.page-sports__cta-actions .page-sports__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* Floating Buttons */
.page-sports__floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-sports__floating-button {
  display: block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  white-space: nowrap;
}

.page-sports__floating-button--register {
  background-color: #ffc107; /* Auxiliary color */
  color: #333333;
}

.page-sports__floating-button--register:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-sports__floating-button--login {
  background-color: #007bff; /* Primary color */
  color: #ffffff;
}

.page-sports__floating-button--login:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports__hero-title {
    font-size: 2.8em;
  }
  .page-sports__hero-description {
    font-size: 1.2em;
  }
  .page-sports__section-title {
    font-size: 2em;
  }
  .page-sports__live-betting-image,
  .page-sports__responsible-gaming-image {
    min-width: 300px;
  }
}

@media (max-width: 768px) {
  .page-sports {
    padding-top: var(--header-offset, 120px); /* Ensure consistent padding on mobile */
  }
  .page-sports__hero-content {
    width: 95%;
  }
  .page-sports__hero-title {
    font-size: 2.2em;
  }
  .page-sports__hero-description {
    font-size: 1em;
  }
  .page-sports__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-sports__button--large {
    width: 100%;
  }
  .page-sports__section-title {
    font-size: 1.8em;
  }
  .page-sports__section-intro {
    font-size: 0.95em;
  }
  .page-sports__features-grid,
  .page-sports__steps-grid,
  .page-sports__category-grid,
  .page-sports__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-sports__live-betting-content,
  .page-sports__responsible-gaming-content {
    flex-direction: column;
  }
  .page-sports__live-betting-image,
  .page-sports__responsible-gaming-image {
    min-width: 200px;
    width: 100%;
    height: auto; /* Ensure images scale */
    max-width: 100%; /* Prevent overflow */
  }
  .page-sports__feature-icon,
  .page-sports__category-image,
  .page-sports__promo-image {
    width: 100%;
    height: auto; /* Allow height to adjust */
    max-width: 100%; /* Critical for mobile responsiveness */
    min-width: 200px;
    min-height: 200px;
  }
  .page-sports__floating-buttons {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  .page-sports__floating-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-sports__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-sports__cta-actions .page-sports__button--large {
    width: 100%;
  }
  .page-sports__faq-question {
    font-size: 1.2em;
  }
  .page-sports__list-item {
    font-size: 0.95em;
  }
}

@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.5em;
  }
  .page-sports__floating-buttons {
    bottom: 15px;
    right: 15px;
  }
}