/* style/sports.css */

/* Base styles for page-sports */
.page-sports {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-bottom: 60px; /* Ensure space above footer */
}

.page-sports h1, .page-sports h2, .page-sports h3, .page-sports h4, .page-sports h5, .page-sports h6 {
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-sports h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.2;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-top: 40px;
  margin-bottom: 25px;
  color: #57E38D; /* Glow */
}

.page-sports h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #F2C14E; /* Gold */
}

.page-sports p {
  margin-bottom: 15px;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-sports__section-title {
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}

.page-sports__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #F2C14E; /* Gold */
  border-radius: 2px;
}

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

.page-sports__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 80px 20px;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

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

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

.page-sports__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: #F2FFF6; /* Text Main */
}

.page-sports__hero-title {
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
}

.page-sports__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-sports__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  width: 100%;
  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;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-sports__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button Gradient */
  color: #F2FFF6; /* Text Main */
  border: none;
}

.page-sports__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

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

.page-sports__btn-secondary:hover {
  background-color: #2E7A4E; /* Border */
  color: #F2FFF6; /* Text Main */
}

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

.page-sports__feature-card,
.page-sports__category-card,
.page-sports__step-card,
.page-sports__promotion-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
}

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

.page-sports__feature-title,
.page-sports__category-title,
.page-sports__step-title,
.page-sports__promotion-title {
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-sports__category-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.page-sports__category-image,
.page-sports__promotion-image,
.page-sports__live-betting-image,
.page-sports__security-image {
  width: 100%;
  height: 200px; /* Min height for content images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-sports__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button Gradient */
  color: #F2FFF6; /* Text Main */
  border-radius: 50%;
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(42, 209, 111, 0.3);
}

.page-sports__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-sports__btn-primary--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

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

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

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

.page-sports__sub-title {
  font-size: 1.8em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  text-align: left;
}

.page-sports__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

.page-sports__list li {
  margin-bottom: 8px;
}

.page-sports__btn-link {
  display: inline-block;
  margin-top: 15px;
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-sports__btn-link:hover {
  color: #F2C14E; /* Gold */
}

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

.page-sports__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-sports__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.1em;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-sports__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-sports__faq-qtext {
  flex-grow: 1;
}

.page-sports__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-sports__faq-item[open] .page-sports__faq-toggle {
  transform: rotate(45deg);
}

.page-sports__faq-answer {
  padding: 20px;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-sports__live-betting-content,
  .page-sports__security-content {
    flex-direction: column;
  }
  .page-sports__live-betting-text, .page-sports__security-text {
    text-align: center;
  }
  .page-sports__sub-title {
    text-align: center;
  }
  .page-sports__list {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    max-width: 80%;
  }
}

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

  .page-sports__hero-section {
    padding: 10px 15px 60px 15px;
  }

  .page-sports h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .page-sports h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

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

  .page-sports__btn-primary,
  .page-sports__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-sports__category-image,
  .page-sports__promotion-image,
  .page-sports__live-betting-image,
  .page-sports__security-image {
    height: 180px;
  }

  /* Mobile image responsiveness */
  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* All image containers in mobile */
  .page-sports__hero-image-wrapper,
  .page-sports__category-card,
  .page-sports__promotion-card,
  .page-sports__live-betting-image-wrapper,
  .page-sports__security-image-wrapper,
  .page-sports__section,
  .page-sports__feature-card,
  .page-sports__step-card,
  .page-sports__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-sports__hero-section,
  .page-sports__section,
  .page-sports__cta-buttons,
  .page-sports__cta-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-sports__hero-content {
    padding-left: 0;
    padding-right: 0;
  }
  
  .page-sports__list {
    max-width: 100%;
    margin-left: 0;
    padding-left: 20px;
  }
}

/* Ensure min-size for content images is respected */
.page-sports__category-image,
.page-sports__promotion-image,
.page-sports__live-betting-image,
.page-sports__security-image {
  min-width: 200px;
  min-height: 200px;
}