/* style/the-thao-huong-dan-ca-cuoc.css */

/* General styles for the page content */
.page-the-thao-huong-dan-ca-cuoc {
  font-family: Arial, sans-serif;
  color: #333333; /* Default text color for light background */
  line-height: 1.6;
  background-color: #f8f8f8; /* Light background for overall page */
}

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

.page-the-thao-huong-dan-ca-cuoc__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #26A9E0; /* Brand color for titles */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-the-thao-huong-dan-ca-cuoc__section-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Hero Section */
.page-the-thao-huong-dan-ca-cuoc__hero-section {
  padding-top: 10px; /* Small top padding, assuming body handles header offset */
  padding-bottom: 40px;
  background-color: #f0f8ff; /* A very light blue tint */
}

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

.page-the-thao-huong-dan-ca-cuoc__hero-image-wrapper {
  flex: 1 1 50%;
  text-align: center;
  order: 1; /* Image first */
}

.page-the-thao-huong-dan-ca-cuoc__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  display: block; /* Ensure it behaves as a block element */
}

.page-the-thao-huong-dan-ca-cuoc__hero-content {
  flex: 1 1 40%;
  order: 2; /* Content second */
  color: #333333;
}

.page-the-thao-huong-dan-ca-cuoc__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size */
  font-weight: 800;
  color: #1e1765; /* Darker blue for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-the-thao-huong-dan-ca-cuoc__description {
  font-size: 1.15em;
  margin-bottom: 30px;
  color: #444444;
}

.page-the-thao-huong-dan-ca-cuoc__cta-buttons {
  display: flex;
  gap: 15px;
  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: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

.page-the-thao-huong-dan-ca-cuoc__btn-primary {
  background-color: #26A9E0; /* Brand primary color */
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-the-thao-huong-dan-ca-cuoc__btn-primary:hover {
  background-color: #1e8fcb;
  border-color: #1e8fcb;
  transform: translateY(-2px);
}

.page-the-thao-huong-dan-ca-cuoc__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-the-thao-huong-dan-ca-cuoc__btn-secondary:hover {
  background-color: #e0f4ff;
  color: #1e8fcb;
  border-color: #1e8fcb;
  transform: translateY(-2px);
}

/* Intro Section (Features) */
.page-the-thao-huong-dan-ca-cuoc__intro-section {
  padding: 60px 0;
  background-color: #ffffff; /* Light background for this section */
  color: #333333;
}

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

.page-the-thao-huong-dan-ca-cuoc__feature-item {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-the-thao-huong-dan-ca-cuoc__icon-box-media {
  width: 160px; /* Smaller size for desktop, will be larger on mobile */
  height: 160px;
  aspect-ratio: 1/1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #26A9E0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e0f4ff;
}

.page-the-thao-huong-dan-ca-cuoc__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.page-the-thao-huong-dan-ca-cuoc__feature-title {
  font-size: 1.5em;
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-the-thao-huong-dan-ca-cuoc__feature-text {
  font-size: 1em;
  color: #555555;
}

/* Guide Section */
.page-the-thao-huong-dan-ca-cuoc__guide-section {
  padding: 60px 0;
  background-color: #26A9E0; /* Dark background for this section */
  color: #ffffff; /* White text for dark background */
}

.page-the-thao-huong-dan-ca-cuoc__guide-section .page-the-thao-huong-dan-ca-cuoc__section-title {
  color: #ffffff;
}

.page-the-thao-huong-dan-ca-cuoc__guide-section .page-the-thao-huong-dan-ca-cuoc__section-description {
  color: #e0f4ff;
}

.page-the-thao-huong-dan-ca-cuoc__guide-steps {
  margin-top: 40px;
}

.page-the-thao-huong-dan-ca-cuoc__guide-step {
  background-color: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.page-the-thao-huong-dan-ca-cuoc__guide-step-title {
  font-size: 1.8em;
  font-weight: 700;
  color: #1e1765; /* Darker blue */
  margin-bottom: 20px;
  text-align: center;
}

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

.page-the-thao-huong-dan-ca-cuoc__guide-step-image {
  flex: 1 1 45%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.page-the-thao-huong-dan-ca-cuoc__guide-step-content p {
  flex: 1 1 45%;
  font-size: 1.05em;
  line-height: 1.7;
}

.page-the-thao-huong-dan-ca-cuoc__guide-step:nth-child(even) .page-the-thao-huong-dan-ca-cuoc__guide-step-image {
  order: 2; /* Alternate image and text order */
}

.page-the-thao-huong-dan-ca-cuoc__guide-step:nth-child(even) .page-the-thao-huong-dan-ca-cuoc__guide-step-content p {
  order: 1;
}

/* Tips Section */
.page-the-thao-huong-dan-ca-cuoc__tips-section {
  padding: 60px 0;
  background-color: #f8f8f8; /* Light background */
  color: #333333;
}

.page-the-thao-huong-dan-ca-cuoc__tips-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
  margin-top: 40px;
}

.page-the-thao-huong-dan-ca-cuoc__tips-image {
  flex: 1 1 45%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: block;
}

.page-the-thao-huong-dan-ca-cuoc__tips-list {
  flex: 1 1 45%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-the-thao-huong-dan-ca-cuoc__tips-list li {
  background-color: #ffffff;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 5px solid #26A9E0;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  color: #444444;
}

.page-the-thao-huong-dan-ca-cuoc__tips-list li strong {
  color: #1e1765;
}

/* FAQ Section */
.page-the-thao-huong-dan-ca-cuoc__faq-section {
  padding: 60px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-the-thao-huong-dan-ca-cuoc__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-the-thao-huong-dan-ca-cuoc__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-the-thao-huong-dan-ca-cuoc__faq-item[open] {
  background-color: #e0f4ff;
  border-color: #26A9E0;
}

.page-the-thao-huong-dan-ca-cuoc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #1e1765;
  cursor: pointer;
  list-style: none; /* Hide default marker */
}

.page-the-thao-huong-dan-ca-cuoc__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

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

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

.page-the-thao-huong-dan-ca-cuoc__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
}

/* Final CTA Section */
.page-the-thao-huong-dan-ca-cuoc__cta-final {
  padding: 60px 0;
  background-color: #26A9E0; /* Brand primary color */
  color: #ffffff;
  text-align: center;
}