.page-cockfighting {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Màu chữ nhạt trên nền tối */
  background-color: #1A1A1A;
  line-height: 1.6;
}

.page-cockfighting h1, .page-cockfighting h2, .page-cockfighting h3, .page-cockfighting h4 {
  color: #FFD700; /* Màu vàng kim cho tiêu đề */
  font-weight: bold;
  margin-bottom: 20px;
}

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

.page-cockfighting .bg-dark-alt {
  background-color: #222222;
}

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

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

.page-cockfighting .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700;
  color: #1A1A1A;
  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: #E6C200;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-cockfighting .large-button {
  padding: 20px 50px;
  font-size: 22px;
}

/* 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, #1A1A1A 0%, #333333 100%); /* Nền gradient tối */
}

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

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

.page-cockfighting .hero-content h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700;
}

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

/* Intro Section */
.page-cockfighting .intro-section h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  text-align: center;
}

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

.page-cockfighting .feature-item {
  background-color: #222222;
  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 .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-cockfighting .feature-item .feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

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

.page-cockfighting .feature-item p {
  color: #CCCCCC;
  font-size: 1.1em;
}

/* Guide Section */
.page-cockfighting .guide-section h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #FFD700;
}

.page-cockfighting .guide-section p {
  color: #F0F0F0;
}

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

.page-cockfighting .step-item {
  background-color: #1A1A1A;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-cockfighting .step-number {
  width: 60px;
  height: 60px;
  background-color: #FFD700;
  color: #1A1A1A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

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

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

.page-cockfighting .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: 20px;
  border: none;
  cursor: pointer;
}

.page-cockfighting .btn-primary {
  background-color: #FFD700;
  color: #1A1A1A;
}

.page-cockfighting .btn-primary:hover {
  background-color: #E6C200;
  transform: translateY(-2px);
}

.page-cockfighting .btn-secondary {
  background-color: #333333;
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-cockfighting .btn-secondary:hover {
  background-color: #444444;
  color: #FFD700;
  transform: translateY(-2px);
}

/* Tips Section */
.page-cockfighting .tips-section h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #FFD700;
}

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

.page-cockfighting .tips-content {
  margin-top: 40px;
}

.page-cockfighting .tip-item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  background-color: #222222;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.page-cockfighting .tip-item:last-child {
  margin-bottom: 0;
}

.page-cockfighting .tip-item .tip-image {
  width: 40%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px 0 0 10px;
}

.page-cockfighting .tip-item .tip-text {
  width: 60%;
  padding: 30px;
}

.page-cockfighting .tip-item.reverse .tip-image {
  order: 2;
  border-radius: 0 10px 10px 0;
}

.page-cockfighting .tip-item.reverse .tip-text {
  order: 1;
}

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

.page-cockfighting .tip-item p {
  color: #CCCCCC;
  font-size: 1.1em;
}

/* Security and FAQ Section */
.page-cockfighting .security-faq-section .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.page-cockfighting .security-content, .page-cockfighting .faq-content {
  flex: 1;
  min-width: 300px;
}

.page-cockfighting .security-content h2, .page-cockfighting .faq-content h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #FFD700;
}

.page-cockfighting .security-content p {
  color: #F0F0F0;
  margin-bottom: 30px;
}

.page-cockfighting .security-features {
  display: grid;
  gap: 20px;
}

.page-cockfighting .feature-box {
  background-color: #1A1A1A;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.page-cockfighting .feature-box h4 {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-cockfighting .feature-box p {
  color: #CCCCCC;
  font-size: 1em;
}

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

.page-cockfighting .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #1A1A1A;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

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

.page-cockfighting .faq-question h3 {
  margin: 0;
  font-size: 1.3em;
  color: #FFD700;
  flex-grow: 1;
}

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

.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: #1A1A1A;
  color: #CCCCCC;
}

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

.page-cockfighting .faq-item.active .faq-answer {
  max-height: 500px; /* Đủ lớn để chứa nội dung */
  padding: 15px 25px;
  padding-top: 0;
}

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

/* Call to Action Bottom Section */
.page-cockfighting .cta-bottom {
  background: linear-gradient(90deg, #FFD700, #E6C200);
  color: #1A1A1A;
  padding: 80px 20px;
}

.page-cockfighting .cta-bottom h2 {
  color: #1A1A1A;
  font-size: 3em;
  margin-bottom: 25px;
}

.page-cockfighting .cta-bottom p {
  color: #333333;
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-cockfighting .cta-bottom .large-button {
  background: #1A1A1A;
  color: #FFD700;
}

.page-cockfighting .cta-bottom .large-button:hover {
  background: #333333;
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting .hero-content h1 {
    font-size: 2.8em;
  }
  .page-cockfighting .tip-item .tip-image {
    height: 250px;
  }
  .page-cockfighting .tip-item h3 {
    font-size: 1.8em;
  }
  .page-cockfighting .security-content, .page-cockfighting .faq-content {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .page-cockfighting .hero-section {
    padding: 40px 15px;
  }
  .page-cockfighting .hero-content h1 {
    font-size: 2.2em;
  }
  .page-cockfighting .hero-content p {
    font-size: 1em;
  }
  .page-cockfighting .cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-cockfighting .section-padding {
    padding: 40px 0;
  }
  .page-cockfighting .feature-grid {
    grid-template-columns: 1fr;
  }
  .page-cockfighting .guide-steps {
    grid-template-columns: 1fr;
  }
  .page-cockfighting .tip-item {
    flex-direction: column;
    margin-bottom: 40px;
  }
  .page-cockfighting .tip-item .tip-image {
    width: 100%;
    border-radius: 10px 10px 0 0;
    height: 200px;
  }
  .page-cockfighting .tip-item .tip-text {
    width: 100%;
    padding: 20px;
  }
  .page-cockfighting .tip-item.reverse .tip-image {
    order: 1;
    border-radius: 10px 10px 0 0;
  }
  .page-cockfighting .tip-item.reverse .tip-text {
    order: 2;
  }
  .page-cockfighting .tip-item h3 {
    font-size: 1.5em;
  }
  .page-cockfighting .security-content h2, .page-cockfighting .faq-content h2 {
    font-size: 2em;
  }
  .page-cockfighting .faq-question {
    padding: 15px 20px;
  }
  .page-cockfighting .faq-question h3 {
    font-size: 1.1em;
  }
  .page-cockfighting .faq-toggle {
    font-size: 1.8em;
  }
  .page-cockfighting .faq-answer {
    padding: 0 20px;
  }
  .page-cockfighting .faq-item.active .faq-answer {
    padding: 10px 20px;
    padding-top: 0;
  }
  .page-cockfighting .cta-bottom h2 {
    font-size: 2.2em;
  }
  .page-cockfighting .cta-bottom p {
    font-size: 1.1em;
  }
  .page-cockfighting .large-button {
    padding: 15px 35px;
    font-size: 18px;
  }
}