:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #000080; /* Dark Blue */
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f8f8f8;
  --background-dark: #1a1a1a;
  --border-color: #e0e0e0;
  --button-hover-dark: #ccad00;
  --button-hover-light: #00005a;
}

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

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

.page-cockfighting h1, .page-cockfighting h2, .page-cockfighting h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-cockfighting h1 {
  font-size: 2.8em;
  text-align: center;
  color: var(--text-light);
}

.page-cockfighting h2 {
  font-size: 2.2em;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-cockfighting h3 {
  font-size: 1.6em;
  margin-top: 25px;
  margin-bottom: 15px;
}

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

.page-cockfighting a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-cockfighting a:hover {
  color: var(--primary-color);
}

/* 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, var(--secondary-color) 0%, #3a005a 100%); /* Dark gradient background */
}

.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;
  max-width: 800px; /* Adjust max width for the image */
}

.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.3);
}

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

.page-cockfighting .hero-content p {
  color: var(--text-light);
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-cockfighting .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-cockfighting .cta-button:hover {
  background: var(--button-hover-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Section Intro */
.page-cockfighting .section-intro {
  padding: 60px 0;
  background-color: var(--background-light);
}

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

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

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

.page-cockfighting .intro-icon {
  width: 100%; /* Ensure images are not small icons */
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-cockfighting .intro-item h3 {
  color: var(--secondary-color);
  font-size: 1.4em;
  margin-bottom: 10px;
}

/* Section Game Types */
.page-cockfighting .section-game-types {
  padding: 60px 0;
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-cockfighting .section-game-types h2 {
  color: var(--primary-color);
}

.page-cockfighting .section-game-types p {
  color: #cccccc;
}

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

.page-cockfighting .game-type-card {
  background-color: #2a2a2a;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting .game-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting .game-type-card .card-img {
  width: 100%;
  max-width: 400px; /* Ensure images are not small icons */
  height: auto;
  border-radius: 5px;
  margin-bottom: 20px;
}

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

.page-cockfighting .game-type-card h3 .card-link {
  color: var(--primary-color);
}

.page-cockfighting .game-type-card h3 .card-link:hover {
  color: var(--text-light);
}

.page-cockfighting .game-type-card p {
  color: #bbbbbb;
}

/* Section Guide */
.page-cockfighting .section-guide {
  padding: 60px 0;
  background-color: var(--background-light);
}

.page-cockfighting .section-guide ol {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-cockfighting .section-guide ol li {
  background-color: #ffffff;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 5px solid var(--primary-color);
}

.page-cockfighting .section-guide ol li h3 {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-top: 0;
  margin-bottom: 10px;
}

.page-cockfighting .section-guide ol li h3 .guide-link {
  color: var(--secondary-color);
}

.page-cockfighting .section-guide ol li h3 .guide-link:hover {
  color: var(--primary-color);
}

/* Section Tips */
.page-cockfighting .section-tips {
  padding: 60px 0;
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.page-cockfighting .section-tips h2 {
  color: var(--primary-color);
}

.page-cockfighting .section-tips p {
  color: #eeeeee;
}

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

.page-cockfighting .tip-item {
  background-color: #00006a;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-cockfighting .tip-item .tip-img {
  width: 100%;
  max-width: 400px; /* Ensure images are not small icons */
  height: auto;
  border-radius: 5px;
  margin-bottom: 20px;
}

.page-cockfighting .tip-item h3 {
  color: var(--primary-color);
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-cockfighting .tip-item p {
  color: #dddddd;
}

/* Section Promotions */
.page-cockfighting .section-promotions {
  padding: 60px 0;
  background-color: var(--background-light);
}

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

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

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

.page-cockfighting .promo-card .promo-img {
  width: 100%;
  max-width: 400px; /* Ensure images are not small icons */
  height: auto;
  border-radius: 5px;
  margin-bottom: 20px;
}

.page-cockfighting .promo-card h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-cockfighting .promo-card h3 .card-link {
  color: var(--secondary-color);
}

.page-cockfighting .promo-card h3 .card-link:hover {
  color: var(--primary-color);
}

/* Section Safety Support */
.page-cockfighting .section-safety-support {
  padding: 60px 0;
  background-color: #f0f0f0;
}

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

.page-cockfighting .safety-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-bottom: 4px solid var(--secondary-color);
}

.page-cockfighting .safety-icon {
  width: 100%;
  max-width: 300px; /* Ensure images are not small icons */
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-cockfighting .safety-item h3 {
  color: var(--secondary-color);
  font-size: 1.4em;
  margin-bottom: 10px;
}

/* FAQ Section */
.page-cockfighting .section-faq {
  padding: 60px 0;
  background-color: var(--background-light);
}

.page-cockfighting .faq-list {
  margin-top: 40px;
}

.page-cockfighting .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.page-cockfishing .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  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: var(--secondary-color);
}

.page-cockfighting .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

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

.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: #fefefe;
  color: var(--text-dark);
}

.page-cockfighting .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px 25px;
  border-top: 1px solid var(--border-color);
}

/* Section Contact CTA */
.page-cockfighting .section-contact-cta {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(90deg, var(--secondary-color) 0%, #00004d 100%);
  color: var(--text-light);
}

.page-cockfighting .section-contact-cta h2 {
  color: var(--primary-color);
  font-size: 2.5em;
}

.page-cockfighting .section-contact-cta p {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #eeeeee;
}

.page-cockfighting .primary-cta {
  background: var(--primary-color);
  color: var(--secondary-color);
  margin-right: 20px;
}

.page-cockfighting .primary-cta:hover {
  background: var(--button-hover-dark);
  color: var(--secondary-color);
}

.page-cockfighting .secondary-cta {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.page-cockfighting .secondary-cta:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-cockfighting h1 {
    font-size: 2.2em;
  }
  .page-cockfighting h2 {
    font-size: 1.8em;
  }
  .page-cockfighting h3 {
    font-size: 1.3em;
  }
  .page-cockfighting p {
    font-size: 1em;
  }
  .page-cockfighting .hero-image {
    max-width: 600px;
  }
  .page-cockfighting .cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-cockfighting .section-contact-cta h2 {
    font-size: 2em;
  }
  .page-cockfighting .section-contact-cta p {
    font-size: 1.1em;
  }
  .page-cockfighting .primary-cta, .page-cockfighting .secondary-cta {
    margin-bottom: 15px;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .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-section {
    padding: 40px 15px;
  }
  .page-cockfighting .hero-image {
    margin-bottom: 20px;
  }
  .page-cockfighting .hero-image img {
    border-radius: 4px;
  }
  .page-cockfighting .cta-button {
    padding: 10px 25px;
    font-size: 15px;
    margin-top: 20px;
  }
  .page-cockfighting .intro-grid, .page-cockfighting .game-type-grid, .page-cockfighting .tips-grid, .page-cockfighting .promo-grid, .page-cockfighting .safety-support-grid {
    grid-template-columns: 1fr;
  }
  .page-cockfighting .section-contact-cta h2 {
    font-size: 1.8em;
  }
  .page-cockfighting .section-contact-cta p {
    font-size: 1em;
  }
  .page-cockfighting .primary-cta, .page-cockfighting .secondary-cta {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 15px auto;
  }
  .page-cockfighting .faq-question {
    padding: 15px 20px;
  }
  .page-cockfighting .faq-question h3 {
    font-size: 1.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;
  }
}