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

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

.page-sports__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #F2C14E; /* Main color for titles */
  letter-spacing: 0.05em;
}

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

.page-sports__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding */
  margin-bottom: 60px;
}

.page-sports__hero-image-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}

.page-sports__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-sports__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  padding: 40px 20px;
  background: rgba(17, 17, 17, 0.8); /* Card BG with transparency */
  border-radius: 10px;
  margin-top: -80px; /* Overlap slightly with the image */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-sports__hero-title {
  font-size: clamp(2em, 3.5vw, 3.2em);
  font-weight: 900;
  color: #FFD36B; /* Glow color for main title */
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-sports__hero-description {
  font-size: 1.2em;
  color: #FFF6D6;
  margin-bottom: 30px;
}

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

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

.page-sports__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for bright button */
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(255, 216, 106, 0.4);
}

.page-sports__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 216, 106, 0.6);
}

.page-sports__btn-secondary {
  background: transparent;
  color: #FFD36B; /* Glow color for text */
  border: 2px solid #3A2A12; /* Border */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-sports__btn-secondary:hover {
  background-color: rgba(255, 211, 107, 0.1);
  transform: translateY(-3px);
  border-color: #FFD36B;
}

.page-sports__about-section,
.page-sports__sports-categories-section,
.page-sports__live-betting-section,
.page-sports__promotions-section,
.page-sports__get-started-section,
.page-sports__mobile-app-section,
.page-sports__responsible-gaming-section,
.page-sports__faq-section,
.page-sports__partners-section {
  padding: 60px 0;
  margin-bottom: 40px;
}

.page-sports__about-section .page-sports__container,
.page-sports__sports-categories-section .page-sports__container,
.page-sports__live-betting-section .page-sports__container,
.page-sports__promotions-section .page-sports__container,
.page-sports__get-started-section .page-sports__container,
.page-sports__mobile-app-section .page-sports__container,
.page-sports__responsible-gaming-section .page-sports__container,
.page-sports__faq-section .page-sports__container,
.page-sports__partners-section .page-sports__container {
  padding: 0 20px;
}

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

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

.page-sports__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 211, 107, 0.2);
}

.page-sports__card-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F2C14E;
}

.page-sports__card-text {
  font-size: 1em;
  color: #FFF6D6;
  line-height: 1.7;
}

.page-sports__categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  margin-bottom: 40px;
}

.page-sports__category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 20px 10px;
  text-decoration: none;
  color: #FFF6D6;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-sports__category-item:hover {
  background: rgba(242, 193, 78, 0.1);
  border-color: #F2C14E;
  color: #F2C14E;
  transform: translateY(-3px);
}

.page-sports__category-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 5px rgba(255, 211, 107, 0.5));
}

.page-sports__live-betting-content,
.page-sports__app-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-sports__live-betting-text,
.page-sports__app-text {
  flex: 1;
}

.page-sports__live-betting-image-wrapper,
.page-sports__app-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-sports__live-betting-image,
.page-sports__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-sports__live-betting-text p,
.page-sports__app-text p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #FFF6D6;
}

.page-sports__promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-sports__step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
}

.page-sports__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #FFD36B; /* Glow color */
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(255, 211, 107, 0.6);
}

.page-sports__step-card .page-sports__card-title {
  margin-top: 0;
}

.page-sports__step-card .page-sports__btn-primary,
.page-sports__step-card .page-sports__btn-secondary {
  margin-top: 20px;
}

.page-sports__responsible-gaming-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px auto;
  max-width: 800px;
  color: #FFF6D6;
  font-size: 1.1em;
}

.page-sports__responsible-gaming-list li {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
}

.page-sports__responsible-gaming-list li::before {
  content: '✔';
  color: #F2C14E;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-sports__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-sports__faq-item {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2C14E;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-sports__faq-question:hover {
  background-color: rgba(242, 193, 78, 0.05);
}

.page-sports__faq-toggle {
  font-size: 1.5em;
  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 */
  padding: 15px 25px;
}

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

.page-sports__partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(167px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: center;
}

.page-sports__partner-logo {
  width: 167px;
  height: 127px;
  object-fit: contain;
  filter: brightness(0.8) grayscale(100%);
  transition: filter 0.3s ease;
}

.page-sports__partner-logo:hover {
  filter: brightness(1) grayscale(0%) drop-shadow(0 0 10px #FFD36B);
}

.page-sports__center-buttons {
  text-align: center;
  margin-top: 30px;
}

.page-sports__center-buttons .page-sports__btn-primary,
.page-sports__center-buttons .page-sports__btn-secondary {
  margin: 10px;
}

/* Responsive Design */
@media (min-width: 769px) {
  .page-sports__live-betting-content.reverse-layout {
    flex-direction: row-reverse;
  }
}

@media (max-width: 992px) {
  .page-sports__hero-content {
    margin-top: -60px;
    padding: 30px 15px;
  }
  .page-sports__section-title {
    font-size: 2em;
  }
  .page-sports__section-description {
    font-size: 1em;
  }
  .page-sports__live-betting-content,
  .page-sports__app-content {
    flex-direction: column;
    text-align: center;
  }
  .page-sports__live-betting-image-wrapper,
  .page-sports__app-image-wrapper {
    order: -1; /* Image appears above text on smaller screens */
    margin-bottom: 30px;
  }
  .page-sports__hero-cta-buttons {
    flex-direction: column;
  }
  .page-sports__btn-primary,
  .page-sports__btn-secondary {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-section {
    margin-bottom: 40px;
  }
  .page-sports__hero-content {
    margin-top: -40px;
  }
  .page-sports__hero-title {
    font-size: 2em;
  }
  .page-sports__hero-description {
    font-size: 1em;
  }
  .page-sports__about-section,
  .page-sports__sports-categories-section,
  .page-sports__live-betting-section,
  .page-sports__promotions-section,
  .page-sports__get-started-section,
  .page-sports__mobile-app-section,
  .page-sports__responsible-gaming-section,
  .page-sports__faq-section,
  .page-sports__partners-section {
    padding: 40px 0;
    margin-bottom: 20px;
  }
  .page-sports__container {
    padding: 0 15px !important;
  }
  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !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__cta-button,
  .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__cta-buttons,
  .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;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column;
  }
  .page-sports__faq-question,
  .page-sports__faq-answer {
    padding: 15px 20px;
  }
  .page-sports__faq-item.active .page-sports__faq-answer {
    padding: 10px 20px;
  }
  .page-sports__partner-logo {
    width: 100px;
    height: auto;
  }
}