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

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-color-dark: #333333;
  --text-color-light: #FFFFFF;
  --button-login-color: #EA7C07;
  --background-color: #FFFFFF;
  --black-color: #000000;
}

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

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

.page-the-thao-ca-cuoc-bong-da__hero-section {
  padding-top: 10px; /* Fixed header spacing */
  padding-bottom: 60px;
  background-color: var(--background-color);
}

.page-the-thao-ca-cuoc-bong-da__hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 40px 15px;
}

.page-the-thao-ca-cuoc-bong-da__hero-content {
  flex: 1 1 50%;
  min-width: 300px;
  color: var(--text-color-dark);
}

.page-the-thao-ca-cuoc-bong-da__hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-the-thao-ca-cuoc-bong-da__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: var(--text-color-dark);
}

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

.page-the-thao-ca-cuoc-bong-da__hero-side-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-the-thao-ca-cuoc-bong-da__cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-the-thao-ca-cuoc-bong-da__btn-primary,
.page-the-thao-ca-cuoc-bong-da__btn-secondary,
.page-the-thao-ca-cuoc-bong-da__btn-large {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-the-thao-ca-cuoc-bong-da__btn-primary {
  background-color: var(--primary-color);
  color: var(--text-color-light);
  border: 2px solid var(--primary-color);
}

.page-the-thao-ca-cuoc-bong-da__btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
  transform: translateY(-2px);
}

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

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

