.page-cockfighting {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main color */
  background-color: #0A0A0A; /* Body Background color */
}

.page-cockfighting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-cockfighting__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: #F2C14E; /* Primary color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Ensure contrast on button */
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__cta-button:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* HERO Section */
.page-cockfighting__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, header offset handled by body */
  background-color: #0A0A0A;
}

.page-cockfighting__hero-container {
  position: relative;
  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 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 h1 {
  font-size: clamp(32px, 5vw, 56px);
  color: #FFD36B; /* Auxiliary color */
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
}

.page-cockfighting__hero-content p {
  font-size: clamp(16px, 2vw, 20px);
  color: #FFF6D6;
  max-width: 800px;
  margin: 0 auto 40px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* General Section Styling */
.page-cockfighting__introduction-section,
.page-cockfighting__quick-links-section,
.page-cockfighting__game-intro-section,
.page-cockfighting__promotions-section,
.page-cockfighting__security-support-section,
.page-cockfighting__faq-section,
.page-cockfighting__blog-section {
  padding: 80px 0;
}

.page-cockfighting__dark-bg {
  background-color: #0A0A0A;
  color: #FFF6D6;
}

.page-cockfighting__light-bg {
  background-color: #111111;
  color: #FFF6D6;
  border: 1px solid #3A2A12;
}

/* Quick Links Section */
.page-cockfighting__quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-cockfighting__quick-link-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  text-decoration: none;
  color: #FFF6D6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__quick-link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border-color: #F2C14E;
}

.page-cockfighting__quick-link-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
  display: block;
}

.page-cockfighting__quick-link-card h3 {
  font-size: 20px;
  color: #F2C14E;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-cockfighting__quick-link-card p {
  font-size: 15px;
  color: #FFF6D6;
}

/* Game Intro Section */
.page-cockfighting__game-intro-section .page-cockfighting__responsive-image {
  width: 100%;
  height: auto;
  max-width: 900px;
  margin: 0 auto 40px;
  display: block;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__game-intro-section p {
  font-size: 17px;
  margin-bottom: 20px;
  text-align: justify;
}

.page-cockfighting__game-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-cockfighting__game-list li {
  background-color: #111111;
  border: 1px solid #3A2A12;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 16px;
  color: #FFF6D6;
  position: relative;
  padding-left: 40px;
}

.page-cockfighting__game-list li::before {
  content: '✓';
  color: #F2C14E;
  position: absolute;
  left: 15px;
  font-weight: bold;
}

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

.page-cockfighting__promo-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border-color: #FFD36B;
}

.page-cockfighting__promo-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  display: block;
}

.page-cockfighting__promo-card h3 {
  font-size: 22px;
  color: #F2C14E;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-cockfighting__promo-card p {
  font-size: 16px;
  color: #FFF6D6;
}

/* Security & Support Section */
.page-cockfighting__security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-cockfighting__security-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__security-item img {
  
  height: auto;
  margin: 0 auto 20px;
  display: block;
}

.page-cockfighting__security-item h3 {
  font-size: 20px;
  color: #FFD36B;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-cockfighting__security-item p {
  font-size: 16px;
  color: #FFF6D6;
}

/* FAQ Section */
details.page-cockfighting__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #3A2A12; /* Border color */
  overflow: hidden;
  background: #111111; /* Card BG */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
details.page-cockfighting__faq-item summary.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-cockfighting__faq-item summary.page-cockfighting__faq-question::-webkit-details-marker {
  display: none;
}
details.page-cockfighting__faq-item summary.page-cockfighting__faq-question:hover {
  background: rgba(242, 193, 78, 0.1); /* Slight hover effect with primary color */
}
.page-cockfighting__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F2C14E; /* Primary color */
}
.page-cockfighting__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD36B; /* Auxiliary color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
  padding: 0 20px 20px;
  background: rgba(255, 255, 255, 0.05); /* Slightly lighter background for answer */
  border-radius: 0 0 5px 5px;
  color: #FFF6D6;
}

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

