/* Biến màu sắc */
:root {
  --mu8888-primary-color: #FF8C1A;
  --mu8888-secondary-color: #FFA53A;
  --mu8888-btn-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  --mu8888-card-bg: #17191F;
  --mu8888-background: #0D0E12;
  --mu8888-text-main: #FFF3E6;
  --mu8888-border-color: #A84F0C;
  --mu8888-glow-color: #FFB04D;
  --mu8888-deep-orange: #D96800;
  --mu8888-text-dark: #333333;
  --mu8888-text-light: #ffffff;
}

/* Đảm bảo màu chữ tương phản với màu nền body (giả định body background là dark) */
.page-blog-latest-sports-analysis {
  color: var(--mu8888-text-main); /* Sử dụng màu chữ sáng */
  background-color: var(--mu8888-background); /* Nền tối */
}

.page-blog-latest-sports-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-latest-sports-analysis__section {
  padding: 60px 0;
}

.page-blog-latest-sports-analysis__dark-section {
  background-color: var(--mu8888-card-bg);
  color: var(--mu8888-text-light);
}

.page-blog-latest-sports-analysis__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--mu8888-secondary-color);
  position: relative;
  padding-bottom: 15px;
}

.page-blog-latest-sports-analysis__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--mu8888-primary-color);
  border-radius: 2px;
}

.page-blog-latest-sports-analysis p {
  line-height: 1.8;
  margin-bottom: 1em;
  color: var(--mu8888-text-main);
}

.page-blog-latest-sports-analysis__article-body {
  max-width: 900px;
  margin: 0 auto 40px auto;
  font-size: 17px;
  color: var(--mu8888-text-main);
}

.page-blog-latest-sports-analysis__article-figure {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.page-blog-latest-sports-analysis__hero-section {
  position: relative;
  padding-top: 10px; /* Nhỏ hơn header-offset */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-blog-latest-sports-analysis__hero-image-wrapper {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.page-blog-latest-sports-analysis__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-blog-latest-sports-analysis__hero-content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5); /* Lớp phủ để chữ dễ đọc */
  padding: 20px;
  box-sizing: border-box;
}

.page-blog-latest-sports-analysis__main-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--mu8888-text-light);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-latest-sports-analysis__subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--mu8888-text-main);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-latest-sports-analysis__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-latest-sports-analysis__btn-primary,
.page-blog-latest-sports-analysis__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-latest-sports-analysis__btn-primary {
  background: var(--mu8888-btn-gradient);
  color: var(--mu8888-text-light);
  border: none;
  box-shadow: 0 5px 15px rgba(255, 140, 26, 0.4);
}

.page-blog-latest-sports-analysis__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 140, 26, 0.6);
}

.page-blog-latest-sports-analysis__btn-secondary {
  background: transparent;
  color: var(--mu8888-secondary-color);
  border: 2px solid var(--mu8888-secondary-color);
}

.page-blog-latest-sports-analysis__btn-secondary:hover {
  background: var(--mu8888-secondary-color);
  color: var(--mu8888-text-light);
}

/* Sports Highlight Section */
.page-blog-latest-sports-analysis__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-latest-sports-analysis__card {
  background: var(--mu8888-card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: var(--mu8888-text-main);
  border: 1px solid var(--mu8888-border-color);
}

.page-blog-latest-sports-analysis__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-blog-latest-sports-analysis__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-blog-latest-sports-analysis__card-title {
  font-size: 22px;
  font-weight: 700;
  margin: 20px 20px 10px 20px;
  color: var(--mu8888-secondary-color);
}

.page-blog-latest-sports-analysis__card-text {
  font-size: 16px;
  margin: 0 20px 20px 20px;
  flex-grow: 1;
}

/* Methodology Section */
.page-blog-latest-sports-analysis__list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-latest-sports-analysis__list-item {
  background: var(--mu8888-card-bg);
  border: 1px solid var(--mu8888-border-color);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-latest-sports-analysis__list-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--mu8888-secondary-color);
  margin-bottom: 15px;
}

/* CTA Section */
.page-blog-latest-sports-analysis__cta-section {
  text-align: center;
  padding: 80px 0;
  background-color: var(--mu8888-card-bg);
  color: var(--mu8888-text-main);
}

.page-blog-latest-sports-analysis__cta-text {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-latest-sports-analysis__cta-button-lg {
  padding: 18px 40px;
  font-size: 20px;
  margin-bottom: 40px;
}

.page-blog-latest-sports-analysis__cta-image {
  max-width: 700px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* FAQ Section */
details.page-blog-latest-sports-analysis__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid var(--mu8888-border-color);
  overflow: hidden;
  background: var(--mu8888-card-bg);
  color: var(--mu8888-text-main);
}
details.page-blog-latest-sports-analysis__faq-item summary.page-blog-latest-sports-analysis__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;
}
details.page-blog-latest-sports-analysis__faq-item summary.page-blog-latest-sports-analysis__faq-question::-webkit-details-marker {
  display: none;
}
details.page-blog-latest-sports-analysis__faq-item summary.page-blog-latest-sports-analysis__faq-question:hover {
  background: rgba(var(--mu8888-primary-color), 0.1);
}
.page-blog-latest-sports-analysis__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--mu8888-secondary-color);
}
.page-blog-latest-sports-analysis__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--mu8888-secondary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-blog-latest-sports-analysis__faq-item .page-blog-latest-sports-analysis__faq-answer {
  padding: 0 20px 20px;
  background: rgba(var(--mu8888-primary-color), 0.05);
  border-radius: 0 0 10px 10px;
}

