/* style/resources-live-cockfighting-guide.css */

/* 智能文字颜色选择器 - Dựa trên body background var(--dark-bg-1) */
.page-resources-live-cockfighting-guide {
  color: #f0f0f0; /* Sử dụng màu chữ nhạt cho nền tối */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

.page-resources-live-cockfighting-guide a {
  color: #FFD700; /* Màu vàng kim cho link */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-live-cockfighting-guide a:hover {
  color: #FF4500; /* Màu cam đỏ khi hover */
}

.page-resources-live-cockfighting-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-live-cockfighting-guide__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #FFD700; /* Tiêu đề màu vàng kim */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-resources-live-cockfighting-guide__sub-title {
  font-size: 24px;
  font-weight: 600;
  color: #FF4500; /* Tiêu đề phụ màu cam đỏ */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-live-cockfighting-guide__text-block p {
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-resources-live-cockfighting-guide__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-resources-live-cockfighting-guide__list li {
  margin-bottom: 8px;
}

/* HERO Section */
.page-resources-live-cockfighting-guide__hero-guide-section {
  position: relative;
  width: 100%;
  padding-top: 10px; /* Khoảng cách cho fixed header */
  margin-top: 0;
  overflow: hidden;
}

.page-resources-live-cockfighting-guide__hero-guide-container {
  position: relative;
  width: 100%;
  max-height: 550px; /* Giới hạn chiều cao cho hero */
  overflow: hidden;
}

.page-resources-live-cockfighting-guide__hero-guide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-resources-live-cockfighting-guide__hero-guide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 40px 20px;
  text-align: center;
  box-sizing: border-box;
}

.page-resources-live-cockfighting-guide__hero-guide-title {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-live-cockfighting-guide__hero-guide-description {
  font-size: 18px;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
}

.page-resources-live-cockfighting-guide__hero-guide-btn {
  display: inline-block;
  background: #FF4500;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

.page-resources-live-cockfighting-guide__hero-guide-btn:hover {
  background: #E63900;
  transform: translateY(-3px);
}

/* Common Section Styles */
.page-resources-live-cockfighting-guide__dark-section {
  background: var(--dark-bg-1); /* Sử dụng biến từ shared.css */
  padding: 60px 0;
  color: #f0f0f0;
}

.page-resources-live-cockfighting-guide__light-bg {
  background: #f8f8f8; /* Nền sáng cho độ tương phản */
  padding: 60px 0;
  color: #333333;
}

.page-resources-live-cockfighting-guide__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}

/* Action Section */
.page-resources-live-cockfighting-guide__action-section {
  text-align: center;
}

.page-resources-live-cockfighting-guide__action-content {
  padding: 40px 20px;
  border-radius: 12px;
  background: #ffffff; /* Nền trắng cho phần kêu gọi hành động */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-resources-live-cockfighting-guide__action-description {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #333333;
}

.page-resources-live-cockfighting-guide__btn-primary,
.page-resources-live-cockfighting-guide__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin: 0 10px;
  text-align: center;
}

.page-resources-live-cockfighting-guide__btn-primary {
  background: #FF4500;
  color: #ffffff;
  border: 2px solid #FF4500;
  box-shadow: 0 4px 10px rgba(255, 69, 0, 0.3);
}

.page-resources-live-cockfighting-guide__btn-primary:hover {
  background: #E63900;
  border-color: #E63900;
  transform: translateY(-2px);
}

.page-resources-live-cockfighting-guide__btn-secondary {
  background: transparent;
  color: #FF4500;
  border: 2px solid #FF4500;
  box-shadow: 0 4px 10px rgba(255, 69, 0, 0.1);
}

