/* style/resources-tr88-bet-game-strategy-analysis.css */

/* Biến CSS cục bộ cho trang */
:root {
  --page-primary-color: #017439;
  --page-secondary-color: #FFFFFF;
  --page-text-color-dark: #333333;
  --page-text-color-light: #ffffff;
  --page-register-color: #C30808;
  --page-login-color: #C30808;
  --page-register-login-font-color: #FFFF00;
}

.page-resources-tr88-bet-game-strategy-analysis {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--page-text-color-dark); /* Mặc định chữ tối trên nền sáng */
  background-color: var(--page-secondary-color); /* Nền trắng theo yêu cầu */
}

.page-resources-tr88-bet-game-strategy-analysis__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Đảm bảo không bị header che */
  background-color: var(--page-primary-color);
  color: var(--page-text-color-light);
  text-align: center;
  min-height: 500px;
  overflow: hidden;
}

.page-resources-tr88-bet-game-strategy-analysis__hero-content {
  z-index: 1;
  max-width: 900px;
  margin-right: 20px;
  text-align: left;
}

.page-resources-tr88-bet-game-strategy-analysis__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--page-text-color-light);
  line-height: 1.2;
}

.page-resources-tr88-bet-game-strategy-analysis__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.page-resources-tr88-bet-game-strategy-analysis__hero-cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
}

.page-resources-tr88-bet-game-strategy-analysis__hero-image-wrapper {
  z-index: 0;
  flex-shrink: 0;
}

.page-resources-tr88-bet-game-strategy-analysis__hero-image {
  width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-resources-tr88-bet-game-strategy-analysis__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-resources-tr88-bet-game-strategy-analysis__section-title {
  font-size: 2.5em;
  color: var(--page-primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-tr88-bet-game-strategy-analysis__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--page-register-color);
  border-radius: 2px;
}

.page-resources-tr88-bet-game-strategy-analysis__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
}

.page-resources-tr88-bet-game-strategy-analysis__game-strategies-grid,
.page-resources-tr88-bet-game-strategy-analysis__strategy-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-resources-tr88-bet-game-strategy-analysis__card {
  background-color: var(--page-secondary-color);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
  color: var(--page-text-color-dark);
}

.page-resources-tr88-bet-game-strategy-analysis__card.page-resources-tr88-bet-game-strategy-analysis__dark-bg {
  background-color: var(--page-primary-color);
  color: var(--page-text-color-light);
}

.page-resources-tr88-bet-game-strategy-analysis__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-tr88-bet-game-strategy-analysis__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-tr88-bet-game-strategy-analysis__card-title {
  font-size: 1.5em;
  color: var(--page-primary-color);
  margin-bottom: 15px;
}

.page-resources-tr88-bet-game-strategy-analysis__card.page-resources-tr88-bet-game-strategy-analysis__dark-bg .page-resources-tr88-bet-game-strategy-analysis__card-title {
  color: var(--page-text-color-light);
}

.page-resources-tr88-bet-game-strategy-analysis__card-text {
  font-size: 1em;
  line-height: 1.7;
  text-align: justify;
}

.page-resources-tr88-bet-game-strategy-analysis__image-text-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-tr88-bet-game-strategy-analysis__content-image {
  width: 50%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-resources-tr88-bet-game-strategy-analysis__text-content {
  flex: 1;
}

.page-resources-tr88-bet-game-strategy-analysis__text-content-title {
  font-size: 2em;
  color: var(--page-primary-color);
  margin-bottom: 20px;
}

.page-resources-tr88-bet-game-strategy-analysis__faq-list {
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-resources-tr88-bet-game-strategy-analysis__faq-item {
  background-color: var(--page-secondary-color);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-resources-tr88-bet-game-strategy-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #f5f5f5;
  color: var(--page-primary-color);
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-resources-tr88-bet-game-strategy-analysis__faq-question:hover {
  background-color: #e8e8e8;
}

.page-resources-tr88-bet-game-strategy-analysis__faq-question h3 {
  margin: 0;
  color: var(--page-primary-color);
}

.page-resources-tr88-bet-game-strategy-analysis__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-tr88-bet-game-strategy-analysis__faq-item.active .page-resources-tr88-bet-game-strategy-analysis__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-tr88-bet-game-strategy-analysis__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--page-text-color-dark);
  background-color: var(--page-secondary-color);
}

.page-resources-tr88-bet-game-strategy-analysis__faq-item.active .page-resources-tr88-bet-game-strategy-analysis__faq-answer {
  max-height: 1000px !important; /* Đảm bảo đủ cao cho nội dung */
  padding: 20px 25px;
}

.page-resources-tr88-bet-game-strategy-analysis__faq-answer p {
  margin-bottom: 0;
}

.page-resources-tr88-bet-game-strategy-analysis__cta-section {
  background-color: var(--page-primary-color);
  color: var(--page-text-color-light);
  padding: 60px 20px;
  text-align: center;
  border-radius: 10px;
  margin-top: 60px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-tr88-bet-game-strategy-analysis__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--page-text-color-light);
}

.page-resources-tr88-bet-game-strategy-analysis__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}