/* General Image Styling */
.page-blog-latest-sports-analysis img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-latest-sports-analysis__hero-content-wrapper {
    padding: 15px;
  }
  .page-blog-latest-sports-analysis__main-title {
    font-size: clamp(32px, 4.5vw, 48px);
  }
  .page-blog-latest-sports-analysis__subtitle {
    font-size: clamp(16px, 2.2vw, 20px);
  }
  .page-blog-latest-sports-analysis__btn-primary,
  .page-blog-latest-sports-analysis__btn-secondary {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-blog-latest-sports-analysis__section {
    padding: 50px 0;
  }
  .page-blog-latest-sports-analysis__section-title {
    font-size: clamp(26px, 3.5vw, 38px);
  }
  .page-blog-latest-sports-analysis__card-title {
    font-size: 20px;
  }
  .page-blog-latest-sports-analysis__list-title {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-blog-latest-sports-analysis__hero-section {
    padding-top: 10px; /* 小顶距 */
  }
  .page-blog-latest-sports-analysis__hero-image-wrapper {
    padding-bottom: 75%; /* 4:3 Aspect Ratio for mobile hero */
  }
  .page-blog-latest-sports-analysis__hero-image {
    object-fit: contain !important; /* 禁止裁切两侧 */
    aspect-ratio: unset !important;
    position: relative; /* Change to relative for better mobile flow if content below */
    height: auto; /* Allow height to adjust */
    max-height: 300px; /* Max height for mobile */
  }
  .page-blog-latest-sports-analysis__hero-content-wrapper {
    position: relative; /* Ensure content flows below image */
    background: none; /* Remove overlay if image is 'contain' */
    padding: 20px 15px;
    text-align: center;
    height: auto;
    display: block;
  }
  .page-blog-latest-sports-analysis__main-title {
    font-size: clamp(28px, 8vw, 40px);
    margin-bottom: 15px;
    color: var(--mu8888-secondary-color); /* Use primary brand color for visibility */
  }
  .page-blog-latest-sports-analysis__subtitle {
    font-size: clamp(15px, 4vw, 18px);
    margin-bottom: 25px;
    color: var(--mu8888-text-main);
  }
  .page-blog-latest-sports-analysis__cta-buttons {
    flex-direction: column; /* Nút dọc */
    gap: 15px;
  }

  /* General content area padding for mobile */
  .page-blog-latest-sports-analysis__container {
    padding: 0 15px;
  }

  /* Sản phẩm/dịch vụ/blog card grid */
  .page-blog-latest-sports-analysis__grid-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Tiêu đề phần */
  .page-blog-latest-sports-analysis__section-title {
    font-size: clamp(24px, 7vw, 32px);
    margin-bottom: 30px;
  }

  /* Nội dung bài viết và hình ảnh */
  .page-blog-latest-sports-analysis__article-body {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-blog-latest-sports-analysis__article-figure {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 15px auto;
  }

  /* Hình ảnh chung và các container */
  .page-blog-latest-sports-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-latest-sports-analysis__section,
  .page-blog-latest-sports-analysis__card,
  .page-blog-latest-sports-analysis__container,
  .page-blog-latest-sports-analysis__list-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-latest-sports-analysis__card {
    padding: 0;
  }
  .page-blog-latest-sports-analysis__card-title {
    font-size: 18px;
    margin: 15px;
  }
  .page-blog-latest-sports-analysis__card-text {
    font-size: 15px;
    margin: 0 15px 15px 15px;
  }

  /* Nút và container nút */
  .page-blog-latest-sports-analysis__btn-primary,
  .page-blog-latest-sports-analysis__btn-secondary,
  .page-blog-latest-sports-analysis a[class*="button"],
  .page-blog-latest-sports-analysis 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-blog-latest-sports-analysis__cta-buttons,
  .page-blog-latest-sports-analysis__button-group,
  .page-blog-latest-sports-analysis__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-blog-latest-sports-analysis__cta-buttons {
    flex-direction: column; /* Nút dọc */
  }

  /* FAQ */
  details.page-blog-latest-sports-analysis__faq-item summary.page-blog-latest-sports-analysis__faq-question { padding: 15px; }
  .page-blog-latest-sports-analysis__faq-qtext { font-size: 16px; }
  details.page-blog-latest-sports-analysis__faq-item .page-blog-latest-sports-analysis__faq-answer { padding: 0 15px 15px; }
}