/* Base Styles */
.page-the-thao-huong-dan-ca-cuoc {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main */
  background-color: #140C0C; /* Background */
  padding-bottom: 50px;
}

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

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

.page-the-thao-huong-dan-ca-cuoc__section-title {
  font-size: clamp(28px, 4vw, 38px);
  color: #F3C54D; /* Gold */
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.page-the-thao-huong-dan-ca-cuoc__content-area {
  background-color: #2A1212; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-the-thao-huong-dan-ca-cuoc__content-area p {
  margin-bottom: 15px;
  color: #FFF1E8;
}

.page-the-thao-huong-dan-ca-cuoc__content-area h3 {
  color: #F3C54D;
  font-size: 24px;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-the-thao-huong-dan-ca-cuoc__content-area ol,
.page-the-thao-huong-dan-ca-cuoc__content-area ul {
  margin-left: 25px;
  margin-bottom: 15px;
  color: #FFF1E8;
}

.page-the-thao-huong-dan-ca-cuoc__content-area li {
  margin-bottom: 8px;
  color: #FFF1E8;
}

.page-the-thao-huong-dan-ca-cuoc__content-area strong {
  color: #F3C54D;
}

/* Hero Section */
.page-the-thao-huong-dan-ca-cuoc__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-the-thao-huong-dan-ca-cuoc__hero-image {
  width: 100%;
  height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.page-the-thao-huong-dan-ca-cuoc__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-the-thao-huong-dan-ca-cuoc__hero-content-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  z-index: 10;
}

.page-the-thao-huong-dan-ca-cuoc__hero-content {
  text-align: center;
  background: rgba(42, 18, 18, 0.85); /* Card BG with transparency */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid #6A1E1E; /* Border */
}

.page-the-thao-huong-dan-ca-cuoc__main-title {
  font-size: clamp(32px, 5vw, 48px);
  color: #F3C54D; /* Gold */
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.page-the-thao-huong-dan-ca-cuoc__hero-description {
  font-size: 18px;
  color: #FFF1E8;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-the-thao-huong-dan-ca-cuoc__cta-buttons {
  display: flex;
  justify-content: center;
  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-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  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, #FFB04A 0%, #D86A14 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 176, 74, 0.4);
}

.page-the-thao-huong-dan-ca-cuoc__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 176, 74, 0.6);
}

.page-the-thao-huong-dan-ca-cuoc__btn-secondary {
  background: #C61F1F; /* Main Color */
  color: #ffffff;
  border: 2px solid #F3C54D; /* Gold border */
  box-shadow: 0 4px 15px rgba(198, 31, 31, 0.4);
}

.page-the-thao-huong-dan-ca-cuoc__btn-secondary:hover {
  background: #E53030; /* Auxiliary Color */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(198, 31, 31, 0.6);
}

/* Content with Image Layout */
.page-the-thao-huong-dan-ca-cuoc__content-with-image {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.page-the-thao-huong-dan-ca-cuoc__image-wrapper {
  flex: 0 0 40%;
  max-width: 40%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #6A1E1E;
}

.page-the-thao-huong-dan-ca-cuoc__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-the-thao-huong-dan-ca-cuoc__text-content {
  flex: 1;
}

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

/* Register button in how-to-register section */
.page-the-thao-huong-dan-ca-cuoc__register-btn {
  margin-top: 20px;
}

/* FAQ Section */
details.page-the-thao-huong-dan-ca-cuoc__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #6A1E1E; /* Border */
  overflow: hidden;
  background: #2A1212; /* Card BG */
}

details.page-the-thao-huong-dan-ca-cuoc__faq-item summary.page-the-thao-huong-dan-ca-cuoc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #F3C54D; /* Gold */
}

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

details.page-the-thao-huong-dan-ca-cuoc__faq-item summary.page-the-thao-huong-dan-ca-cuoc__faq-question:hover {
  background: rgba(106, 30, 30, 0.5); /* Deep Red with transparency */
}

.page-the-thao-huong-dan-ca-cuoc__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F3C54D; /* Gold */
}

.page-the-thao-huong-dan-ca-cuoc__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #F3C54D; /* Gold */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-the-thao-huong-dan-ca-cuoc__faq-item .page-the-thao-huong-dan-ca-cuoc__faq-answer {
  padding: 0 20px 20px;
  background: #140C0C; /* Background */
  border-radius: 0 0 5px 5px;
  color: #FFF1E8;
}

