.page-cockfighting {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
  font-size: 16px;
}

.page-cockfighting a {
  color: #2AD16F; /* Liên kết mặc định */
  text-decoration: none;
}

.page-cockfighting a:hover {
  text-decoration: underline;
}

.page-cockfighting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

/* Hero Section */
.page-cockfighting__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 60px; /* Space below content */
  background-color: #08160F; /* Background */
  padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-cockfighting__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
}

.page-cockfighting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-cockfighting__hero-content {
  max-width: 800px;
  margin-top: 40px;
  padding: 0 15px;
}

.page-cockfighting__hero-title {
  font-size: 3.2em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow */
}

.page-cockfighting__hero-description {
  font-size: 1.2em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

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

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary,
.page-cockfighting__btn-small {
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-sizing: border-box;
  max-width: 100%;
}

.page-cockfighting__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

.page-cockfighting__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(34, 199, 104, 0.6);
}

.page-cockfighting__btn-secondary {
  background: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
  box-shadow: 0 5px 15px rgba(34, 199, 104, 0.2);
}

.page-cockfighting__btn-secondary:hover {
  background: #2AD16F;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(34, 199, 104, 0.4);
}

.page-cockfighting__btn-small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 20px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    border: none;
    display: inline-block;
    margin-top: 15px;
}

.page-cockfighting__btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(34, 199, 104, 0.4);
}


/* General Section Styling */
.page-cockfighting__section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

.page-cockfighting__section:nth-of-type(even) {
  background-color: #11271B; /* Card BG */
}

.page-cockfighting__section-title {
  font-size: 2.5em;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

.page-cockfighting__section-content {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.05em;
}

.page-cockfighting__section-content--flex {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-cockfighting__section-content--flex-reverse {
  display: flex;
  flex-direction: row-reverse;
  gap: 40px;
  align-items: center;
}

.page-cockfighting__text-block,
.page-cockfighting__image-block {
  flex: 1;
}

.page-cockfighting__image-block--center {
  text-align: center;
}

.page-cockfighting__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__feature-list,
.page-cockfighting__bet-type-list,
.page-cockfighting__strategy-list,
.page-cockfighting__promo-list,
.page-cockfighting__download-benefits {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-cockfighting__feature-item,
.page-cockfighting__bet-type-item,
.page-cockfighting__strategy-item,
.page-cockfighting__promo-item,
.page-cockfighting__download-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main for list items */
}

.page-cockfighting__feature-item::before,
.page-cockfighting__bet-type-item::before,
.page-cockfighting__strategy-item::before,
.page-cockfighting__promo-item::before,
.page-cockfighting__download-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2AD16F; /* Main color for checkmark */
  font-weight: bold;
  font-size: 1.2em;
}

.page-cockfighting__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-cockfighting__guide-step {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-cockfighting__guide-step-title {
  color: #F2FFF6; /* Text Main */
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-cockfighting__guide-step p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
  margin-bottom: 15px;
}

/* Video Section */
.page-cockfighting__section--video {
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
  background-color: #11271B; /* Card BG */
}

.page-cockfighting__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px; /* Max width for video */
  margin: 0 auto;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  background-color: #000;
}

.page-cockfighting__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.page-cockfighting__video-description {
    color: #A7D9B8;
    margin-top: 30px;
    font-size: 1.1em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting__cta-buttons--video {
    margin-top: 30px;
}

/* FAQ Section */
.page-cockfighting__faq-section {
  background-color: #08160F; /* Background */
}

.page-cockfighting__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-cockfighting__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: #F2FFF6; /* Text Main */
  font-size: 1.15em;
  font-weight: bold;
  background-color: #11271B; /* Card BG */
  transition: background-color 0.3s ease;
}

.page-cockfighting__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-cockfighting__faq-qtext {
  flex-grow: 1;
}

.page-cockfighting__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 20px;
  color: #2AD16F; /* Main color */
}

.page-cockfighting__faq-item[open] .page-cockfighting__faq-toggle {
  content: '−';
}

.page-cockfighting__faq-answer {
  padding: 0 25px 20px 25px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
}

.page-cockfighting__faq-answer p {
  margin-top: 0;
}

/* Conclusion Section */
.page-cockfighting__section--conclusion {
  text-align: center;
  padding-bottom: 80px;
}

.page-cockfighting__section--conclusion .page-cockfighting__section-content p {
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #A7D9B8; /* Text Secondary */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-cockfighting__hero-title {
    font-size: 2.8em;
  }
  .page-cockfighting__section-title {
    font-size: 2em;
  }
  .page-cockfighting__section-content--flex,
  .page-cockfighting__section-content--flex-reverse {
    flex-direction: column;
  }
  .page-cockfighting__text-block,
  .page-cockfighting__image-block {
    width: 100%;
  }
  .page-cockfighting__hero-image-wrapper {
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  .page-cockfighting {
    font-size: 15px;
  }

  .page-cockfighting__hero-section {
    padding-bottom: 40px;
    padding-top: 10px !important;
  }

  .page-cockfighting__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-cockfighting__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-cockfighting__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .page-cockfighting__btn-primary,
  .page-cockfighting__btn-secondary,
  .page-cockfighting__btn-small {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
  }

  .page-cockfighting__section {
    padding: 50px 0;
  }

  .page-cockfighting__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-cockfighting__section-content {
    font-size: 0.95em;
  }

  .page-cockfighting__section-content--flex,
  .page-cockfighting__section-content--flex-reverse {
    gap: 20px;
  }

  .page-cockfighting__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-cockfighting__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-cockfighting__faq-answer {
    padding: 0 20px 15px 20px;
  }

  /* Images and their containers */
  .page-cockfighting img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-cockfighting__section,
  .page-cockfighting__card,
  .page-cockfighting__container,
  .page-cockfighting__hero-section,
  .page-cockfighting__hero-image-wrapper,
  .page-cockfighting__hero-content,
  .page-cockfighting__text-block,
  .page-cockfighting__image-block,
  .page-cockfighting__guide-step,
  .page-cockfighting__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-cockfighting__hero-image-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .page-cockfighting__hero-content {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Video Section Mobile */
  .page-cockfighting__section--video {
    padding-top: 10px !important;
    padding-bottom: 30px;
  }
  .page-cockfighting__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }
  .page-cockfighting__video {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
  }
  .page-cockfighting__video-description {
    padding: 0 15px;
    box-sizing: border-box;
  }
}