/* style/cockfighting.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #000;
  --background-light-card: rgba(255, 255, 255, 0.1);
  --background-white: #ffffff;
  --border-color: #e0e0e0;
}

.page-cockfighting {
  font-family: 'Arial', sans-serif;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--background-dark);
  padding-top: 180px; /* Space for fixed header on desktop */
}

@media (max-width: 768px) {
  .page-cockfighting {
    padding-top: 140px; /* Space for fixed header on mobile */
    font-size: 16px;
    line-height: 1.6;
  }
}

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

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

.page-cockfighting__section-title {
  font-size: 38px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .page-cockfighting__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}

.page-cockfighting__text-block {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .page-cockfighting__text-block {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.page-cockfighting__text-block strong {
  color: var(--primary-color);
}

.page-cockfighting__text-block a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-cockfighting__text-block a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Hero Section */
.page-cockfighting__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  background: var(--background-dark);
}

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

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

.page-cockfighting__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 90%;
  max-width: 900px;
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .page-cockfighting__hero-content {
    padding: 20px;
    width: 95%;
  }
}

.page-cockfighting__hero-title {
  font-size: 48px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
  .page-cockfighting__hero-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
}

.page-cockfighting__hero-description {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
  .page-cockfighting__hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  border: none;
}

.page-cockfighting__cta-button:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .page-cockfighting__cta-button {
    padding: 12px 30px;
    font-size: 18px;
  }
}

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

@media (max-width: 768px) {
  .page-cockfighting__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

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

@media (max-width: 992px) {
  .page-cockfighting__grid-2-col {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.page-cockfighting__card {
  background: var(--background-light-card);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.page-cockfighting__card-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .page-cockfighting__card-title {
    font-size: 20px;
  }
}

.page-cockfighting__card-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
}

.page-cockfighting__card-text strong {
  color: var(--primary-color);
}

.page-cockfighting__card-text a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-cockfighting__card-text a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-cockfighting__image-fullwidth {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Step List */
.page-cockfighting__step-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.page-cockfighting__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--background-light-card);
  border-radius: 10px;
  padding: 40px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-cockfighting__step-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 4px solid var(--primary-color);
  padding: 10px;
}

.page-cockfighting__step-title {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .page-cockfighting__step-title {
    font-size: 22px;
  }
}

.page-cockfighting__step-description {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 25px;
}

.page-cockfighting__step-description strong {
  color: var(--primary-color);
}

/* Promotions List */
.page-cockfighting__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.page-cockfighting__promo-item {
  background: var(--background-light-card);
  border-left: 5px solid var(--primary-color);
  padding: 20px 25px;
  border-radius: 8px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-cockfighting__promo-item strong {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .page-cockfighting__promo-item {
    font-size: 16px;
    padding: 15px 20px;
  }
}

/* Buttons */
.page-cockfighting__btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-light);
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  border: none;
  font-size: 16px;
  display: inline-block;
}

.page-cockfighting__btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-cockfighting__btn-secondary {
  background: var(--background-white);
  color: var(--secondary-color);
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--secondary-color);
  font-size: 16px;
  display: inline-block;
}

.page-cockfighting__btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.page-cockfighting__faq-section {
  background: var(--background-dark);
  padding: 60px 0;
}

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

.page-cockfighting__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  background: var(--background-light-card);
  color: var(--text-light);
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  background: var(--background-light-card);
  border-radius: 0 0 10px 10px;
}

.page-cockfighting__faq-answer p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.page-cockfighting__faq-answer p strong {
  color: var(--primary-color);
}

.page-cockfighting__faq-answer p a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-cockfighting__faq-answer p a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: var(--text-light);
}

.page-cockfighting__faq-question:hover {
  background: #a01010;
  border-color: #a01010;
}

.page-cockfighting__faq-question:active {
  background: #b02020;
}

.page-cockfighting__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .page-cockfighting__faq-question h3 {
    font-size: 16px;
  }
}

.page-cockfighting__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-toggle {
  color: var(--primary-color);
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .page-cockfighting__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .page-cockfighting__faq-question h3 {
    width: calc(100% - 40px);
  }
  
  .page-cockfighting__faq-toggle {
    margin-left: 10px;
    width: 26px;
    height: 26px;
    font-size: 24px;
  }
  
  .page-cockfighting__faq-answer {
    padding: 0 15px;
  }
  
  .page-cockfighting__faq-item.active .page-cockfighting__faq-answer {
    padding: 15px !important;
  }
}