/* style/cockfighting.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f5f5f5;
  --background-dark: #222222;
  --border-color: #e0e0e0;
}

.page-cockfighting {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

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

/* Hero Section */
.page-cockfighting .hero-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #a00000 50%, var(--primary-color) 100%);
  color: var(--text-light);
  padding: 80px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-cockfighting .hero-container {
  max-width: 900px;
}

.page-cockfighting .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting .hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-cockfighting .cta-button {
  display: inline-block;
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting .cta-button:hover {
  background: #ffec8b; /* Lighter gold */
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-cockfighting .large-cta {
  font-size: 1.5em;
  padding: 20px 50px;
  margin-top: 40px;
}

/* Section General */
.page-cockfighting section {
  padding: 60px 0;
}

.page-cockfighting .section-title {
  font-size: 2.5em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-cockfighting .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.page-cockfighting .section-description {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 50px;
  color: var(--text-dark);
}

.page-cockfighting .subsection-title {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

/* Intro Section */
.page-cockfighting .intro-section {
  background-color: var(--background-light);
}

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

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

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

.page-cockfighting .image-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-cockfighting .content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* Game Types Section */
.page-cockfighting .game-types-section {
  background-color: #ffffff;
}

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

.page-cockfighting .game-card {
  background-color: var(--background-light);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-cockfighting .game-card .card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 3px solid var(--primary-color);
}

.page-cockfighting .game-card .card-title {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin: 20px 15px 10px;
}

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

.page-cockfighting .game-card .card-button {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--text-light);
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.page-cockfighting .game-card .card-button:hover {
  background: #a00000; /* Lighter dark red */
}

/* Guide Section */
.page-cockfighting .guide-section {
  background-color: var(--background-light);
}

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

.page-cockfighting .step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  padding-top: 60px;
}

.page-cockfighting .step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: var(--secondary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  border: 4px solid var(--secondary-color);
}

.page-cockfighting .step-title {
  font-size: 1.6em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-cockfighting .step-button {
  display: inline-block;
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-cockfighting .step-button:hover {
  background: #ffec8b;
}

/* Tips Section */
.page-cockfighting .tips-section {
  background-color: #ffffff;
}

.page-cockfighting .tips-section ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-cockfighting .tips-section li {
  margin-bottom: 10px;
}

/* Promo Section */
.page-cockfighting .promo-section {
  background: var(--secondary-color);
  color: var(--text-light);
}

.page-cockfighting .promo-section .section-title {
  color: var(--primary-color);
}

.page-cockfighting .promo-section .section-title::after {
  background-color: var(--text-light);
}

.page-cockfighting .promo-section .section-description {
  color: #f0f0f0;
}

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

.page-cockfighting .promo-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-cockfighting .promo-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.page-cockfighting .promo-item .promo-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-cockfighting .promo-item p {
  font-size: 1em;
  color: #e0e0e0;
}

/* Security Section */
.page-cockfighting .security-section {
  background-color: var(--background-light);
}

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

.page-cockfighting .faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-cockfighting .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

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

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

.page-cockfighting .faq-question h3 {
  font-size: 1.2em;
  color: var(--text-dark);
  margin: 0;
}

.page-cockfighting .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
  line-height: 1;
}

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

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

.page-cockfighting .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 15px 25px;
  border-top: 1px solid var(--border-color);
}

.page-cockfighting .faq-answer p {
  margin: 0;
  color: #555555;
}

/* Conclusion Section */
.page-cockfighting .conclusion-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #ffec8b 100%);
  color: var(--secondary-color);
  text-align: center;
}

.page-cockfighting .conclusion-section .section-title {
  color: var(--secondary-color);
}

.page-cockfighting .conclusion-section .section-title::after {
  background-color: var(--secondary-color);
}

.page-cockfighting .conclusion-section p {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-cockfighting .hero-title {
    font-size: 2.8em;
  }
  .page-cockfighting .hero-description {
    font-size: 1.1em;
  }
  .page-cockfighting .section-title {
    font-size: 2em;
  }
  .page-cockfighting .subsection-title {
    font-size: 1.5em;
  }
  .page-cockfighting .content-wrapper {
    flex-direction: column;
  }
  .page-cockfighting .content-wrapper.reverse-layout {
    flex-direction: column;
  }
  .page-cockfishing .image-content {
    margin-top: 30px;
  }
  .page-cockfighting .game-cards, .page-cockfighting .guide-steps, .page-cockfighting .promo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-cockfighting .hero-section {
    padding: 60px 15px;
  }
  .page-cockfighting .hero-title {
    font-size: 2.2em;
  }
  .page-cockfighting .hero-description {
    font-size: 1em;
  }
  .page-cockfighting .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-cockfighting .large-cta {
    font-size: 1.2em;
    padding: 15px 40px;
  }
  .page-cockfighting section {
    padding: 40px 0;
  }
  .page-cockfighting .section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-cockfighting .section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-cockfighting .subsection-title {
    font-size: 1.3em;
  }
  .page-cockfighting .step-item {
    padding: 25px;
    padding-top: 50px;
  }
  .page-cockfighting .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.8em;
    top: -22px;
  }
  .page-cockfighting .faq-question {
    padding: 15px 20px;
  }
  .page-cockfighting .faq-question h3 {
    font-size: 1.1em;
  }
  .page-cockfighting .faq-toggle {
    font-size: 1.5em;
  }
  .page-cockfighting .faq-answer {
    padding: 0 20px;
  }
  .page-cockfighting .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}