/* style/cockfighting.css */
/* body đã có padding-top: var(--header-offset) từ shared.css, không lặp lại ở đây */

.page-cockfighting {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Mặc định chữ tối trên nền sáng */
  background-color: #FFFFFF; /* Nền mặc định cho main, nếu body là nền sáng */
}

/* Hero Section */
.page-cockfighting__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Hình ảnh trên, nội dung dưới */
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Chỉ một khoảng cách nhỏ từ header, body đã lo phần còn lại */
  background-color: #f5f5f5; /* Nền nhẹ cho phần hero */
}

.page-cockfighting__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Giới hạn chiều rộng hình ảnh */
  margin-bottom: 30px; /* Khoảng cách giữa ảnh và nội dung */
}

.page-cockfighting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__hero-content {
  max-width: 900px;
  margin: 0 auto;
  color: #333333;
}

.page-cockfighting__hero-title {
  font-size: clamp(2.2rem, 4vw, 3rem); /* Sử dụng clamp cho H1 */
  font-weight: 700;
  color: #26A9E0; /* Màu thương hiệu */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-cockfighting__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #555555;
}

.page-cockfighting__cta-buttons {
  display: flex;
  flex-wrap: wrap; /* Cho phép xuống dòng trên mobile */
  justify-content: center;
  gap: 15px;
}

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary,
.page-cockfighting__btn-large,
.page-cockfighting__btn-final {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  max-width: 100%; /* Đảm bảo nút không tràn */
  box-sizing: border-box;
  white-space: normal; /* Cho phép chữ xuống dòng */
  word-wrap: break-word;
}

.page-cockfighting__btn-primary,
.page-cockfighting__btn-large,
.page-cockfighting__btn-final {
  background-color: #26A9E0; /* Màu chủ đạo */
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-cockfighting__btn-primary:hover,
.page-cockfighting__btn-large:hover,
.page-cockfighting__btn-final:hover {
  background-color: #1a8cc7;
  border-color: #1a8cc7;
  transform: translateY(-2px);
}

.page-cockfighting__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-cockfighting__btn-secondary:hover {
  background-color: #e0f0ff;
  color: #1a8cc7;
  border-color: #1a8cc7;
  transform: translateY(-2px);
}

/* General Section Styles */
.page-cockfighting__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
}

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

.page-cockfighting__light-bg {
  background-color: #f8f9fa; /* Nền sáng */
  color: #333333;
  padding: 80px 0;
}

.page-cockfighting__dark-section {
  background-color: #26A9E0; /* Nền màu chủ đạo */
  color: #FFFFFF;
  padding: 80px 0;
}

.page-cockfighting__dark-section .page-cockfighting__section-title {
  color: #FFFFFF;
}

.page-cockfighting__text-block {
  font-size: 1.05rem;
  margin-bottom: 20px;
  text-align: justify;
}

.page-cockfighting__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-cockfighting__feature-card {
  background-color: rgba(255, 255, 255, 0.15); /* Nền hơi trong suốt */
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-cockfighting__feature-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.25);
}

.page-cockfighting__feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.page-cockfighting__feature-description {
  font-size: 1rem;
  color: #f0f0f0;
}

/* Steps Section */
.page-cockfighting__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-cockfighting__step-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-cockfighting__step-item:hover {
  transform: translateY(-5px);
}

.page-cockfighting__step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-cockfighting__step-description {
  font-size: 1rem;
  color: #555555;
}

/* Bet Types List */
.page-cockfighting__bet-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  margin-bottom: 40px;
}