/* style/cockfighting.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --bg-color-light: #f5f5f5;
  --bg-color-dark: #222222;
  --border-color: #e0e0e0;
  --link-color: #007bff;
  --link-hover-color: #0056b3;
}

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

.page-cockfighting a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-cockfighting a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

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

.page-cockfighting h1, .page-cockfighting h2, .page-cockfighting h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-cockfighting h1 {
  font-size: 3.2em;
  text-align: center;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting h2 {
  font-size: 2.5em;
  text-align: center;
  margin-top: 40px;
  color: var(--secondary-color);
}

.page-cockfighting h3 {
  font-size: 1.8em;
  color: var(--secondary-color);
}

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

.page-cockfighting ol, .page-cockfighting ul {
  margin-bottom: 20px;
  padding-left: 25px;
}

.page-cockfighting ol li, .page-cockfighting ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

/* 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, var(--secondary-color) 0%, rgba(139, 0, 0, 0.8) 50%, var(--primary-color) 100%);
  color: var(--text-color-light);
  overflow: hidden;
}

.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;
  z-index: 1;
}

.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: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-cockfighting .hero-content p {
  font-size: 1.3em;
  margin-top: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-color-light);
}

.page-cockfighting .hero-content a {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-cockfighting .hero-content a:hover {
  color: var(--text-color-light);
}

.page-cockfighting .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--secondary-color);
  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(0, 0, 0, 0.3);
  border: 2px solid var(--primary-color);
}

.page-cockfighting .cta-button:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border-color: var(--primary-color);
}

.page-cockfighting .primary-cta {
  background: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
}

.page-cockfighting .primary-cta:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

/* General Sections */
.page-cockfighting .intro-section, 
.page-cockfighting .game-types-section, 
.page-cockfighting .guide-section, 
.page-cockfighting .strategies-section, 
.page-cockfighting .promotions-section, 
.page-cockfighting .safety-support-section, 
.page-cockfighting .faq-section, 
.page-cockfighting .conclusion-section {
  padding: 60px 0;
  background-color: var(--bg-color-light);
}

.page-cockfighting .intro-section .image-wrapper {
  margin: 40px auto;
  text-align: center;
}

.page-cockfighting .intro-section .image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Game Types Cards */
.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: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.page-cockfighting .game-card h3 {
  padding: 20px 20px 0;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.page-cockfighting .game-card h3 a {
  color: inherit;
  text-decoration: none;
}

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

.page-cockfighting .game-card p {
  padding: 0 20px 20px;
  font-size: 1em;
  flex-grow: 1;
}

/* Guide Section */
.page-cockfighting .guide-section ol {
  list-style: none;
  counter-reset: guide-counter;
  padding-left: 0;
}

.page-cockfighting .guide-section ol li {
  background-color: #ffffff;
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  position: relative;
  padding-left: 80px;
}

.page-cockfighting .guide-section ol li::before {
  counter-increment: guide-counter;
  content: counter(guide-counter);
  position: absolute;
  left: 30px;
  top: 25px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-cockfighting .guide-section ol li h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

/* Strategies Section */
.page-cockfighting .strategies-section ul {
  list-style: none;
  padding-left: 0;
}

.page-cockfighting .strategies-section ul li {
  background-color: #ffffff;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid var(--primary-color);
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.page-cockfighting .strategies-section ul li strong {
  color: var(--secondary-color);
  font-size: 1.1em;
}

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

.page-cockfighting .promo-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.page-cockfighting .promo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-cockfighting .promo-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.page-cockfighting .promo-item h3 {
  padding: 20px 20px 0;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.page-cockfighting .promo-item h3 a {
  color: inherit;
  text-decoration: none;
}

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

.page-cockfighting .promo-item p {
  padding: 0 20px 20px;
  font-size: 1em;
  flex-grow: 1;
}

/* Safety & Support Section */
.page-cockfighting .safety-support-section {
  background-color: var(--bg-color-dark);
  color: var(--text-color-light);
}

.page-cockfighting .safety-support-section h2 {
  color: var(--primary-color);
}

.page-cockfighting .safety-support-section h3 {
  color: var(--primary-color);
}

.page-cockfighting .safety-support-section a {
  color: var(--primary-color);
}

.page-cockfighting .safety-support-section a:hover {
  color: var(--text-color-light);
}

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

.page-cockfighting .info-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.page-cockfighting .info-item h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.5em;
}

.page-cockfighting .info-item p {
  font-size: 1em;
}

/* FAQ Section */
.page-cockfighting .faq-section {
  background-color: var(--bg-color-light);
}

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

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

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

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

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

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

.page-cockfighting .faq-item.active .faq-answer {
  max-height: 500px; /* Enough height to contain content */
  padding: 20px 25px;
  border-top: 1px solid var(--border-color);
  border-radius: 0 0 8px 8px;
}

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

/* Conclusion Section */
.page-cockfighting .conclusion-section {
  text-align: center;
  background-color: var(--bg-color-dark);
  color: var(--text-color-light);
  padding-bottom: 80px;
}

.page-cockfighting .conclusion-section h2 {
  color: var(--primary-color);
}

.page-cockfighting .conclusion-section p {
  color: var(--text-color-light);
  font-size: 1.2em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting .conclusion-section .cta-button {
  margin-top: 40px;
  padding: 18px 50px;
  font-size: 1.4em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting h1 {
    font-size: 2.8em;
  }
  .page-cockfighting h2 {
    font-size: 2em;
  }
  .page-cockfighting h3 {
    font-size: 1.6em;
  }
  .page-cockfighting .hero-content p {
    font-size: 1.2em;
  }
  .page-cockfighting .game-cards, .page-cockfighting .promo-grid, .page-cockfighting .info-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-cockfighting .hero-section {
    padding: 40px 15px;
  }
  .page-cockfighting .hero-image img {
    border-radius: 8px;
  }
  .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: 1em;
  }
  .page-cockfighting h2 {
    font-size: 1.8em;
  }
  .page-cockfighting h3 {
    font-size: 1.4em;
  }
  .page-cockfighting p, .page-cockfighting ol li, .page-cockfighting ul li {
    font-size: 1em;
  }
  .page-cockfighting .game-cards, .page-cockfighting .promo-grid, .page-cockfighting .info-grid {
    grid-template-columns: 1fr;
  }
  .page-cockfighting .guide-section ol li {
    padding: 20px 20px 20px 70px;
  }
  .page-cockfighting .guide-section ol li::before {
    left: 20px;
    top: 20px;
    width: 35px;
    height: 35px;
    font-size: 1.2em;
  }
  .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;
  }
  .page-cockfighting .conclusion-section .cta-button {
    font-size: 1.2em;
    padding: 15px 40px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting h1 {
    font-size: 1.8em;
  }
  .page-cockfighting h2 {
    font-size: 1.5em;
  }
  .page-cockfighting .hero-image {
    margin-bottom: 20px;
  }
  .page-cockfighting .hero-content p {
    font-size: 0.9em;
  }
  .page-cockfighting .cta-button {
    font-size: 0.9em;
    padding: 10px 25px;
  }
  .page-cockfighting .game-card img {
    height: 200px;
  }
  .page-cockfighting .promo-item img {
    height: 180px;
  }
  .page-cockfighting .faq-question h3 {
    font-size: 1em;
  }
  .page-cockfighting .faq-toggle {
    font-size: 1.2em;
  }
  .page-cockfighting .guide-section ol li h3 {
    font-size: 1.2em;
  }
}