.page-the-thao {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F3F8FF; /* Text Main */
  background-color: #08162B; /* Deep Navy from body */
}

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

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

.page-the-thao__section-title {
  font-size: clamp(28px, 4vw, 38px);
  color: #F3F8FF; /* Text Main */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-the-thao__section-title--light {
  color: #F3F8FF; /* Text Main */
}

.page-the-thao__text-block {
  font-size: 17px;
  color: #AFC4E8; /* Text Secondary */
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.page-the-thao__text-block--light {
  color: #AFC4E8; /* Text Secondary */
}

/* Hero Section */
.page-the-thao__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #08162B; /* Deep Navy */
}

.page-the-thao__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 700px;
  overflow: hidden;
}

.page-the-thao__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-the-thao__hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  max-width: 900px;
  width: 100%;
  text-align: center;
  background: rgba(16, 35, 63, 0.85); /* Card BG with opacity */
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  margin-top: -150px; /* Overlap with image slightly */
  backdrop-filter: blur(5px);
  border: 1px solid #244D84; /* Border */
}

.page-the-thao__main-title {
  font-size: clamp(36px, 5vw, 56px);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-the-thao__description {
  font-size: 18px;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-the-thao__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-the-thao__btn-primary,
.page-the-thao__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-the-thao__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button color */
  color: #F3F8FF; /* Text Main */
  border: none;
  box-shadow: 0 5px 15px rgba(43, 115, 246, 0.4);
}

.page-the-thao__btn-primary:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(43, 115, 246, 0.6);
}

.page-the-thao__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Gold */
  border: 2px solid #F2C14E; /* Gold */
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.2);
}

.page-the-thao__btn-secondary:hover {
  background: #F2C14E;
  color: #113B7A; /* Primary color */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.4);
}

.page-the-thao__btn-small {
  padding: 10px 20px;
  font-size: 16px;
}

/* Why Choose Section */
.page-the-thao__why-choose {
  background-color: #08162B; /* Deep Navy */
}

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

.page-the-thao__feature-item {
  background-color: #10233F; /* Card BG */
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  border: 1px solid #244D84; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-the-thao__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.page-the-thao__feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  display: block;
}

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

.page-the-thao__feature-text {
  font-size: 16px;
  color: #AFC4E8; /* Text Secondary */
}

/* Bet Types Section */
.page-the-thao__bet-types {
  background-color: #113B7A; /* Primary color */
}

