/* Base styles for the page */
.page-sports {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main */
  background-color: #140C0C; /* Background */
  margin: 0;
  padding: 0;
}

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

.page-sports__dark-section {
  background-color: #2A1212; /* Card BG */
  padding: 60px 0;
}

.page-sports__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #FFF1E8; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-sports__section-description {
  font-size: clamp(16px, 2vw, 18px);
  color: #FFF1E8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.page-sports__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-sports__btn--primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #140C0C;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 176, 74, 0.4);
}

.page-sports__btn--primary:hover {
  background: linear-gradient(180deg, #FFC570 0%, #F08020 100%);
  box-shadow: 0 6px 20px rgba(255, 176, 74, 0.6);
  transform: translateY(-2px);
}

.page-sports__btn--secondary {
  background: transparent;
  color: #FFB04A; /* Gold-like color for contrast */
  border: 2px solid #FFB04A;
}

.page-sports__btn--secondary:hover {
  background: rgba(255, 176, 74, 0.1);
  color: #FFC570;
  transform: translateY(-2px);
}

.page-sports__btn--text-link {
  color: #FFB04A;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 5px 0;
  border-bottom: 1px solid transparent;
}

.page-sports__btn--text-link:hover {
  border-color: #FFB04A;
}

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

.page-sports__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for desktop */
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.page-sports__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-sports__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-top: -150px; /* Pull content up over image slightly for visual flow */
  padding: 0 20px;
  background: linear-gradient(0deg, #140C0C 0%, rgba(20, 12, 12, 0.8) 70%, rgba(20, 12, 12, 0) 100%); /* Fading background for text over image */
  padding-top: 150px;
  padding-bottom: 50px;
  border-radius: 0 0 15px 15px;
}

.page-sports__hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  margin-bottom: 15px;
  color: #FFF1E8; /* Text Main */
  text-shadow: 0 3px 6px rgba(0,0,0,0.4);
}

