/* style/cockfighting-betting-tips.css */
.page-cockfighting-betting-tips {
  background-color: #08160F; /* Nền chính của trang */
  color: #F2FFF6; /* Màu chữ chính */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-cockfighting-betting-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* body đã padding-top, đây là phần đệm thêm */
  overflow: hidden;
  background-color: #08160F; /* Đảm bảo nền khớp */
}

.page-cockfighting-betting-tips__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Giới hạn chiều cao cho hình ảnh hero */
  overflow: hidden;
}

.page-cockfighting-betting-tips__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-cockfighting-betting-tips__hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  max-width: 900px;
}

.page-cockfighting-betting-tips__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #F2FFF6;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-cockfighting-betting-tips__description {
  font-size: 1.1rem;
  color: #A7D9B8;
  margin-bottom: 30px;
}

.page-cockfighting-betting-tips__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-cockfighting-betting-tips__btn-primary,
.page-cockfighting-betting-tips__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-cockfighting-betting-tips__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: none;
}

.page-cockfighting-betting-tips__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-cockfighting-betting-tips__btn-secondary {
  background: #11271B;
  color: #F2FFF6;
  border: 2px solid #2E7A4E;
}

.page-cockfighting-betting-tips__btn-secondary:hover {
  background: #2E7A4E;
  color: #F2FFF6;
}

.page-cockfighting-betting-tips__video-section {
  padding: 10px 0 60px 0;
  background-color: #08160F;
}

.page-cockfighting-betting-tips__video-container {
  width: 100%;
  max-width: 1000px; /* Giới hạn chiều rộng video */
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
}

.page-cockfighting-betting-tips__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin-top: 30px;
}

.page-cockfighting-betting-tips__video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.page-cockfighting-betting-tips__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.page-cockfighting-betting-tips__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-cockfighting-betting-tips__content-section,
.page-cockfighting-betting-tips__bet-types-section,
.page-cockfighting-betting-tips__strategy-section,
.page-cockfighting-betting-tips__faq-section,
.page-cockfighting-betting-tips__cta-bottom-section {
  padding: 60px 0;
  background-color: #08160F;
}

.page-cockfighting-betting-tips__text-block {
  margin-bottom: 40px;
  text-align: justify;
}

.page-cockfighting-betting-tips__text-block p {
  font-size: 1.05rem;
  color: #F2FFF6;
  margin-bottom: 20px;
}

.page-cockfighting-betting-tips__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-betting-tips__advantages-grid,
.page-cockfighting-betting-tips__bet-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting-betting-tips__card {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting-betting-tips__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-cockfighting-betting-tips__card-title {
  font-size: 1.5rem;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-cockfighting-betting-tips__card p {
  font-size: 1rem;
  color: #A7D9B8;
}

.page-cockfighting-betting-tips__strategy-item {
  margin-bottom: 40px;
  padding: 30px;
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
}

.page-cockfighting-betting-tips__strategy-title {
  font-size: 1.8rem;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-cockfighting-betting-tips__strategy-item p {
  font-size: 1.05rem;
  color: #F2FFF6;
  margin-bottom: 15px;
  text-align: justify;
}

.page-cockfighting-betting-tips__strategy-item ul {
  list-style: disc;
  margin-left: 25px;
  color: #A7D9B8;
  margin-bottom: 15px;
}

.page-cockfighting-betting-tips__strategy-item ul li {
  margin-bottom: 8px;
  font-size: 1rem;
}

.page-cockfighting-betting-tips__strategy-item ul li strong {
  color: #F2FFF6;
}

.page-cockfighting-betting-tips__cta-block {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #0A4B2C;
  border-radius: 10px;
  border: 1px solid #2E7A4E;
}

.page-cockfighting-betting-tips__cta-block .page-cockfighting-betting-tips__cta-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: #F2FFF6;
  margin-bottom: 20px;
  padding-top: 0;
}

.page-cockfighting-betting-tips__cta-block .page-cockfighting-betting-tips__cta-description {
  font-size: 1.1rem;
  color: #A7D9B8;
  margin-bottom: 30px;
}

.page-cockfighting-betting-tips__faq-list {
  margin-top: 40px;
}

.page-cockfighting-betting-tips__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-cockfighting-betting-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #11271B;
  color: #F2FFF6;
  font-size: 1.15rem;
  font-weight: 600;
  list-style: none; /* For details/summary */
}

.page-cockfighting-betting-tips__faq-question::-webkit-details-marker {
  display: none;
}

.page-cockfighting-betting-tips__faq-qtext {
  flex-grow: 1;
}

.page-cockfighting-betting-tips__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D;
}

