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

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

.page-cockfighting__section {
  padding: 60px 0;
}

.page-cockfighting__section-title {
  font-size: clamp(28px, 4vw, 42px);
  text-align: center;
  margin-bottom: 40px;
  color: #FF8C1A; /* Main color */
  font-weight: 700;
  line-height: 1.2;
}

.page-cockfighting__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}

.page-cockfighting__text-content {
  flex: 1;
}

.page-cockfighting h2,
.page-cockfighting h3,
.page-cockfighting h4 {
  color: #FF8C1A; /* Main color */
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-cockfighting h1 {
  font-weight: 700;
  line-height: 1.2;
  color: #FFF3E6;
  margin-bottom: 20px;
}

.page-cockfighting p {
  margin-bottom: 15px;
}

.page-cockfighting a {
  color: #FFA53A; /* Auxiliary color */
  text-decoration: none;
}

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

/* 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, body handles header offset */
  overflow: hidden;
}

.page-cockfighting__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-cockfighting__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.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__main-title {
  font-size: clamp(32px, 5vw, 50px);
  margin-bottom: 20px;
  color: #FFF3E6;
}

.page-cockfighting__hero-description {
  font-size: clamp(16px, 2vw, 20px);
  max-width: 800px;
  margin: 0 auto 30px;
  color: #FFF3E6;
}

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
}

.page-cockfighting__cta-button:hover {
  background: linear-gradient(180deg, #FFB04D 0%, #FFA53A 100%); /* Glow */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Quick Access Links Section */
.page-cockfighting__quick-access-section {
  background-color: #17191F; /* Card BG */
}

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

.page-cockfighting__link-card {
  display: block;
  background-color: #0D0E12; /* Background */
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid #A84F0C; /* Border color */
  color: #FFF3E6; /* Text Main */
}

.page-cockfighting__link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-color: #FFB04D; /* Glow */
  color: #FFA53A;
}

.page-cockfighting__link-card h3 {
  color: #FFA53A; /* Auxiliary color */
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-cockfighting__link-card p {
  font-size: 15px;
  color: #FFF3E6;
}

.page-cockfighting__text-center {
  text-align: center;
  margin-top: 40px;
  font-size: 16px;
}

/* Detailed Game Section */
.page-cockfighting__detail-game-section {
  background-color: #0D0E12; /* Background */
}

.page-cockfighting__image-right {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-cockfighting ol,
.page-cockfighting ul {
  margin-left: 20px;
  margin-bottom: 20px;
  list-style-type: disc;
  color: #FFF3E6;
}

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

/* Promotions Section */
.page-cockfighting__promotions-section {
  background-color: #17191F; /* Card BG */
}

.page-cockfighting__grid-promotions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-cockfighting__promotion-card {
  background-color: #0D0E12; /* Background */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  border: 1px solid #A84F0C; /* Border color */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__promotion-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 20px;
  display: block;
}

.page-cockfighting__promotion-card h3 {
  color: #FFA53A; /* Auxiliary color */
  font-size: 22px;
  margin: 0 15px 10px;
}

.page-cockfighting__promotion-card p {
  font-size: 15px;
  margin: 0 15px 20px;
  color: #FFF3E6;
}

.page-cockfighting__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
}

.page-cockfighting__btn-primary:hover {
  background: linear-gradient(180deg, #FFB04D 0%, #FFA53A 100%); /* Glow */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: transparent;
  color: #FFA53A; /* Auxiliary color */
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  border: 2px solid #FFA53A;
  transition: all 0.3s ease;
}

.page-cockfighting__btn-secondary:hover {
  background: #FFA53A;
  color: #0D0E12; /* Background */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Security & Support Section */
.page-cockfighting__security-support-section {
  background-color: #0D0E12; /* Background */
}

.page-cockfighting__security-support-section .page-cockfighting__content-wrapper {
  display: flex;
  align-items: center;
  flex-direction: row;
}

.page-cockfighting__security-support-section img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  margin-left: 40px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* FAQ Section */
.page-cockfighting__faq-section {
  background-color: #17191F; /* Card BG */
}

.page-cockfighting__faq-list {
  margin-top: 30px;
}

details.page-cockfighting__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #A84F0C; /* Border color */
  overflow: hidden;
  background: #0D0E12; /* Background */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

details.page-cockfighting__faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-color: #FFB04D; /* Glow */
}

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;
  color: #FFF3E6;
}

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(255, 179, 77, 0.1); /* Lighter glow */
}

.page-cockfighting__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFF3E6;
}

