.page-cockfighting {
  font-family: 'Arial', sans-serif;
  color: #333;
  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-section:nth-of-type(even) {
  background-color: #ffffff;
}

.page-cockfighting-section-title {
  font-size: 3em;
  color: #FF0000; /* Primary color */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  text-transform: uppercase;
}

.page-cockfighting-subtitle {
  font-size: 1.3em;
  text-align: center;
  color: #555;
  margin-bottom: 40px;
}

/* 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, #FF0000, #AA0000); /* Darker red gradient for hero */
  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: 8px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.page-cockfighting-hero-content h1 {
  font-size: 4em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-hero-content p {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-cockfighting-cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #000080; /* Secondary color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.4em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid #000080;
}

.page-cockfighting-cta-button:hover {
  background: #FF0000; /* Primary color on hover */
  border-color: #FF0000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-link-button {
  display: inline-block;
  padding: 12px 30px;
  background: #FF0000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.page-cockfighting-link-button:hover {
  background: #AA0000;
  transform: translateY(-2px);
}

.page-cockfighting-content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-cockfighting-content-wrapper.page-cockfighting-reverse-layout {
  flex-direction: row-reverse;
}

.page-cockfighting-text-content {
  flex: 1;
}

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

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

.page-cockfighting-responsive-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.page-cockfighting-game-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  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(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

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

.page-cockfighting-game-card h3 {
  font-size: 1.8em;
  color: #000080; /* Secondary color */
  margin-bottom: 15px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-cockfighting-game-card h3 a.page-cockfighting-card-title-link:hover {
  color: #FF0000;
}

.page-cockfighting-game-card p {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-cockfighting-card-button {
  display: inline-block;
  padding: 10px 25px;
  background: #FF0000; /* Primary color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-cockfighting-card-button:hover {
  background: #AA0000;
  transform: translateY(-2px);
}

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

.page-cockfighting-step {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

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

.page-cockfighting-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #000080; /* Secondary color */
  color: #ffffff;
  font-size: 2.2em;
  font-weight: bold;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-step h3 {
  font-size: 1.6em;
  color: #FF0000; /* Primary color */
  margin-bottom: 15px;
}

.page-cockfighting-step h3 a {
  color: #FF0000;
  text-decoration: none;
}

.page-cockfighting-step h3 a:hover {
  text-decoration: underline;
}

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

.page-cockfighting-center-button {
  text-align: center;
  margin-top: 50px;
}

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

.page-cockfighting-promo-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  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-promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

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

.page-cockfighting-promo-card h3 {
  font-size: 1.8em;
  color: #000080; /* Secondary color */
  margin-bottom: 15px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-cockfighting-promo-card h3 a.page-cockfighting-card-title-link {
  color: #000080;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-cockfighting-promo-card h3 a.page-cockfighting-card-title-link:hover {
  color: #FF0000;
}

.page-cockfighting-promo-card p {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* FAQ Section */
.page-cockfighting-faq-list {
  margin-top: 40px;
}

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

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

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

.page-cockfighting .faq-question h3 {
  font-size: 1.3em;
  color: #000080; /* Secondary color */
  margin: 0;
}

.page-cockfighting .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FF0000; /* Primary color */
  transition: transform 0.3s ease;
}

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

.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;
  color: #444;
}

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

.page-cockfighting .faq-answer p {
  margin: 0;
  font-size: 1.05em;
}

/* Final Call to Action */
.page-cockfighting-cta-final {
  text-align: center;
  padding: 80px 20px;
  background: #000080; /* Secondary color */
  color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-cta-final h2 {
  color: #ffffff;
  font-size: 3.5em;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-cta-final p {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-cockfighting-cta-large {
  padding: 20px 60px;
  font-size: 1.6em;
  background: #FF0000;
  border-color: #FF0000;
}

.page-cockfighting-cta-large:hover {
  background: #AA0000;
  border-color: #AA0000;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting-hero-content h1 {
    font-size: 3.5em;
  }
  .page-cockfighting-hero-content p {
    font-size: 1.3em;
  }
  .page-cockfighting-section-title {
    font-size: 2.5em;
  }
  .page-cockfighting-subtitle {
    font-size: 1.1em;
  }
  .page-cockfighting-content-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .page-cockfighting-content-wrapper.page-cockfighting-reverse-layout {
    flex-direction: column;
  }
  .page-cockfighting-hero-image img {
    max-height: 400px;
  }
  .page-cockfighting-promo-img, .page-cockfighting-card-img {
    height: 180px;
  }
  .page-cockfighting-cta-final h2 {
    font-size: 3em;
  }
}

@media (max-width: 768px) {
  .page-cockfighting-hero-content h1 {
    font-size: 2.8em;
  }
  .page-cockfighting-hero-content p {
    font-size: 1.1em;
  }
  .page-cockfighting-cta-button {
    padding: 15px 35px;
    font-size: 1.2em;
  }
  .page-cockfighting-section-title {
    font-size: 2em;
  }
  .page-cockfighting-subtitle {
    font-size: 1em;
  }
  .page-cockfighting-grid, .page-cockfighting-guide-steps, .page-cockfighting-promo-grid {
    grid-template-columns: 1fr;
  }
  .page-cockfighting-game-card, .page-cockfighting-promo-card {
    padding: 20px;
  }
  .page-cockfighting-promo-img, .page-cockfighting-card-img {
    height: 150px;
  }
  .page-cockfighting-step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
  .page-cockfighting-step h3 {
    font-size: 1.4em;
  }
  .page-cockfighting .faq-question h3 {
    font-size: 1.1em;
  }
  .page-cockfighting .faq-toggle {
    font-size: 20px;
  }
  .page-cockfighting-cta-final h2 {
    font-size: 2.5em;
  }
  .page-cockfighting-cta-final p {
    font-size: 1.2em;
  }
  .page-cockfighting-cta-large {
    padding: 15px 40px;
    font-size: 1.4em;
  }
}

@media (max-width: 480px) {
  .page-cockfighting-hero-content h1 {
    font-size: 2.2em;
  }
  .page-cockfighting-hero-content p {
    font-size: 1em;
  }
  .page-cockfighting-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-cockfighting-section-title {
    font-size: 1.8em;
  }
  .page-cockfighting-cta-final h2 {
    font-size: 2em;
  }
  .page-cockfighting-cta-final p {
    font-size: 1em;
  }
  .page-cockfighting-cta-large {
    padding: 12px 30px;
    font-size: 1.2em;
  }
}