.page-sports__hero-description {
  font-size: clamp(18px, 2.5vw, 22px);
  margin-bottom: 30px;
  color: #FFF1E8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Features Section */
.page-sports__features-section {
  padding: 80px 0;
}

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

.page-sports__feature-card {
  background-color: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.page-sports__feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.page-sports__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 8px;
}

.page-sports__feature-title {
  font-size: 24px;
  font-weight: 700;
  color: #FFB04A; /* Gold */
  margin-bottom: 15px;
}

.page-sports__feature-text {
  font-size: 16px;
  color: #FFF1E8;
  line-height: 1.7;
}

/* Popular Sports Section */
.page-sports__popular-sports-section {
  padding: 80px 0;
  background-color: #140C0C;
}

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

.page-sports__sport-card {
  background-color: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-sports__sport-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.page-sports__sport-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-sports__sport-title {
  font-size: 22px;
  font-weight: 700;
  color: #FFB04A; /* Gold */
  margin: 20px 20px 10px;
}

.page-sports__sport-text {
  font-size: 15px;
  color: #FFF1E8;
  padding: 0 20px 20px;
  line-height: 1.7;
  flex-grow: 1;
}

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

.page-sports__live-betting-content {
  display: flex;
  align-items: center;
  gap: 50px;
  text-align: left;
}

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

.page-sports__live-betting-text .page-sports__section-title,
.page-sports__live-betting-text .page-sports__section-description {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page-sports__live-betting-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-sports__live-betting-list li {
  font-size: 17px;
  color: #FFF1E8;
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
}

.page-sports__live-betting-list li::before {
  content: '✓';
  color: #FFB04A; /* Gold */
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
}

.page-sports__list-highlight {
  color: #FFB04A;
}

.page-sports__live-betting-image-wrapper {
  flex: 1;
  min-width: 400px;
  text-align: center;
}

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

/* Promotions Section */
.page-sports__promotions-section {
  padding: 80px 0;
  background-color: #140C0C;
}

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

.page-sports__promotion-card {
  background-color: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-sports__promotion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.page-sports__promotion-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-sports__promotion-title {
  font-size: 22px;
  font-weight: 700;
  color: #FFB04A; /* Gold */
  margin: 20px 20px 10px;
}

.page-sports__promotion-text {
  font-size: 15px;
  color: #FFF1E8;
  padding: 0 20px 20px;
  line-height: 1.7;
  flex-grow: 1;
}

.page-sports__promotion-card .page-sports__btn--text-link {
  display: block;
  margin: 0 20px 20px;
  text-align: left;
}

/* Guide Section */
.page-sports__guide-section {
  padding: 80px 0;
}

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

.page-sports__guide-step {
  background-color: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  position: relative;
  padding-top: 60px;
}

.page-sports__step-icon {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #140C0C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(255, 176, 74, 0.5);
}

.page-sports__step-title {
  font-size: 22px;
  font-weight: 700;
  color: #FFB04A; /* Gold */
  margin-bottom: 15px;
}

.page-sports__step-text {
  font-size: 16px;
  color: #FFF1E8;
  line-height: 1.7;
}

.page-sports__guide-cta {
  text-align: center;
  margin-top: 60px;
}

/* Mobile App Section */
.page-sports__mobile-app-section {
  padding: 80px 0;
  background-color: #140C0C;
}

.page-sports__mobile-app-content {
  display: flex;
  align-items: center;
  gap: 50px;
  text-align: left;
}

.page-sports__mobile-app-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-sports__mobile-app-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Max width for the phone image */
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.page-sports__mobile-app-text {
  flex: 1;
}

.page-sports__mobile-app-text .page-sports__section-title,
.page-sports__mobile-app-text .page-sports__section-description {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page-sports__mobile-app-benefits {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-sports__mobile-app-benefits li {
  font-size: 17px;
  color: #FFF1E8;
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
}

.page-sports__mobile-app-benefits li::before {
  content: '✓';
  color: #FFB04A; /* Gold */
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
}

.page-sports__app-download-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* FAQ Section */
.page-sports__faq-section {
  padding: 80px 0;
}

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

details.page-sports__faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #6A1E1E; /* Border */
  overflow: hidden;
  background: #2A1212; /* Card BG */
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
details.page-sports__faq-item summary.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-sports__faq-item summary.page-sports__faq-question::-webkit-details-marker {
  display: none;
}
details.page-sports__faq-item summary.page-sports__faq-question:hover {
  background: rgba(106, 30, 30, 0.3); /* Slightly lighter border color for hover */
}
.page-sports__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFF1E8; /* Text Main */
}
.page-sports__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FFB04A; /* Gold */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}
details.page-sports__faq-item .page-sports__faq-answer {
  padding: 0 25px 20px;
  background: rgba(0,0,0,0.3); /* Slightly different background for answer */
  border-radius: 0 0 12px 12px;
  color: #FFF1E8;
}

/* CTA Section */
.page-sports__cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-sports__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* General image styling */
.page-sports img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-sports__hero-content {
    margin-top: -100px;
    padding-top: 100px;
  }
  .page-sports__live-betting-content,
  .page-sports__mobile-app-content {
    flex-direction: column;
    text-align: center;
  }
  .page-sports__live-betting-text .page-sports__section-title,
  .page-sports__live-betting-text .page-sports__section-description,
  .page-sports__mobile-app-text .page-sports__section-title,
  .page-sports__mobile-app-text .page-sports__section-description {
    text-align: center;
  }
  .page-sports__live-betting-image-wrapper,
  .page-sports__mobile-app-image-wrapper {
    min-width: unset;
    width: 100%;
    order: -1; /* Image above text on smaller screens */
  }
  .page-sports__live-betting-list,
  .page-sports__mobile-app-benefits {
    text-align: left;
    margin: 30px auto;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .page-sports__container {
    padding: 15px;
  }

  .page-sports__dark-section,
  .page-sports__popular-sports-section,
  .page-sports__promotions-section,
  .page-sports__guide-section,
  .page-sports__mobile-app-section,
  .page-sports__faq-section,
  .page-sports__cta-section {
    padding: 40px 0 !important;
  }

  .page-sports__section-title {
    font-size: clamp(24px, 7vw, 36px) !important;
    margin-bottom: 15px !important;
  }
}