.page-cockfighting__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFA53A; /* 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: #17191F; /* Card BG */
  border-top: 1px solid #A84F0C; /* Border color */
  border-radius: 0 0 8px 8px;
  color: #FFF3E6;
}

/* Blog/News Section */
.page-cockfighting__blog-news-section {
  background-color: #0D0E12; /* Background */
}

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

.page-cockfighting__blog-card {
  background-color: #17191F; /* Card BG */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border: 1px solid #A84F0C; /* Border color */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting__blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-color: #FFB04D; /* Glow */
}

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

.page-cockfighting__card-content {
  padding: 20px;
}

.page-cockfighting__blog-date {
  font-size: 14px;
  color: #FFA53A; /* Auxiliary color */
  margin-bottom: 10px;
}

.page-cockfighting__blog-card h3 {
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-cockfighting__blog-card h3 a {
  color: #FFF3E6; /* Text Main */
  transition: color 0.3s ease;
}

.page-cockfighting__blog-card h3 a:hover {
  color: #FFA53A; /* Auxiliary color */
  text-decoration: none;
}

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

.page-cockfighting__read-more {
  display: inline-block;
  color: #FF8C1A; /* Main color */
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-cockfighting__read-more:hover {
  color: #FFB04D; /* Glow */
}

.page-cockfighting__view-all-posts {
  text-align: center;
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-cockfighting__detail-game-section .page-cockfighting__content-wrapper,
  .page-cockfighting__security-support-section .page-cockfighting__content-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .page-cockfighting__image-right,
  .page-cockfighting__security-support-section img {
    float: none;
    margin: 0 0 30px 0;
    max-width: 100%;
  }
  
  .page-cockfighting__flex-reverse-mobile {
    flex-direction: column-reverse;
  }
}

@media (max-width: 768px) {
  .page-cockfighting__section {
    padding: 40px 0;
  }

  .page-cockfighting__section-title {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .page-cockfighting__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-cockfighting__hero-image {
    border-radius: 8px;
  }

  .page-cockfighting__main-title {
    font-size: 36px;
  }

  .page-cockfighting__hero-description {
    font-size: 16px;
  }

  .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__link-card,
  .page-cockfighting__promotion-card {
    padding: 20px;
  }

  .page-cockfighting__promotion-card img {
    
  }

  .page-cockfighting__faq-item summary.page-cockfighting__faq-question {
    padding: 15px;
  }

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

  .page-cockfighting__blog-card img {
    
  }

  .page-cockfighting__card-content {
    padding: 15px;
  }
  
  /* All images responsive */
  .page-cockfighting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  
  /* All containers responsive */
  .page-cockfighting__section,
  .page-cockfighting__container,
  .page-cockfighting__grid-links,
  .page-cockfighting__grid-promotions,
  .page-cockfighting__blog-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Button specific responsive styles */
  .page-cockfighting__btn-primary,
  .page-cockfighting__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-cockfighting__grid-promotions,
  .page-cockfighting__grid-links,
  .page-cockfighting__blog-grid {
    grid-template-columns: 1fr;
  }

  .page-cockfighting__content-wrapper p,
  .page-cockfighting__content-wrapper ul,
  .page-cockfighting__content-wrapper ol {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .page-cockfighting__main-title {
    font-size: 30px;
  }
  .page-cockfighting__section-title {
    font-size: 26px;
  }
  .page-cockfighting__hero-image {
    margin-bottom: 20px;
  }
  .page-cockfighting__cta-button {
    font-size: 15px;
    padding: 10px 20px;
  }
}