.page-cockfighting-betting-tips__faq-answer {
  padding: 0 25px 20px 25px;
  color: #A7D9B8;
  font-size: 1rem;
  text-align: justify;
}

.page-cockfighting-betting-tips__faq-answer p {
  margin-bottom: 0;
}

.page-cockfighting-betting-tips__faq-answer a {
  color: #57E38D;
  text-decoration: underline;
}

.page-cockfighting-betting-tips__faq-answer a:hover {
  color: #F2C14E;
}

.page-cockfighting-betting-tips__cta-bottom-section {
  text-align: center;
  padding: 80px 0;
}

.page-cockfighting-betting-tips__cta-bottom-section .page-cockfighting-betting-tips__cta-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-betting-tips__cta-bottom-section .page-cockfighting-betting-tips__cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #F2FFF6;
  margin-bottom: 20px;
  padding-top: 0;
}

.page-cockfighting-betting-tips__cta-bottom-section .page-cockfighting-betting-tips__cta-description {
  font-size: 1.15rem;
  color: #A7D9B8;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-cockfighting-betting-tips__hero-content {
    padding: 30px 15px;
  }

  .page-cockfighting-betting-tips__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-cockfighting-betting-tips__section-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
  }

  .page-cockfighting-betting-tips__card-title {
    font-size: 1.3rem;
  }

  .page-cockfighting-betting-tips__strategy-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .page-cockfighting-betting-tips {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-cockfighting-betting-tips__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-cockfighting-betting-tips__hero-image-wrapper {
    max-height: 400px;
  }

  .page-cockfighting-betting-tips__hero-content {
    padding: 20px 15px;
  }

  .page-cockfighting-betting-tips__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-cockfighting-betting-tips__description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .page-cockfighting-betting-tips__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-cockfighting-betting-tips__btn-primary,
  .page-cockfighting-betting-tips__btn-secondary {
    width: 100%;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-cockfighting-betting-tips__video-section {
    padding-top: 10px !important; /* body đã承担 --header-offset，此处禁止 var(--header-offset) */
  }

  .page-cockfighting-betting-tips__video-container,
  .page-cockfighting-betting-tips__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-cockfighting-betting-tips__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-cockfighting-betting-tips__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 30px;
    padding-top: 40px;
  }

  .page-cockfighting-betting-tips__content-section,
  .page-cockfighting-betting-tips__bet-types-section,
  .page-cockfighting-betting-tips__strategy-section,
  .page-cockfighting-betting-tips__faq-section,
  .page-cockfighting-betting-tips__cta-bottom-section {
    padding: 40px 0;
  }

  .page-cockfighting-betting-tips__container {
    padding: 0 15px;
  }

  .page-cockfighting-betting-tips__text-block p,
  .page-cockfighting-betting-tips__card p,
  .page-cockfighting-betting-tips__strategy-item p,
  .page-cockfighting-betting-tips__strategy-item ul li,
  .page-cockfighting-betting-tips__faq-answer p {
    font-size: 0.95rem;
  }

  .page-cockfighting-betting-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-cockfighting-betting-tips__section,
  .page-cockfighting-betting-tips__card,
  .page-cockfighting-betting-tips__container,
  .page-cockfighting-betting-tips__cta-buttons,
  .page-cockfighting-betting-tips__cta-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-cockfighting-betting-tips__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-cockfighting-betting-tips__faq-answer {
    padding: 0 20px 15px 20px;
  }

  .page-cockfighting-betting-tips__cta-bottom-section .page-cockfighting-betting-tips__cta-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-cockfighting-betting-tips__cta-bottom-section .page-cockfighting-betting-tips__cta-description {
    font-size: 1rem;
  }

  .page-cockfighting-betting-tips__cta-block {
    padding: 30px 15px;
  }
}