.page-resources-live-cockfighting-guide__btn-secondary:hover {
  background: #FF4500;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-resources-live-cockfighting-guide__btn-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* Guide Section */
.page-resources-live-cockfighting-guide__grid-2-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-live-cockfighting-guide__grid-3-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-live-cockfighting-guide__guide-step-card,
.page-resources-live-cockfighting-guide__promo-card,
.page-resources-live-cockfighting-guide__blog-card {
  background: rgba(255, 255, 255, 0.08); /* Nền hơi trong suốt */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-live-cockfighting-guide__guide-step-card:hover,
.page-resources-live-cockfighting-guide__promo-card:hover,
.page-resources-live-cockfighting-guide__blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(255, 69, 0, 0.3);
}

.page-resources-live-cockfighting-guide__guide-step-image,
.page-resources-live-cockfighting-guide__promo-image,
.page-resources-live-cockfighting-guide__blog-image {
  width: 100%;
  height: 250px; /* Chiều cao cố định cho hình ảnh thẻ */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-resources-live-cockfighting-guide__card-title {
  font-size: 20px;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-resources-live-cockfighting-guide__guide-step-card p,
.page-resources-live-cockfighting-guide__promo-card p {
  font-size: 15px;
  color: #f0f0f0;
}

/* Thomo Section */
.page-resources-live-cockfighting-guide__thomo-section .page-resources-live-cockfighting-guide__grid-2-cols {
  align-items: center;
}

.page-resources-live-cockfighting-guide__thomo-image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-live-cockfighting-guide__thomo-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Tips Section */
.page-resources-live-cockfighting-guide__tips-item {
  background: #ffffff; /* Nền trắng cho thẻ tips */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
  color: #333333;
}

.page-resources-live-cockfighting-guide__tips-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-live-cockfighting-guide__tips-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-resources-live-cockfighting-guide__tips-item .page-resources-live-cockfighting-guide__card-title {
  color: #FF4500;
}

/* Support Section */
.page-resources-live-cockfighting-guide__support-section .page-resources-live-cockfighting-guide__grid-2-cols {
  align-items: center;
}

.page-resources-live-cockfighting-guide__support-image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-live-cockfighting-guide__support-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-resources-live-cockfighting-guide__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-resources-live-cockfighting-guide__contact-list li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #f0f0f0;
}

.page-resources-live-cockfighting-guide__contact-list li strong {
  color: #FFD700;
}

/* FAQ Section */
.page-resources-live-cockfighting-guide__faq-list {
  margin-top: 40px;
}

.page-resources-live-cockfighting-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-resources-live-cockfighting-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #333333;
}

.page-resources-live-cockfighting-guide__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-resources-live-cockfighting-guide__faq-question:active {
  background: #eeeeee;
}

.page-resources-live-cockfighting-guide__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #333333;
}

.page-resources-live-cockfighting-guide__faq-toggle {
  font-size: 26px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-resources-live-cockfighting-guide__faq-item.active .page-resources-live-cockfighting-guide__faq-toggle {
  color: #FF4500;
  transform: rotate(45deg);
}

.page-resources-live-cockfighting-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: #333333;
}

.page-resources-live-cockfighting-guide__faq-item.active .page-resources-live-cockfighting-guide__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 8px 8px;
  border-top: 1px solid #eee;
}

.page-resources-live-cockfighting-guide__faq-answer p {
  color: #333333;
}

/* Blog Section */
.page-resources-live-cockfighting-guide__blog-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  text-align: left;
  overflow: hidden;
}

.page-resources-live-cockfighting-guide__blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(255, 69, 0, 0.3);
}

.page-resources-live-cockfighting-guide__blog-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 12px 12px 0 0;
}

