/* style/cockfighting-arena-tips.css */
.page-cockfighting-arena-tips {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for readability on dark background */
  background-color: #0A2342; /* Primary dark blue background */
}

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

.page-cockfighting-arena-tips__hero-section {
  background: linear-gradient(135deg, #0A2342 0%, #1A3A63 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-cockfighting-arena-tips__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold accent for titles */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-cockfighting-arena-tips__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
  color: #F0F0F0;
}

.page-cockfighting-arena-tips__hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-arena-tips__section {
  padding: 60px 0;
  background-color: #0F2D52;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-cockfighting-arena-tips__section:nth-of-type(even) {
  background-color: #12345C;
}

.page-cockfighting-arena-tips__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-cockfighting-arena-tips__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-cockfighting-arena-tips__text-content {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-cockfighting-arena-tips__article {
  background-color: #1A3A63;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-arena-tips__article-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

.page-cockfighting-arena-tips__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-cockfighting-arena-tips__list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-cockfighting-arena-tips__list li strong {
  color: #FFD700;
}

.page-cockfighting-arena-tips__image {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.page-cockfighting-arena-tips__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  text-align: center;
  cursor: pointer;
  border: none;
}

.page-cockfighting-arena-tips__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A2342; /* Dark blue */
}

.page-cockfighting-arena-tips__btn--primary:hover {
  background-color: #E6C200;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-arena-tips__btn--secondary {
  background-color: #0A2342; /* Dark blue */
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-cockfighting-arena-tips__btn--secondary:hover {
  background-color: #1A3A63;
  color: #FFD700;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-cockfighting-arena-tips__hero-title {
    font-size: 2.5em;
  }

  .page-cockfighting-arena-tips__hero-description {
    font-size: 1em;
  }

  .page-cockfighting-arena-tips__section-title {
    font-size: 2em;
  }

  .page-cockfighting-arena-tips__article-title {
    font-size: 1.5em;
  }

  .page-cockfighting-arena-tips__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-cockfighting-arena-tips__hero-title {
    font-size: 2em;
  }

  .page-cockfighting-arena-tips__hero-description {
    font-size: 0.9em;
  }

  .page-cockfighting-arena-tips__section {
    padding: 40px 0;
  }

  .page-cockfighting-arena-tips__section-title {
    font-size: 1.8em;
  }

  .page-cockfighting-arena-tips__article {
    padding: 20px;
  }

  .page-cockfighting-arena-tips__article-title {
    font-size: 1.3em;
  }

  .page-cockfighting-arena-tips__list {
    margin-left: 15px;
  }

  .page-cockfighting-arena-tips__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}