:root {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --card-bg: #17191F;
  --background-color: #0D0E12;
  --text-main: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange: #D96800;
}

.page-cockfighting {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Light text on dark body background */
  background-color: var(--background-color);
}

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

/* Hero Section */
.page-cockfighting__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--background-color);
}

.page-cockfighting__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-cockfighting__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

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

.page-cockfighting__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-cockfighting__hero-content h1 {
  color: var(--secondary-color);
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.2rem, 4vw + 1rem, 3.5rem);
}

.page-cockfighting__hero-content p {
  font-size: 1.1rem;
  color: var(--text-main);
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange) 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
}

.page-cockfighting__cta-button:hover {
  background: linear-gradient(180deg, var(--deep-orange) 0%, var(--secondary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-cockfighting__cta-button--large {
  padding: 18px 50px;
  font-size: 20px;
}

/* General Section Styles */
.page-cockfighting__section-title {
  font-size: clamp(1.8rem, 3vw + 1rem, 2.8rem);
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: bold;
  line-height: 1.3;
}

.page-cockfighting__intro-section, .page-cockfighting__rules-section, .page-cockfighting__strategy-section, .page-cockfighting__faq-section {
  padding: 80px 0;
  background-color: var(--background-color);
  color: var(--text-main);
}

.page-cockfighting__types-section, .page-cockfighting__advantages-section, .page-cockfighting__promotions-section, .page-cockfighting__conclusion-section {
  padding: 80px 0;
  background-color: #1a1e27; /* Slightly lighter dark for contrast */
  color: var(--text-main);
}

.page-cockfighting__light-bg {
  background-color: #1a1e27;
}

.page-cockfighting__dark-bg {
  background-color: var(--background-color);
}

.page-cockfighting__intro-section p, .page-cockfighting__types-section p, .page-cockfighting__rules-section p, .page-cockfighting__advantages-section p, .page-cockfighting__strategy-section p, .page-cockfighting__promotions-section p, .page-cockfighting__conclusion-section p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: var(--text-main);
}

.page-cockfighting__intro-section h3, .page-cockfighting__types-section h3, .page-cockfighting__advantages-section h3, .page-cockfighting__strategy-section h3, .page-cockfighting__promotions-section h3 {
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.page-cockfighting__card-grid, .page-cockfighting__advantages-grid, .page-cockfighting__strategy-grid, .page-cockfighting__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting__card, .page-cockfighting__advantage-item, .page-cockfighting__strategy-card, .page-cockfighting__promotion-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-cockfighting__card:hover, .page-cockfighting__advantage-item:hover, .page-cockfighting__strategy-card:hover, .page-cockfighting__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-cockfighting__card img, .page-cockfighting__advantage-item img, .page-cockfighting__promotion-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: cover;
}

.page-cockfighting__advantage-item img {
  
  
  margin-bottom: 15px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.page-cockfighting__advantage-item h3 {
  font-size: 1.3rem;
}

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

.page-cockfighting__type-list li {
  background-color: var(--card-bg);
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  border-left: 5px solid var(--primary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__type-list li h3 {
  color: var(--primary-color);
  margin-top: 0;
  font-size: 1.6rem;
}

.page-cockfighting__type-list li p {
  color: var(--text-main);
  font-size: 1.05rem;
}

.page-cockfighting__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-cockfighting__image-margin-top {
  margin-top: 60px;
}

.page-cockfighting__grid-2-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.page-cockfighting__content-block h3 {
  color: var(--primary-color);
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.page-cockfighting__list, .page-cockfighting__ordered-list {
  list-style: none;
  padding-left: 0;
}

.page-cockfighting__list li, .page-cockfighting__ordered-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: var(--text-main);
}

.page-cockfighting__list li:before {
  content: '✔';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-cockfighting__ordered-list li:before {
  content: counter(list-item) '. ';
  counter-increment: list-item;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-cockfighting__ordered-list {
  counter-reset: list-item;
}

.page-cockfighting__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.page-cockfighting__btn-secondary {
  background: none;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  box-shadow: none;
}

.page-cockfighting__btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.page-cockfighting__faq-list {
  margin-top: 40px;
}

details.page-cockfighting__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
}
details.page-cockfighting__faq-item summary.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-cockfighting__faq-item summary.page-cockfighting__faq-question::-webkit-details-marker {
  display: none;
}
details.page-cockfighting__faq-item summary.page-cockfighting__faq-question:hover {
  background: #2a2e38; /* Slightly lighter card background */
}
.page-cockfighting__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main);
}
.page-cockfighting__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
  padding: 0 20px 20px;
  background: #1a1e27; /* Slightly lighter dark for answer background */
  border-radius: 0 0 5px 5px;
  color: var(--text-main);
}

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

.page-cockfighting__conclusion-section p {
  max-width: 900px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting__container {
    padding: 0 15px;
  }
  .page-cockfighting__hero-content h1 {
    font-size: clamp(2rem, 5vw + 1rem, 3rem);
  }
  .page-cockfighting__section-title {
    font-size: clamp(1.6rem, 4vw + 1rem, 2.5rem);
  }
  .page-cockfighting__grid-2-cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-cockfighting__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-cockfighting__hero-image img {
    border-radius: 4px;
  }
  .page-cockfighting__hero-content h1 {
    font-size: clamp(1.8rem, 6vw + 1rem, 2.5rem);
    margin-bottom: 15px;
  }
  .page-cockfighting__hero-content p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .page-cockfighting__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-cockfighting__cta-button--large {
    padding: 15px 40px;
    font-size: 18px;
  }
  .page-cockfighting__section-title {
    font-size: clamp(1.5rem, 5vw + 1rem, 2.2rem);
    padding-top: 40px;
  }
  .page-cockfighting__intro-section, .page-cockfighting__types-section, .page-cockfighting__rules-section, .page-cockfighting__advantages-section, .page-cockfighting__strategy-section, .page-cockfighting__promotions-section, .page-cockfighting__faq-section, .page-cockfighting__conclusion-section {
    padding: 50px 0;
  }
  .page-cockfighting__card-grid, .page-cockfighting__advantages-grid, .page-cockfighting__strategy-grid, .page-cockfighting__promotion-grid {
    gap: 20px;
    margin-top: 30px;
  }
  .page-cockfighting__card, .page-cockfighting__advantage-item, .page-cockfighting__strategy-card, .page-cockfighting__promotion-card {
    padding: 20px;
  }
  .page-cockfighting__type-list li {
    padding: 20px 25px;
  }
  .page-cockfighting__type-list li h3 {
    font-size: 1.4rem;
  }
  .page-cockfighting__content-block h3 {
    font-size: 1.4rem;
  }
  .page-cockfighting__list li, .page-cockfighting__ordered-list li {
    font-size: 0.95rem;
  }
  .page-cockfighting__button-group {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-cockfighting__btn-secondary {
    width: 100%;
  }
  details.page-cockfighting__faq-item summary.page-cockfighting__faq-question { padding: 15px; }
  .page-cockfighting__faq-qtext { font-size: 1rem; }
  .page-cockfighting__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }
  details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
    padding: 0 15px 15px;
  }
  /* Mobile image responsiveness */
  .page-cockfighting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-cockfighting__section, .page-cockfighting__card, .page-cockfighting__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-cockfighting__hero-section {
    padding-top: 10px !important;
  }
  .page-cockfighting a[class*="button"], .page-cockfighting a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-cockfighting__cta-buttons, .page-cockfighting__button-group, .page-cockfighting__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-cockfighting__cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-cockfighting__hero-content h1 {
    font-size: clamp(1.6rem, 7vw + 1rem, 2.2rem);
  }
  .page-cockfighting__section-title {
    font-size: clamp(1.4rem, 6vw + 1rem, 2rem);
  }
  .page-cockfighting__card-grid, .page-cockfighting__advantages-grid, .page-cockfighting__strategy-grid, .page-cockfighting__promotion-grid {
    grid-template-columns: 1fr;
  }
  .page-cockfighting__type-list li h3 {
    font-size: 1.3rem;
  }
  .page-cockfighting__content-block h3 {
    font-size: 1.3rem;
  }
  .page-cockfighting__list li, .page-cockfighting__ordered-list li {
    padding-left: 25px;
  }
  .page-cockfighting__faq-qtext { font-size: 0.95rem; }
}