.page-sports {
  font-family: 'Arial', sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
}

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

.page-sports__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Desktop */
  background-color: #0A0A0A; /* Background */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-sports__hero-content-wrapper {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-sports__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 675px; /* Aspect ratio 16:9 for 1200x675 */
  margin-bottom: 20px;
}

.page-sports__hero-text-container {
  padding: 0 15px 40px;
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
}

.page-sports__hero-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
}

.page-sports__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-sports__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  font-weight: 700;
  color: #F2C14E; /* Primary color */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
  letter-spacing: 0.03em;
}

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

.page-sports__why-niceph-section,
.page-sports__categories-section,
.page-sports__live-betting-section,
.page-sports__promo-section,
.page-sports__get-started-section,
.page-sports__mobile-app-section,
.page-sports__responsible-gaming-section,
.page-sports__faq-section,
.page-sports__partners-section,
.page-sports__cta-section {
  padding: 60px 0;
  background-color: #0A0A0A; /* Background */
}

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

.page-sports__card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF6D6;
}

.page-sports__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.page-sports__feature-image,
.page-sports__promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px;
  min-height: 200px;
}

.page-sports__feature-title,
.page-sports__category-title,
.page-sports__promo-title,
.page-sports__step-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #FFD36B; /* Auxiliary color */
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-sports__feature-text,
.page-sports__category-text,
.page-sports__promo-text,
.page-sports__step-text {
  font-size: 0.95em;
  line-height: 1.5;
  color: #FFF6D6; /* Text Main */
}

.page-sports__category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  text-decoration: none;
}

.page-sports__category-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 15px;
  object-fit: contain;
}

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

.page-sports__live-image,
.page-sports__app-image {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  min-width: 200px;
  min-height: 200px;
}

.page-sports__live-text,
.page-sports__app-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  text-align: left;
}

.page-sports__live-subtitle,
.page-sports__app-subtitle {
  font-size: 1.6em;
  font-weight: 600;
  color: #F2C14E; /* Primary color */
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-sports__live-text p,
.page-sports__app-text p {
  font-size: 1em;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 20px;
}

.page-sports__btn-primary,
.page-sports__btn-secondary,
.page-sports a[class*="button"],
.page-sports a[class*="btn"] {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-sports__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for light button */
  border: 2px solid transparent;
}

.page-sports__btn-primary:hover {
  background: linear-gradient(180deg, #FFE082 0%, #E6B02A 100%);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-sports__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Primary color */
  border: 2px solid #F2C14E; /* Primary color */
}

.page-sports__btn-secondary:hover {
  background-color: #F2C14E;
  color: #111111; /* Dark text for light button */
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-sports__step-card {
  position: relative;
  padding-top: 60px;
}

.page-sports__step-number {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #F2C14E; /* Primary color */
  color: #111111; /* Dark text for light background */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-sports__responsible-gaming-content {
  max-width: 800px;
  margin: 40px auto 0 auto;
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  text-align: left;
}

.page-sports__responsible-gaming-list {
  list-style-type: disc;
  padding-left: 25px;
  margin-bottom: 25px;
  color: #FFF6D6;
}

.page-sports__responsible-gaming-list li {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 1em;
}

.page-sports__responsible-gaming-list li strong {
  color: #FFD36B; /* Auxiliary color */
}

.page-sports__responsible-gaming-callout {
  font-style: italic;
  color: #F2C14E; /* Primary color */
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.1em;
}

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

.page-sports__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #1a1a1a;
  color: #FFF6D6; /* Text Main */
  font-size: 1.1em;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.page-sports__faq-question:hover {
  background-color: #2a2a2a;
}

.page-sports__faq-question h3 {
  margin: 0;
  color: #FFF6D6;
}

.page-sports__faq-toggle {
  font-size: 1.8em;
  font-weight: 700;
  color: #F2C14E; /* Primary color */
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-sports__faq-item.active .page-sports__faq-toggle {
  transform: rotate(45deg);
}

.page-sports__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
}

.page-sports__faq-item.active .page-sports__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 15px 25px 20px;
}

.page-sports__faq-answer p {
  margin: 0;
  line-height: 1.6;
  font-size: 0.95em;
  color: #FFF6D6;
}

.page-sports__partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(167px, 1fr)); /* Min width for logos */
  gap: 30px;
  margin-top: 40px;
  justify-items: center;
  align-items: center;
}

.page-sports__partner-logo-wrapper {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 167px;
  height: 127px;
  box-sizing: border-box;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-sports__partner-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  width: 167px; /* Fixed width */
  height: 127px; /* Fixed height */
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-sports__hero-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-sports__section-title {
    font-size: clamp(1.6em, 4vw, 2.5em);
  }
  .page-sports__live-content,
  .page-sports__app-content {
    flex-direction: column;
    text-align: center;
  }
  .page-sports__live-text,
  .page-sports__app-text {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-section {
    padding-top: var(--header-offset, 100px) !important; /* Mobile: controlled by shared's media */
  }
  .page-sports__hero-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }
  .page-sports__hero-description {
    font-size: 0.95em;
  }
  .page-sports__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
  }
  .page-sports__section-description {
    font-size: 0.9em;
  }
  .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;
  }
  .page-sports__hero-cta-buttons,
  .page-sports__responsible-gaming-content .page-sports__btn-primary,
  .page-sports__responsible-gaming-content .page-sports__btn-secondary,
  .page-sports__cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .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,
  .page-sports__live-content,
  .page-sports__app-content,
  .page-sports__responsible-gaming-content,
  .page-sports__faq-list,
  .page-sports__partners-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-sports__live-text,
  .page-sports__app-text {
    min-width: unset;
  }
  .page-sports__partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  .page-sports__partner-logo-wrapper {
    width: 120px;
    height: 90px;
  }
  .page-sports__partner-logo {
    width: 120px;
    height: 90px;
  }
}