/* style/index-cockfighting-news.css */
.page-index-cockfighting-news {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0;
  background-color: #1a1a1a;
  line-height: 1.6;
}

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

.page-index-cockfighting-news__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-cockfighting-news__section:nth-of-type(even) {
  background-color: #222;
}

.page-index-cockfighting-news__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-cockfighting-news__section-subtitle {
  font-size: 1.2em;
  color: #ccc;
  margin-bottom: 40px;
}

.page-index-cockfighting-news__hero {
  background: linear-gradient(135deg, #B22222 0%, #8b0000 100%); /* Darker Firebrick gradient */
  padding: 100px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-index-cockfighting-news__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.2;
}

.page-index-cockfighting-news__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-index-cockfighting-news__hero .page-index-cockfighting-news__container {
  position: relative;
  z-index: 1;
}

.page-index-cockfighting-news__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-index-cockfighting-news__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.page-index-cockfighting-news__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.page-index-cockfighting-news__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #B22222; /* Firebrick */
  border: 2px solid #FFD700;
}

.page-index-cockfighting-news__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
}

.page-index-cockfighting-news__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-index-cockfighting-news__btn--secondary:hover {
  background-color: #FFD700;
  color: #B22222; /* Firebrick */
  transform: translateY(-3px);
}

.page-index-cockfighting-news__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-index-cockfighting-news__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-index-cockfighting-news__news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-index-cockfighting-news__news-card {
  background-color: #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-index-cockfighting-news__news-card:hover {
  transform: translateY(-5px);
}

.page-index-cockfighting-news__news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-index-cockfighting-news__news-card h3 {
  color: #FFD700; /* Gold */
  font-size: 1.4em;
  padding: 15px 20px 10px;
}

.page-index-cockfighting-news__news-card p {
  color: #ccc;
  padding: 0 20px 15px;
  font-size: 0.95em;
}

.page-index-cockfighting-news__read-more {
  display: inline-block;
  color: #B22222; /* Firebrick */
  font-weight: bold;
  text-decoration: none;
  padding: 0 20px 20px;
  transition: color 0.3s ease;
}

.page-index-cockfighting-news__read-more:hover {
  color: #FFD700; /* Gold */
}

.page-index-cockfighting-news__live-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.page-index-cockfighting-news__feature-item {
  background-color: #2a2a2a;
  border: 1px solid #B22222; /* Firebrick */
  border-radius: 10px;
  padding: 30px;
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-cockfighting-news__feature-item h3 {
  color: #FFD700; /* Gold */
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-index-cockfighting-news__feature-item p {
  color: #ccc;
  font-size: 1em;
}

.page-index-cockfighting-news__cta-box {
  background-color: #B22222; /* Firebrick */
  padding: 40px;
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
}

.page-index-cockfighting-news__cta-box p {
  font-size: 1.5em;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-index-cockfighting-news__platform-review .page-index-cockfighting-news__review-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
}

.page-index-cockfighting-news__review-image {
  flex: 1 1 400px;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-index-cockfighting-news__review-text {
  flex: 1 1 400px;
}

.page-index-cockfighting-news__review-text h3 {
  color: #FFD700; /* Gold */
  font-size: 2em;
  margin-bottom: 20px;
}

.page-index-cockfighting-news__review-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-index-cockfighting-news__review-text ul li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #ccc;
  font-size: 1.1em;
}

.page-index-cockfighting-news__offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-index-cockfighting-news__offer-card {
  background-color: #2a2a2a;
  border: 1px solid #B22222; /* Firebrick */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-index-cockfighting-news__offer-card:hover {
  transform: translateY(-5px);
}

.page-index-cockfighting-news__offer-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-index-cockfighting-news__offer-card h3 {
  color: #FFD700; /* Gold */
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-index-cockfighting-news__offer-card p {
  color: #ccc;
  font-size: 0.95em;
  margin-bottom: 25px;
}

.page-index-cockfighting-news__faq-item {
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-index-cockfighting-news__faq-question {
  color: #FFD700; /* Gold */
  font-size: 1.3em;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-cockfighting-news__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #B22222;
}

.page-index-cockfighting-news__faq-question.active::after {
  content: '-';
}

.page-index-cockfighting-news__faq-answer {
  color: #ccc;
  font-size: 1em;
  display: none;
  margin-top: 10px;
}

.page-index-cockfighting-news__call-to-action {
  background-color: #B22222; /* Firebrick */
  padding: 80px 0;
  color: #fff;
}

.page-index-cockfighting-news__call-to-action .page-index-cockfighting-news__section-title {
  color: #FFD700; /* Gold */
}

.page-index-cockfighting-news__call-to-action .page-index-cockfighting-news__section-subtitle {
  color: #fff;
}

.page-index-cockfighting-news__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
}

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

  .page-index-cockfighting-news__hero-description {
    font-size: 1.1em;
  }

  .page-index-cockfighting-news__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-cockfighting-news__section-title {
    font-size: 2em;
  }

  .page-index-cockfighting-news__news-grid,
  .page-index-cockfighting-news__offers-grid {
    grid-template-columns: 1fr;
  }

  .page-index-cockfighting-news__live-features {
    flex-direction: column;
    align-items: center;
  }

  .page-index-cockfighting-news__platform-review .page-index-cockfighting-news__review-content {
    flex-direction: column;
    text-align: center;
  }

  .page-index-cockfighting-news__review-text ul li {
    background-position: center left;
    padding-left: 25px;
  }

  .page-index-cockfighting-news__cta-buttons {
    flex-direction: column;
  }
}

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

  .page-index-cockfighting-news__section-title {
    font-size: 1.8em;
  }

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

  .page-index-cockfighting-news__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}