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

:root {
  --primary-color: #E53935;
  --secondary-color: #FF5A4F;
  --text-main-color: #333333;
  --card-bg-color: #FFFFFF;
  --background-color-page: #F5F7FA;
  --border-color: #E0E0E0;
}

.page-the-thao-huong-dan-ca-cuoc-bong-da {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main-color);
  background-color: var(--background-color-page);
}

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

/* Hero Section */
.page-the-thao-huong-dan-ca-cuoc-bong-da__hero-section {
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  padding-bottom: 40px;
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: #ffffff; /* Light text on dark/gradient background */
}

.page-the-thao-huong-dan-ca-cuoc-bong-da__hero-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 16px;
}

.page-the-thao-huong-dan-ca-cuoc-bong-da__hero-content {
  flex: 1 1 50%;
  min-width: 300px;
  text-align: left;
}

.page-the-thao-huong-dan-ca-cuoc-bong-da__hero-title {
  font-size: 2.8em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
  max-width: 600px; /* Constrain H1 width */
}

.page-the-thao-huong-dan-ca-cuoc-bong-da__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-the-thao-huong-dan-ca-cuoc-bong-da__hero-image {
  flex: 1 1 40%;
  min-width: 250px;
  text-align: center;
}

.page-the-thao-huong-dan-ca-cuoc-bong-da__hero-side-image {
  max-width: 600px;
  width: 100%;
  height: 600px; /* Display size as per imageRequirements */
  object-fit: contain;
  display: block;
}

