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

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

.page-cockfighting section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-cockfighting h1, .page-cockfighting h2, .page-cockfighting h3 {
  color: #8B0000; /* Deep Red for headings */
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-cockfighting h1 {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title in hero */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-cockfighting h2 {
  font-size: 2.5em;
}

.page-cockfighting h3 {
  font-size: 1.8em;
  color: #8B0000;
}

.page-cockfighting p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: center;
  color: #444444;
}

.page-cockfighting .cta-button {
  display: inline-block;
  background: linear-gradient(to right, #FFD700, #FFA500); /* Gold to Orange gradient */
  color: #8B0000; /* Deep Red text */
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid #8B0000;
}

.page-cockfighting .cta-button:hover {
  background: linear-gradient(to right, #FFA500, #FFD700);
  color: #ffffff; /* White text on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* 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: 80px 20px 60px;
  background-color: #1a1a1a; /* Dark background for hero */
}

.page-cockfighting .hero-container {
  position: relative;
  width: 100%;
  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 8px 25px rgba(0, 0, 0, 0.5);
}

.page-cockfighting .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: #ffffff;
}

.page-cockfighting .hero-content p {
  color: #e0e0e0;
  font-size: 1.2em;
  margin-bottom: 30px;
}

/* Intro Section */
.page-cockfighting .section-intro {
  background-color: #ffffff;
  text-align: center;
}

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

.page-cockfighting .intro-item {
  background-color: #fefefe;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #FFD700;
}

.page-cockfighting .intro-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-cockfighting .intro-item .intro-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #FFD700;
  padding: 5px;
}

.page-cockfighting .intro-item h3 {
  color: #8B0000;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-cockfighting .intro-item p {
  font-size: 1em;
  color: #555555;
  text-align: center;
}

/* Bet Types Section */
.page-cockfighting .section-bet-types {
  background-color: #f2f2f2;
  padding: 80px 0;
}

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

.page-cockfighting .bet-type-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-bottom: 5px solid #8B0000;
}

.page-cockfighting .bet-type-item .type-image {
  width: 250px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid #FFD700;
}

.page-cockfighting .bet-type-item h3 {
  color: #8B0000;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-cockfighting .bet-type-item p {
  color: #555555;
  font-size: 1em;
  text-align: center;
}

.page-cockfighting .section-bet-types ol {
  max-width: 800px;
  margin: 30px auto;
  text-align: left;
  padding-left: 25px;
  color: #444444;
}

.page-cockfighting .section-bet-types ol li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333333;
}

.page-cockfighting .section-bet-types ol li strong {
  color: #8B0000;
}

/* Live Experience Section */
.page-cockfighting .section-live-experience {
  background-color: #1a1a1a;
  color: #ffffff;
  text-align: center;
}

.page-cockfighting .section-live-experience h2 {
  color: #FFD700;
}

.page-cockfighting .section-live-experience p {
  color: #e0e0e0;
}

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

.page-cockfighting .feature-item {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #3a3a3a;
}

.page-cockfighting .feature-item .feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
  border: 3px solid #8B0000;
}

.page-cockfighting .feature-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-cockfighting .feature-item p {
  color: #cccccc;
  font-size: 1em;
  text-align: center;
}

/* Promotions Section */
.page-cockfighting .section-promotions {
  background-color: #ffffff;
}

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

.page-cockfighting .promo-item {
  background-color: #fefefe;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
}

.page-cockfighting .promo-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #FFD700;
  transform: translateX(-100%);
  transition: transform 0.3s ease-out;
}

.page-cockfighting .promo-item:hover::before {
  transform: translateX(0);
}