/* Conclusion Section */
.page-the-thao-huong-dan-ca-cuoc__cta-bottom {
  margin-top: 30px;
}

/* General Image Styles (for all images within content area) */
.page-the-thao-huong-dan-ca-cuoc img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Media Queries */
@media (max-width: 1024px) {
  .page-the-thao-huong-dan-ca-cuoc__hero-image {
    height: 500px;
  }
  .page-the-thao-huong-dan-ca-cuoc__main-title {
    font-size: clamp(30px, 4.5vw, 42px);
  }
  .page-the-thao-huong-dan-ca-cuoc__hero-description {
    font-size: 17px;
  }
  .page-the-thao-huong-dan-ca-cuoc__btn-primary,
  .page-the-thao-huong-dan-ca-cuoc__btn-secondary {
    padding: 12px 25px;
    font-size: 17px;
  }
  .page-the-thao-huong-dan-ca-cuoc__content-area {
    padding: 25px;
  }
  .page-the-thao-huong-dan-ca-cuoc__content-area h3 {
    font-size: 22px;
  }
  .page-the-thao-huong-dan-ca-cuoc__image-wrapper {
    flex: 0 0 45%;
    max-width: 45%;
  }
}

@media (max-width: 849px) {
  .page-the-thao-huong-dan-ca-cuoc__hero-image img {
    object-fit: contain !important;
    aspect-ratio: unset !important;
  }
}

@media (max-width: 768px) {
  .page-the-thao-huong-dan-ca-cuoc {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-the-thao-huong-dan-ca-cuoc__container {
    padding: 0 15px;
  }
  .page-the-thao-huong-dan-ca-cuoc__section {
    padding: 30px 0;
  }
  .page-the-thao-huong-dan-ca-cuoc__section-title {
    font-size: clamp(24px, 6vw, 32px);
    margin-bottom: 20px;
  }
  
  /* HERO Section Mobile */
  .page-the-thao-huong-dan-ca-cuoc__hero-section {
    padding-top: 10px !important; /* Small top padding */
    padding-bottom: 30px;
  }
  .page-the-thao-huong-dan-ca-cuoc__hero-image {
    height: 300px;
    margin-bottom: 20px;
  }
  .page-the-thao-huong-dan-ca-cuoc__hero-image img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
  .page-the-thao-huong-dan-ca-cuoc__hero-content {
    padding: 20px;
  }
  .page-the-thao-huong-dan-ca-cuoc__main-title {
    font-size: clamp(28px, 7vw, 38px);
    margin-bottom: 15px;
  }
  .page-the-thao-huong-dan-ca-cuoc__hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .page-the-thao-huong-dan-ca-cuoc__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .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 15px !important;
    font-size: 16px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  /* Content with Image Layout Mobile */
  .page-the-thao-huong-dan-ca-cuoc__content-with-image {
    flex-direction: column;
    gap: 20px;
  }
  .page-the-thao-huong-dan-ca-cuoc__image-wrapper {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .page-the-thao-huong-dan-ca-cuoc__content-area {
    padding: 20px;
  }
  .page-the-thao-huong-dan-ca-cuoc__content-area h3 {
    font-size: 20px;
  }

  /* General Images Mobile */
  .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__section,
  .page-the-thao-huong-dan-ca-cuoc__card,
  .page-the-thao-huong-dan-ca-cuoc__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* FAQ Section Mobile */
  details.page-the-thao-huong-dan-ca-cuoc__faq-item summary.page-the-thao-huong-dan-ca-cuoc__faq-question { padding: 15px; }
  .page-the-thao-huong-dan-ca-cuoc__faq-qtext { font-size: 15px; }
  .page-the-thao-huong-dan-ca-cuoc__faq-toggle { font-size: 20px; width: 24px; }
  details.page-the-thao-huong-dan-ca-cuoc__faq-item .page-the-thao-huong-dan-ca-cuoc__faq-answer { padding: 0 15px 15px; }

  /* Ensure no horizontal scroll for content areas */
  .page-the-thao-huong-dan-ca-cuoc__introduction,
  .page-the-thao-huong-dan-ca-cuoc__how-to-register,
  .page-the-thao-huong-dan-ca-cuoc__bet-types,
  .page-the-thao-huong-dan-ca-cuoc__strategies,
  .page-the-thao-huong-dan-ca-cuoc__faq-section,
  .page-the-thao-huong-dan-ca-cuoc__conclusion {
    overflow-x: hidden;
  }
}