.page-cockfighting {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-color, #08160F);
}

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

.page-cockfighting__dark-bg {
  background-color: var(--card-bg, #11271B);
  color: var(--text-main, #F2FFF6);
}

.page-cockfighting__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-cockfighting__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px 60px 20px; /* body padding-top is handled by shared.css */
  background-color: var(--deep-green, #0A4B2C);
  overflow: hidden;
}

.page-cockfighting__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-cockfighting__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  display: block;
}

.page-cockfighting__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: var(--text-main, #F2FFF6);
  padding-top: 80px;
}

.page-cockfighting__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--gold, #F2C14E);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-cockfighting__subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 40px;
  color: var(--text-main, #F2FFF6);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

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

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

.page-cockfighting__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-cockfighting__btn-secondary {
  background-color: transparent;
  color: var(--text-main, #F2FFF6);
  border: 2px solid var(--glow, #57E38D);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__btn-secondary:hover {
  background-color: var(--glow, #57E38D);
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: var(--gold, #F2C14E);
}

.page-cockfighting__intro-section .page-cockfighting__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #333333;
}

.page-cockfighting__why-choose-section .page-cockfighting__section-title {
  color: var(--gold, #F2C14E);
}

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

.page-cockfighting__feature-card {
  background-color: var(--card-bg, #11271B);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color, #2E7A4E);
}

.page-cockfighting__feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-cockfighting__card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--text-main, #F2FFF6);
}

.page-cockfighting__card-description {
  font-size: 1rem;
  color: var(--text-secondary, #A7D9B8);
}

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

.page-cockfighting__type-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-cockfighting__type-item:last-child {
  margin-bottom: 0;
}

.page-cockfighting__type-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--deep-green, #0A4B2C);
  margin-bottom: 10px;
}

.page-cockfighting__type-description {
  font-size: 1rem;
  color: #555555;
}

.page-cockfighting__content-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  display: block;
}

.page-cockfighting__how-to-section .page-cockfighting__section-title {
  color: var(--gold, #F2C14E);
}

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

.page-cockfighting__step-item {
  background-color: var(--card-bg, #11271B);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border-left: 5px solid var(--glow, #57E38D);
}

.page-cockfighting__step-item:last-child {
  margin-bottom: 0;
}

.page-cockfighting__step-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 15px;
}

.page-cockfighting__step-description {
  font-size: 1rem;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 20px;
}

.page-cockfighting__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-cockfighting__tip-item {
  background-color: #f0f0f0;
  border-left: 4px solid var(--deep-green, #0A4B2C);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 6px;
}

.page-cockfighting__tip-item:last-child {
  margin-bottom: 0;
}

.page-cockfighting__tip-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--deep-green, #0A4B2C);
  margin-bottom: 10px;
}

.page-cockfighting__tip-description {
  font-size: 1rem;
  color: #444444;
}

.page-cockfighting__security-section .page-cockfighting__section-title {
  color: var(--gold, #F2C14E);
}

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

.page-cockfighting__security-item {
  background-color: var(--card-bg, #11271B);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  text-align: center;
  border: 1px solid var(--divider, #1E3A2A);
}

.page-cockfighting__security-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 15px;
}

.page-cockfighting__security-description {
  font-size: 1rem;
  color: var(--text-secondary, #A7D9B8);
}

.page-cockfighting__promotions-section .page-cockfighting__section-title {
  color: var(--deep-green, #0A4B2C);
}

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

.page-cockfighting__promo-card {
  background-color: #f0f0f0;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e5e5;
  text-align: center;
}

.page-cockfighting__promo-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--deep-green, #0A4B2C);
  margin-bottom: 10px;
}

.page-cockfighting__promo-description {
  font-size: 0.95rem;
  color: #555555;
}

.page-cockfighting__btn-full-width {
  width: 100%;
  margin-top: 40px;
  display: block;
}

.page-cockfighting__faq-section .page-cockfighting__section-title {
  color: var(--gold, #F2C14E);
}

.page-cockfighting__faq-list {
  margin-top: 30px;
}

.page-cockfighting__faq-item {
  background-color: var(--card-bg, #11271B);
  border: 1px solid var(--border-color, #2E7A4E);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-cockfighting__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  color: var(--text-main, #F2FFF6);
  background-color: var(--deep-green, #0A4B2C);
  border-bottom: 1px solid var(--divider, #1E3A2A);
  transition: background-color 0.3s ease;
}

.page-cockfighting__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-cockfighting__faq-item summary:hover {
  background-color: #0c4228;
}

.page-cockfighting__faq-qtext {
  font-size: 1.1rem;
}

.page-cockfighting__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-cockfighting__faq-item[open] .page-cockfighting__faq-toggle {
  transform: rotate(45deg);
}

.page-cockfighting__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: var(--text-secondary, #A7D9B8);
  background-color: var(--card-bg, #11271B);
}

.page-cockfighting__cta-final-section .page-cockfighting__section-title {
  color: var(--deep-green, #0A4B2C);
}

.page-cockfighting__cta-final-section .page-cockfighting__text-block {
  font-size: 1.1rem;
  color: #333333;
  text-align: center;
  margin-bottom: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-cockfighting__hero-content {
    padding-top: 60px;
  }
  .page-cockfighting__main-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
  }
  .page-cockfighting__subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
  }
  .page-cockfighting__container {
    padding: 30px 15px;
  }
  .page-cockfighting__features-grid,
  .page-cockfighting__security-features,
  .page-cockfighting__promo-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-cockfighting {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-cockfighting__hero-section {
    padding: 10px 15px 40px 15px;
  }
  .page-cockfighting__hero-content {
    padding-top: 40px;
  }
  .page-cockfighting__main-title {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }
  .page-cockfighting__subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  }
  .page-cockfighting__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-cockfighting__btn-primary,
  .page-cockfighting__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }
  .page-cockfighting__section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    margin-bottom: 25px;
  }
  .page-cockfighting__intro-section .page-cockfighting__text-block,
  .page-cockfighting__cta-final-section .page-cockfighting__text-block {
    font-size: 1rem;
  }
  .page-cockfighting__feature-card,
  .page-cockfighting__step-item,
  .page-cockfighting__security-item,
  .page-cockfighting__promo-card,
  .page-cockfighting__type-item {
    padding: 20px;
  }
  .page-cockfighting__card-image {
    height: 200px;
  }
  .page-cockfighting__card-title,
  .page-cockfighting__type-title,
  .page-cockfighting__step-title,
  .page-cockfighting__security-title,
  .page-cockfighting__promo-title {
    font-size: 1.2rem;
  }
  .page-cockfighting__faq-item summary {
    padding: 15px 20px;
  }
  .page-cockfighting__faq-qtext {
    font-size: 1rem;
  }
  .page-cockfighting__faq-answer {
    padding: 15px 20px;
  }
  
  /* Mobile image and video responsiveness */
  .page-cockfighting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-cockfighting video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-cockfighting__video-section,
  .page-cockfighting__video-container,
  .page-cockfighting__video-wrapper,
  .page-cockfighting__hero-section,
  .page-cockfighting__intro-section,
  .page-cockfighting__why-choose-section,
  .page-cockfighting__types-section,
  .page-cockfighting__how-to-section,
  .page-cockfighting__tips-section,
  .page-cockfighting__security-section,
  .page-cockfighting__promotions-section,
  .page-cockfighting__faq-section,
  .page-cockfighting__cta-final-section,
  .page-cockfighting__container,
  .page-cockfighting__card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  .page-cockfighting__video-section {
    padding-top: 10px !important; /* body already handles header offset */
  }
  .page-cockfighting__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}