/* style/cockfighting.css */

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

/* Base styles for page-cockfighting */
.page-cockfighting {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--color-text-main); /* Default text color for dark background */
  background-color: var(--color-background); /* Overall page background */
}

/* Text color adjustments for light backgrounds */
.page-cockfighting__light-bg {
  background-color: #f8f8f8; /* A very light background, assuming shared body background is dark */
  color: #333333; /* Dark text for light background */
}

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

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

.page-cockfighting__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--color-gold);
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-cockfighting__light-bg .page-cockfighting__section-title {
  color: var(--color-primary);
  text-shadow: none;
}

.page-cockfighting__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-cockfighting__card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: var(--color-text-main);
  text-align: center;
}

.page-cockfighting__light-bg .page-cockfighting__card {
  background-color: #ffffff;
  color: #333333;
  border-color: #e0e0e0;
}

.page-cockfighting__card-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--color-gold);
}

.page-cockfighting__light-bg .page-cockfighting__card-title {
  color: var(--color-primary);
}

.page-cockfighting__card-description {
  font-size: 1em;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.page-cockfighting__light-bg .page-cockfighting__card-description {
  color: #555555;
}

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

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

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

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

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

.page-cockfighting__text-link {
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 600;
}

.page-cockfighting__text-link:hover {
  text-decoration: underline;
  color: var(--color-secondary);
}

/* Hero Section */
.page-cockfighting__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small padding, body takes --header-offset */
  padding-bottom: 80px;
  overflow: hidden;
}

.page-cockfighting__hero-image-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}

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

.page-cockfighting__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-top: -100px; /* Overlap slightly for visual appeal */
  background: rgba(8, 22, 15, 0.8);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size for H1 */
  font-weight: 800;
  color: var(--color-gold);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(242, 193, 78, 0.7);
}

.page-cockfighting__hero-description {
  font-size: 1.2em;
  color: var(--color-text-main);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Intro Section */
.page-cockfighting__intro-section {
  padding: 80px 0;
  text-align: center;
}

/* Features Section */
.page-cockfighting__features-section {
  padding: 80px 0;
  text-align: center;
}

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

.page-cockfighting__feature-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-cockfighting__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

/* Betting Types Section */
.page-cockfighting__betting-types {
  padding: 80px 0;
  text-align: center;
}

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

.page-cockfighting__image-center {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Guide Section */
.page-cockfighting__guide-section {
  padding: 80px 0;
  text-align: center;
}

.page-cockfighting__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting__step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 30px;
}

.page-cockfighting__step-number {
  font-size: 2.5em;
  font-weight: 800;
  color: var(--color-gold);
  background-color: var(--color-deep-green);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  border: 3px solid var(--color-gold);
}

/* Strategy Section */
.page-cockfighting__strategy-section {
  padding: 80px 0;
}

.page-cockfighting__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-cockfighting__strategy-list li {
  background-color: #ffffff;
  border-left: 5px solid var(--color-primary);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
  color: #333333;
}

.page-cockfighting__strategy-list li p {
  margin: 0;
  font-size: 1.1em;
}

.page-cockfighting__strategy-list li strong {
  color: var(--color-primary);
}

/* Saloons Section */
.page-cockfighting__saloons-section {
  padding: 80px 0;
  text-align: center;
}

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

/* Promotions Section */
.page-cockfighting__promotions-section {
  padding: 80px 0;
  text-align: center;
}

.page-cockfighting__promotion-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-cockfighting__promotion-list li {
  background-color: #ffffff;
  border-left: 5px solid var(--color-primary);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
  color: #333333;
}

.page-cockfighting__promotion-list li p {
  margin: 0;
  font-size: 1.1em;
}

.page-cockfighting__promotion-list li strong {
  color: var(--color-primary);
}

/* Security Section */
.page-cockfighting__security-section {
  padding: 80px 0;
  text-align: center;
}

.page-cockfighting__security-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: left;
}

.page-cockfighting__security-list li {
  background-color: var(--color-card-bg);
  border-left: 5px solid var(--color-gold);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: var(--color-text-main);
}

.page-cockfighting__security-list li p {
  margin: 0;
  font-size: 1.1em;
}

.page-cockfighting__security-list li strong {
  color: var(--color-gold);
}

/* FAQ Section */
.page-cockfighting__faq-section {
  padding: 80px 0;
}

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

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

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1em;
  color: var(--color-primary);
  background-color: #f9f9f9;
  user-select: none;
}

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

.page-cockfighting__faq-question::marker {
  display: none;
}

.page-cockfighting__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--color-gold);
}

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

.page-cockfighting__faq-answer {
  padding: 20px;
  border-top: 1px solid #e0e0e0;
  background-color: #ffffff;
  color: #555555;
  text-align: left;
}

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

/* Conclusion Section */
.page-cockfighting__conclusion-section {
  padding: 80px 0;
  text-align: center;
}

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

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

  .page-cockfighting__section-title {
    font-size: 2em;
  }

  .page-cockfighting__features-grid,
  .page-cockfighting__betting-grid,
  .page-cockfighting__guide-steps,
  .page-cockfighting__saloons-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-cockfighting__hero-content {
    margin-top: -30px;
    padding: 20px;
  }

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

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

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

  .page-cockfighting__paragraph,
  .page-cockfighting__card-description,
  .page-cockfighting__strategy-list li p,
  .page-cockfighting__promotion-list li p,
  .page-cockfighting__security-list li p,
  .page-cockfighting__faq-answer p {
    font-size: 0.95em;
  }

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

  .page-cockfighting__btn-primary,
  .page-cockfighting__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px;
  }

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

  .page-cockfighting__image-full-width,
  .page-cockfighting__image-center {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Content area padding for mobile */
  .page-cockfighting__container,
  .page-cockfighting__hero-section,
  .page-cockfighting__intro-section,
  .page-cockfighting__features-section,
  .page-cockfighting__betting-types,
  .page-cockfighting__guide-section,
  .page-cockfighting__strategy-section,
  .page-cockfighting__saloons-section,
  .page-cockfighting__promotions-section,
  .page-cockfighting__security-section,
  .page-cockfighting__faq-section,
  .page-cockfighting__conclusion-section {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }

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

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

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

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

  .page-cockfighting__section-title {
    font-size: 1.5em;
  }

  .page-cockfighting__card-title {
    font-size: 1.2em;
  }
}