/* style/cockfighting.css */
.page-cockfighting {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f4f7f6;
}

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

.page-cockfighting h1,
.page-cockfighting h2,
.page-cockfighting h3 {
  color: var(--primary-color, #0A2239);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-cockfighting h1 {
  font-size: 3em;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
  color: #ffffff; /* Text on hero image */
}

.page-cockfighting h2 {
  font-size: 2.5em;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  position: relative;
}

.page-cockfighting h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color, #FFD700);
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-cockfighting h3 {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--primary-color, #0A2239);
}

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

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

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

.page-cockfighting a {
  text-decoration: none;
  color: var(--primary-color, #0A2239);
  transition: color 0.3s ease;
}

.page-cockfighting a:hover {
  color: var(--secondary-color, #FFD700);
}

/* 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(--primary-color, #0A2239) 0%, #3a5c7e 100%); /* Adjusted gradient for better contrast */
  color: #ffffff;
}

.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;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  overflow: hidden;
}

.page-cockfighting .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

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

.page-cockfighting .hero-content p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 20px auto 30px;
  color: #e0e0e0;
}

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

.page-cockfighting .cta-button:hover {
  background: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-cockfighting .intro-section,
.page-cockfighting .game-types-section,
.page-cockfighting .guide-section,
.page-cockfighting .tips-section,
.page-cockfighting .promotions-section,
.page-cockfighting .security-support-section,
.page-cockfighting .faq-section,
.page-cockfighting .conclusion-section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-cockfighting .intro-section {
  background-color: #fcfcfc;
}

.page-cockfighting .quick-access-section {
  padding: 40px 0;
  background-color: var(--primary-color, #0A2239);
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-cockfighting .quick-access-section h2 {
  color: #ffffff;
}

.page-cockfighting .access-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.page-cockfighting .access-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--secondary-color, #FFD700);
  color: var(--primary-color, #0A2239);
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

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

.page-cockfighting .game-card,
.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;
  display: flex;
  flex-direction: column;
  text-align: center;
}

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

.page-cockfighting .game-card img,
.page-cockfighting .promo-item img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-bottom: 1px solid #eeeeee;
}

.page-cockfighting .game-card h3,
.page-cockfighting .promo-item h3 {
  font-size: 1.5em;
  padding: 15px 20px 10px;
  margin: 0;
  color: var(--primary-color, #0A2239);
}

.page-cockfighting .game-card h3 a,
.page-cockfighting .promo-item h3 a {
  color: var(--primary-color, #0A2239);
}

.page-cockfighting .game-card h3 a:hover,
.page-cockfighting .promo-item h3 a:hover {
  color: var(--secondary-color, #FFD700);
}

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

/* Guide Steps */
.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: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-cockfighting .step-item:hover {
  transform: translateY(-5px);
}

.page-cockfighting .step-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  background-color: #e0e8f0; /* Light background for icons */
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.page-cockfighting .step-item h3 {
  font-size: 1.4em;
  color: var(--primary-color, #0A2239);
  margin-top: 0;
  margin-bottom: 10px;
}

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

.page-cockfighting .cta-small-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--secondary-color, #FFD700);
  color: var(--primary-color, #0A2239);
  border-radius: 25px;
  font-size: 0.9em;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.page-cockfighting .cta-small-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

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

.page-cockfighting .tip-item {
  background-color: #fdfdfd;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-cockfighting .tip-item:hover {
  transform: translateY(-5px);
}

.page-cockfighting .tip-item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-cockfighting .tip-item h3 {
  font-size: 1.3em;
  color: var(--primary-color, #0A2239);
  margin-top: 0;
  margin-bottom: 10px;
}

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

/* Promotions Section */
.page-cockfighting .cta-button-secondary {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--primary-color, #0A2239);
  color: #ffffff;
  border-radius: 50px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.page-cockfighting .cta-button-secondary:hover {
  background-color: #1a3e5e; /* Slightly lighter primary */
  transform: translateY(-2px);
}

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

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

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
}

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

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

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--primary-color, #0A2239);
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color, #FFD700);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-color, #0A2239);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  color: #555555;
  font-size: 1em;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 15px 25px 25px;
  background: #fdfdfd;
  border-top: 1px solid #eee;
}

.faq-answer p {
  margin-bottom: 10px;
}

.faq-answer .cta-small-button {
  margin-top: 10px;
}

/* Conclusion Section */
.page-cockfighting .conclusion-section {
  text-align: center;
  padding-bottom: 80px;
}

.page-cockfighting .conclusion-section p {
  max-width: 900px;
  margin: 20px auto;
  font-size: 1.15em;
  color: #444444;
}

.page-cockfighting .cta-text-link {
  color: var(--primary-color, #0A2239);
  font-weight: bold;
  text-decoration: underline;
}

.page-cockfighting .cta-text-link:hover {
  color: var(--secondary-color, #FFD700);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-cockfighting h1 {
    font-size: 2.5em;
  }

  .page-cockfighting h2 {
    font-size: 2em;
  }

  .page-cockfighting h3 {
    font-size: 1.6em;
  }

  .page-cockfighting .hero-content p {
    font-size: 1.1em;
  }

  .page-cockfighting .game-card img,
  .page-cockfighting .promo-item img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-cockfighting .hero-section {
    padding: 40px 15px;
  }

  .page-cockfighting h1 {
    font-size: 2em;
  }

  .page-cockfighting h2 {
    font-size: 1.8em;
  }

  .page-cockfighting h3 {
    font-size: 1.4em;
  }

  .page-cockfighting .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }

  .page-cockfighting .quick-access-section {
    padding: 30px 0;
  }

  .page-cockfighting .access-links {
    flex-direction: column;
    gap: 15px;
  }

  .page-cockfighting .access-button {
    width: 80%;
    margin: 0 auto;
  }

  .page-cockfishing .game-cards,
  .page-cockfighting .guide-steps,
  .page-cockfighting .tips-grid,
  .page-cockfighting .promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq-question {
    padding: 15px 20px;
  }

  .faq-question h3 {
    font-size: 1.1em;
  }

  .faq-toggle {
    font-size: 20px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 10px 20px 20px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting h1 {
    font-size: 1.8em;
  }

  .page-cockfighting h2 {
    font-size: 1.6em;
  }

  .page-cockfighting h3 {
    font-size: 1.2em;
  }

  .page-cockfighting .hero-content p {
    font-size: 1em;
  }

  .page-cockfighting .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }

  .page-cockfighting .access-button {
    width: 90%;
  }

  .page-cockfighting .step-item,
  .page-cockfighting .tip-item,
  .page-cockfighting .game-card,
  .page-cockfighting .promo-item {
    padding: 20px;
  }
}