/* style/cockfighting.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #EA7C07; /* Login button color */
  --text-color: #333333;
  --heading-color: #000000;
  --light-bg: #FFFFFF;
  --dark-bg: #26A9E0;
  --border-color: #e0e0e0;
}

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

.page-cockfighting h1, .page-cockfighting h2, .page-cockfighting h3, .page-cockfighting h4, .page-cockfighting h5, .page-cockfighting h6 {
  color: var(--heading-color);
  line-height: 1.2;
  margin-bottom: 15px;
}

.page-cockfighting h1 {
  font-size: 3.2em;
}

.page-cockfighting h2 {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 30px;
}

.page-cockfighting h3 {
  font-size: 1.8em;
}

.page-cockfighting__section {
  padding: 60px 0;
  position: relative;
}

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

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

.page-cockfighting__dark-bg {
  background-color: var(--dark-bg);
  color: #ffffff; /*强制白色文字*/
}

.page-cockfighting__dark-bg h1, 
.page-cockfighting__dark-bg h2, 
.page-cockfighting__dark-bg h3, 
.page-cockfighting__dark-bg h4, 
.page-cockfighting__dark-bg h5, 
.page-cockfighting__dark-bg h6 {
  color: #ffffff; /*强制白色文字*/
}

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

.page-cockfighting__text-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-cockfighting__text-link:hover {
  text-decoration: underline;
}

/* Hero Section */
.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); /* Fixed header offset */
  background: linear-gradient(135deg, var(--primary-color) 0%, #FFFFFF 100%); /* 淡蓝色到白色渐变 */
}

.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;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.page-cockfighting__hero-title {
  font-size: 3.5em;
  color: var(--heading-color);
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.page-cockfighting__hero-description {
  font-size: 1.4em;
  color: var(--text-color);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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