.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: #000080; /* Secondary color for headings */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-cockfighting h1 {
  font-size: 3.2em;
  color: #FFD700; /* Primary color for main H1 */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-cockfighting h3 {
  font-size: 1.8em;
  color: #000080;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-cockfighting p {
  font-size: 1.1em;
  margin-bottom: 15px;
  text-align: justify;
}

.page-cockfighting .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700; /* Primary color for CTA */
  color: #000080; /* Dark text for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-cockfighting .cta-button:hover {
  background: #e6c200; /* Slightly darker primary on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px 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: 60px 20px;
  background: linear-gradient(135deg, #000080, #330066); /* Darker gradient background */
  color: #ffffff;
}

.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 20px rgba(0, 0, 0, 0.4);
}

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

.page-cockfighting .hero-content h1 {
  color: #FFD700;
  margin-bottom: 20px;
  font-size: 3.5em;
}

.page-cockfighting .hero-content p {
  color: #f0f0f0;
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

/* Section Intro */
.page-cockfighting .section-intro {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 50px;
  margin-top: -80px; /* Overlap with hero for visual flow */
  position: relative;
  z-index: 1;
}

.page-cockfighting .section-intro p {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 15px auto;
}

/* Game Type Grid */
.page-cockfighting .section-game-types {
  background-color: #f0f4f8;
  padding: 80px 0;
}

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

.page-cockfighting .game-type-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting .game-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-cockfighting .game-type-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-cockfighting .game-type-card h3 {
  color: #000080;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-cockfighting .game-type-card p {
  font-size: 1em;
  color: #555555;
  text-align: left;
}

/* Guide Steps */
.page-cockfighting .section-guide {
  background-color: #ffffff;
  padding: 80px 0;
}

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

.page-cockfighting .step-item {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.page-cockfighting .step-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-cockfighting .step-item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-cockfighting .step-item h3 {
  color: #000080;
  font-size: 1.4em;
  margin-bottom: 15px;
}

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

.page-cockfighting .step-item .btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-cockfighting .step-item .btn-primary {
  background-color: #FFD700;
  color: #000080;
}

.page-cockfighting .step-item .btn-primary:hover {
  background-color: #e6c200;
}

.page-cockfighting .step-item .btn-secondary {
  background-color: #000080;
  color: #ffffff;
}

.page-cockfighting .step-item .btn-secondary:hover {
  background-color: #000066;
}

/* Tips Section */
.page-cockfighting .section-tips {
  background-color: #f0f4f8;
  padding: 80px 0;
}

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

.page-cockfighting .tip-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting .tip-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-cockfighting .tip-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-cockfighting .tip-card h3 {
  color: #000080;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-cockfighting .tip-card p {
  font-size: 1em;
  color: #555555;
  text-align: left;
}

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

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

.page-cockfighting .promo-item {
  background-color: #fdfde6; /* Light yellow background for promos */
  border: 1px solid #FFD700;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-cockfighting .promo-item:hover {
  transform: translateY(-5px);
}

.page-cockfighting .promo-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

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

/* Security and Support */
.page-cockfighting .section-security-support {
  background-color: #f0f4f8;
  padding: 80px 0;
}

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

.page-cockfighting .security-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting .security-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-cockfighting .security-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-cockfighting .security-item h3 {
  color: #000080;
  font-size: 1.5em;
  margin-bottom: 10px;
}

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

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

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

.page-cockfighting .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.page-cockfighting .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #000080; /* Dark blue background for question */
  color: #ffffff; /* White text for question */
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

.page-cockfighting .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  text-align: left;
  color: inherit; /* Inherit color from parent */
}

.page-cockfighting .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease;
  line-height: 1;
}

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

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

.page-cockfighting .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 25px;
  border-top: 1px solid #e0e0e0;
}

.page-cockfighting .faq-answer p {
  margin-bottom: 15px;
  text-align: left;
}

.page-cockfighting .faq-answer .faq-link {
  color: #FFD700; /* Primary color for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-cockfighting .faq-answer .faq-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

/* Conclusion Section */
.page-cockfighting .section-conclusion {
  background: linear-gradient(135deg, #000080, #330066);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

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

.page-cockfighting .section-conclusion p {
  max-width: 900px;
  margin: 0 auto 25px auto;
  font-size: 1.2em;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting h1 {
    font-size: 2.8em;
  }
  .page-cockfighting h2 {
    font-size: 2em;
  }
  .page-cockfighting h3 {
    font-size: 1.6em;
  }
  .page-cockfighting .hero-content p {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-cockfighting section {
    padding: 40px 0;
  }
  .page-cockfighting .section-intro {
    margin-top: -40px;
    padding: 30px;
  }
  .page-cockfighting h1 {
    font-size: 2.2em;
  }
  .page-cockfighting h2 {
    font-size: 1.8em;
  }
  .page-cockfighting h3 {
    font-size: 1.4em;
  }
  .page-cockfighting .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-cockfighting .hero-image img {
    border-radius: 8px;
  }
  .page-cockfighting .game-type-grid, .page-cockfighting .guide-steps, .page-cockfighting .tips-grid, .page-cockfighting .promo-list, .page-cockfighting .security-support-grid {
    grid-template-columns: 1fr;
  }
  .page-cockfighting .game-type-card, .page-cockfighting .step-item, .page-cockfighting .tip-card, .page-cockfighting .promo-item, .page-cockfighting .security-item {
    padding: 20px;
  }
  .page-cockfighting .faq-question {
    padding: 15px 20px;
  }
  .page-cockfighting .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting .container {
    padding: 0 15px;
  }
  .page-cockfighting h1 {
    font-size: 1.8em;
  }
  .page-cockfighting h2 {
    font-size: 1.6em;
  }
  .page-cockfighting h3 {
    font-size: 1.2em;
  }
  .page-cockfighting .hero-content p {
    font-size: 1em;
  }
  .page-cockfighting .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-cockfighting .faq-question h3 {
    font-size: 1.1em;
  }
  .page-cockfighting .faq-toggle {
    font-size: 20px;
  }
}