:root {
  --cockfighting-primary-color: #11A84E; /* Main */
  --cockfighting-secondary-color: #22C768; /* Auxiliary */

  --cockfighting-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  --cockfighting-bg-card: #11271B; /* Card BG */
  --cockfighting-bg-main: #08160F; /* Background */
  --cockfighting-text-main: #F2FFF6; /* Text Main */
  --cockfighting-text-secondary: #A7D9B8; /* Text Secondary */
  --cockfighting-border: #2E7A4E; /* Border */
  --cockfighting-glow: #57E38D; /* Glow */
  --cockfighting-gold: #F2C14E; /* Gold */
  --cockfighting-divider: #1E3A2A; /* Divider */
  --cockfighting-deep-green: #0A4B2C; /* Deep Green */
}

.page-cockfighting {
  font-family: 'Arial', sans-serif;
  color: var(--cockfighting-text-main); /* Default text color for dark background */
  background-color: var(--cockfighting-bg-main); /* Page specific background */
}

/* Hero Section */
.page-cockfighting__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles --header-offset */
  background-color: var(--cockfighting-bg-main);
  overflow: hidden; /* Ensure content doesn't overflow */
}

.page-cockfighting__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

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

.page-cockfighting__hero-content {
  max-width: 900px;
  margin-top: 20px; /* Space between image and content */
  z-index: 1;
}

.page-cockfighting__main-title {
  color: var(--cockfighting-gold);
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* H1 font size clamp */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow */
}

.page-cockfighting__hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--cockfighting-text-secondary);
  margin-bottom: 40px;
}

/* General Section Styling */
.page-cockfighting__section {
  padding: 80px 20px;
  background-color: var(--cockfighting-bg-main);
  color: var(--cockfighting-text-main);
}

.page-cockfighting__section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cockfighting-primary-color);
  text-align: center;
  margin-bottom: 50px;
  text-shadow: 0 0 8px rgba(34, 199, 104, 0.3);
}

.page-cockfighting__sub-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--cockfighting-gold);
  margin-bottom: 20px;
}

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

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

.page-cockfighting__container--center {
  text-align: center;
}

/* Buttons */
.page-cockfighting__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  margin-top: 30px;
  width: 100%; /* Ensure container takes full width */
  max-width: 100%; /* Ensure container takes full width */
  box-sizing: border-box;
  overflow: hidden;
}

.page-cockfighting__cta-buttons--center {
  margin-top: 40px;
}