/* style/blog-f888-cockfighting-rules-tips.css */

:root {
  --f888-main-color: #11A84E;
  --f888-accent-color: #22C768;
  --f888-card-bg: #11271B;
  --f888-bg-color: #08160F;
  --f888-text-main: #F2FFF6;
  --f888-text-secondary: #A7D9B8;
  --f888-border-color: #2E7A4E;
  --f888-glow-color: #57E38D;
  --f888-gold-color: #F2C14E;
  --f888-divider-color: #1E3A2A;
  --f888-deep-green: #0A4B2C;
  --f888-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

/* Base styles for the page content, ensuring contrast with body background */
.page-blog-f888-cockfighting-rules-tips {
  font-family: Arial, sans-serif;
  color: var(--f888-text-main); /* Light text for dark body background */
  background-color: var(--f888-bg-color);
  line-height: 1.6;
}

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

/* Hero Section */
.page-blog-f888-cockfighting-rules-tips__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 60px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--f888-bg-color);
}

.page-blog-f888-cockfighting-rules-tips__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

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

.page-blog-f888-cockfighting-rules-tips__hero-content {
  width: 100%; /* Ensure width: 100% is present for desktop */
  max-width: 900px;
  margin-top: 40px;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-f888-cockfighting-rules-tips__main-title {
  color: var(--f888-gold-color);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
  margin-bottom: 20px;
}

.page-blog-f888-cockfighting-rules-tips__hero-description {
  font-size: 1.1em;
  color: var(--f888-text-secondary);
  margin-bottom: 30px;
}

.page-blog-f888-cockfighting-rules-tips__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* General Section Styles */
.page-blog-f888-cockfighting-rules-tips__introduction-section,
.page-blog-f888-cockfighting-rules-tips__rules-section,
.page-blog-f888-cockfighting-rules-tips__techniques-section,
.page-blog-f888-cockfighting-rules-tips__benefits-section,
.page-blog-f888-cockfighting-rules-tips__guide-section,
.page-blog-f888-cockfighting-rules-tips__faq-section,
.page-blog-f888-cockfighting-rules-tips__conclusion-section {
  padding: 60px 0;
  background-color: var(--f888-bg-color);
}

.page-blog-f888-cockfighting-rules-tips__section-title {
  color: var(--f888-main-color);
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  position: relative;
}

.page-blog-f888-cockfighting-rules-tips__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--f888-gold-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-blog-f888-cockfighting-rules-tips__subsection-title {
  color: var(--f888-accent-color);
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid var(--f888-gold-color);
  padding-left: 15px;
}

.page-blog-f888-cockfighting-rules-tips__text-block {
  color: var(--f888-text-main);
  margin-bottom: 20px;
  font-size: 1.05em;
}

.page-blog-f888-cockfighting-rules-tips__list,
.page-blog-f888-cockfighting-rules-tips__numbered-list {
  list-style-type: disc;
  color: var(--f888-text-main);
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-blog-f888-cockfighting-rules-tips__numbered-list {
  list-style-type: decimal;
}

.page-blog-f888-cockfighting-rules-tips__list-item {
  margin-bottom: 10px;
  color: var(--f888-text-main);
}

.page-blog-f888-cockfighting-rules-tips__list-item strong {
  color: var(--f888-gold-color);
}

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

/* Buttons */
.page-blog-f888-cockfighting-rules-tips__btn-primary,
.page-blog-f888-cockfighting-rules-tips__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons adapt to container */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  text-align: center;
}

.page-blog-f888-cockfighting-rules-tips__btn-primary {
  background: var(--f888-button-gradient);
  color: #ffffff; /* White text for primary button */
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-blog-f888-cockfighting-rules-tips__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-blog-f888-cockfighting-rules-tips__btn-secondary {
  background: var(--f888-card-bg);
  color: var(--f888-gold-color);
  border: 2px solid var(--f888-gold-color);
}

.page-blog-f888-cockfighting-rules-tips__btn-secondary:hover {
  background: var(--f888-gold-color);
  color: var(--f888-bg-color);
  transform: translateY(-3px);
}

/* FAQ Section */
.page-blog-f888-cockfighting-rules-tips__faq-item {
  background-color: var(--f888-card-bg);
  border: 1px solid var(--f888-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-f888-cockfighting-rules-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  color: var(--f888-text-main);
  font-weight: bold;
  font-size: 1.1em;
  background-color: var(--f888-deep-green);
  border-bottom: 1px solid var(--f888-divider-color);
  list-style: none; /* For details/summary */
}

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

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

.page-blog-f888-cockfighting-rules-tips__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--f888-gold-color);
}

.page-blog-f888-cockfighting-rules-tips__faq-item[open] .page-blog-f888-cockfighting-rules-tips__faq-question {
  border-bottom: 1px solid var(--f888-border-color);
}

.page-blog-f888-cockfighting-rules-tips__faq-answer {
  padding: 20px;
  color: var(--f888-text-secondary);
  font-size: 1em;
  background-color: var(--f888-card-bg);
}

.page-blog-f888-cockfighting-rules-tips__faq-answer p {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-f888-cockfighting-rules-tips__main-title {
    font-size: 2.2em;
  }

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

  .page-blog-f888-cockfighting-rules-tips__subsection-title {
    font-size: 1.5em;
  }
}

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

  .page-blog-f888-cockfighting-rules-tips__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-f888-cockfighting-rules-tips__hero-content {
    margin-top: 20px;
  }

  .page-blog-f888-cockfighting-rules-tips__main-title {
    font-size: 1.8em;
    padding: 0 10px;
  }

  .page-blog-f888-cockfighting-rules-tips__hero-description {
    font-size: 1em;
  }

  .page-blog-f888-cockfighting-rules-tips__section-title {
    font-size: 1.8em;
  }

  .page-blog-f888-cockfighting-rules-tips__subsection-title {
    font-size: 1.3em;
  }

  .page-blog-f888-cockfighting-rules-tips__cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 0 15px;
  }

  .page-blog-f888-cockfighting-rules-tips__btn-primary,
  .page-blog-f888-cockfighting-rules-tips__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-f888-cockfighting-rules-tips__introduction-section,
  .page-blog-f888-cockfighting-rules-tips__rules-section,
  .page-blog-f888-cockfighting-rules-tips__techniques-section,
  .page-blog-f888-cockfighting-rules-tips__benefits-section,
  .page-blog-f888-cockfighting-rules-tips__guide-section,
  .page-blog-f888-cockfighting-rules-tips__faq-section,
  .page-blog-f888-cockfighting-rules-tips__conclusion-section {
    padding: 40px 0;
  }

  /* Mobile responsive images */
  .page-blog-f888-cockfighting-rules-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Mobile responsive containers for images/videos/buttons */
  .page-blog-f888-cockfighting-rules-tips__hero-image-wrapper,
  .page-blog-f888-cockfighting-rules-tips__container,
  .page-blog-f888-cockfighting-rules-tips__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Add horizontal padding to main content containers */
  .page-blog-f888-cockfighting-rules-tips__container {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-blog-f888-cockfighting-rules-tips__faq-answer {
    padding: 15px;
  }
}