.page-sports {
  font-family: 'Arial', sans-serif;
  color: #F3F8FF; /* Text Main */
  background-color: transparent; /* Body background handled by shared.css */
}

.page-sports__section {
  padding: 60px 0;
  text-align: center;
}

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

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

.page-sports__hero-image-wrapper {
  width: 100%;
  height: auto;
  max-height: 675px; /* Adjust based on typical hero image height for 16:9 aspect ratio with 1200px width */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-sports__hero-content {
  position: relative;
  z-index: 10;
  padding: 40px 20px;
  text-align: center;
  max-width: 900px;
  margin-top: -100px; /* Pull content up slightly over the bottom of the image for visual flow, but not covering image */
  background: #10233F; /* Card BG */
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #244D84;
}

.page-sports__main-title {
  font-size: 2.8em;
  font-weight: bold;
  line-height: 1.2;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.page-sports__description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-sports__section-title {
  font-size: 2.2em;
  font-weight: bold;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.page-sports__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #1D5FD1, #113B7A);
  border-radius: 2px;
}

.page-sports__text-block {
  font-size: 1em;
  line-height: 1.7;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

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

.page-sports__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button Color */
  color: #ffffff;
  border: none;
}

.page-sports__btn-primary:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  transform: translateY(-2px);
}

.page-sports__btn-secondary {
  background: transparent;
  color: #F3F8FF; /* Text Main */
  border: 2px solid #2B73F6;
}

.page-sports__btn-secondary:hover {
  background: #2B73F6;
  color: #ffffff;
  transform: translateY(-2px);
}

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

.page-sports__feature-card,
.page-sports__betting-card,
.page-sports__promo-card,
.page-sports__step-card {
  background: #10233F; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid #244D84; /* Border Color */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

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

.page-sports__feature-title,
.page-sports__betting-title,
.page-sports__promo-title,
.page-sports__step-title {
  font-size: 1.4em;
  font-weight: bold;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 15px;
}

.page-sports__feature-text,
.page-sports__betting-text,
.page-sports__promo-text,
.page-sports__step-text {
  font-size: 0.95em;
  color: #AFC4E8; /* Text Secondary */
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-sports__step-number {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  border: 2px solid #4FA8FF; /* Glow */
}

.page-sports__image-full-width {
  width: 100%;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-sports__image-center {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-sports__security-list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 800px;
  text-align: left;
}

.page-sports__security-item {
  font-size: 1em;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.page-sports__security-item::before {
  content: '✅';
  position: absolute;
  left: 0;
  top: 0;
  color: #4FA8FF; /* Glow */
}

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

.page-sports__faq-item {
  background: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border Color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: #F3F8FF; /* Text Main */
  cursor: pointer;
  background: #10233F; /* Card BG */
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-sports__faq-question:hover {
  background-color: #08162B; /* Deep Navy */
}

.page-sports__faq-item[open] .page-sports__faq-question {
  background-color: #08162B; /* Deep Navy */
}

.page-sports__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #4FA8FF; /* Glow */
}

.page-sports__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: #AFC4E8; /* Text Secondary */
  line-height: 1.7;
  text-align: left;
}

.page-sports__faq-answer p {
  margin: 0;
}

.page-sports__cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #113B7A 0%, #08162B 100%);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-sports__main-title {
    font-size: 2.4em;
  }
  .page-sports__section-title {
    font-size: 1.8em;
  }
  .page-sports__hero-content {
    margin-top: -80px;
    padding: 30px 15px;
  }
  .page-sports__image-center {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-sports__hero-content {
    margin-top: -60px;
    padding: 25px 15px;
  }
  .page-sports__main-title {
    font-size: 2em;
  }
  .page-sports__description {
    font-size: 1em;
  }
  .page-sports__section-title {
    font-size: 1.6em;
  }
  .page-sports__features-grid,
  .page-sports__betting-types-grid,
  .page-sports__promotions-grid,
  .page-sports__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-sports__section {
    padding: 40px 0;
  }
  .page-sports__container {
    padding: 0 15px;
  }
  
  /* Images responsive */
  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-sports__hero-image-wrapper,
  .page-sports__feature-card,
  .page-sports__betting-card,
  .page-sports__promo-card,
  .page-sports__step-card,
  .page-sports__security-list,
  .page-sports__faq-list,
  .page-sports__cta-section,
  .page-sports__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }
  .page-sports__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-sports__btn-primary,
  .page-sports__btn-secondary {
    width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .page-sports__hero-image {
    min-width: 200px !important; /* Ensure minimum size */
    min-height: 200px !important;
  }
  .page-sports__feature-icon {
    min-width: 200px !important; /* Ensure minimum size */
    min-height: 200px !important;
    width: 100% !important;
    max-width: 250px !important; /* Limit max size for smaller screens */
  }
  .page-sports__image-full-width,
  .page-sports__image-center {
    min-width: 200px !important; /* Ensure minimum size */
    min-height: 200px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 480px) {
  .page-sports__main-title {
    font-size: 1.8em;
  }
  .page-sports__section-title {
    font-size: 1.4em;
  }
  .page-sports__hero-content {
    margin-top: -40px;
    padding: 20px 10px;
  }
  .page-sports__btn-primary,
  .page-sports__btn-secondary {
    font-size: 1em;
    padding: 12px 20px;
  }
  .page-sports__feature-title,
  .page-sports__betting-title,
  .page-sports__promo-title,
  .page-sports__step-title {
    font-size: 1.2em;
  }
  .page-sports__faq-question {
    font-size: 1em;
    padding: 15px;
  }
  .page-sports__faq-answer {
    padding: 0 15px 15px 15px;
  }
}