/* style/sports.css */
.page-sports {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  line-height: 1.6;
}

.page-sports__hero-banner {
  padding-top: 120px; /* For fixed header */
  background: linear-gradient(135deg, #1A1A1A, #333333);
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-sports__hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.page-sports__hero-title {
  font-size: 48px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-sports__hero-description {
  font-size: 18px;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-sports__btn-primary {
  display: inline-block;
  background: #FFD700;
  color: #1A1A1A;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-sports__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-sports__btn-secondary {
  display: inline-block;
  background: transparent;
  color: #FFD700;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  border: 2px solid #FFD700;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  margin-left: 20px;
}

.page-sports__btn-secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
  transform: translateY(-3px);
}

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

.page-sports__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #FFD700;
}

.page-sports__section-title--light {
  color: #FFD700;
}

.page-sports__section-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-sports__section-description--light {
  color: #f0f0f0;
}

/* Intro Section */
.page-sports__intro-section {
  background: #f8f9fa;
  color: #333333;
}

.page-sports__intro-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-sports__intro-text {
  flex: 1;
}

.page-sports__intro-text p {
  font-size: 17px;
  margin-bottom: 20px;
  color: #333333;
}

.page-sports__intro-image {
  flex: 1;
  min-width: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-sports__intro-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Sports Categories */
.page-sports__dark-section {
  background: #1A1A1A;
  color: #ffffff;
}

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

.page-sports__category-card {
  background: #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-sports__category-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-sports__card-title {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-sports__card-description {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-sports__btn-link {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #FFD700;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-sports__btn-link:hover {
  background-color: #FFD700;
  color: #1A1A1A;
}

/* Betting Types */
.page-sports__light-bg {
  background: #f8f9fa;
  color: #333333;
}

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

.page-sports__type-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__type-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-sports__type-title {
  font-size: 22px;
  font-weight: bold;
  color: #1A1A1A;
  margin-bottom: 15px;
}

.page-sports__type-item p {
  font-size: 16px;
  color: #555555;
}

/* Live Betting */
.page-sports__live-betting {
  background: #1A1A1A;
  color: #ffffff;
}

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

.page-sports__live-image {
  flex: 1;
  min-width: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-sports__live-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

.page-sports__live-text p {
  font-size: 17px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-sports__live-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-sports__live-text ul li {
  font-size: 16px;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #f0f0f0;
}

.page-sports__live-text ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #FFD700;
  font-weight: bold;
}

.page-sports__text-highlight {
  color: #FFD700;
}

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

.page-sports__promo-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
}

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

.page-sports__promo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-sports__promo-card .page-sports__card-title {
  color: #1A1A1A;
}

.page-sports__promo-card .page-sports__card-description {
  color: #555555;
}

/* Safety & Security */
.page-sports__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-sports__feature-item {
  background: #2a2a2a;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-sports__feature-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-sports__feature-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-sports__feature-item p {
  font-size: 16px;
  color: #cccccc;
}

/* How to Start */
.page-sports__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-sports__step-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
}

.page-sports__step-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-sports__step-number {
  width: 60px;
  height: 60px;
  background: #FFD700;
  color: #1A1A1A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  margin: 0 auto 20px auto;
}

.page-sports__step-title {
  font-size: 22px;
  font-weight: bold;
  color: #1A1A1A;
  margin-bottom: 10px;
}

.page-sports__step-item p {
  font-size: 16px;
  color: #555555;
}

.page-sports__cta-bottom {
  text-align: center;
  margin-top: 40px;
}

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

.page-sports__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #f0f0f0;
}

.page-sports__faq-question:hover {
  background: #3a3a3a;
  border-color: #4a4a4a;
}

.page-sports__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #FFD700;
}

.page-sports__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-sports__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #222222;
  border-top: 1px solid #3a3a3a;
  border-radius: 0 0 8px 8px;
}

.page-sports__faq-item.active .page-sports__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  color: #cccccc;
}

.page-sports__faq-item.active .page-sports__faq-toggle {
  color: #FFD700;
  transform: rotate(0deg);
}

/* CTA Section */
.page-sports__cta-section {
  background: #f8f9fa;
  color: #333333;
  text-align: center;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports__hero-title {
    font-size: 40px;
  }
  .page-sports__hero-description {
    font-size: 16px;
  }
  .page-sports__intro-content, .page-sports__live-content {
    flex-direction: column;
    text-align: center;
  }
  .page-sports__intro-image, .page-sports__live-image {
    min-width: unset;
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
  }
  .page-sports__intro-text, .page-sports__live-text {
    order: 2;
  }
  .page-sports__live-image {
    order: 1;
  }
  .page-sports__section-title {
    font-size: 32px;
  }
  .page-sports__section-description {
    font-size: 16px;
  }
  .page-sports__categories-grid, .page-sports__types-grid, .page-sports__promos-grid, .page-sports__security-features, .page-sports__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-sports__hero-banner {
    padding-top: 100px !important; /* Mobile fixed header padding */
    padding-bottom: 40px;
  }
  .page-sports__hero-title {
    font-size: 32px;
  }
  .page-sports__hero-description {
    font-size: 15px;
  }
  .page-sports__btn-primary, .page-sports__btn-secondary {
    font-size: 16px;
    padding: 12px 25px;
    margin: 10px 0;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .page-sports__btn-secondary {
    margin-left: auto;
    margin-right: auto;
  }
  .page-sports__container {
    padding: 30px 15px;
  }
  .page-sports__section-title {
    font-size: 28px;
    margin-bottom: 25px;
  }
  .page-sports__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .page-sports__intro-image, .page-sports__live-image {
    height: 300px;
  }
  .page-sports__intro-text p, .page-sports__live-text p, .page-sports__live-text ul li, .page-sports__type-item p, .page-sports__feature-item p, .page-sports__step-item p, .page-sports__card-description {
    font-size: 15px;
  }
  .page-sports__card-title, .page-sports__type-title, .page-sports__feature-title, .page-sports__step-title {
    font-size: 20px;
  }
  .page-sports__categories-grid, .page-sports__types-grid, .page-sports__promos-grid, .page-sports__security-features, .page-sports__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-sports__faq-question {
    padding: 15px 20px;
  }
  .page-sports__faq-question h3 {
    font-size: 16px;
  }
  .page-sports__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-sports__faq-answer {
    padding: 0 20px;
  }
  .page-sports__faq-item.active .page-sports__faq-answer {
    padding: 15px 20px !important;
  }

  /* Mobile image responsive styles */
  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-sports__hero-banner,
  .page-sports__intro-section,
  .page-sports__sports-categories,
  .page-sports__betting-types,
  .page-sports__live-betting,
  .page-sports__promotions-section,
  .page-sports__safety-security,
  .page-sports__how-to-start,
  .page-sports__faq-section,
  .page-sports__cta-section,
  .page-sports__container,
  .page-sports__hero-container,
  .page-sports__intro-image,
  .page-sports__live-image,
  .page-sports__category-card,
  .page-sports__type-item,
  .page-sports__promo-card,
  .page-sports__feature-item,
  .page-sports__step-item,
  .page-sports__faq-item,
  .page-sports__faq-question,
  .page-sports__faq-answer {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-sports__hero-banner,
  .page-sports__sports-categories,
  .page-sports__live-betting,
  .page-sports__safety-security,
  .page-sports__faq-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}