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

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

.page-cockfighting__section {
  padding: 60px 0;
  text-align: center;
}

.page-cockfighting__section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__section-description {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* 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 handled by body */
  background: linear-gradient(180deg, var(--color-deep-navy) 0%, var(--primary-color) 100%);
}

.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;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

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

.page-cockfighting__hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--color-gold);
  margin-bottom: 15px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-cockfighting__hero-content p {
  font-size: 1.2rem;
  color: var(--text-main);
  max-width: 700px;
  margin: 0 auto 30px auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  border: 2px solid var(--color-glow);
}

.page-cockfighting__cta-button:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.page-cockfighting__cta-button--secondary {
  background: var(--primary-color);
  border: 2px solid var(--color-gold);
}

.page-cockfighting__cta-button--secondary:hover {
  background: var(--secondary-color);
}

/* Introduction Section */
.page-cockfighting__introduction-section {
  background-color: var(--color-deep-navy);
  padding-bottom: 30px;
}

.page-cockfighting__introduction-section h2 {
  color: var(--color-gold);
}

.page-cockfighting__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: left;
  align-items: center;
}

.page-cockfighting__content-grid h3 {
  color: var(--text-main);
  font-size: 24px;
  margin-bottom: 15px;
}

.page-cockfighting__content-grid p {
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.page-cockfighting__image-block img {
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Types Section */
.page-cockfighting__types-section {
  background-color: var(--card-bg);
  padding-top: 30px;
}

.page-cockfighting__types-section h2 {
  color: var(--color-gold);
}

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

.page-cockfighting__card {
  background-color: var(--card-bg);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.page-cockfighting__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-cockfighting__card-title {
  font-size: 22px;
  color: var(--color-gold);
  margin: 20px 20px 10px 20px;
}

.page-cockfighting__card p {
  font-size: 16px;
  color: var(--text-secondary);
  padding: 0 20px 20px 20px;
}

/* Rules and Tips Section */
.page-cockfighting__rules-tips-section {
  background-color: var(--color-deep-navy);
}

.page-cockfighting__rules-tips-section h2 {
  color: var(--color-gold);
}

.page-cockfighting__content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: left;
  align-items: center;
}

.page-cockfighting__rules-tips-section h3 {
  color: var(--text-main);
  font-size: 24px;
  margin-bottom: 15px;
}

.page-cockfighting__rules-tips-section p {
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.page-cockfighting__rules-tips-section ul {
  list-style-type: disc;
  margin-left: 25px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.page-cockfighting__rules-tips-section ul li {
  margin-bottom: 10px;
}

.page-cockfighting__rules-tips-section strong {
  color: var(--text-main);
}

/* Why Choose Section */
.page-cockfighting__why-choose-section {
  background-color: var(--primary-color);
  color: #ffffff;
  padding-top: 30px;
}

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

.page-cockfighting__why-choose-section .page-cockfighting__section-description {
  color: #ffffff;
}

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

.page-cockfighting__feature-item {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid var(--color-border);
}

.page-cockfighting__feature-item img {
  
  
  object-fit: contain;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 5px var(--color-glow));
}

.page-cockfighting__feature-item h3 {
  font-size: 20px;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.page-cockfighting__feature-item p {
  font-size: 15px;
  color: var(--text-secondary);
}

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

/* FAQ Section */
.page-cockfighting__faq-section {
  background-color: var(--color-deep-navy);
  padding-bottom: 30px;
}

.page-cockfighting__faq-section h2 {
  color: var(--color-gold);
}

.page-cockfighting__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

details.page-cockfighting__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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: rgba(var(--primary-color-rgb), 0.1);
}

.page-cockfighting__faq-qtext {
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-main);
  text-align: left;
}

.page-cockfighting__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-gold);
  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: rgba(var(--color-deep-navy-rgb), 0.5);
  border-radius: 0 0 10px 10px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* General image responsiveness */
.page-cockfighting img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-cockfighting__content-grid {
    grid-template-columns: 1fr;
  }
  .page-cockfighting__content-grid .page-cockfighting__image-block {
    order: -1;
  }
  .page-cockfighting__content-wrapper {
    grid-template-columns: 1fr;
  }
  .page-cockfighting__rules-tips-section .page-cockfighting__image-block {
    order: -1;
  }
}

@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: 2.2rem;
  }

  .page-cockfighting__hero-content p {
    font-size: 1rem;
  }

  .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__section-title {
    font-size: 28px;
  }

  .page-cockfighting__section-description {
    font-size: 16px;
  }

  .page-cockfighting__section {
    padding: 40px 0;
  }

  .page-cockfighting__content-grid h3, .page-cockfighting__rules-tips-section h3 {
    font-size: 20px;
  }

  .page-cockfighting__cards-grid {
    grid-template-columns: 1fr;
  }

  .page-cockfighting__card img {
    height: 200px;
  }

  .page-cockfighting__feature-item {
    padding: 20px 15px;
  }

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

  details.page-cockfighting__faq-item summary.page-cockfighting__faq-question {
    padding: 15px;
  }

  .page-cockfighting__faq-qtext {
    font-size: 15px;
  }

  details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
    padding: 0 15px 15px;
  }

  .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__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;
  }
}

/* Color definitions */
:root {
  --primary-color: #113B7A;
  --secondary-color: #1D5FD1;
  --color-deep-navy: #08162B;
  --card-bg: #10233F;
  --text-main: #F3F8FF;
  --text-secondary: #AFC4E8;
  --color-border: #244D84;
  --color-glow: #4FA8FF;
  --color-gold: #F2C14E;
  --color-divider: #1B3357;
  --primary-color-rgb: 17, 59, 122; /* RGB for #113B7A */
  --color-deep-navy-rgb: 8, 22, 43; /* RGB for #08162B */
}