.page-sports {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-sports__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  overflow: hidden;
}

.page-sports__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
}

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

.page-sports__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin-top: 20px; /* Separates from image, not overlaying */
  padding: 0 20px;
  box-sizing: border-box;
}

.page-sports__main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-sports__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-sports__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small decorative top padding */
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  text-align: center;
}

.page-sports__video-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-sports__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 30px;
  background-color: #000;
}

.page-sports__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.page-sports__video-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-sports__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: bold;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-sports__section-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-sports__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #08160F; /* Background */
}

.page-sports__feature-grid, .page-sports__bet-type-grid, .page-sports__news-grid, .page-sports__promo-content, .page-sports__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-sports__feature-card:hover, .page-sports__promo-card:hover, .page-sports__news-card:hover, .page-sports__guide-step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 15px #57E38D; /* Glow */
}

.page-sports__feature-icon, .page-sports__guide-icon, .page-sports__news-thumbnail {
  width: 100%;
  height: auto;
  max-width: 250px;
  max-height: 250px;
  object-fit: contain;
  margin: 0 auto 20px;
  display: block;
  border-radius: 8px;
}

.page-sports__news-thumbnail {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-sports__feature-title, .page-sports__promo-title, .page-sports__bet-type-title, .page-sports__guide-title, .page-sports__news-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
  line-height: 1.4;
}

.page-sports__news-title a {
  color: #F2FFF6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-sports__news-title a:hover {
  color: #57E38D; /* Glow */
}

.page-sports__feature-text, .page-sports__promo-text, .page-sports__bet-type-text, .page-sports__guide-text, .page-sports__news-date {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #A7D9B8; /* Text Secondary */
}

.page-sports__news-date {
  font-size: 0.85rem;
  color: #22C768;
  margin-top: 10px;
}

.page-sports__bet-types-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 60px 20px;
  text-align: center;
  color: #F2FFF6; /* Text Main */
}

.page-sports__bet-type-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-sports__promo-section, .page-sports__news-section, .page-sports__final-cta-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #08160F; /* Background */
}

.page-sports__guide-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 60px 20px;
  text-align: center;
  color: #F2FFF6; /* Text Main */
}

.page-sports__faq-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 60px 20px;
  color: #F2FFF6; /* Text Main */
}

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

.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-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #1A342B; /* Slightly lighter for question header */
  list-style: none;
  transition: background-color 0.3s ease;
}

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

.page-sports__faq-question:hover {
  background-color: #2E7A4E; /* Border */
}

.page-sports__faq-toggle {
  font-size: 1.5rem;
  font-weight: normal;
  color: #57E38D; /* Glow */
  margin-left: 15px;
}

.page-sports__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  line-height: 1.7;
  color: #A7D9B8; /* Text Secondary */
}

.page-sports__faq-answer p {
  margin-top: 10px;
}

.page-sports__faq-item[open] .page-sports__faq-question {
  background-color: #2E7A4E; /* Border */
}

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

.page-sports__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Buttons */
.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.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-sports__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-sports__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3), 0 0 10px #57E38D; /* Glow */
}

.page-sports__btn-secondary {
  background-color: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #57E38D; /* Glow */
}

.page-sports__btn-secondary:hover {
  background-color: #57E38D;
  color: #11271B; /* Card BG */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-sports {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-sports__hero-content {
    padding: 0 15px;
  }

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

  .page-sports__hero-description {
    font-size: 1rem;
  }

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

  .page-sports__section-description {
    font-size: 0.95rem;
  }

  .page-sports__feature-grid, .page-sports__bet-type-grid, .page-sports__news-grid, .page-sports__promo-content, .page-sports__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }

  .page-sports__feature-card, .page-sports__promo-card, .page-sports__news-card, .page-sports__guide-step-card {
    padding: 20px;
  }

  .page-sports__video-section, .page-sports__content-area, .page-sports__bet-types-section, .page-sports__promo-section, .page-sports__guide-section, .page-sports__news-section, .page-sports__faq-section, .page-sports__final-cta-section {
    padding: 30px 15px;
  }

  .page-sports__feature-icon, .page-sports__guide-icon {
    max-width: 200px;
    max-height: 200px;
  }

  .page-sports__news-thumbnail {
    height: 180px;
  }

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

  .page-sports__faq-answer {
    padding: 0 20px 15px;
  }

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

  .page-sports__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  /* Force responsive images */
  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Force responsive videos */
  .page-sports video, .page-sports__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Containers for images/videos */
  .page-sports__hero-image-wrapper,
  .page-sports__video-container,
  .page-sports__video-wrapper,
  .page-sports__feature-card,
  .page-sports__promo-card,
  .page-sports__news-card,
  .page-sports__guide-step-card,
  .page-sports__feature-grid,
  .page-sports__bet-type-grid,
  .page-sports__news-grid,
  .page-sports__promo-content,
  .page-sports__guide-steps,
  .page-sports__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}