.page-resources-tr88-bet-game-strategy-analysis__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-tr88-bet-game-strategy-analysis__btn-primary,
.page-resources-tr88-bet-game-strategy-analysis__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-tr88-bet-game-strategy-analysis__btn-primary {
  background-color: var(--page-register-color);
  color: var(--page-register-login-font-color);
  border: 2px solid var(--page-register-color);
}

.page-resources-tr88-bet-game-strategy-analysis__btn-primary:hover {
  background-color: darken(var(--page-register-color), 10%);
  border-color: darken(var(--page-register-color), 10%);
}

.page-resources-tr88-bet-game-strategy-analysis__btn-secondary {
  background-color: var(--page-secondary-color);
  color: var(--page-primary-color);
  border: 2px solid var(--page-primary-color);
}

.page-resources-tr88-bet-game-strategy-analysis__btn-secondary:hover {
  background-color: var(--page-primary-color);
  color: var(--page-secondary-color);
}

/* Các lớp màu nền thông minh */
.page-resources-tr88-bet-game-strategy-analysis__dark-bg {
  color: var(--page-text-color-light); /* Chữ sáng trên nền tối */
}

.page-resources-tr88-bet-game-strategy-analysis__light-bg {
  color: var(--page-text-color-dark); /* Chữ tối trên nền sáng */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-tr88-bet-game-strategy-analysis__hero-content {
    margin-right: 0;
  }

  .page-resources-tr88-bet-game-strategy-analysis__hero-section {
    flex-direction: column;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-tr88-bet-game-strategy-analysis__hero-content {
    text-align: center;
  }

  .page-resources-tr88-bet-game-strategy-analysis__hero-cta-buttons {
    justify-content: center;
  }

  .page-resources-tr88-bet-game-strategy-analysis__hero-image {
    width: 100%;
    max-width: 600px;
    margin-top: 30px;
  }

  .page-resources-tr88-bet-game-strategy-analysis__image-text-block {
    flex-direction: column;
  }

  .page-resources-tr88-bet-game-strategy-analysis__content-image {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-resources-tr88-bet-game-strategy-analysis {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-tr88-bet-game-strategy-analysis__hero-title {
    font-size: 2.5em;
  }

  .page-resources-tr88-bet-game-strategy-analysis__hero-description,
  .page-resources-tr88-bet-game-strategy-analysis__cta-description {
    font-size: 1em;
  }

  .page-resources-tr88-bet-game-strategy-analysis__section-title {
    font-size: 2em;
  }

  .page-resources-tr88-bet-game-strategy-analysis__cta-title {
    font-size: 2.2em;
  }

  .page-resources-tr88-bet-game-strategy-analysis__game-strategies-grid,
  .page-resources-tr88-bet-game-strategy-analysis__strategy-cards-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-tr88-bet-game-strategy-analysis__card,
  .page-resources-tr88-bet-game-strategy-analysis__image-text-block {
    padding: 20px;
  }

  .page-resources-tr88-bet-game-strategy-analysis__hero-section,
  .page-resources-tr88-bet-game-strategy-analysis__content-area,
  .page-resources-tr88-bet-game-strategy-analysis__cta-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* 移动端图片强制适配 */
  .page-resources-tr88-bet-game-strategy-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-tr88-bet-game-strategy-analysis__hero-image-wrapper,
  .page-resources-tr88-bet-game-strategy-analysis__content-image-wrapper,
  .page-resources-tr88-bet-game-strategy-analysis__card-image-wrapper,
  .page-resources-tr88-bet-game-strategy-analysis__video-section,
  .page-resources-tr88-bet-game-strategy-analysis__video-container,
  .page-resources-tr88-bet-game-strategy-analysis__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 0;
    padding-right: 0;
  }

  .page-resources-tr88-bet-game-strategy-analysis__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }

  /* 移动端按钮强制适配 */
  .page-resources-tr88-bet-game-strategy-analysis__btn-primary,
  .page-resources-tr88-bet-game-strategy-analysis__btn-secondary,
  .page-resources-tr88-bet-game-strategy-analysis a[class*="button"],
  .page-resources-tr88-bet-game-strategy-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 !important;
    padding-right: 15px !important;
  }

  .page-resources-tr88-bet-game-strategy-analysis__hero-cta-buttons,
  .page-resources-tr88-bet-game-strategy-analysis__cta-buttons,
  .page-resources-tr88-bet-game-strategy-analysis__button-group,
  .page-resources-tr88-bet-game-strategy-analysis__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    flex-direction: column !important;
    gap: 10px !important;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-resources-tr88-bet-game-strategy-analysis__hero-title {
    font-size: 2em;
  }

  .page-resources-tr88-bet-game-strategy-analysis__section-title {
    font-size: 1.8em;
  }

  .page-resources-tr88-bet-game-strategy-analysis__cta-title {
    font-size: 1.8em;
  }

  .page-resources-tr88-bet-game-strategy-analysis__hero-cta-buttons,
  .page-resources-tr88-bet-game-strategy-analysis__cta-buttons {
    flex-direction: column;
  }
}