/* style/cockfighting.css */
:root {
  --primary-color: #FFD700;
  --secondary-color: #8B0000;
  --text-on-dark: #ffffff;
  --text-on-light: #333333;
  --background-dark: #121212;
  --background-light: #f8f8f8;
  --card-background: #ffffff;
  --border-color: #e0e0e0;
}

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

.page-cockfighting__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

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

.page-cockfighting__light-bg {
  background-color: var(--background-light);
  color: var(--text-on-light);
}

.page-cockfighting__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  text-align: center;
  overflow: hidden;
}

.page-cockfighting__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-bottom: 30px;
}

.page-cockfighting__main-title {
  font-size: 3.5em;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-cockfighting__hero-description {
  font-size: 1.4em;
  color: var(--text-on-dark);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
  z-index: 0;
}

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--background-dark);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  word-wrap: break-word;
}

.page-cockfighting__cta-button:hover {
  background: var(--secondary-color);
  color: var(--text-on-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__small-button {
  padding: 10px 25px;
  font-size: 1em;
}

.page-cockfighting__large-button {
  padding: 18px 50px;
  font-size: 1.5em;
}

.page-cockfighting__center-button {
  display: block;
  margin: 30px auto 0 auto;
}

.page-cockfighting__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  color: var(--primary-color);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__introduction-section .page-cockfighting__section-title,
.page-cockfighting__promotions .page-cockfighting__section-title,
.page-cockfighting__conclusion-cta .page-cockfighting__section-title {
  color: var(--secondary-color);
}

.page-cockfighting__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-cockfighting__subsection-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__introduction-section .page-cockfighting__subsection-title,
.page-cockfighting__how-to-play .page-cockfighting__subsection-title,
.page-cockfighting__promotions .page-cockfighting__promo-title {
  color: var(--secondary-color);
}

.page-cockfighting__image-text-layout {
  display: flex;
  gap: 30px;
  align-items: center;
  margin: 40px 0;
}

.page-cockfighting__image-left {
  flex: 1;
  max-width: 50%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  height: auto;
}

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

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

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

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

.page-cockfighting__card {
  background-color: var(--card-background);
  color: var(--text-on-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-cockfighting__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-cockfighting__feature-title,
.page-cockfighting__tip-title {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

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

.page-cockfighting__step-item {
  background-color: var(--card-background);
  color: var(--text-on-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
  border: 1px solid var(--border-color);
}

.page-cockfighting__step-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

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

.page-cockfighting__promo-item {
  background-color: var(--card-background);
  color: var(--text-on-light);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
}

.page-cockfighting__promo-title {
  font-size: 1.4em;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

/* Ensure all images are responsive */
.page-cockfighting img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
  .page-cockfighting__main-title {
    font-size: 2.8em;
  }
  .page-cockfighting__hero-description {
    font-size: 1.2em;
  }
  .page-cockfighting__section-title {
    font-size: 2em;
  }
  .page-cockfighting__subsection-title {
    font-size: 1.5em;
  }
  .page-cockfighting__cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-cockfighting__large-button {
    padding: 15px 40px;
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-cockfighting {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-cockfighting__hero-section {
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-cockfighting__hero-container {
    margin-bottom: 20px;
  }
  .page-cockfighting__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-cockfighting__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-cockfighting__content-area {
    padding: 30px 15px;
  }
  .page-cockfighting__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }
  .page-cockfighting__subsection-title {
    font-size: 1.3em;
    margin-top: 30px;
    margin-bottom: 10px;
  }
  .page-cockfighting__text-block {
    font-size: 1em;
    margin-bottom: 15px;
  }
  .page-cockfighting__image-text-layout {
    flex-direction: column;
    gap: 20px;
  }
  .page-cockfighting__image-left {
    max-width: 100%;
    width: 100% !important;
    height: auto !important;
  }
  .page-cockfighting__features-grid,
  .page-cockfighting__tips-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .page-cockfighting__card,
  .page-cockfighting__step-item,
  .page-cockfighting__promo-item {
    padding: 20px;
    border-radius: 8px;
  }
  .page-cockfighting__feature-title,
  .page-cockfighting__tip-title {
    font-size: 1.3em;
    margin-bottom: 10px;
  }
  .page-cockfighting__step-title {
    font-size: 1.4em;
    margin-bottom: 10px;
  }
  .page-cockfighting__promo-title {
    font-size: 1.2em;
    margin-bottom: 8px;
  }
  
  /* Mobile button responsiveness */
  .page-cockfighting__cta-button {
    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__center-button {
    margin-top: 20px;
  }
  .page-cockfighting__large-button {
    padding: 15px 30px !important;
    font-size: 1.2em !important;
  }
  
  /* Mobile image responsiveness */
  .page-cockfighting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-cockfighting__content-area,
  .page-cockfighting__hero-section,
  .page-cockfighting__introduction-section,
  .page-cockfighting__why-choose-us,
  .page-cockfighting__how-to-play,
  .page-cockfighting__strategies-tips,
  .page-cockfighting__promotions,
  .page-cockfighting__support,
  .page-cockfighting__conclusion-cta,
  .page-cockfighting__card,
  .page-cockfighting__step-item,
  .page-cockfighting__promo-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-cockfighting__hero-section {
    padding-left: 0;
    padding-right: 0;
  }
}