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

.page-the-thao-huong-dan-ca-cuoc__section-padding {
  padding: 60px 0;
}

.page-the-thao-huong-dan-ca-cuoc__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-the-thao-huong-dan-ca-cuoc__section-title {
  font-size: 3em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #F2C14E; /* Gold for emphasis */
  line-height: 1.2;
}

.page-the-thao-huong-dan-ca-cuoc__section-title--light {
  color: #F2FFF6; /* Text Main */
}

.page-the-thao-huong-dan-ca-cuoc__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-the-thao-huong-dan-ca-cuoc__text-content--light {
  color: #A7D9B8; /* Text Secondary */
}

/* Hero Section */
.page-the-thao-huong-dan-ca-cuoc__hero-section {
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  background: linear-gradient(180deg, #0A4B2C 0%, #08160F 100%);
}

.page-the-thao-huong-dan-ca-cuoc__hero-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-the-thao-huong-dan-ca-cuoc__hero-image {
  flex: 1;
  min-width: 400px;
}

.page-the-thao-huong-dan-ca-cuoc__hero-visual {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-the-thao-huong-dan-ca-cuoc__hero-content {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-the-thao-huong-dan-ca-cuoc__main-title {
  font-size: 3.2em;
  font-weight: 800;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-the-thao-huong-dan-ca-cuoc__subtitle {
  font-size: 1.2em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-the-thao-huong-dan-ca-cuoc__cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-the-thao-huong-dan-ca-cuoc__btn-primary,
.page-the-thao-huong-dan-ca-cuoc__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-the-thao-huong-dan-ca-cuoc__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-the-thao-huong-dan-ca-cuoc__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(42, 209, 111, 0.6);
}

.page-the-thao-huong-dan-ca-cuoc__btn-secondary {
  background: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #57E38D; /* Glow */
}

.page-the-thao-huong-dan-ca-cuoc__btn-secondary:hover {
  background: #57E38D;
  color: #08160F; /* Background */
  transform: translateY(-3px);
}

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

.page-the-thao-huong-dan-ca-cuoc__btn-link:hover {
  color: #F2C14E; /* Gold */
}

/* Dark Section */
.page-the-thao-huong-dan-ca-cuoc__dark-section {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

/* Grid Layouts */
.page-the-thao-huong-dan-ca-cuoc__grid-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-the-thao-huong-dan-ca-cuoc__grid-two-cols--reverse {
  grid-template-columns: 1fr 1fr;
}

.page-the-thao-huong-dan-ca-cuoc__content-block {
  padding: 20px;
}

.page-the-thao-huong-dan-ca-cuoc__image-wrapper {
  text-align: center;
}

.page-the-thao-huong-dan-ca-cuoc__content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Feature List */
.page-the-thao-huong-dan-ca-cuoc__feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.page-the-thao-huong-dan-ca-cuoc__feature-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
}

.page-the-thao-huong-dan-ca-cuoc__feature-list li::before {
  content: '✔';
  color: #57E38D; /* Glow */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-the-thao-huong-dan-ca-cuoc__feature-list li strong {
  color: #F2FFF6; /* Text Main */
}

.page-the-thao-huong-dan-ca-cuoc__btn-primary--margin-top,
.page-the-thao-huong-dan-ca-cuoc__btn-secondary--margin-top {
  margin-top: 30px;
}

/* Guide Section */
.page-the-thao-huong-dan-ca-cuoc__guide-step {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-the-thao-huong-dan-ca-cuoc__guide-step-title {
  font-size: 2em;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  text-align: center;
}

.page-the-thao-huong-dan-ca-cuoc__guide-content-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}

.page-the-thao-huong-dan-ca-cuoc__guide-content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-the-thao-huong-dan-ca-cuoc__guide-text-block {
  flex: 1;
  color: #A7D9B8; /* Text Secondary */
}

.page-the-thao-huong-dan-ca-cuoc__guide-text-block p {
  margin-bottom: 15px;
}

.page-the-thao-huong-dan-ca-cuoc__guide-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-the-thao-huong-dan-ca-cuoc__guide-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

/* Popular Sports Section */
.page-the-thao-huong-dan-ca-cuoc__sports-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.page-the-thao-huong-dan-ca-cuoc__sports-item {
  background-color: #0A4B2C; /* Deep Green */
  padding: 20px;
  border-radius: 8px;
  color: #F2FFF6; /* Text Main */
  font-size: 1.1em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-the-thao-huong-dan-ca-cuoc__sports-item strong {
  color: #F2C14E; /* Gold */
}

/* Tips Section */
.page-the-thao-huong-dan-ca-cuoc__tip-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.page-the-thao-huong-dan-ca-cuoc__tip-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
}

.page-the-thao-huong-dan-ca-cuoc__tip-list li::before {
  content: '💡';
  position: absolute;
  left: 0;
}

.page-the-thao-huong-dan-ca-cuoc__tip-list li strong {
  color: #F2FFF6; /* Text Main */
}

/* Promo Section */
.page-the-thao-huong-dan-ca-cuoc__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-the-thao-huong-dan-ca-cuoc__promo-card {
  background-color: #0A4B2C; /* Deep Green */\  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-the-thao-huong-dan-ca-cuoc__promo-card:hover {
  transform: translateY(-5px);
}

.page-the-thao-huong-dan-ca-cuoc__promo-card-title {
  font-size: 1.8em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-the-thao-huong-dan-ca-cuoc__promo-card-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
  margin-bottom: 20px;
}

/* Responsible Gambling Section */
.page-the-thao-huong-dan-ca-cuoc__responsible-gambling-section .page-the-thao-huong-dan-ca-cuoc__text-content {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #A7D9B8;
}

.page-the-thao-huong-dan-ca-cuoc__btn-secondary--margin-top {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  max-width: 350px;
}

/* FAQ Section */
.page-the-thao-huong-dan-ca-cuoc__faq-list {
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-the-thao-huong-dan-ca-cuoc__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-the-thao-huong-dan-ca-cuoc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #0A4B2C;
  list-style: none; /* For details/summary */
}

.page-the-thao-huong-dan-ca-cuoc__faq-question::-webkit-details-marker {
  display: none;
}

.page-the-thao-huong-dan-ca-cuoc__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #57E38D; /* Glow */
  transition: transform 0.3s ease;
}

.page-the-thao-huong-dan-ca-cuoc__faq-item[open] .page-the-thao-huong-dan-ca-cuoc__faq-toggle {
  transform: rotate(45deg);
}

.page-the-thao-huong-dan-ca-cuoc__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

.page-the-thao-huong-dan-ca-cuoc__faq-image-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* Call to Action Section */
.page-the-thao-huong-dan-ca-cuoc__cta-container {
  text-align: center;
}

.page-the-thao-huong-dan-ca-cuoc__cta-container .page-the-thao-huong-dan-ca-cuoc__text-content {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.page-the-thao-huong-dan-ca-cuoc__cta-buttons {
  justify-content: center;
}

/* General image styling */
.page-the-thao-huong-dan-ca-cuoc img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Media Queries for Responsive Design */
/* Tablet and Mobile */
@media (max-width: 1024px) {
  .page-the-thao-huong-dan-ca-cuoc__section-title {
    font-size: 2.5em;
  }
  .page-the-thao-huong-dan-ca-cuoc__main-title {
    font-size: 2.8em;
  }
  .page-the-thao-huong-dan-ca-cuoc__hero-container {
    flex-direction: column;
    text-align: center;
  }
  .page-the-thao-huong-dan-ca-cuoc__hero-content {
    text-align: center;
  }
  .page-the-thao-huong-dan-ca-cuoc__cta-buttons {
    justify-content: center;
  }
  .page-the-thao-huong-dan-ca-cuoc__grid-two-cols {
    grid-template-columns: 1fr;
  }
  .page-the-thao-huong-dan-ca-cuoc__grid-two-cols--reverse {
    grid-template-columns: 1fr;
  }
  .page-the-thao-huong-dan-ca-cuoc__guide-content-wrapper,
  .page-the-thao-huong-dan-ca-cuoc__guide-content-wrapper--reverse {
    flex-direction: column;
  }
  .page-the-thao-huong-dan-ca-cuoc__guide-image-wrapper {
    order: -1;
  }
  .page-the-thao-huong-dan-ca-cuoc__promo-card-title {
    font-size: 1.6em;
  }
}

/* Mobile Specific Styles */
@media (max-width: 768px) {
  /* HERO Section */
  .page-the-thao-huong-dan-ca-cuoc__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-the-thao-huong-dan-ca-cuoc__hero-container {
    padding: 0 10px;
    gap: 20px;
  }
  .page-the-thao-huong-dan-ca-cuoc__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-the-thao-huong-dan-ca-cuoc__subtitle {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-the-thao-huong-dan-ca-cuoc__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  .page-the-thao-huong-dan-ca-cuoc__btn-primary,
  .page-the-thao-huong-dan-ca-cuoc__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* General Section & Container */
  .page-the-thao-huong-dan-ca-cuoc__section-padding {
    padding: 40px 0;
  }
  .page-the-thao-huong-dan-ca-cuoc__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-the-thao-huong-dan-ca-cuoc__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-the-thao-huong-dan-ca-cuoc__text-content {
    font-size: 0.95em;
  }

  /* Images */
  .page-the-thao-huong-dan-ca-cuoc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-the-thao-huong-dan-ca-cuoc__hero-image,
  .page-the-thao-huong-dan-ca-cuoc__image-wrapper,
  .page-the-thao-huong-dan-ca-cuoc__guide-image-wrapper,
  .page-the-thao-huong-dan-ca-cuoc__faq-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden;
  }

  /* Grid Layouts */
  .page-the-thao-huong-dan-ca-cuoc__grid-two-cols {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-the-thao-huong-dan-ca-cuoc__grid-two-cols--reverse .page-the-thao-huong-dan-ca-cuoc__content-block {
    order: 2;
  }
  .page-the-thao-huong-dan-ca-cuoc__grid-two-cols--reverse .page-the-thao-huong-dan-ca-cuoc__image-wrapper {
    order: 1;
  }

  /* Feature & Tip Lists */
  .page-the-thao-huong-dan-ca-cuoc__feature-list li,
  .page-the-thao-huong-dan-ca-cuoc__tip-list li {
    font-size: 1em;
    margin-bottom: 10px;
  }

  /* Guide Section */
  .page-the-thao-huong-dan-ca-cuoc__guide-step {
    padding: 20px;
    margin-bottom: 20px;
  }
  .page-the-thao-huong-dan-ca-cuoc__guide-step-title {
    font-size: 1.6em;
    margin-bottom: 15px;
  }
  .page-the-thao-huong-dan-ca-cuoc__guide-content-wrapper,
  .page-the-thao-huong-dan-ca-cuoc__guide-content-wrapper--reverse {
    flex-direction: column;
    gap: 20px;
  }
  .page-the-thao-huong-dan-ca-cuoc__guide-content-wrapper--reverse .page-the-thao-huong-dan-ca-cuoc__guide-image-wrapper {
    order: 1;
  }
  .page-the-thao-huong-dan-ca-cuoc__guide-content-wrapper--reverse .page-the-thao-huong-dan-ca-cuoc__guide-text-block {
    order: 2;
  }
  .page-the-thao-huong-dan-ca-cuoc__guide-image {
    width: 100%;
  }

  /* Popular Sports Section */
  .page-the-thao-huong-dan-ca-cuoc__sports-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .page-the-thao-huong-dan-ca-cuoc__sports-item {
    font-size: 1em;
    padding: 15px;
  }

  /* Promo Section */
  .page-the-thao-huong-dan-ca-cuoc__card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-the-thao-huong-dan-ca-cuoc__promo-card {
    padding: 20px;
  }
  .page-the-thao-huong-dan-ca-cuoc__promo-card-title {
    font-size: 1.4em;
  }

  /* FAQ Section */
  .page-the-thao-huong-dan-ca-cuoc__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-the-thao-huong-dan-ca-cuoc__faq-answer {
    padding: 0 15px 15px 15px;
  }
  .page-the-thao-huong-dan-ca-cuoc__faq-image-wrapper {
    margin-top: 30px;
  }
}