/* style/cockfighting.css */
:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --register-button-bg: #C30808;
  --login-button-bg: #C30808;
  --register-login-text: #FFFF00;
  --body-bg: #FFFFFF;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --card-bg: #ffffff;
  --card-border: #e0e0e0;
  --faq-question-bg: #fff;
  --faq-question-hover-bg: #f5f5f5;
  --faq-question-active-bg: #eeeeee;
  --faq-toggle-color: #666;
}

.page-cockfighting {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
  background-color: var(--body-bg);
}

.page-cockfighting__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-color-light);
}

.page-cockfighting__light-bg {
  background-color: var(--secondary-color);
  color: var(--text-color-dark);
}

.page-cockfighting__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Apply header offset */
}

.page-cockfighting__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

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

.page-cockfighting__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-cockfighting__main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-color-light);
}

.page-cockfighting__hero-description {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 40px;
  color: var(--text-color-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-cockfighting__btn-primary {
  background: var(--register-button-bg);
  color: var(--register-login-text);
  border: 2px solid var(--register-button-bg);
}

.page-cockfighting__btn-primary:hover {
  background: #a30606;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__btn-secondary {
  background: transparent;
  color: var(--register-login-text);
  border: 2px solid var(--register-login-text);
}

.page-cockfighting__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__section {
  padding: 80px 0;
  text-align: center;
}

.page-cockfighting__section--introduction,
.page-cockfighting__section--guide,
.page-cockfighting__section--tips {
  background-color: var(--secondary-color);
  color: var(--text-color-dark);
}

.page-cockfighting__section--advantages,
.page-cockfighting__section--promotions,
.page-cockfighting__section--faq {
  background-color: #f5f5f5;
  color: var(--text-color-dark);
}

.page-cockfighting__section--bet-types,
.page-cockfighting__section--cta {
  background-color: var(--primary-color);
  color: var(--text-color-light);
}

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

.page-cockfighting__container--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-cockfighting__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  color: inherit;
}

.page-cockfighting__text-block {
  font-size: 18px;
  margin-bottom: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-cockfighting__highlight {
  font-weight: bold;
  color: var(--primary-color);
}

.page-cockfighting__dark-bg .page-cockfighting__highlight {
  color: var(--register-login-text);
}

.page-cockfighting__image-wrapper {
  margin: 40px 0;
  text-align: center;
}

.page-cockfighting__image-wrapper--cta {
  margin-top: 60px;
}

.page-cockfighting__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  object-fit: cover;
}