.page-the-thao-huong-dan-ca-cuoc-bong-da__hero-cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Buttons */
.page-the-thao-huong-dan-ca-cuoc-bong-da__btn-primary,
.page-the-thao-huong-dan-ca-cuoc-bong-da__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-the-thao-huong-dan-ca-cuoc-bong-da__btn-primary {
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-the-thao-huong-dan-ca-cuoc-bong-da__btn-primary:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.page-the-thao-huong-dan-ca-cuoc-bong-da__btn-secondary {
  background: #ffffff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-the-thao-huong-dan-ca-cuoc-bong-da__btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

/* Section Titles & Descriptions */
.page-the-thao-huong-dan-ca-cuoc-bong-da__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
}

.page-the-thao-huong-dan-ca-cuoc-bong-da__section-description {
  font-size: 1.1em;
  color: var(--text-main-color);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

/* Intro Section (Module 1) */
.page-the-thao-huong-dan-ca-cuoc-bong-da__intro-section {
  padding: 60px 0;
  background-color: var(--card-bg-color);
}

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

.page-the-thao-huong-dan-ca-cuoc-bong-da__icon-box {
  text-align: center;
  padding: 25px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-the-thao-huong-dan-ca-cuoc-bong-da__icon-box:hover {
  transform: translateY(-5px);
}

.page-the-thao-huong-dan-ca-cuoc-bong-da__icon-box-media {
  width: 240px;
  height: 240px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary-color);
}

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

.page-the-thao-huong-dan-ca-cuoc-bong-da__icon-box-title {
  font-size: 1.5em;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-the-thao-huong-dan-ca-cuoc-bong-da__icon-box-text {
  color: var(--text-main-color);
  font-size: 1em;
}

/* Guide Section */
.page-the-thao-huong-dan-ca-cuoc-bong-da__guide-section {
  padding: 60px 0;
  background-color: var(--background-color-page);
}

.page-the-thao-huong-dan-ca-cuoc-bong-da__guide-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 40px;
  color: var(--text-main-color);
}

.page-the-thao-huong-dan-ca-cuoc-bong-da__guide-subtitle {
  font-size: 1.8em;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.page-the-thao-huong-dan-ca-cuoc-bong-da__guide-item p {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-the-thao-huong-dan-ca-cuoc-bong-da__guide-item ul,
.page-the-thao-huong-dan-ca-cuoc-bong-da__guide-item ol {
  margin-left: 25px;
  margin-bottom: 15px;
  list-style-position: inside;
}

.page-the-thao-huong-dan-ca-cuoc-bong-da__guide-item li {
  margin-bottom: 8px;
  font-size: 1em;
}

.page-the-thao-huong-dan-ca-cuoc-bong-da__guide-image {
  max-width: 100%;
  height: 450px; /* Display size */
  object-fit: cover;
  border-radius: 8px;
  margin: 25px 0;
  display: block;
}

/* FAQ Section */
.page-the-thao-huong-dan-ca-cuoc-bong-da__faq-section {
  padding: 60px 0;
  background-color: var(--card-bg-color);
}

.page-the-thao-huong-dan-ca-cuoc-bong-da__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-the-thao-huong-dan-ca-cuoc-bong-da__faq-item {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-the-thao-huong-dan-ca-cuoc-bong-da__faq-item[open] {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-the-thao-huong-dan-ca-cuoc-bong-da__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  background-color: #f9f9f9;
  border-bottom: 1px solid var(--border-color);
  list-style: none; /* For details summary */
}

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

.page-the-thao-huong-dan-ca-cuoc-bong-da__faq-qtext {
  flex-grow: 1;
}

.page-the-thao-huong-dan-ca-cuoc-bong-da__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.page-the-thao-huong-dan-ca-cuoc-bong-da__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: var(--text-main-color);
  border-top: 1px solid var(--border-color);
  background-color: #ffffff;
}

/* CTA Section */
.page-the-thao-huong-dan-ca-cuoc-bong-da__cta-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  text-align: center;
  color: #ffffff;
}

.page-the-thao-huong-dan-ca-cuoc-bong-da__cta-section .page-the-thao-huong-dan-ca-cuoc-bong-da__section-title {
  color: #ffffff;
  margin-bottom: 25px;
}

.page-the-thao-huong-dan-ca-cuoc-bong-da__cta-section .page-the-thao-huong-dan-ca-cuoc-bong-da__section-description {
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-the-thao-huong-dan-ca-cuoc-bong-da__cta-section .page-the-thao-huong-dan-ca-cuoc-bong-da__cta-buttons {
  justify-content: center;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-the-thao-huong-dan-ca-cuoc-bong-da__hero-title {
    font-size: 2.5em;
  }
  .page-the-thao-huong-dan-ca-cuoc-bong-da__section-title {
    font-size: 2em;
  }
  .page-the-thao-huong-dan-ca-cuoc-bong-da__guide-subtitle {
    font-size: 1.6em;
  }
  .page-the-thao-huong-dan-ca-cuoc-bong-da__icon-box-media {
    width: 200px;
    height: 200px;
  }
  .page-the-thao-huong-dan-ca-cuoc-bong-da__hero-side-image {
    height: 500px;
  }
  .page-the-thao-huong-dan-ca-cuoc-bong-da__guide-image {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .page-the-thao-huong-dan-ca-cuoc-bong-da__container,
  .page-the-thao-huong-dan-ca-cuoc-bong-da__hero-container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* HERO 双栏 - Mobile adaptation */
  .page-the-thao-huong-dan-ca-cuoc-bong-da__hero-section {
    padding-top: 10px !important;
  }
  .page-the-thao-huong-dan-ca-cuoc-bong-da__hero-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .page-the-thao-huong-dan-ca-cuoc-bong-da__hero-content {
    text-align: center;
    flex: 1 1 100%;
  }
  .page-the-thao-huong-dan-ca-cuoc-bong-da__hero-title {
    font-size: 2em;
    max-width: 100%;
  }
  .page-the-thao-huong-dan-ca-cuoc-bong-da__hero-description {
    font-size: 1em;
  }
  .page-the-thao-huong-dan-ca-cuoc-bong-da__hero-image {
    flex: 1 1 100%;
  }
  .page-the-thao-huong-dan-ca-cuoc-bong-da__hero-side-image {
    height: 300px !important; /* Smaller height for mobile hero */
    object-fit: contain;
  }
  .page-the-thao-huong-dan-ca-cuoc-bong-da__hero-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  /* Buttons - Mobile adaptation */
  .page-the-thao-huong-dan-ca-cuoc-bong-da__btn-primary,
  .page-the-thao-huong-dan-ca-cuoc-bong-da__btn-secondary,
  .page-the-thao-huong-dan-ca-cuoc-bong-da a[class*="button"],
  .page-the-thao-huong-dan-ca-cuoc-bong-da a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-the-thao-huong-dan-ca-cuoc-bong-da__hero-cta-buttons,
  .page-the-thao-huong-dan-ca-cuoc-bong-da__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column; /* Ensure vertical stacking for buttons */
  }

  /* Module1 three-column circular image - Mobile adaptation */
  .page-the-thao-huong-dan-ca-cuoc-bong-da__intro-grid {
    grid-template-columns: 1fr;
  }
  .page-the-thao-huong-dan-ca-cuoc-bong-da__icon-box-media {
    width: 200px !important;
    height: 200px !important;
    margin-left: auto;
    margin-right: auto;
  }
  .page-the-thao-huong-dan-ca-cuoc-bong-da__icon-box-title {
    font-size: 1.3em;
  }

  /* Guide/Promo/Trust/FAQ/Blog/Intro Layout - Mobile adaptation */
  .page-the-thao-huong-dan-ca-cuoc-bong-da__section-title {
    font-size: 1.8em;
  }
  .page-the-thao-huong-dan-ca-cuoc-bong-da__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-the-thao-huong-dan-ca-cuoc-bong-da__guide-subtitle {
    font-size: 1.5em;
  }
  .page-the-thao-huong-dan-ca-cuoc-bong-da__guide-item p,
  .page-the-thao-huong-dan-ca-cuoc-bong-da__guide-item li {
    font-size: 0.95em;
  }
  .page-the-thao-huong-dan-ca-cuoc-bong-da__guide-image {
    height: auto !important;
    max-height: 250px;
    object-fit: cover;
  }
  .page-the-thao-huong-dan-ca-cuoc-bong-da__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-the-thao-huong-dan-ca-cuoc-bong-da__faq-answer {
    padding: 15px 20px;
  }

  /* General images - Mobile adaptation */
  .page-the-thao-huong-dan-ca-cuoc-bong-da img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  /* CTA Section - Mobile adaptation */
  .page-the-thao-huong-dan-ca-cuoc-bong-da__cta-section {
    padding: 50px 0;
  }
  .page-the-thao-huong-dan-ca-cuoc-bong-da__cta-section .page-the-thao-huong-dan-ca-cuoc-bong-da__section-title {
    font-size: 1.8em;
  }
  .page-the-thao-huong-dan-ca-cuoc-bong-da__cta-section .page-the-thao-huong-dan-ca-cuoc-bong-da__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
}