.page-the-thao-ca-cuoc-bong-da__btn-large {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.page-the-thao-ca-cuoc-bong-da__content-section,
.page-the-thao-ca-cuoc-bong-da__tips-section {
  padding: 60px 0;
  background-color: var(--background-color);
}

.page-the-thao-ca-cuoc-bong-da__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-the-thao-ca-cuoc-bong-da__section-title--white {
  color: var(--text-color-light);
}

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

.page-the-thao-ca-cuoc-bong-da__section-description--white {
  color: var(--text-color-light);
}

.page-the-thao-ca-cuoc-bong-da__feature-grid,
.page-the-thao-ca-cuoc-bong-da__betting-types-grid,
.page-the-thao-ca-cuoc-bong-da__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-the-thao-ca-cuoc-bong-da__feature-item,
.page-the-thao-ca-cuoc-bong-da__betting-type-item,
.page-the-thao-ca-cuoc-bong-da__tip-item {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-the-thao-ca-cuoc-bong-da__feature-item:hover,
.page-the-thao-ca-cuoc-bong-da__betting-type-item:hover,
.page-the-thao-ca-cuoc-bong-da__tip-item:hover {
  transform: translateY(-5px);
}

.page-the-thao-ca-cuoc-bong-da__feature-image,
.page-the-thao-ca-cuoc-bong-da__betting-type-image,
.page-the-thao-ca-cuoc-bong-da__tip-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px;
  border-radius: 8px;
}

.page-the-thao-ca-cuoc-bong-da__feature-title,
.page-the-thao-ca-cuoc-bong-da__betting-type-title,
.page-the-thao-ca-cuoc-bong-da__tip-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-the-thao-ca-cuoc-bong-da__feature-text,
.page-the-thao-ca-cuoc-bong-da__betting-type-text,
.page-the-thao-ca-cuoc-bong-da__tip-text {
  font-size: 1rem;
  color: var(--text-color-dark);
}

.page-the-thao-ca-cuoc-bong-da__guide-section {
  padding: 80px 0;
  background-color: var(--primary-color);
}

.page-the-thao-ca-cuoc-bong-da__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.page-the-thao-ca-cuoc-bong-da__step-item {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-the-thao-ca-cuoc-bong-da__step-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px;
  border-radius: 8px;
}

.page-the-thao-ca-cuoc-bong-da__step-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-the-thao-ca-cuoc-bong-da__step-text {
  font-size: 1rem;
  color: var(--text-color-dark);
}

.page-the-thao-ca-cuoc-bong-da__faq-section {
  padding: 60px 0;
  background-color: var(--background-color);
}

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

.page-the-thao-ca-cuoc-bong-da__faq-item {
  background-color: var(--secondary-color);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

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

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

.page-the-thao-ca-cuoc-bong-da__faq-item[open] .page-the-thao-ca-cuoc-bong-da__faq-question {
  border-bottom: 1px solid transparent;
}

.page-the-thao-ca-cuoc-bong-da__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

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

.page-the-thao-ca-cuoc-bong-da__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  color: var(--text-color-dark);
  background-color: var(--secondary-color);
}

.page-the-thao-ca-cuoc-bong-da__faq-answer p {
  margin-bottom: 10px;
}

.page-the-thao-ca-cuoc-bong-da__cta-bottom-section {
  padding: 80px 0;
  background-color: var(--primary-color);
  text-align: center;
}

.page-the-thao-ca-cuoc-bong-da__cta-bottom-container {
  max-width: 900px;
}

.page-the-thao-ca-cuoc-bong-da__cta-bottom-section .page-the-thao-ca-cuoc-bong-da__section-title,
.page-the-thao-ca-cuoc-bong-da__cta-bottom-section .page-the-thao-ca-cuoc-bong-da__section-description {
  color: var(--text-color-light);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-the-thao-ca-cuoc-bong-da__hero-container {
    flex-direction: column;
    text-align: center;
  }

  .page-the-thao-ca-cuoc-bong-da__hero-content,
  .page-the-thao-ca-cuoc-bong-da__hero-image {
    flex: 1 1 100%;
  }

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

@media (max-width: 768px) {
  .page-the-thao-ca-cuoc-bong-da {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-the-thao-ca-cuoc-bong-da__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-the-thao-ca-cuoc-bong-da__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px !important;
  }

  .page-the-thao-ca-cuoc-bong-da__hero-container {
    padding: 30px 15px !important;
    gap: 30px;
  }

  .page-the-thao-ca-cuoc-bong-da__hero-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
  }

  .page-the-thao-ca-cuoc-bong-da__hero-description {
    font-size: 1rem !important;
    margin-bottom: 20px;
  }

  .page-the-thao-ca-cuoc-bong-da__cta-buttons {
    flex-direction: column !important;
    gap: 10px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-the-thao-ca-cuoc-bong-da__btn-primary,
  .page-the-thao-ca-cuoc-bong-da__btn-secondary,
  .page-the-thao-ca-cuoc-bong-da__btn-large,
  .page-the-thao-ca-cuoc-bong-da a[class*="button"],
  .page-the-thao-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-ca-cuoc-bong-da__content-section,
  .page-the-thao-ca-cuoc-bong-da__guide-section,
  .page-the-thao-ca-cuoc-bong-da__tips-section,
  .page-the-thao-ca-cuoc-bong-da__faq-section,
  .page-the-thao-ca-cuoc-bong-da__cta-bottom-section {
    padding: 40px 0 !important;
  }

  .page-the-thao-ca-cuoc-bong-da__section-title {
    font-size: 2rem !important;
    margin-bottom: 15px !important;
  }

  .page-the-thao-ca-cuoc-bong-da__section-description {
    font-size: 0.95rem !important;
    margin-bottom: 30px !important;
  }

  .page-the-thao-ca-cuoc-bong-da__feature-grid,
  .page-the-thao-ca-cuoc-bong-da__betting-types-grid,
  .page-the-thao-ca-cuoc-bong-da__tips-grid,
  .page-the-thao-ca-cuoc-bong-da__guide-steps {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .page-the-thao-ca-cuoc-bong-da__feature-item,
  .page-the-thao-ca-cuoc-bong-da__betting-type-item,
  .page-the-thao-ca-cuoc-bong-da__tip-item,
  .page-the-thao-ca-cuoc-bong-da__step-item {
    padding: 20px !important;
  }

  .page-the-thao-ca-cuoc-bong-da__feature-image,
  .page-the-thao-ca-cuoc-bong-da__betting-type-image,
  .page-the-thao-ca-cuoc-bong-da__tip-image,
  .page-the-thao-ca-cuoc-bong-da__step-image,
  .page-the-thao-ca-cuoc-bong-da img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .page-the-thao-ca-cuoc-bong-da__feature-title,
  .page-the-thao-ca-cuoc-bong-da__betting-type-title,
  .page-the-thao-ca-cuoc-bong-da__tip-title,
  .page-the-thao-ca-cuoc-bong-da__step-title {
    font-size: 1.3rem !important;
    margin-bottom: 10px !important;
  }

  .page-the-thao-ca-cuoc-bong-da__feature-text,
  .page-the-thao-ca-cuoc-bong-da__betting-type-text,
  .page-the-thao-ca-cuoc-bong-da__tip-text,
  .page-the-thao-ca-cuoc-bong-da__step-text {
    font-size: 0.9rem !important;
  }

  .page-the-thao-ca-cuoc-bong-da__faq-question {
    padding: 15px 20px !important;
    font-size: 1rem !important;
  }

  .page-the-thao-ca-cuoc-bong-da__faq-answer {
    padding: 10px 20px 15px !important;
    font-size: 0.9rem !important;
  }
}

@media (max-width: 480px) {
  .page-the-thao-ca-cuoc-bong-da__hero-title {
    font-size: clamp(1.5rem, 10vw, 2.2rem) !important;
  }

  .page-the-thao-ca-cuoc-bong-da__section-title {
    font-size: 1.8rem !important;
  }
}