/* style/cockfighting.css */

:root {
  --z88-primary-color: #C61F1F;
  --z88-secondary-color: #E53030;
  --z88-card-bg: #2A1212;
  --z88-bg: #140C0C;
  --z88-text-main: #FFF1E8;
  --z88-border-color: #6A1E1E;
  --z88-gold-color: #F3C54D;
  --z88-deep-red: #7E0D0D;
  --z88-button-gradient: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
}

.page-cockfighting {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default for light body background */
  background-color: #ffffff; /* Assuming default body background is white */
}

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

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

.page-cockfighting__card-bg {
  background-color: var(--z88-card-bg);
  color: var(--z88-text-main);
}

.page-cockfighting__text-main {
  color: var(--z88-text-main);
}

.page-cockfighting__gold-text {
  color: var(--z88-gold-color);
}

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

.page-cockfighting__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--z88-primary-color);
}

.page-cockfighting__dark-section .page-cockfighting__section-title {
  color: var(--z88-gold-color);
}

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

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

.page-cockfighting__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}

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

.page-cockfighting__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-top: 20px;
  padding: 0 20px;
}

.page-cockfighting__main-title {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--z88-gold-color);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__hero-description {
  font-size: 1.2em;
  color: var(--z88-text-main);
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

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

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-cockfighting__btn-primary {
  background: var(--z88-button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-cockfighting__btn-secondary {
  background-color: #ffffff;
  color: var(--z88-primary-color);
  border: 2px solid var(--z88-primary-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  background-color: var(--z88-primary-color);
  color: #ffffff;
}

.page-cockfighting__btn-small {
  padding: 10px 20px;
  font-size: 1em;
}

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

/* Features Section */
.page-cockfighting__features-section {
  padding: 60px 0;
}

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

.page-cockfighting__feature-item {
  background-color: var(--z88-card-bg);
  border: 1px solid var(--z88-border-color);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-cockfighting__feature-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

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

.page-cockfighting__feature-description {
  font-size: 1em;
  line-height: 1.6;
  color: var(--z88-text-main);
}