/* Base styles for the cockfighting page */
.page-cockfighting {
  color: #ffffff; /* Light text for dark body background #121212 */
  background-color: #121212; /* Ensure background color consistency */
  padding-top: var(--header-offset, 120px); /* Account for fixed header, assuming shared doesn't set on body */
}

.page-cockfighting__section {
  padding: 60px 20px;
  margin: 0 auto;
}

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

.page-cockfighting__section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #E5B80B; /* Gold for main titles */
}

.page-cockfighting__section-title--light {
  color: #ffffff;
}

.page-cockfighting__text-block {
  font-size: 18px;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-cockfighting__text-block--light {
  color: #ffffff;
}

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

/* Hero Section */
.page-cockfighting__hero-section {
  background: linear-gradient(135deg, #0A2463, #121212);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 0; /* Handled by main.page-cockfighting */
}

.page-cockfighting__hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 40px;
}

.page-cockfighting__hero-content {
  max-width: 900px;
  text-align: center;
  z-index: 1;
}

.page-cockfighting__hero-title {
  font-size: 52px;
  font-weight: 800;
  color: #E5B80B; /* Gold for hero title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-cockfighting__hero-description {
  font-size: 22px;
  color: #f0f0f0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-cockfighting__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.page-cockfighting__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.page-cockfighting__hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Buttons */
.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary,
.page-cockfighting__btn-promo,
.page-cockfighting__btn-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-cockfighting__btn-primary {
  background-color: #E5B80B; /* Gold */
  color: #0A2463; /* Dark blue text */
  box-shadow: 0 4px 15px rgba(229, 184, 11, 0.4);
}

.page-cockfighting__btn-primary:hover {
  background-color: #ffc400;
  box-shadow: 0 6px 20px rgba(229, 184, 11, 0.6);
  transform: translateY(-2px);
}

.page-cockfighting__btn-secondary {
  background-color: transparent;
  color: #E5B80B; /* Gold text */
  border: 2px solid #E5B80B;
}

.page-cockfighting__btn-secondary:hover {
  background-color: #E5B80B;
  color: #0A2463;
  box-shadow: 0 4px 15px rgba(229, 184, 11, 0.4);
  transform: translateY(-2px);
}

.page-cockfighting__btn-primary--large,
.page-cockfighting__btn-secondary--large {
  padding: 18px 40px;
  font-size: 20px;
}

.page-cockfighting__btn-promo {
  background-color: #0A2463;
  color: #E5B80B;
  border: 1px solid #E5B80B;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 5px;
}

.page-cockfighting__btn-promo:hover {
  background-color: #E5B80B;
  color: #0A2463;
}

.page-cockfighting__btn-small {
  background-color: #0A2463;
  color: #E5B80B;
  border: 1px solid #E5B80B;
  font-size: 14px;
  padding: 8px 15px;
  border-radius: 5px;
  margin-top: 15px;
}

.page-cockfighting__btn-small:hover {
  background-color: #E5B80B;
  color: #0A2463;
}

/* Dark section specific styles */
.page-cockfighting__dark-section {
  background-color: #0A2463;
  color: #ffffff;
}

/* Features Grid (Why Choose Section) */
.page-cockfighting__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-cockfighting__feature-card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark blue */
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #f0f0f0;
}

.page-cockfighting__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-cockfighting__feature-title {
  font-size: 24px;
  font-weight: 700;
  color: #E5B80B; /* Gold for feature titles */
  margin-bottom: 15px;
}

.page-cockfighting__feature-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #cccccc;
}

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

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

.page-cockfighting__betting-card {
  background-color: rgba(255, 255, 255, 0.05); /* Dark background for cards */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #f0f0f0;
}

.page-cockfighting__betting-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-cockfighting__betting-card img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-cockfighting__betting-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #E5B80B;
  padding: 15px 20px 0;
  margin: 0;
}

.page-cockfighting__betting-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #cccccc;
  padding: 10px 20px 20px;
  margin: 0;
}

/* Guide Section (Step-by-step) */
.page-cockfighting__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-cockfighting__step-icon {
  width: 60px;
  height: 60px;
  background-color: #E5B80B;
  color: #0A2463;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(229, 184, 11, 0.5);
}

.page-cockfighting__step-title {
  font-size: 22px;
  font-weight: 600;
  color: #E5B80B;
  margin-bottom: 15px;
}

.page-cockfighting__step-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #cccccc;
  flex-grow: 1;
}

/* Tips Section */
.page-cockfighting__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-cockfighting__tips-list li {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #E5B80B;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 17px;
  line-height: 1.7;
  color: #f0f0f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__tips-list li strong {
  color: #E5B80B;
}

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

.page-cockfighting__promo-card {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-cockfighting__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}