.page-cockfighting {
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
}

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

.page-cockfighting__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px;
  background-color: #F4F7FB;
}

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

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

.page-cockfighting__hero-content {
  text-align: center;
  padding: 20px 20px 0;
  max-width: 900px;
}

.page-cockfighting__main-title {
  font-size: clamp(2em, 3.5vw, 3.2em);
  font-weight: bold;
  color: #1F2D3D;
  line-height: 1.2;
  margin-bottom: 15px;
}

.page-cockfighting__hero-description {
  font-size: 1.1em;
  color: #1F2D3D;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-cockfighting__hero-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-cockfighting__hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-cockfighting__section-title {
  font-size: 2.2em;
  color: #1F2D3D;
  text-align: center;
  margin: 60px 0 30px;
  font-weight: bold;
}

.page-cockfighting__about-section, .page-cockfighting__features-section, .page-cockfighting__guide-section, .page-cockfighting__news-section, .page-cockfighting__faq-section {
  padding: 40px 0;
  background-color: #FFFFFF;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-cockfighting__text-content {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
  color: #1F2D3D;
}

.page-cockfighting__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

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

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

.page-cockfighting__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.1);
}

.page-cockfighting__feature-title {
  font-size: 1.4em;
  color: #2F6BFF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-cockfighting__feature-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-cockfighting__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-cockfighting__guide-item {
  background-color: #F4F7FB;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  border-left: 5px solid #2F6BFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-cockfighting__guide-step-title {
  font-size: 1.3em;
  color: #2F6BFF;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-cockfighting__guide-step-description {
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-cockfighting__guide-button {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  padding: 15px 40px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-cockfighting__guide-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

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

.page-cockfighting__news-card {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting__news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.1);
}

.page-cockfighting__news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-cockfighting__news-card-title {
  font-size: 1.2em;
  font-weight: bold;
  margin: 15px 15px 10px;
}

.page-cockfighting__news-card-title a {
  color: #1F2D3D;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-cockfighting__news-card-title a:hover {
  color: #2F6BFF;
}

.page-cockfighting__news-card-date {
  font-size: 0.9em;
  color: #6FA3FF;
  margin: 0 15px 15px;
}

.page-cockfighting__view-all-button {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  padding: 12px 30px;
  background: #6FA3FF;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-cockfighting__view-all-button:hover {
  background: #2F6BFF;
  transform: translateY(-2px);
}

.page-cockfighting__faq-item {
  background-color: #F4F7FB;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
}

.page-cockfighting__faq-question {
  font-size: 1.1em;
  color: #2F6BFF;
  font-weight: bold;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-cockfighting__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D;
}

@media (max-width: 768px) {
  .page-cockfighting__hero-content {
    padding: 15px;
  }

  .page-cockfighting__main-title {
    font-size: 2em;
  }

  .page-cockfighting__hero-description {
    font-size: 1em;
  }

  .page-cockfighting__section-title {
    font-size: 1.8em;
    margin: 40px 0 20px;
  }

  .page-cockfighting__feature-list {
    grid-template-columns: 1fr;
  }

  .page-cockfighting__news-grid {
    grid-template-columns: 1fr;
  }

  .page-cockfighting__hero-button, .page-cockfighting__guide-button, .page-cockfighting__view-all-button {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-cockfighting__hero-image,
  .page-cockfighting__image-content,
  .page-cockfighting__news-image {
    max-width: 100%;
    height: auto;
  }

  .page-cockfighting__container {
    padding: 10px 15px;
  }
}