:root {
  --primary-color: #113B7A;
  --secondary-color: #1D5FD1;
  --button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  --card-bg-color: #10233F;
  --text-main-color: #F3F8FF;
  --text-secondary-color: #AFC4E8;
  --border-color: #244D84;
  --glow-color: #4FA8FF;
  --gold-color: #F2C14E;
  --divider-color: #1B3357;
  --deep-navy-color: #08162B;
}

.page-cockfighting {
  font-family: 'Arial', sans-serif;
  color: var(--text-main-color); /* Body is dark, so text is light */
  line-height: 1.6;
  background-color: var(--deep-navy-color);
}

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

/* Hero Section */
.page-cockfighting__hero-section {
  position: relative;
  padding-top: 10px; /* Fixed small top margin as per instruction */
  margin-bottom: 40px;
  overflow: hidden;
}

.page-cockfighting__hero-image {
  width: 100%;
  height: 675px;
  position: relative;
  overflow: hidden;
}

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

.page-cockfighting__hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px;
  background: linear-gradient(to top, rgba(8, 22, 43, 0.9) 0%, rgba(8, 22, 43, 0.7) 50%, rgba(8, 22, 43, 0) 100%);
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-cockfighting__main-title {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--gold-color);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-cockfighting__description {
  font-size: 18px;
  color: var(--text-secondary-color);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-cockfighting__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main-color);
  border: none;
  box-shadow: 0 4px 15px rgba(43, 115, 246, 0.4);
}

.page-cockfighting__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(43, 115, 246, 0.6);
}

.page-cockfighting__btn-secondary {
  background: transparent;
  color: var(--gold-color);
  border: 2px solid var(--gold-color);
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.2);
}

.page-cockfighting__btn-secondary:hover {
  background: rgba(242, 193, 78, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.4);
}

/* General Section Styles */
.page-cockfighting__intro-section,
.page-cockfighting__why-choose-section,
.page-cockfighting__types-section,
.page-cockfighting__guide-section,
.page-cockfighting__features-section,
.page-cockfighting__promotions-section,
.page-cockfighting__faq-section,
.page-cockfighting__cta-bottom-section {
  padding: 60px 0;
  margin-bottom: 20px;
  box-sizing: border-box;
}

.page-cockfighting__dark-section {
  background-color: var(--card-bg-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.page-cockfighting__content-area {
  background-color: transparent; /* Allows body background to show */
}

.page-cockfighting__section-title {
  font-size: clamp(28px, 4vw, 38px);
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-cockfighting__article-body {
  max-width: 900px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--text-secondary-color);
  line-height: 1.7;
}

.page-cockfighting__article-body h3 {
  font-size: clamp(20px, 3vw, 28px);
  color: var(--text-main-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-cockfighting__article-body p {
  margin-bottom: 15px;
}

.page-cockfighting__article-body a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-cockfighting__article-body a:hover {
  color: var(--glow-color);
}

.page-cockfighting__article-figure {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Card Grid Layouts */
.page-cockfighting__types-grid,
.page-cockfighting__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-cockfighting__card {
  background-color: var(--card-bg-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border-color);
}

.page-cockfighting__card img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--border-color);
}

.page-cockfighting__card-title {
  font-size: 22px;
  color: var(--text-main-color);
  margin: 20px 15px 10px;
  font-weight: 600;
  line-height: 1.4;
}

.page-cockfighting__card-description {
  font-size: 16px;
  color: var(--text-secondary-color);
  padding: 0 20px 20px;
  flex-grow: 1;
}