/* style/cockfighting.css */
.page-cockfighting {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark, so text is light */
  background-color: transparent; /* Inherit from body, which is dark */
}

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

.page-cockfighting__hero-section {
  position: relative;
  padding: 80px 0 60px; /* Adjust padding-top based on header offset */
  padding-top: var(--header-offset, 120px);
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 600px;
  color: #ffffff;
}

.page-cockfighting__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5));
  z-index: 1;
}

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

.page-cockfighting__hero-section .page-cockfighting__container {
  position: relative;
  z-index: 2;
}

.page-cockfighting__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Use auxiliary color for highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-cockfighting__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

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

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-cockfighting__btn-primary {
  background: #CC0000;
  color: #ffffff;
}

.page-cockfighting__btn-primary:hover {
  background: #990000;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__btn-secondary {
  background: #FFD700;
  color: #333333;
}

.page-cockfighting__btn-secondary:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Highlight with auxiliary color */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__sub-title {
  font-size: 1.8em;
  color: #CC0000; /* Main color for sub-titles */
  margin-top: 30px;
  margin-bottom: 20px;
  text-align: left;
}

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

.page-cockfighting__light-bg {
  background-color: #f0f0f0; /* Light background for contrast */
  color: #333333; /* Dark text on light background */
  padding: 60px 0;
}

.page-cockfighting__dark-bg {
  background-color: #1a1a1a; /* Darker background for sections */
  color: #ffffff; /* Light text on dark background */
  padding: 60px 0;
}

.page-cockfighting__dark-bg .page-cockfighting__section-title,
.page-cockfighting__dark-bg .page-cockfighting__sub-title {
  color: #FFD700;
}

.page-cockfighting__dark-bg .page-cockfighting__card-title {
  color: #FFD700;
}

.page-cockfighting__introduction-section .page-cockfighting__section-title,
.page-cockfighting__guide-section .page-cockfighting__section-title,
.page-cockfighting__faq-section .page-cockfighting__section-title {
  color: #CC0000;
}

.page-cockfighting__introduction-section .page-cockfighting__sub-title {
  color: #333333;
}

.page-cockfighting__content-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 40px auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-cockfighting__card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark bg */
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

.page-cockfighting__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-cockfighting__light-bg .page-cockfighting__card-title {
  color: #CC0000;
}

.page-cockfighting__card-text {
  font-size: 1em;
  line-height: 1.6;
}

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

.page-cockfighting__step-item {
  background-color: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #CC0000;
}

.page-cockfighting__step-title {
  font-size: 1.4em;
  color: #CC0000;
  margin-bottom: 15px;
}

.page-cockfighting__step-text {
  font-size: 1em;
  line-height: 1.6;
}

.page-cockfighting__cta-center {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

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

.page-cockfighting__advantage-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter on dark bg */
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-left: 4px solid #FFD700;
  color: #ffffff;
}

.page-cockfighting__advantage-title {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-cockfighting__advantage-item p {
  font-size: 0.95em;
  line-height: 1.5;
  color: #f0f0f0;
}

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

.page-cockfighting__strategy-grid .page-cockfighting__card {
  background-color: #CC0000; /* Use main brand color for strategy cards */
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-cockfighting__strategy-grid .page-cockfighting__card-title {
  color: #FFD700;
}

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