.page-cockfighting {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  padding-bottom: 80px; /* Space for floating buttons */
}

.page-cockfighting__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  overflow: hidden;
  background-color: #08160F; /* Ensure dark background */
}

.page-cockfighting__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.page-cockfighting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.page-cockfighting__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.page-cockfighting__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__description a {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

.page-cockfighting__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-cockfighting__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-cockfighting__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-cockfighting__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Button color */
  border: 2px solid #2AD16F; /* Button color */
}

.page-cockfighting__btn-secondary:hover {
  background-color: #2AD16F;
  color: #08160F; /* Background */
  transform: translateY(-2px);
}

.page-cockfighting__section {
  padding: 60px 20px;
  background-color: #08160F; /* Background */
  text-align: center;
}

.page-cockfighting__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.page-cockfighting__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 40px;
  text-align: center;
  font-weight: 600;
}

.page-cockfighting__subsection-title {
  font-size: clamp(1.4em, 2.5vw, 2em);
  color: #2AD16F; /* Button color */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 500;
}

.page-cockfighting__text-block {
  font-size: 1.05em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-cockfighting__text-block a {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

.page-cockfighting__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-cockfighting__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-cockfighting__list-item {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border: 1px solid #2E7A4E; /* Border */
}

.page-cockfighting__list-item::before {
  content: '✔️';
  color: #2AD16F; /* Button color */
  font-weight: bold;
  font-size: 1.2em;
  flex-shrink: 0;
}

.page-cockfighting__list-item strong {
  color: #57E38D; /* Glow */
}

.page-cockfighting__ordered-list {
  list-style: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

.page-cockfighting__ordered-list .page-cockfighting__list-item {
  background-color: transparent;
  border: none;
  padding: 5px 0;
  margin-bottom: 5px;
  color: #A7D9B8; /* Text Secondary */
}

.page-cockfighting__ordered-list .page-cockfighting__list-item::before {
  content: none;
}

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

.page-cockfighting__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-cockfighting__faq-item summary {
  list-style: none;
}

.page-cockfighting__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #11271B; /* Card BG */
  transition: background-color 0.3s ease;
}

.page-cockfighting__faq-question:hover {
  background-color: #1E3A2A; /* Divider */
}

.page-cockfighting__faq-toggle {
  font-size: 1.5em;
  color: #2AD16F; /* Button color */
  transition: transform 0.3s ease;
}

.page-cockfighting__faq-item[open] .page-cockfighting__faq-toggle {
  transform: rotate(45deg);
}

.page-cockfighting__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

.page-cockfighting__faq-answer p {
  margin-bottom: 0;
}

.page-cockfighting__cta-banner {
  background-color: #0A4B2C; /* Deep Green */
  padding: 80px 20px;
  text-align: center;
  border-radius: 10px;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__cta-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
}

.page-cockfighting__cta-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-cockfighting__cta-description a {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

/* Floating buttons for mobile */
.page-cockfighting__floating-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  background-color: #11271B; /* Card BG */
  padding: 10px 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  border-top: 1px solid #2E7A4E; /* Border */
  visibility: hidden; /* Hidden by default, shown on mobile */
  opacity: 0;
  transition: visibility 0s, opacity 0.3s linear;
}

.page-cockfighting__floating-btn {
  flex: 1;
  text-align: center;
  padding: 12px 10px;
  text-decoration: none;
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  font-size: 1em;
  border-radius: 5px;
  margin: 0 5px;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
}

.page-cockfighting__floating-btn--register {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
}

.page-cockfighting__floating-btn--register:hover {
  opacity: 0.9;
}

.page-cockfighting__floating-btn--login {
  background-color: #1E3A2A; /* Divider */
  border: 1px solid #2AD16F; /* Button color */
}

.page-cockfighting__floating-btn--login:hover {
  background-color: #2E7A4E; /* Border */
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-cockfighting__hero-content {
    padding: 0 30px;
  }

  .page-cockfighting__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }

  .page-cockfighting__section-title {
    font-size: clamp(1.8em, 4vw, 2.5em);
  }

  .page-cockfighting__subsection-title {
    font-size: clamp(1.4em, 3vw, 1.8em);
  }

  .page-cockfighting__cta-title {
    font-size: clamp(1.8em, 4vw, 2.2em);
  }
}

@media (max-width: 768px) {
  .page-cockfighting {
    font-size: 16px;
    line-height: 1.6;
    padding-bottom: 70px; /* Adjust for smaller floating buttons */
  }

  .page-cockfighting__hero-section {
    padding: 10px 15px 40px;
  }

  .page-cockfighting__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em) !important;
  }

  .page-cockfighting__description {
    font-size: 1em;
  }

  .page-cockfighting__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .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: 12px 20px;
    font-size: 1em;
  }

  .page-cockfighting__section {
    padding: 40px 15px;
  }

  .page-cockfighting__container {
    padding-left: 0;
    padding-right: 0;
  }

  .page-cockfighting__section-title {
    font-size: clamp(1.5em, 6vw, 2.2em) !important;
    margin-bottom: 30px;
  }

  .page-cockfighting__subsection-title {
    font-size: clamp(1.2em, 5vw, 1.6em) !important;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-cockfighting__text-block,
  .page-cockfighting__list-item,
  .page-cockfighting__faq-answer {
    font-size: 0.95em;
  }

  .page-cockfighting__list-item {
    padding: 12px 15px;
  }

  .page-cockfighting__faq-question {
    padding: 15px;
    font-size: 1em;
  }

  .page-cockfighting__faq-answer {
    padding: 0 15px 15px;
  }

  .page-cockfighting__cta-banner {
    padding: 50px 15px;
    margin: 30px auto;
  }

  .page-cockfighting__cta-title {
    font-size: clamp(1.5em, 6vw, 2em) !important;
    margin-bottom: 15px;
  }

  .page-cockfighting__cta-description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  /* Mobile image responsiveness */
  .page-cockfighting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-cockfighting__section,
  .page-cockfighting__card,
  .page-cockfighting__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-cockfighting__hero-section {
    padding-top: 10px !important;
  }

  /* Floating buttons visible on mobile */
  .page-cockfighting__floating-buttons {
    visibility: visible;
    opacity: 1;
    height: 70px; /* Fixed height for floating buttons */
    align-items: center;
  }

  .page-cockfighting__floating-btn {
    padding: 10px 8px;
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-cockfighting__main-title {
    font-size: clamp(1.6em, 8vw, 2.2em) !important;
  }

  .page-cockfighting__btn-primary,
  .page-cockfighting__btn-secondary {
    font-size: 0.95em;
  }

  .page-cockfighting__floating-btn {
    font-size: 0.85em;
    padding: 8px 5px;
  }
}