.page-cockfighting__blog-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: #FFF6D6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border-color: #F2C14E;
}

.page-cockfighting__blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-cockfighting__blog-card-content {
  padding: 20px;
}

.page-cockfighting__blog-card h3 {
  font-size: 20px;
  color: #F2C14E;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-cockfighting__blog-card p {
  font-size: 15px;
  color: #FFF6D6;
  margin-bottom: 15px;
}

.page-cockfighting__blog-date {
  font-size: 14px;
  color: #FFD36B;
  display: block;
}

.page-cockfighting__view-all-button {
  display: block;
  width: fit-content;
  margin: 50px auto 0;
  padding: 12px 30px;
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting__hero-content h1 {
    font-size: clamp(30px, 4.5vw, 50px);
  }
  .page-cockfighting__hero-content p {
    font-size: clamp(15px, 1.8vw, 18px);
  }
  .page-cockfighting__section-title {
    font-size: clamp(26px, 3.5vw, 38px);
  }
  .page-cockfighting__introduction-section,
  .page-cockfighting__quick-links-section,
  .page-cockfighting__game-intro-section,
  .page-cockfighting__promotions-section,
  .page-cockfighting__security-support-section,
  .page-cockfighting__faq-section,
  .page-cockfighting__blog-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .page-cockfighting {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-cockfighting__hero-section {
    padding-top: 10px !important; /* body handles header offset, this is small decoration */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-cockfighting__hero-content h1 {
    font-size: clamp(28px, 6vw, 36px);
    margin-bottom: 15px;
  }

  .page-cockfighting__hero-content p {
    font-size: clamp(14px, 3vw, 16px);
    margin: 0 auto 25px;
  }

  .page-cockfighting__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-cockfighting__section-title {
    font-size: clamp(24px, 5vw, 32px);
    margin-bottom: 30px;
  }

  .page-cockfighting__introduction-section,
  .page-cockfighting__quick-links-section,
  .page-cockfighting__game-intro-section,
  .page-cockfighting__promotions-section,
  .page-cockfighting__security-support-section,
  .page-cockfighting__faq-section,
  .page-cockfighting__blog-section {
    padding: 40px 0;
  }

  .page-cockfighting__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Images responsive */
  .page-cockfighting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-cockfighting__quick-links-grid,
  .page-cockfighting__promo-grid,
  .page-cockfighting__security-grid,
  .page-cockfighting__blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-cockfighting__quick-link-card,
  .page-cockfighting__promo-card,
  .page-cockfighting__security-item,
  .page-cockfighting__blog-card {
    padding: 20px;
  }

  .page-cockfighting__quick-link-card h3,
  .page-cockfighting__promo-card h3,
  .page-cockfighting__security-item h3,
  .page-cockfighting__blog-card h3 {
    font-size: 18px;
  }

  .page-cockfighting__quick-link-card p,
  .page-cockfighting__promo-card p,
  .page-cockfighting__security-item p,
  .page-cockfighting__blog-card p {
    font-size: 14px;
  }

  .page-cockfighting__game-list li {
    font-size: 15px;
    padding-left: 35px;
  }
  .page-cockfighting__faq-qtext { font-size: 16px; }
  .page-cockfighting__faq-toggle { font-size: 20px; }
  details.page-cockfighting__faq-item .page-cockfighting__faq-answer { padding: 0 15px 15px; }
}

@media (max-width: 480px) {
  .page-cockfighting__hero-content h1 {
    font-size: clamp(24px, 8vw, 32px);
  }
  .page-cockfighting__hero-content p {
    font-size: clamp(13px, 4vw, 15px);
  }
  .page-cockfighting__cta-button {
    font-size: 15px;
    padding: 10px 25px;
  }
  .page-cockfighting__section-title {
    font-size: clamp(22px, 6vw, 28px);
  }
  .page-cockfighting__blog-card img {
    
  }
}