.page-the-thao__bet-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-the-thao__bet-type-item {
  background-color: rgba(16, 35, 63, 0.7); /* Card BG with opacity */
  padding: 25px;
  border-radius: 15px;
  text-align: left;
  border: 1px solid #244D84; /* Border */
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.page-the-thao__bet-type-title {
  font-size: 22px;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-the-thao__bet-type-text {
  font-size: 16px;
  color: #AFC4E8; /* Text Secondary */
}

.page-the-thao__image-center {
  margin-top: 50px;
  text-align: center;
}

.page-the-thao__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  display: block;
  margin: 0 auto;
}

/* How to Bet Section */
.page-the-thao__how-to-bet {
  background-color: #08162B; /* Deep Navy */
}

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

.page-the-thao__step-item {
  background-color: #10233F; /* Card BG */
  padding: 30px;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  border: 1px solid #244D84; /* Border */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-the-thao__step-number {
  font-size: 36px;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  background: rgba(242, 193, 78, 0.1);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #F2C14E;
}

.page-the-thao__step-title {
  font-size: 24px;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-the-thao__step-text {
  font-size: 16px;
  color: #AFC4E8; /* Text Secondary */
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Betting Tips Section */
.page-the-thao__betting-tips {
  background-color: #1D5FD1; /* Auxiliary color */
}

.page-the-thao__tips-content {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 50px;
}

.page-the-thao__tips-list {
  flex: 1;
  text-align: left;
}

.page-the-thao__tip-item {
  background-color: rgba(16, 35, 63, 0.7); /* Card BG with opacity */
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 20px;
  border: 1px solid #244D84; /* Border */
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.page-the-thao__tip-text {
  font-size: 16px;
  color: #AFC4E8; /* Text Secondary */
}

.page-the-thao__tips-image-wrapper {
  flex: 0 0 600px;
  max-width: 600px;
  text-align: center;
}

/* FAQ Section */
.page-the-thao__faq-section {
  background-color: #08162B; /* Deep Navy */
}

.page-the-thao__faq-list {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

details.page-the-thao__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #244D84; /* Border */
  overflow: hidden;
  background: #10233F; /* Card BG */
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

details.page-the-thao__faq-item summary.page-the-thao__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #F3F8FF; /* Text Main */
}

details.page-the-thao__faq-item summary.page-the-thao__faq-question::-webkit-details-marker {
  display: none;
}

details.page-the-thao__faq-item summary.page-the-thao__faq-question:hover {
  background: rgba(43, 115, 246, 0.1);
}

.page-the-thao__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F3F8FF; /* Text Main */
}

.page-the-thao__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-the-thao__faq-item .page-the-thao__faq-answer {
  padding: 0 25px 20px;
  background: rgba(16, 35, 63, 0.5); /* Card BG with opacity */
  border-radius: 0 0 10px 10px;
  font-size: 16px;
  color: #AFC4E8; /* Text Secondary */
}

/* Final CTA Section */
.page-the-thao__final-cta {
  background: linear-gradient(90deg, #113B7A 0%, #1D5FD1 100%); /* Primary to Auxiliary gradient */
  padding: 80px 0;
}

.page-the-thao__container--flex {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-the-thao__hero-content {
    margin-top: -100px;
    padding: 30px 15px;
  }

  .page-the-thao__tips-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-the-thao__tips-image-wrapper {
    flex: none;
    max-width: 100%;
  }

  .page-the-thao__content-image {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .page-the-thao {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-the-thao__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-the-thao__section {
    padding: 40px 0;
  }

  .page-the-thao__section-title {
    font-size: clamp(24px, 7vw, 32px);
  }

  .page-the-thao__text-block {
    font-size: 15px;
    margin-bottom: 30px;
  }

  /* HERO Section */
  .page-the-thao__hero-section {
    min-height: auto;
    padding-top: 10px; /* Ensure small top padding */
  }
  
  .page-the-thao__hero-image-wrapper {
    max-height: 400px;
  }

  .page-the-thao__hero-image {
    object-fit: contain !important; /* Mobile: contain to prevent cropping */
    aspect-ratio: unset !important;
    height: auto !important;
    width: 100% !important;
  }

  .page-the-thao__hero-content {
    margin-top: -80px;
    padding: 25px 15px;
    border-radius: 10px;
  }

  .page-the-thao__main-title {
    font-size: clamp(28px, 8vw, 40px);
  }

  .page-the-thao__description {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .page-the-thao__cta-buttons {
    flex-direction: column !important;
    gap: 15px;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

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

  /* Why Choose Section */
  .page-the-thao__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-the-thao__feature-item {
    padding: 20px;
  }

  .page-the-thao__feature-title {
    font-size: 20px;
  }

  /* Bet Types Section */
  .page-the-thao__bet-type-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-the-thao__bet-type-item {
    padding: 20px;
  }

  .page-the-thao__bet-type-title {
    font-size: 18px;
  }

  .page-the-thao__image-center {
    overflow-x: hidden;
  }

  .page-the-thao__content-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  /* How to Bet Section */
  .page-the-thao__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-the-thao__step-item {
    padding: 20px;
  }

  .page-the-thao__step-number {
    font-size: 30px;
    width: 50px;
    height: 50px;
  }

  .page-the-thao__step-title {
    font-size: 20px;
  }

  /* Betting Tips Section */
  .page-the-thao__tips-content {
    flex-direction: column;
    gap: 20px;
  }

  .page-the-thao__tips-image-wrapper {
    width: 100%;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  
  .page-the-thao__tips-image-wrapper img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .page-the-thao__tip-item {
    padding: 20px;
  }

  .page-the-thao__tip-title {
    font-size: 18px;
  }

  /* FAQ Section */
  .page-the-thao__faq-list {
    margin-top: 30px;
  }

  details.page-the-thao__faq-item summary.page-the-thao__faq-question {
    padding: 15px;
  }

  .page-the-thao__faq-qtext {
    font-size: 16px;
  }

  .page-the-thao__faq-toggle {
    font-size: 24px;
    width: 25px;
    margin-left: 10px;
  }

  details.page-the-thao__faq-item .page-the-thao__faq-answer {
    padding: 0 15px 15px;
  }

  /* Final CTA Section */
  .page-the-thao__final-cta {
    padding: 50px 0;
  }
}