.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: 20px;
}

.page-cockfighting section {
  padding: 60px 0;
  margin-bottom: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.page-cockfighting h1,
.page-cockfighting h2,
.page-cockfighting h3 {
  color: #E44D26; /* Primary color */
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
}

.page-cockfighting h1 {
  font-size: 3.2em;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-cockfighting h2 {
  font-size: 2.5em;
  border-bottom: 3px solid #FFB800; /* Secondary color */
  display: inline-block;
  padding-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting h3 {
  font-size: 1.8em;
  color: #444444;
  text-align: left;
}

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

.page-cockfighting .cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #E44D26; /* Primary color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting .cta-button:hover {
  background-color: #FFB800; /* Secondary color */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting .small-button {
  padding: 10px 20px;
  font-size: 1em;
}

/* Hero Banner */
.page-cockfighting .hero-banner {
  background: linear-gradient(135deg, #E44D26, #FFB800);
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.page-cockfighting .hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-cockfighting .hero-image-main {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.page-cockfighting .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-cockfighting .hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #eeeeee;
  text-align: center;
}

/* Section Intro */
.page-cockfighting .section-intro {
  text-align: center;
}

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

.page-cockfighting .game-type-item {
  background-color: #fefefe;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-cockfighting .game-type-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-cockfighting .game-type-item h3 {
  font-size: 1.5em;
  color: #E44D26; /* Primary color */
  margin-bottom: 10px;
}

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

/* How To Play */
.page-cockfighting .step-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-cockfighting .step-list li {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 25px 30px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.page-cockfighting .step-list li:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.page-cockfighting .step-list li::before {
  counter-increment: step-counter;
  content: "Bước " counter(step-counter);
  position: absolute;
  top: -15px;
  left: 20px;
  background-color: #FFB800; /* Secondary color */
  color: #ffffff;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-cockfighting .step-list li h3 {
  margin-top: 0;
  margin-bottom: 10px;
  text-align: left;
  color: #E44D26; /* Primary color */
  padding-top: 10px;
}

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

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

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

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

.page-cockfighting .advantage-item {
  background-color: #fefefe;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-cockfighting .advantage-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-cockfighting .advantage-item h3 {
  font-size: 1.4em;
  color: #E44D26; /* Primary color */
  margin-bottom: 10px;
  text-align: center;
}

.page-cockfighting .advantage-item p {
  font-size: 0.95em;
  color: #555555;
  text-align: center;
}

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

.page-cockfighting .strategy-item {
  background-color: #fefefe;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-cockfighting .strategy-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-cockfighting .strategy-item h3 {
  font-size: 1.5em;
  color: #E44D26; /* Primary color */
  margin-bottom: 10px;
}

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

/* Safety & Support */
.page-cockfighting .section-safety-support {
  text-align: center;
}

.page-cockfighting .section-safety-support p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* FAQ */
.page-cockfighting .section-faq {
  padding-bottom: 80px;
}

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

.page-cockfighting .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

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

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

.page-cockfighting .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: #333333;
  text-align: left;
  flex-grow: 1;
}

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

.page-cockfighting .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #FFB800; /* 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-color: #f9f9f9;
  color: #555555;
}

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

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

.page-cockfighting .faq-answer a {
  color: #E44D26;
  text-decoration: none;
  font-weight: bold;
}

.page-cockfighting .faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-cockfighting h1 {
    font-size: 2.8em;
  }
  .page-cockfighting h2 {
    font-size: 2em;
  }
  .page-cockfighting h3 {
    font-size: 1.6em;
  }
  .page-cockfighting .hero-image-main {
    max-width: 800px;
  }
  .page-cockfighting .game-type-grid,
  .page-cockfighting .advantage-grid,
  .page-cockfighting .strategy-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-cockfighting section {
    padding: 40px 0;
  }
  .page-cockfighting h1 {
    font-size: 2.2em;
  }
  .page-cockfighting h2 {
    font-size: 1.8em;
  }
  .page-cockfighting h3 {
    font-size: 1.4em;
  }
  .page-cockfighting .hero-banner {
    padding: 60px 0;
  }
  .page-cockfighting .hero-image-main {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .page-cockfighting .hero-content p {
    font-size: 1em;
  }
  .page-cockfighting .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-cockfighting .game-type-item,
  .page-cockfighting .advantage-item,
  .page-cockfighting .strategy-item {
    padding: 20px;
  }
  .page-cockfighting .step-list li {
    padding: 20px 25px;
  }
  .page-cockfighting .step-list li::before {
    top: -10px;
    left: 15px;
    padding: 3px 10px;
    font-size: 0.8em;
  }
  .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: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting h1 {
    font-size: 1.8em;
  }
  .page-cockfighting h2 {
    font-size: 1.5em;
  }
  .page-cockfighting h3 {
    font-size: 1.2em;
  }
  .page-cockfighting .cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-cockfighting .game-type-grid,
  .page-cockfighting .advantage-grid,
  .page-cockfighting .strategy-grid {
    grid-template-columns: 1fr;
  }
  .page-cockfighting .game-type-image,
  .page-cockfighting .strategy-image {
    height: 180px;
  }
}