.page-cockfighting {
  font-family: 'Arial', sans-serif;
  color: #1F2D3D;
  background-color: #F4F7FB;
  line-height: 1.6;
}

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

.page-cockfighting__section-title {
  font-size: 36px;
  font-weight: 700;
  color: #2F6BFF;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-cockfighting__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #4A8BFF, #2F6BFF);
  border-radius: 2px;
}

.page-cockfighting__section-title--white {
  color: #FFFFFF;
}

.page-cockfighting__section-title--white::after {
  background: #FFFFFF;
}

.page-cockfighting__description-text {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #1F2D3D;
}

.page-cockfighting__description-text--white {
  color: #FFFFFF;
}

/* 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, main offset from body */
  background-color: #F4F7FB;
  overflow: hidden;
}

.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: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(47, 107, 255, 0.2);
}

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

.page-cockfighting__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #2F6BFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-cockfighting__main-description {
  font-size: clamp(16px, 2vw, 20px);
  color: #1F2D3D;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(47, 107, 255, 0.4);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-cockfighting__cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(47, 107, 255, 0.6);
}

/* General Section Styling */
.page-cockfighting__introduction-section,
.page-cockfighting__advantages-section,
.page-cockfighting__types-section,
.page-cockfighting__guide-section,
.page-cockfighting__promotions-section,
.page-cockfighting__security-section,
.page-cockfighting__faq-section,
.page-cockfighting__conclusion-section {
  padding: 80px 0;
}

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

.page-cockfighting__dark-bg {
  background-color: #2F6BFF;
  color: #FFFFFF;
}

/* Advantages Section */
.page-cockfighting__advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-cockfighting__advantage-card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF;
}

.page-cockfighting__advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(47, 107, 255, 0.2);
}

.page-cockfighting__advantage-card img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-cockfighting__card-title {
  font-size: 24px;
  font-weight: 700;
  color: #2F6BFF;
  margin-bottom: 15px;
}

.page-cockfighting__advantage-card p {
  font-size: 16px;
  color: #1F2D3D;
}

/* Types Section */
.page-cockfighting__types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-cockfighting__type-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__type-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-cockfighting__type-card p {
  font-size: 16px;
  color: #F0F8FF;
}

/* Guide Section */
.page-cockfighting__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-cockfighting__step-item {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  border: 1px solid #D6E2FF;
}

.page-cockfighting__step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  margin: 0 auto 20px auto;
  box-shadow: 0 3px 10px rgba(47, 107, 255, 0.3);
}

.page-cockfighting__step-title {
  font-size: 22px;
  font-weight: 700;
  color: #2F6BFF;
  margin-bottom: 15px;
}

.page-cockfighting__step-item p {
  font-size: 16px;
  color: #1F2D3D;
  margin-bottom: 20px;
}

.page-cockfighting__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: #FFFFFF;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-cockfighting__btn-secondary:hover {
  background: #2F6BFF;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(47, 107, 255, 0.3);
}

/* Promotions Section */
.page-cockfighting__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-cockfighting__promo-card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
  border: 1px solid #D6E2FF;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(47, 107, 255, 0.15);
}

.page-cockfighting__promo-card img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 15px auto;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-cockfighting__promo-card .page-cockfighting__card-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.page-cockfighting__promo-card p {
  font-size: 15px;
  color: #1F2D3D;
}

.page-cockfighting__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

