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

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

.page-cockfighting h1, .page-cockfighting h2, .page-cockfighting h3 {
  color: #FFD700;
  margin-bottom: 20px;
  text-align: center;
}

.page-cockfighting h1 {
  font-size: 2.8em;
  font-weight: bold;
  line-height: 1.2;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting h2 {
  font-size: 2.2em;
  margin-top: 40px;
  padding-bottom: 10px;
  border-bottom: 2px solid #FFD700;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting h3 {
  font-size: 1.6em;
  color: #FFD700;
  margin-top: 25px;
  text-align: left;
}

.page-cockfighting p {
  margin-bottom: 15px;
  color: #E0E0E0;
  text-align: center;
}

.page-cockfighting .text-center {
  text-align: center;
}

.page-cockfighting .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  color: #1A202C;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-cockfighting .cta-button:hover {
  background: linear-gradient(90deg, #FFA500, #FFD700);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-cockfighting section {
  padding: 60px 0;
  position: relative;
}

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

/* Hero Section */
.page-cockfighting .hero-section {
  padding: 0;
  background-color: #1A202C;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.page-cockfighting .hero-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-cockfighting .hero-image {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-cockfighting .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 90%;
  max-width: 800px;
}

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

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

/* Intro Section */
.page-cockfighting .section-intro .container > p {
  font-size: 1.1em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.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: #2D3748;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-cockfighting .intro-item p {
  color: #C0C0C0;
  font-size: 0.95em;
}

.page-cockfighting .feature-icon {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

/* Game Types Section */
.page-cockfighting .section-game-types .container > p {
  font-size: 1.1em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

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

.page-cockfighting .game-card {
  background-color: #1A202C;
  border: 1px solid #3A475C;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-cockfighting .card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.page-cockfighting .game-card h3 {
  font-size: 1.5em;
  color: #FFD700;
  margin: 20px 0 10px;
}

.page-cockfighting .game-card p {
  color: #C0C0C0;
  padding: 0 20px 20px;
  font-size: 0.95em;
}

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

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

/* How-To-Play Section */
.page-cockfighting .section-how-to-play .container > p {
  font-size: 1.1em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

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

.page-cockfighting .step-item {
  background-color: #2D3748;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting .step-number {
  width: 60px;
  height: 60px;
  background-color: #FFD700;
  color: #1A202C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px;
}

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

.page-cockfighting .step-item p {
  color: #C0C0C0;
  font-size: 0.9em;
  margin-bottom: 20px;
}

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

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

/* Tips Section */
.page-cockfighting .section-tips .container > p {
  font-size: 1.1em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.page-cockfighting .tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-cockfighting .tips-list li {
  background-color: #2D3748;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting .tips-list li h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
  text-align: left;
}

.page-cockfighting .tips-list li p {
  color: #C0C0C0;
  font-size: 0.95em;
  text-align: left;
}

/* Promotions Section */
.page-cockfighting .section-promotions .container > p {
  font-size: 1.1em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.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: #1A202C;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A475C;
}

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

.page-cockfighting .promo-card p {
  color: #C0C0C0;
  font-size: 0.95em;
}

/* Support Section */
.page-cockfighting .section-support .container > p {
  font-size: 1.1em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

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

.page-cockfighting .channel-item {
  background-color: #2D3748;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-cockfighting .channel-item p {
  color: #C0C0C0;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-cockfighting .support-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FFD700;
  color: #1A202C;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-cockfighting .support-button:hover {
  background-color: #FFA500;
  transform: translateY(-2px);
}

/* FAQ Section */
.page-cockfighting .section-faq {
  background-color: #1A202C;
}

.page-cockfighting .section-faq .container > p {
  font-size: 1.1em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

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

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

.page-cockfighting .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #2D3748;
  border: 1px solid #3A475C;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-cockfighting .faq-question:hover {
  background-color: #3A475C;
}

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

.page-cockfighting .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-cockfighting .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 20px;
  background-color: #1A202C;
  color: #E0E0E0;
}

.page-cockfighting .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 20px;
  border-top: 1px solid #3A475C;
}

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

.page-cockfighting .faq-answer p {
  text-align: left;
  margin: 0;
}

/* Conclusion Section */
.page-cockfighting .section-conclusion p {
  font-size: 1.1em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.page-cockfighting .section-conclusion a {
  color: #FFD700;
  text-decoration: underline;
}

.page-cockfighting .section-conclusion a:hover {
  color: #FFA500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting h1 {
    font-size: 2.5em;
  }
  .page-cockfighting .hero-content p {
    font-size: 1.1em;
  }
  .page-cockfighting h2 {
    font-size: 1.8em;
  }
  .page-cockfighting h3 {
    font-size: 1.4em;
  }
  .page-cockfighting .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-cockfighting .hero-section {
    min-height: 400px;
  }
  .page-cockfighting .hero-content h1 {
    font-size: 2em;
  }
  .page-cockfighting .hero-content p {
    font-size: 1em;
  }
  .page-cockfighting h2 {
    font-size: 1.6em;
  }
  .page-cockfighting h3 {
    font-size: 1.2em;
  }
  .page-cockfighting section {
    padding: 40px 0;
  }
  .page-cockfighting .intro-grid, .page-cockfighting .game-type-cards, .page-cockfighting .steps-container, .page-cockfighting .promo-grid, .page-cockfighting .support-channels {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-cockfighting .feature-icon {
    width: 100px;
  }
  .page-cockfighting .game-card h3 {
    font-size: 1.3em;
  }
  .page-cockfighting .faq-question {
    padding: 15px;
  }
  .page-cockfighting .faq-question h3 {
    font-size: 1.1em;
  }
  .page-cockfighting .faq-toggle {
    font-size: 1.5em;
  }
  .page-cockfishing .faq-answer {
    padding: 0 15px;
  }
  .page-cockfishing .faq-item.active .faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-cockfishing h1 {
    font-size: 1.8em;
  }
  .page-cockfishing .hero-content p {
    font-size: 0.9em;
  }
  .page-cockfishing .cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-cockfishing h2 {
    font-size: 1.4em;
  }
  .page-cockfishing h3 {
    font-size: 1.1em;
  }
  .page-cockfishing .game-card h3 {
    font-size: 1.2em;
  }
  .page-cockfishing .card-button {
    padding: 8px 20px;
  }
}