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

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

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

.page-sports__section-title {
  font-size: clamp(28px, 3.5vw, 48px);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

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

.page-sports__sub-title {
  font-size: 24px;
  color: #F2FFF6; /* Text Main */
  margin-top: 30px;
  margin-bottom: 15px;
}

/* Hero Section */
.page-sports__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 80px 0; /* body handles top padding, small top for visual */
  overflow: hidden;
}

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

.page-sports__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(1.2); /* Darken and enhance colors for text readability */
}

.page-sports__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
  border-radius: 10px;
}

.page-sports__hero-title {
  font-size: clamp(32px, 5vw, 64px); /* Responsive H1 size */
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.page-sports__hero-description {
  font-size: 20px;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Buttons */
.page-sports__btn-primary,
.page-sports__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  box-sizing: border-box;
  max-width: 100%;
}

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

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

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

.page-sports__btn-secondary:hover {
  background: #2AD16F;
  color: #F2FFF6; /* Text Main */
  transform: translateY(-2px);
}

.page-sports__small-btn {
  padding: 10px 20px;
  font-size: 16px;
}

.page-sports__large-btn {
  padding: 18px 35px;
  font-size: 20px;
}

/* Image Styling */
.page-sports__image-wrapper {
  margin: 40px auto;
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

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

/* Grid for Bet Types */
.page-sports__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

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

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

.page-sports__card-title {
  font-size: 22px;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-sports__card-text {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
}

/* Guide List */
.page-sports__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-sports__guide-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
}

.page-sports__guide-step-title {
  font-size: 20px;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: bold;
}

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

/* Sports List */
.page-sports__sports-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  text-align: left;
  margin-top: 40px;
}

.page-sports__sports-item {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-sports__sports-item::before {
  content: '⚡'; /* Emoji icon */
  font-size: 1.2em;
  line-height: 1;
}

/* Promotion Cards */
.page-sports__promotion-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-sports__promotion-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-sports__promotion-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* Tips and Strategies */
.page-sports__tips-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 40px;
}

.page-sports__tips-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
}

.page-sports__tips-title {
  font-size: 20px;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-sports__tips-item p {
  color: #A7D9B8; /* Text Secondary */
}

/* Mobile Experience */
.page-sports__mobile-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.page-sports__mobile-content .page-sports__text-content {
  flex: 1;
}

.page-sports__mobile-content .page-sports__image-wrapper {
  flex: 1;
  margin: 0;
}

/* Security Section */
.page-sports__security-features {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  text-align: left;
  margin-top: 40px;
}

.page-sports__security-item {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-sports__security-item::before {
  content: '🔒'; /* Emoji icon */
  font-size: 1.2em;
  line-height: 1;
}

/* FAQ Section */
.page-sports__faq-list {
  margin-top: 40px;
  text-align: left;
}

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

.page-sports__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  list-style: none; /* Remove default marker */
}

.page-sports__faq-item summary::-webkit-details-marker {
  display: none; /* Remove default marker for Webkit */
}

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

.page-sports__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 10px;
  color: #2AD16F; /* Main color */
}

.page-sports__faq-item[open] .page-sports__faq-toggle {
  content: '−';
}

.page-sports__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
}

/* Final CTA Section */
.page-sports__cta-final {
  background-color: #0A4B2C; /* Deep Green */
  padding: 80px 0;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-sports__mobile-content {
    flex-direction: column;
    text-align: center;
  }
  .page-sports__mobile-content .page-sports__image-wrapper {
    order: -1; /* Image above text on smaller screens */
  }
}

@media (max-width: 768px) {
  .page-sports__section {
    padding: 40px 0;
  }
  .page-sports__container {
    padding: 0 15px;
  }
  .page-sports__section-title {
    font-size: clamp(24px, 5vw, 36px);
  }
  .page-sports__section-description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .page-sports__hero-section {
    padding: 10px 0 40px 0; /* body handles top padding, small top for visual */
  }
  .page-sports__hero-title {
    font-size: clamp(28px, 6vw, 48px);
  }
  .page-sports__hero-description {
    font-size: 17px;
    margin-bottom: 20px;
  }
  .page-sports__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-sports__btn-primary,
  .page-sports__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 15px 10px;
    font-size: 18px;
  }
  .page-sports__small-btn,
  .page-sports__large-btn {
    width: 100% !important;
    max-width: 100% !important;
    padding: 15px 10px;
  }
  .page-sports__image,
  .page-sports__promotion-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-sports__image-wrapper,
  .page-sports__promotion-card,
  .page-sports__mobile-content,
  .page-sports__cta-final .page-sports__container,
  .page-sports__faq-list,
  .page-sports__guide-list,
  .page-sports__sports-list,
  .page-sports__tips-list,
  .page-sports__security-features {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-sports__grid {
    grid-template-columns: 1fr;
  }
  .page-sports__promotion-image {
    height: 150px; /* Adjust height for mobile */
  }
  .page-sports__faq-item summary {
    font-size: 16px;
    padding: 15px;
  }
  .page-sports__faq-answer {
    font-size: 15px;
    padding: 0 15px 15px 15px;
  }
  .page-sports__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
}