/* style/blog-meo-ca-cuoc-the-thao-89win.css */

:root {
  --primary-color: #113B7A;
  --secondary-color: #1D5FD1;
  --button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  --card-bg: #10233F;
  --text-main: #F3F8FF;
  --text-secondary: #AFC4E8;
  --border-color: #244D84;
  --glow-color: #4FA8FF;
  --gold-color: #F2C14E;
  --divider-color: #1B3357;
  --deep-navy: #08162B;
}

.page-blog-meo-ca-cuoc-the-thao-89win {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Default text color for the page */
  background-color: var(--deep-navy); /* From shared.css, ensuring contrast */
}

.page-blog-meo-ca-cuoc-the-thao-89win__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.page-blog-meo-ca-cuoc-the-thao-89win__hero-title-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  background-color: var(--deep-navy);
  text-align: center;
}

.page-blog-meo-ca-cuoc-the-thao-89win__main-title {
  font-size: clamp(2em, 4vw, 3em); /* Responsive font size for H1 */
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-blog-meo-ca-cuoc-the-thao-89win__intro-text {
  font-size: 1.1em;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-blog-meo-ca-cuoc-the-thao-89win__content-area {
  padding: 40px 0;
  background-color: var(--deep-navy);
}

.page-blog-meo-ca-cuoc-the-thao-89win__article-meta {
  font-size: 0.9em;
  color: var(--text-secondary);
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.page-blog-meo-ca-cuoc-the-thao-89win__meta-item {
  padding: 5px 10px;
  background-color: var(--card-bg);
  border-radius: 5px;
}

.page-blog-meo-ca-cuoc-the-thao-89win__article-image-wrapper {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-meo-ca-cuoc-the-thao-89win__article-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-meo-ca-cuoc-the-thao-89win p {
  margin-bottom: 20px;
  font-size: 1em;
  color: var(--text-main);
}

.page-blog-meo-ca-cuoc-the-thao-89win strong {
  color: var(--gold-color);
}

.page-blog-meo-ca-cuoc-the-thao-89win__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em); /* Responsive font size for H2 */
  font-weight: 600;
  color: var(--gold-color);
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.page-blog-meo-ca-cuoc-the-thao-89win__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 3px;
  background: var(--button-gradient);
  border-radius: 2px;
}

.page-blog-meo-ca-cuoc-the-thao-89win__sub-title {
  font-size: clamp(1.4em, 2.5vw, 1.8em); /* Responsive font size for H3 */
  font-weight: 600;
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-meo-ca-cuoc-the-thao-89win__list,
.page-blog-meo-ca-cuoc-the-thao-89win__list-ordered {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-blog-meo-ca-cuoc-the-thao-89win__list li,
.page-blog-meo-ca-cuoc-the-thao-89win__list-ordered li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: var(--text-main);
}

.page-blog-meo-ca-cuoc-the-thao-89win__list li::before {
  content: '✔';
  color: var(--gold-color);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-blog-meo-ca-cuoc-the-thao-89win__list-ordered li::before {
  content: counter(list-item) '. ';
  counter-increment: list-item;
  color: var(--gold-color);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-blog-meo-ca-cuoc-the-thao-89win a {
  color: var(--glow-color);
  text-decoration: none;
}

.page-blog-meo-ca-cuoc-the-thao-89win a:hover {
  text-decoration: underline;
}

.page-blog-meo-ca-cuoc-the-thao-89win__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.page-blog-meo-ca-cuoc-the-thao-89win__button-group--bottom {
  margin-bottom: 0;
  margin-top: 50px;
}

.page-blog-meo-ca-cuoc-the-thao-89win__cta-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-meo-ca-cuoc-the-thao-89win__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-meo-ca-cuoc-the-thao-89win__btn-primary:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-meo-ca-cuoc-the-thao-89win__btn-secondary {
  background: var(--card-bg);
  color: var(--glow-color);
  border: 2px solid var(--border-color);
}

.page-blog-meo-ca-cuoc-the-thao-89win__btn-secondary:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
}

.page-blog-meo-ca-cuoc-the-thao-89win__faq-list {
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-meo-ca-cuoc-the-thao-89win__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-blog-meo-ca-cuoc-the-thao-89win__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-main);
  font-size: 1.1em;
  list-style: none;
  user-select: none; /* Prevent text selection on click */
}

.page-blog-meo-ca-cuoc-the-thao-89win__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-meo-ca-cuoc-the-thao-89win__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--gold-color);
  transition: transform 0.3s ease;
}

.page-blog-meo-ca-cuoc-the-thao-89win__faq-item[open] .page-blog-meo-ca-cuoc-the-thao-89win__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-meo-ca-cuoc-the-thao-89win__faq-answer {
  padding: 0 25px 20px;
  color: var(--text-secondary);
  font-size: 0.95em;
}

.page-blog-meo-ca-cuoc-the-thao-89win__faq-answer p {
  margin-bottom: 0;
}

/* --- Responsive Styles --- */
@media (max-width: 768px) {
  .page-blog-meo-ca-cuoc-the-thao-89win {
    font-size: 16px;
    line-height: 1.5;
  }

  .page-blog-meo-ca-cuoc-the-thao-89win__container {
    padding: 0 15px !important;
  }

  .page-blog-meo-ca-cuoc-the-thao-89win__hero-title-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
  }

  .page-blog-meo-ca-cuoc-the-thao-89win__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
    margin-bottom: 10px;
  }

  .page-blog-meo-ca-cuoc-the-thao-89win__intro-text {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-meo-ca-cuoc-the-thao-89win__content-area {
    padding: 30px 0;
  }

  .page-blog-meo-ca-cuoc-the-thao-89win__article-meta {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }

  .page-blog-meo-ca-cuoc-the-thao-89win__article-image-wrapper {
    margin-bottom: 20px;
  }

  .page-blog-meo-ca-cuoc-the-thao-89win__article-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-meo-ca-cuoc-the-thao-89win p {
    font-size: 0.95em;
    margin-bottom: 15px;
  }

  .page-blog-meo-ca-cuoc-the-thao-89win__section-title {
    font-size: clamp(1.6em, 6vw, 2.2em);
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-blog-meo-ca-cuoc-the-thao-89win__sub-title {
    font-size: clamp(1.2em, 5vw, 1.6em);
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-blog-meo-ca-cuoc-the-thao-89win__list li,
  .page-blog-meo-ca-cuoc-the-thao-89win__list-ordered li {
    font-size: 0.95em;
    margin-bottom: 8px;
  }

  .page-blog-meo-ca-cuoc-the-thao-89win__button-group {
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
    margin-bottom: 30px;
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .page-blog-meo-ca-cuoc-the-thao-89win__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-meo-ca-cuoc-the-thao-89win__faq-list {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .page-blog-meo-ca-cuoc-the-thao-89win__faq-item {
    margin-bottom: 10px;
  }

  .page-blog-meo-ca-cuoc-the-thao-89win__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-meo-ca-cuoc-the-thao-89win__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.9em;
  }

  /* General image and container responsive styles */
  .page-blog-meo-ca-cuoc-the-thao-89win img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }

  .page-blog-meo-ca-cuoc-the-thao-89win__section,
  .page-blog-meo-ca-cuoc-the-thao-89win__card,
  .page-blog-meo-ca-cuoc-the-thao-89win__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}