.page-cockfighting .promo-item .promo-image {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-cockfighting .promo-item h3 {
  color: #8B0000;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-cockfighting .promo-item p {
  color: #555555;
  font-size: 1em;
  text-align: center;
  margin-bottom: 25px;
}

.page-cockfighting .promo-button {
  display: inline-block;
  background-color: #8B0000; /* Deep Red */
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-cockfighting .promo-button:hover {
  background-color: #FFD700; /* Gold */
  color: #8B0000;
  transform: translateY(-2px);
}

/* FAQ Section */
.page-cockfighting .section-faq {
  background-color: #f2f2f2;
  padding-bottom: 80px;
}

.page-cockfighting .faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

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

.page-cockfighting .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-cockfighting .faq-question:hover {
  background: #f5f5f5;
}

.page-cockfighting .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: #333333;
  text-align: left;
  flex-grow: 1;
}

.page-cockfighting .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #8B0000;
  transition: transform 0.3s ease;
}

.page-cockfighting .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #FFD700;
}

.page-cockfighting .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  border-radius: 0 0 8px 8px;
}

.page-cockfighting .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
}

.page-cockfighting .faq-answer p {
  margin: 0;
  font-size: 1em;
  color: #555555;
  text-align: left;
}

/* CTA Bottom Section */
.page-cockfighting .section-cta-bottom {
  background: linear-gradient(135deg, #8B0000, #B22222); /* Deep Red gradient */
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-cockfighting .section-cta-bottom h2 {
  color: #FFD700;
  margin-bottom: 20px;
}

.page-cockfighting .section-cta-bottom p {
  color: #f0f0f0;
  font-size: 1.15em;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.page-cockfighting .cta-buttons .primary {
  background: linear-gradient(to right, #FFD700, #FFA500);
  color: #8B0000;
  border: 2px solid #8B0000;
}

.page-cockfighting .cta-buttons .primary:hover {
  background: linear-gradient(to right, #FFA500, #FFD700);
  color: #ffffff;
  border-color: #ffffff;
}

.page-cockfighting .cta-buttons .secondary {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-cockfighting .cta-buttons .secondary:hover {
  background: #FFD700;
  color: #8B0000;
  border-color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-cockfighting h1 {
    font-size: 2.8em;
  }

  .page-cockfighting h2 {
    font-size: 2em;
  }

  .page-cockfighting .intro-grid, .page-cockfighting .bet-type-grid, .page-cockfighting .live-features, .page-cockfighting .promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-cockfighting .faq-question h3 {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-cockfighting section {
    padding: 40px 0;
  }

  .page-cockfighting h1 {
    font-size: 2.2em;
  }

  .page-cockfighting h2 {
    font-size: 1.8em;
  }

  .page-cockfighting p {
    font-size: 1em;
  }

  .page-cockfighting .hero-content p {
    font-size: 1em;
  }

  .page-cockfighting .cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }

  .page-cockfighting .intro-item, .page-cockfighting .bet-type-item, .page-cockfighting .feature-item, .page-cockfighting .promo-item {
    padding: 20px;
  }

  .page-cockfighting .intro-item .intro-icon, .page-cockfighting .feature-item .feature-icon {
    width: 80px;
    height: 80px;
  }

  .page-cockfighting .bet-type-item .type-image {
    width: 200px;
    height: 150px;
  }

  .page-cockfighting .promo-item .promo-image {
    width: 150px;
    height: 120px;
  }

  .page-cockfighting .faq-question {
    padding: 15px 20px;
  }

  .page-cockfighting .faq-question h3 {
    font-size: 1em;
  }

  .page-cockfighting .faq-toggle {
    font-size: 20px;
  }

  .page-cockfighting .faq-answer {
    padding: 0 20px;
  }

  .page-cockfighting .faq-item.active .faq-answer {
    padding: 15px 20px;
  }

  .page-cockfighting .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting .container {
    padding: 0 15px;
  }

  .page-cockfighting h1 {
    font-size: 1.8em;
  }

  .page-cockfighting h2 {
    font-size: 1.5em;
  }

  .page-cockfighting h3 {
    font-size: 1.3em;
  }

  .page-cockfighting .cta-button {
    width: 100%;
    font-size: 1em;
  }

  .page-cockfighting .hero-section {
    padding: 60px 15px 40px;
  }
}