.page-sports {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #FFF5E1; /* Text Main */
  background-color: #B71C1C; /* Background */
}

.page-sports__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding for first section */
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(180deg, #C91F17 0%, #E53935 100%);
}

.page-sports__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-sports__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.page-sports__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  color: #FFF5E1;
}

.page-sports__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #F4D34D; /* Gold */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-sports__description {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: #FFF5E1;
}

.page-sports__cta-buttons {
  display: flex;
  gap: 15px;
  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: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  box-sizing: border-box;
  border: 2px solid transparent;
}

.page-sports__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button */
  color: #7A0E0E; /* Deep Red for contrast */
  border-color: #F2B544; /* Border */
}

.page-sports__btn-primary:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-sports__btn-secondary {
  background-color: transparent;
  color: #F4D34D; /* Gold */
  border-color: #F2B544; /* Border */
}

.page-sports__btn-secondary:hover {
  background-color: #F2B544;
  color: #7A0E0E; /* Deep Red */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

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

.page-sports__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #F4D34D; /* Gold */
}

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

.page-sports__advantages-section,
.page-sports__live-betting-section,
.page-sports__promotions-section,
.page-sports__getting-started-section,
.page-sports__responsible-gaming-section,
.page-sports__faq-section {
  padding: 80px 0;
}

.page-sports__advantages-section {
  background-color: #B71C1C; /* Background */
  color: #FFF5E1;
}

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

.page-sports__feature-card {
  background-color: #D32F2F; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid #F2B544; /* Border */
  color: #FFF5E1;
}

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

.page-sports__feature-icon {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
  min-width: 200px;
  min-height: 200px;
}

.page-sports__feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #F4D34D; /* Gold */
}

.page-sports__feature-text {
  font-size: 1rem;
  color: #FFF5E1;
}

.page-sports__sports-categories {
  background-color: #7A0E0E; /* Deep Red */
  color: #FFF5E1;
}

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

.page-sports__category-card {
  background-color: #D32F2F; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid #F2B544; /* Border */
  color: #FFF5E1;
}

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

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

.page-sports__category-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 20px 20px 10px 20px;
  color: #F4D34D; /* Gold */
}

.page-sports__category-text {
  font-size: 1rem;
  padding: 0 20px 20px 20px;
  color: #FFF5E1;
}

.page-sports__category-card .page-sports__btn-secondary {
  margin: 0 20px 20px 20px;
  width: calc(100% - 40px);
}

.page-sports__live-betting-section {
  background-color: #B71C1C; /* Background */
  color: #FFF5E1;
}

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

.page-sports__live-betting-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  color: #FFF5E1;
}

.page-sports__live-betting-text p {
  margin-bottom: 15px;
}

.page-sports__live-betting-list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #FFF5E1;
}

.page-sports__live-betting-list li {
  margin-bottom: 8px;
}

.page-sports__live-betting-video-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 2px solid #F2B544; /* Border */
  width: 100%; /* Desktop requirement */
}

.page-sports__live-betting-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  min-width: 200px;
  min-height: 200px;
}

.page-sports__promotions-section {
  background-color: #B71C1C; /* Background */
  color: #FFF5E1;
}

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

.page-sports__promotion-card {
  background-color: #D32F2F; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  text-align: center;
  border: 1px solid #F2B544; /* Border */
  color: #FFF5E1;
}

.page-sports__promotion-card:hover {
  transform: translateY(-5px);
}

.page-sports__promotion-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-sports__promotion-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 20px 10px 20px;
  color: #F4D34D; /* Gold */
}

.page-sports__promotion-text {
  font-size: 1rem;
  padding: 0 20px 20px 20px;
  color: #FFF5E1;
}

.page-sports__promotion-card .page-sports__btn-secondary {
  margin-bottom: 20px;
}

.page-sports__getting-started-section {
  background-color: #7A0E0E; /* Deep Red */
  color: #FFF5E1;
}

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

.page-sports__step-card {
  background-color: #D32F2F; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #F2B544; /* Border */
  color: #FFF5E1;
}

.page-sports__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #F4D34D; /* Gold */
  color: #7A0E0E; /* Deep Red */
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  border: 2px solid #FFCC66; /* Glow */
}

.page-sports__step-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #F4D34D; /* Gold */
}

.page-sports__step-text {
  font-size: 1rem;
  color: #FFF5E1;
}

.page-sports__responsible-gaming-section {
  background-color: #B71C1C; /* Background */
  color: #FFF5E1;
  text-align: center;
}

.page-sports__responsible-gaming-section p {
  max-width: 900px;
  margin: 0 auto 20px auto;
  font-size: 1.1rem;
  color: #FFF5E1;
}

.page-sports__faq-section {
  background-color: #7A0E0E; /* Deep Red */
  color: #FFF5E1;
}

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

.page-sports__faq-item {
  background-color: #D32F2F; /* Card BG */
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  border: 1px solid #F2B544; /* Border */
  color: #FFF5E1;
}

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  color: #F4D34D; /* Gold */
  user-select: none;
}

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

.page-sports__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #F4D34D; /* Gold */
}

.page-sports__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: #FFF5E1;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-sports__faq-item[open] .page-sports__faq-answer {
  max-height: 1000px; /* Sufficiently large for content */
  padding-top: 10px;
}

.page-sports__faq-item[open] .page-sports__faq-toggle {
  content: '−';
}

/* Details element native marker hiding */
details > summary::-webkit-details-marker {
  display: none;
}
details > summary {
  list-style: none;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-sports__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body already handles --header-offset */
    min-height: 500px;
  }

  .page-sports__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-sports__description {
    font-size: 1rem;
  }

  .page-sports__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  .page-sports__btn-primary,
  .page-sports__btn-secondary {
    width: 100%;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-sports__advantages-section,
  .page-sports__sports-categories,
  .page-sports__live-betting-section,
  .page-sports__promotions-section,
  .page-sports__getting-started-section,
  .page-sports__responsible-gaming-section,
  .page-sports__faq-section {
    padding: 40px 0;
  }

  .page-sports__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-sports__section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }

  .page-sports__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .page-sports__features-grid,
  .page-sports__category-grid,
  .page-sports__promotions-grid,
  .page-sports__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-sports__feature-card,
  .page-sports__category-card,
  .page-sports__promotion-card,
  .page-sports__step-card {
    padding: 20px;
  }

  .page-sports__feature-title,
  .page-sports__category-title,
  .page-sports__promotion-title,
  .page-sports__step-title {
    font-size: 1.3rem;
  }

  .page-sports__feature-text,
  .page-sports__category-text,
  .page-sports__promotion-text,
  .page-sports__step-text {
    font-size: 0.9rem;
  }

  .page-sports__live-betting-content {
    flex-direction: column;
    gap: 20px;
  }

  .page-sports__live-betting-text,
  .page-sports__live-betting-video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }

  .page-sports__live-betting-video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-sports__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-sports__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 0.9rem;
  }

  /* Image responsiveness for all img elements */
  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important; /* Enforce minimum size */
    min-height: 200px !important;
  }

  /* Video responsiveness for all video elements */
  .page-sports video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-sports__live-betting-video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-sports__card,
  .page-sports__section,
  .page-sports__box {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-sports__hero-image-container, .page-sports__hero-image {
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-sports__feature-icon, .page-sports__category-image, .page-sports__promotion-image {
    min-width: 200px !important;
    min-height: 200px !important;
  }
}