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

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

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

.page-cockfighting section:nth-of-type(even) {
  background-color: #eaeaea;
}

.page-cockfighting h1, .page-cockfighting h2, .page-cockfighting h3 {
  color: #1E90FF; /* Royal Blue */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-cockfighting h1 {
  font-size: 2.8em;
  color: #FFD700; /* Gold */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting h2 {
  font-size: 2.2em;
  color: #1E90FF;
}

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

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

.page-cockfighting .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700; /* Gold */
  color: #1E90FF; /* Royal Blue */
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 2px solid #FFD700;
}

.page-cockfighting .cta-button:hover {
  background: #1E90FF; /* Royal Blue */
  color: #FFD700; /* Gold */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border-color: #1E90FF;
}

.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;
  background: linear-gradient(135deg, #0a0a0a 0%, #333333 100%); /* Dark 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;
}

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

.page-cockfighting .section-intro {
  background-color: #f9f9f9;
}

.page-cockfighting .intro-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-cockfighting .intro-grid .intro-text {
  flex: 1;
}

.page-cockfighting .intro-grid .intro-image {
  flex: 1;
  text-align: center;
}

.page-cockfighting .intro-grid .intro-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-cockfighting .section-game-types {
  background-color: #ffffff;
}

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

.page-cockfighting .game-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-cockfighting .game-card img {
  max-width: 100%;
  height: 250px; /* Fixed height for better consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-cockfighting .game-card h3 {
  font-size: 1.5em;
  color: #1E90FF;
  margin-bottom: 15px;
}

.page-cockfighting .game-card h3 a {
  color: #1E90FF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-cockfighting .game-card h3 a:hover {
  color: #FFD700;
}

.page-cockfighting .game-card p {
  font-size: 1em;
  color: #555;
  flex-grow: 1;
}

.page-cockfighting .card-button {
  display: inline-block;
  padding: 10px 25px;
  background: #1E90FF;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  margin-top: 20px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.page-cockfighting .card-button:hover {
  background: #FFD700;
  color: #1E90FF;
  transform: translateY(-2px);
}

.page-cockfighting .section-guide {
  background-color: #f0f8ff;
}

.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: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

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

.page-cockfighting .step-item img {
  width: 150px; /* Larger size for feature images */
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-cockfighting .step-item p {
  font-size: 1em;
  color: #666;
  flex-grow: 1;
}

.page-cockfighting .step-button {
  display: inline-block;
  padding: 10px 20px;
  background: #FFD700;
  color: #1E90FF;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  margin-top: 20px;
  transition: background 0.3s ease, color 0.3s ease;
}

.page-cockfighting .step-button:hover {
  background: #1E90FF;
  color: #FFD700;
}

.page-cockfighting .section-advantages {
  background-color: #eaeaea;
}

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

.page-cockfighting .advantage-list li {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-cockfighting .advantage-list li img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-cockfighting .advantage-list li h3 {
  font-size: 1.3em;
  color: #1E90FF;
  margin-bottom: 10px;
}

.page-cockfighting .advantage-list li p {
  font-size: 0.95em;
  color: #666;
}

.page-cockfighting .section-tips {
  background-color: #ffffff;
}

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

.page-cockfighting .tip-card {
  background-color: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.page-cockfighting .tip-card h3 {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
  text-align: left;
}

.page-cockfighting .tip-card p {
  font-size: 1em;
  color: #555;
}

.page-cockfighting .section-faq {
  background-color: #f0f8ff;
}

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

/* FAQ default state - answer hidden */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
  background: #fdfdfd;
  border-radius: 0 0 5px 5px;
  color: #444;
}

/* FAQ expanded state */
.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-top: none;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* Question styling */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  margin-bottom: 10px;
}

.faq-question:hover {
  background: #f5f5f5;
  border-color: #1E90FF;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #333;
  text-align: left;
}

/* Toggle icon */
.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #1E90FF;
  transition: transform 0.3s ease;
  line-height: 1;
}

.page-cockfighting .section-conclusion {
  background-color: #333;
  color: #ffffff;
  text-align: center;
}

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

.page-cockfighting .section-conclusion p {
  color: #e0e0e0;
  font-size: 1.15em;
}

.page-cockfighting .final-cta {
  background: #FFD700;
  color: #1E90FF;
  border-color: #FFD700;
}

.page-cockfighting .final-cta:hover {
  background: #1E90FF;
  color: #FFD700;
  border-color: #1E90FF;
}

/* 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.5em;
  }
  .page-cockfighting .intro-grid {
    flex-direction: column;
  }
  .page-cockfighting .intro-grid .intro-image {
    margin-top: 30px;
  }
  .page-cockfighting .game-type-grid, .page-cockfighting .guide-steps, .page-cockfighting .advantage-list, .page-cockfighting .tip-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-cockfighting .hero-content p {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-cockfighting section {
    padding: 40px 0;
  }
  .page-cockfighting h1 {
    font-size: 1.8em;
  }
  .page-cockfighting h2 {
    font-size: 1.6em;
  }
  .page-cockfighting h3 {
    font-size: 1.3em;
  }
  .page-cockfighting .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-cockfighting .hero-image img {
    border-radius: 8px;
  }
  .page-cockfighting .game-card img {
    height: 200px;
  }
  .faq-question {
    padding: 12px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting h1 {
    font-size: 1.6em;
  }
  .page-cockfighting h2 {
    font-size: 1.4em;
  }
  .page-cockfighting .container {
    padding: 0 15px;
  }
  .page-cockfighting .hero-content p {
    font-size: 1em;
  }
  .page-cockfighting .cta-button {
    width: 90%;
    max-width: 300px;
  }
  .page-cockfighting .game-type-grid, .page-cockfighting .guide-steps, .page-cockfighting .advantage-list, .page-cockfighting .tip-cards {
    grid-template-columns: 1fr;
  }
}