.page-resources-live-cockfighting-guide__blog-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-resources-live-cockfighting-guide__blog-title {
  font-size: 20px;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-resources-live-cockfighting-guide__blog-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-resources-live-cockfighting-guide__blog-title a:hover {
  color: #FF4500;
}

.page-resources-live-cockfighting-guide__blog-excerpt {
  font-size: 15px;
  color: #f0f0f0;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-resources-live-cockfighting-guide__blog-readmore {
  display: inline-block;
  color: #FF4500;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: auto;
}

.page-resources-live-cockfighting-guide__blog-readmore:hover {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-live-cockfighting-guide__hero-guide-title {
    font-size: 42px;
  }
  .page-resources-live-cockfighting-guide__section-title {
    font-size: 30px;
  }
  .page-resources-live-cockfighting-guide__sub-title {
    font-size: 22px;
  }
  .page-resources-live-cockfighting-guide__grid-2-cols,
  .page-resources-live-cockfighting-guide__grid-3-cols {
    grid-template-columns: 1fr;
  }
  .page-resources-live-cockfighting-guide__thomo-section .page-resources-live-cockfighting-guide__grid-2-cols,
  .page-resources-live-cockfighting-guide__support-section .page-resources-live-cockfighting-guide__grid-2-cols {
    grid-template-columns: 1fr;
  }
  .page-resources-live-cockfighting-guide__thomo-image-wrapper,
  .page-resources-live-cockfighting-guide__support-image-wrapper {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-resources-live-cockfighting-guide {
    font-size: 15px;
    line-height: 1.5;
  }
  .page-resources-live-cockfighting-guide__container {
    padding: 0 15px;
  }
  .page-resources-live-cockfighting-guide__hero-guide-overlay {
    padding: 20px 15px;
  }
  .page-resources-live-cockfighting-guide__hero-guide-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .page-resources-live-cockfighting-guide__hero-guide-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .page-resources-live-cockfighting-guide__hero-guide-btn {
    padding: 12px 25px;
    font-size: 18px;
  }
  .page-resources-live-cockfighting-guide__section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .page-resources-live-cockfighting-guide__sub-title {
    font-size: 20px;
  }
  .page-resources-live-cockfighting-guide__dark-section,
  .page-resources-live-cockfighting-guide__light-bg {
    padding: 40px 0;
  }
  .page-resources-live-cockfighting-guide__action-content {
    padding: 30px 15px;
  }
  .page-resources-live-cockfighting-guide__btn-primary,
  .page-resources-live-cockfighting-guide__btn-secondary {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }
  .page-resources-live-cockfighting-guide__guide-step-image,
  .page-resources-live-cockfighting-guide__promo-image,
  .page-resources-live-cockfighting-guide__blog-image {
    height: 180px;
  }
  .page-resources-live-cockfighting-guide__card-title {
    font-size: 18px;
  }
  .page-resources-live-cockfighting-guide__tips-image {
    height: 150px;
  }
  .page-resources-live-cockfighting-guide__faq-question {
    padding: 15px 20px;
  }
  .page-resources-live-cockfighting-guide__faq-question h3 {
    font-size: 16px;
  }
  .page-resources-live-cockfighting-guide__faq-toggle {
    font-size: 22px;
    width: 26px;
    height: 26px;
  }
  .page-resources-live-cockfighting-guide__faq-answer {
    padding: 0 20px;
  }
  .page-resources-live-cockfighting-guide__faq-item.active .page-resources-live-cockfighting-guide__faq-answer {
    padding: 15px 20px !important;
  }
  .page-resources-live-cockfighting-guide__blog-content {
    padding: 15px;
  }
  .page-resources-live-cockfighting-guide__blog-title {
    font-size: 18px;
  }
  .page-resources-live-cockfighting-guide__hero-guide-section {
    padding-top: 10px; /* Đảm bảo khoảng cách trên di động */
  }
  /* Tất cả hình ảnh phải thích ứng với chiều rộng màn hình */
  .page-resources-live-cockfighting-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-resources-live-cockfighting-guide__section,
  .page-resources-live-cockfighting-guide__card,
  .page-resources-live-cockfighting-guide__container,
  .page-resources-live-cockfighting-guide__guide-step-card,
  .page-resources-live-cockfighting-guide__promo-card,
  .page-resources-live-cockfighting-guide__blog-card,
  .page-resources-live-cockfighting-guide__thomo-image-wrapper,
  .page-resources-live-cockfighting-guide__support-image-wrapper,
  .page-resources-live-cockfighting-guide__tips-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .page-resources-live-cockfighting-guide__hero-guide-title {
    font-size: 28px;
  }
  .page-resources-live-cockfighting-guide__hero-guide-description {
    font-size: 15px;
  }
  .page-resources-live-cockfighting-guide__hero-guide-btn {
    font-size: 16px;
    padding: 10px 20px;
  }
  .page-resources-live-cockfighting-guide__section-title {
    font-size: 22px;
  }
  .page-resources-live-cockfighting-guide__sub-title {
    font-size: 18px;
  }
  .page-resources-live-cockfighting-guide__guide-step-image,
  .page-resources-live-cockfighting-guide__promo-image,
  .page-resources-live-cockfighting-guide__blog-image {
    height: 160px;
  }
  .page-resources-live-cockfighting-guide__card-title {
    font-size: 16px;
  }
  .page-resources-live-cockfighting-guide__tips-image {
    height: 120px;
  }
  .page-resources-live-cockfighting-guide__faq-question h3 {
    font-size: 14px;
  }
}