/* Security Section */
.page-cockfighting__security-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.page-cockfighting__security-list li {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  font-size: 17px;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-cockfighting__list-icon {
  font-size: 24px;
  margin-right: 15px;
  color: #A5C4FF;
  line-height: 1;
}

/* FAQ Section */
details.page-cockfighting__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #D6E2FF;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
details.page-cockfighting__faq-item summary.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  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: #F0F7FF;
}
.page-cockfighting__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #1F2D3D;
}
.page-cockfighting__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #2F6BFF;
  flex-shrink: 0;
  margin-left: 20px;
  width: 30px;
  text-align: center;
}
details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
  padding: 0 25px 25px;
  background: #F8FBFF;
  border-radius: 0 0 8px 8px;
  font-size: 16px;
  color: #1F2D3D;
}
details.page-cockfighting__faq-item .page-cockfighting__faq-answer p {
  margin: 0;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting__section-title {
    font-size: 32px;
  }
  .page-cockfighting__main-title {
    font-size: clamp(26px, 4vw, 42px);
  }
  .page-cockfighting__main-description {
    font-size: clamp(15px, 2vw, 18px);
  }
  .page-cockfighting__advantages-grid,
  .page-cockfighting__types-grid,
  .page-cockfighting__guide-steps,
  .page-cockfighting__promotions-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 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: 8px;
  }
  .page-cockfighting__main-title {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 15px;
  }
  .page-cockfighting__main-description {
    font-size: clamp(14px, 3vw, 16px);
    margin-bottom: 25px;
  }
  .page-cockfighting__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    margin-top: 15px;
  }
  .page-cockfighting__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-cockfighting__description-text {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-cockfighting__introduction-section,
  .page-cockfighting__advantages-section,
  .page-cockfighting__types-section,
  .page-cockfighting__guide-section,
  .page-cockfighting__promotions-section,
  .page-cockfighting__security-section,
  .page-cockfighting__faq-section,
  .page-cockfighting__conclusion-section {
    padding: 50px 0;
  }
  .page-cockfighting__advantages-grid,
  .page-cockfighting__types-grid,
  .page-cockfighting__guide-steps,
  .page-cockfighting__promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-cockfighting__advantage-card,
  .page-cockfighting__type-card,
  .page-cockfighting__step-item,
  .page-cockfighting__promo-card {
    padding: 25px;
  }
  .page-cockfighting__advantage-card img,
  .page-cockfighting__promo-card img {
    min-width: 200px !important;
    min-height: 200px !important;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-cockfighting__card-title {
    font-size: 20px;
  }
  .page-cockfighting__type-title {
    font-size: 20px;
  }
  .page-cockfighting__step-title {
    font-size: 20px;
  }
  .page-cockfighting__security-list li {
    font-size: 15px;
    padding: 15px;
  }
  .page-cockfighting__list-icon {
    font-size: 20px;
    margin-right: 10px;
  }
  details.page-cockfighting__faq-item summary.page-cockfighting__faq-question {
    padding: 15px 20px;
  }
  .page-cockfighting__faq-qtext {
    font-size: 16px;
  }
  .page-cockfighting__faq-toggle {
    font-size: 24px;
    width: 24px;
    margin-left: 15px;
  }
  details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
    padding: 0 20px 20px;
  }
  .page-cockfighting__btn-secondary {
    padding: 10px 25px;
    font-size: 15px;
  }
  /* Ensure all images are responsive */
  .page-cockfighting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box;
  }
  .page-cockfighting__container,
  .page-cockfighting__advantages-section,
  .page-cockfighting__types-section,
  .page-cockfighting__guide-section,
  .page-cockfighting__promotions-section,
  .page-cockfighting__security-section,
  .page-cockfighting__faq-section,
  .page-cockfighting__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  /* Buttons responsiveness */
  .page-cockfighting__cta-button,
  .page-cockfighting__btn-secondary {
    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-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting__section-title {
    font-size: 24px;
  }
  .page-cockfighting__main-title {
    font-size: clamp(22px, 8vw, 32px);
  }
  .page-cockfighting__main-description {
    font-size: clamp(14px, 4vw, 15px);
  }
  .page-cockfighting__cta-button {
    font-size: 15px;
    padding: 10px 25px;
  }
  .page-cockfighting__advantage-card,
  .page-cockfighting__type-card,
  .page-cockfighting__step-item,
  .page-cockfighting__promo-card {
    padding: 20px;
  }
  .page-cockfighting__card-title,
  .page-cockfighting__type-title,
  .page-cockfighting__step-title {
    font-size: 18px;
  }
  .page-cockfighting__advantage-card p,
  .page-cockfighting__type-card p,
  .page-cockfighting__step-item p,
  .page-cockfighting__promo-card p {
    font-size: 14px;
  }
  .page-cockfighting__security-list li {
    font-size: 14px;
    padding: 12px;
  }
  details.page-cockfighting__faq-item summary.page-cockfighting__faq-question {
    padding: 12px 15px;
  }
  .page-cockfighting__faq-qtext {
    font-size: 15px;
  }
  .page-cockfighting__faq-toggle {
    font-size: 20px;
    width: 20px;
    margin-left: 10px;
  }
  details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
    padding: 0 15px 15px;
  }
  .page-cockfighting__btn-secondary {
    font-size: 14px;
    padding: 8px 20px;
  }
}