/* style/cockfighting-rules-tips.css */
.page-cockfighting-rules-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

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

.page-cockfighting-rules-tips__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles header offset, this is decorative top padding */
  background-color: #08160F;
}

.page-cockfighting-rules-tips__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  overflow: hidden;
}

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

.page-cockfighting-rules-tips__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -80px; /* Overlap slightly for visual flow */
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 22, 15, 0.8) 0%, #08160F 100%);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-rules-tips__main-title {
  font-size: clamp(2em, 3.5vw, 3em); /* H1 size constraint */
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-cockfighting-rules-tips__description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

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

.page-cockfighting-rules-tips__btn-primary,
.page-cockfighting-rules-tips__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-cockfighting-rules-tips__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border: 2px solid transparent;
}

.page-cockfighting-rules-tips__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-cockfighting-rules-tips__btn-secondary {
  background: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-cockfighting-rules-tips__btn-secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  color: #F2FFF6;
}

.page-cockfighting-rules-tips__section {
  padding: 80px 0;
  background-color: #08160F;
}

.page-cockfighting-rules-tips__section-title {
  font-size: 2.5em;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-cockfighting-rules-tips__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #2AD16F;
  border-radius: 2px;
}

.page-cockfighting-rules-tips__text-block {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  text-align: justify;
}

.page-cockfighting-rules-tips__highlight {
  color: #57E38D; /* Glow */
  font-weight: bold;
}

.page-cockfighting-rules-tips__content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting-rules-tips__card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #2E7A4E; /* Border */
}

.page-cockfighting-rules-tips__card-title {
  font-size: 1.5em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-cockfighting-rules-tips__card-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-cockfighting-rules-tips__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: auto; /* Push image to bottom if content is short */
}

.page-cockfighting-rules-tips__list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-cockfighting-rules-tips__list-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting-rules-tips__list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-rules-tips__list-title {
  font-size: 1.4em;
  color: #57E38D; /* Glow */
  margin-bottom: 10px;
}

.page-cockfighting-rules-tips__list-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
}

.page-cockfighting-rules-tips__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-cockfighting-rules-tips__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-cockfighting-rules-tips__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-cockfighting-rules-tips__feature-title {
  font-size: 1.3em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-cockfighting-rules-tips__feature-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
}

.page-cockfighting-rules-tips__faq-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-cockfighting-rules-tips__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

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

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

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

.page-cockfighting-rules-tips__faq-toggle {
  font-size: 1.5em;
  font-weight: normal;
  color: #57E38D; /* Glow */
  margin-left: 15px;
}

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

.page-cockfighting-rules-tips__faq-item[open] .page-cockfighting-rules-tips__faq-question {
  background-color: #0A4B2C; /* Deep Green */
}

.page-cockfighting-rules-tips a {
  color: #57E38D; /* Glow */
  text-decoration: none;
}

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

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-cockfighting-rules-tips__hero-content {
    margin-top: -60px;
    padding: 30px 20px;
  }

  .page-cockfighting-rules-tips__main-title {
    font-size: clamp(2em, 4vw, 2.5em);
  }

  .page-cockfighting-rules-tips__section-title {
    font-size: 2em;
  }
}

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

  .page-cockfighting-rules-tips__container {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-cockfighting-rules-tips__hero-content {
    margin-top: -40px;
    padding: 20px 15px;
  }

  .page-cockfighting-rules-tips__main-title {
    font-size: clamp(1.8em, 5vw, 2.2em);
  }

  .page-cockfighting-rules-tips__description {
    font-size: 1em;
  }

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

  .page-cockfighting-rules-tips__btn-primary,
  .page-cockfighting-rules-tips__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
  }

  .page-cockfighting-rules-tips__section {
    padding: 60px 0;
  }

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

  .page-cockfighting-rules-tips__text-block {
    font-size: 1em;
  }

  .page-cockfighting-rules-tips__content-grid,
  .page-cockfighting-rules-tips__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-cockfighting-rules-tips__card,
  .page-cockfighting-rules-tips__list-item,
  .page-cockfighting-rules-tips__feature-item,
  .page-cockfighting-rules-tips__faq-item {
    padding: 20px;
  }

  .page-cockfighting-rules-tips__card-image,
  .page-cockfighting-rules-tips__feature-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin-left: auto;
    margin-right: auto;
  }

  .page-cockfighting-rules-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

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

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

  .page-cockfighting-rules-tips__video-section {
    padding-top: 10px !important;
  }

  .page-cockfighting-rules-tips__video-container,
  .page-cockfighting-rules-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-rules-tips video,
  .page-cockfighting-rules-tips__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}