/* style/cockfighting.css */
:root {
  --page-cockfighting-primary-color: #11A84E;
  --page-cockfighting-secondary-color: #22C768;
  --page-cockfighting-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --page-cockfighting-card-bg: #11271B;
  --page-cockfighting-background: #08160F;
  --page-cockfighting-text-main: #F2FFF6;
  --page-cockfighting-text-secondary: #A7D9B8;
  --page-cockfighting-border-color: #2E7A4E;
  --page-cockfighting-glow-color: #57E38D;
  --page-cockfighting-gold-color: #F2C14E;
  --page-cockfighting-divider-color: #1E3A2A;
  --page-cockfighting-deep-green: #0A4B2C;
}

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

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

/* Hero Section */
.page-cockfighting__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* body handles header offset, this is aesthetic padding */
  text-align: center;
  overflow: hidden;
  background: var(--page-cockfighting-background);
}

.page-cockfighting__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px; /* Space between image and content */
}

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

.page-cockfighting__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-cockfighting__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: 700;
  color: var(--page-cockfighting-gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.page-cockfighting__hero-description {
  font-size: clamp(1em, 1.5vw, 1.2em);
  color: var(--page-cockfighting-text-secondary);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
}

.page-cockfighting__cta-buttons--centered {
  margin-top: 30px;
}

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-cockfighting__btn-primary {
  background: var(--page-cockfighting-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-cockfighting__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(42, 209, 111, 0.4);
}

.page-cockfighting__btn-secondary {
  background: transparent;
  color: var(--page-cockfighting-gold-color);
  border: 2px solid var(--page-cockfighting-gold-color);
}

.page-cockfighting__btn-secondary:hover {
  background: var(--page-cockfighting-gold-color);
  color: var(--page-cockfighting-background);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(242, 193, 78, 0.3);
}

/* General Section Styling */
.page-cockfighting__introduction-section,
.page-cockfighting__unique-combination-section,
.page-cockfighting__cockfighting-bets,
.page-cockfighting__strategies-section,
.page-cockfighting__slot-games-world,
.page-cockfighting__promotions-section,
.page-cockfighting__why-choose-us,
.page-cockfighting__registration-guide,
.page-cockfighting__faq-section,
.page-cockfighting__conclusion-section {
  padding: 60px 0;
}

.page-cockfighting__dark-bg {
  background-color: var(--page-cockfighting-background);
  color: var(--page-cockfighting-text-main);
}

.page-cockfighting__card-bg {
  background-color: var(--page-cockfighting-card-bg);
  color: var(--page-cockfighting-text-main);
}

.page-cockfighting__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  font-weight: 700;
  color: var(--page-cockfighting-gold-color);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-cockfighting__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--page-cockfighting-text-secondary);
  text-align: justify;
}

.page-cockfighting__image-content {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 40px auto;
  object-fit: cover;
}

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

.page-cockfighting__list-item {
  background-color: var(--page-cockfighting-deep-green);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  color: var(--page-cockfighting-text-main);
  font-size: 1.05em;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
}

.page-cockfighting__list-item strong {
  color: var(--page-cockfighting-gold-color);
  margin-right: 8px;
}

.page-cockfighting__list-item::before {
  content: '✓';
  color: var(--page-cockfighting-glow-color);
  margin-right: 15px;
  font-weight: bold;
  font-size: 1.2em;
}

.page-cockfighting__numbered-list {
  list-style: none;
  counter-reset: my-awesome-counter;
  padding: 0;
  margin: 30px 0;
}

.page-cockfighting__numbered-list .page-cockfighting__list-item {
  background-color: var(--page-cockfighting-deep-green);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  color: var(--page-cockfighting-text-main);
  font-size: 1.05em;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
}

.page-cockfighting__numbered-list .page-cockfighting__list-item::before {
  content: counter(my-awesome-counter) ". ";
  counter-increment: my-awesome-counter;
  color: var(--page-cockfighting-gold-color);
  font-weight: bold;
  font-size: 1.2em;
  margin-right: 15px;
  background: none;
}

/* Video Section */
.page-cockfighting__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 8px;
  margin: 40px auto;
  width: 100%; /* Important for desktop as well */
  box-sizing: border-box;
}

.page-cockfighting__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  cursor: pointer;
}

.page-cockfighting__video-caption {
  text-align: center;
  font-size: 0.9em;
  color: var(--page-cockfighting-text-secondary);
  margin-top: 10px;
}

/* FAQ Section */
.page-cockfighting__faq-list {
  margin-top: 40px;
}

.page-cockfighting__faq-item {
  background-color: var(--page-cockfighting-card-bg);
  border: 1px solid var(--page-cockfighting-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-cockfighting__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1em;
  color: var(--page-cockfighting-text-main);
  position: relative;
}

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

.page-cockfighting__faq-qtext {
  flex-grow: 1;
}

.page-cockfighting__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--page-cockfighting-glow-color);
  margin-left: 15px;
}

.page-cockfighting__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  color: var(--page-cockfighting-text-secondary);
  line-height: 1.7;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-cockfighting__hero-image {
    border-radius: 6px;
  }

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

  .page-cockfighting__text-block {
    font-size: 1em;
  }

  .page-cockfighting__btn-primary,
  .page-cockfighting__btn-secondary {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-cockfighting__introduction-section,
  .page-cockfighting__unique-combination-section,
  .page-cockfighting__cockfighting-bets,
  .page-cockfighting__strategies-section,
  .page-cockfighting__slot-games-world,
  .page-cockfighting__promotions-section,
  .page-cockfighting__why-choose-us,
  .page-cockfighting__registration-guide,
  .page-cockfighting__faq-section,
  .page-cockfighting__conclusion-section {
    padding: 40px 0;
  }

  .page-cockfighting__image-content {
    margin: 30px auto;
  }
}

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

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

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

  .page-cockfighting__hero-description {
    font-size: 0.95em;
  }

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

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

  .page-cockfighting__introduction-section,
  .page-cockfighting__unique-combination-section,
  .page-cockfighting__cockfighting-bets,
  .page-cockfighting__strategies-section,
  .page-cockfighting__slot-games-world,
  .page-cockfighting__promotions-section,
  .page-cockfighting__why-choose-us,
  .page-cockfighting__registration-guide,
  .page-cockfighting__faq-section,
  .page-cockfighting__conclusion-section {
    padding: 30px 0;
  }

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

  .page-cockfighting__text-block {
    font-size: 0.95em;
  }

  .page-cockfighting__image-content {
    margin: 20px auto;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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

  .page-cockfighting__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-cockfighting__list-item {
    font-size: 1em;
    padding: 12px 15px;
  }

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

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

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

  .page-cockfighting__section-title {
    font-size: clamp(1.3em, 7vw, 2em);
  }

  .page-cockfighting__hero-description {
    font-size: 0.9em;
  }

  .page-cockfighting__text-block {
    font-size: 0.9em;
  }
}