.page-cockfighting-live-past-highlights {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0;
  background-color: #1A202C;
  line-height: 1.6;
}

.page-cockfighting-live-past-highlights__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-cockfighting-live-past-highlights__section {
  padding: 60px 0;
}

.page-cockfighting-live-past-highlights__section--dark {
  background-color: #2D3748;
}

.page-cockfighting-live-past-highlights__section--dark-alt {
  background-color: #1A202C;
}

.page-cockfighting-live-past-highlights__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-cockfighting-live-past-highlights__section-title--gold {
  color: #FFD700;
}

.page-cockfighting-live-past-highlights__text-block {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #cccccc;
}

.page-cockfighting-live-past-highlights__text-center {
  text-align: center;
}

.page-cockfighting-live-past-highlights__mt-40 {
  margin-top: 40px;
}

.page-cockfighting-live-past-highlights__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 10px;
  text-align: center;
}

.page-cockfighting-live-past-highlights__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

.page-cockfighting-live-past-highlights__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-cockfighting-live-past-highlights__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-cockfighting-live-past-highlights__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

.page-cockfighting-live-past-highlights__btn--gold {
  background-color: #FFD700;
  color: #1A202C;
  border: none;
}

.page-cockfighting-live-past-highlights__btn--gold:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-cockfighting-live-past-highlights__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* Hero Section */
.page-cockfighting-live-past-highlights__hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 20px;
}

.page-cockfighting-live-past-highlights__hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.5) blur(3px);
}

.page-cockfighting-live-past-highlights__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 32, 44, 0.8), rgba(255, 215, 0, 0.3));
  z-index: 2;
}

.page-cockfighting-live-past-highlights__hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  max-width: 800px;
}

.page-cockfighting-live-past-highlights__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-cockfighting-live-past-highlights__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

/* Intro Section */
.page-cockfighting-live-past-highlights__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting-live-past-highlights__feature-item {
  background-color: #2D3748;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-cockfighting-live-past-highlights__feature-item:hover {
  transform: translateY(-5px);
}

.page-cockfighting-live-past-highlights__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(100%) saturate(2000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint for icons */
}

.page-cockfighting-live-past-highlights__feature-item h3 {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-cockfighting-live-past-highlights__feature-item p {
  font-size: 1em;
  color: #cccccc;
}

/* Categories Section */
.page-cockfighting-live-past-highlights__category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting-live-past-highlights__category-card {
  background-color: #1A202C;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-cockfighting-live-past-highlights__category-card:hover {
  transform: translateY(-5px);
}

.page-cockfighting-live-past-highlights__category-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-cockfighting-live-past-highlights__category-card h3 {
  font-size: 1.4em;
  color: #FFD700;
  margin: 20px 15px 10px 15px;
}

.page-cockfighting-live-past-highlights__category-card p {
  font-size: 0.95em;
  color: #cccccc;
  padding: 0 15px 20px 15px;
  flex-grow: 1;
}

.page-cockfighting-live-past-highlights__category-card .page-cockfighting-live-past-highlights__btn {
  margin-top: auto;
  margin-bottom: 20px;
}

/* Featured Videos Section */
.page-cockfighting-live-past-highlights__video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting-live-past-highlights__video-card {
  background-color: #2D3748;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.page-cockfighting-live-past-highlights__video-card:hover {
  transform: translateY(-5px);
}

.page-cockfighting-live-past-highlights__video-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-cockfighting-live-past-highlights__video-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-cockfighting-live-past-highlights__video-info h3 {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-cockfighting-live-past-highlights__video-info p {
  font-size: 0.95em;
  color: #cccccc;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-cockfighting-live-past-highlights__video-info .page-cockfighting-live-past-highlights__btn {
  margin-top: auto;
}

/* CTA App Section */
.page-cockfighting-live-past-highlights__cta-app-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.page-cockfighting-live-past-highlights__cta-app-text {
  flex: 1;
  min-width: 300px;
}

.page-cockfighting-live-past-highlights__cta-app-text .page-cockfighting-live-past-highlights__text-block {
  text-align: left;
  max-width: none;
}

.page-cockfighting-live-past-highlights__app-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-cockfighting-live-past-highlights__app-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  vertical-align: middle;
  filter: invert(1);
}

.page-cockfighting-live-past-highlights__cta-app-image-wrapper {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.page-cockfighting-live-past-highlights__app-mockup {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 5px solid #FFD700;
}

/* Why GACAM67 Section */
.page-cockfighting-live-past-highlights__checklist {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 700px;
}

.page-cockfighting-live-past-highlights__checklist li {
  background-color: #2D3748;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #ffffff;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-live-past-highlights__check-icon {
  color: #FFD700;
  font-size: 1.4em;
  margin-right: 15px;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-cockfighting-live-past-highlights__hero-title {
    font-size: 2.8em;
  }
  .page-cockfighting-live-past-highlights__hero-subtitle {
    font-size: 1.1em;
  }
  .page-cockfighting-live-past-highlights__section-title {
    font-size: 2.2em;
  }
  .page-cockfighting-live-past-highlights__cta-app-content {
    flex-direction: column;
    text-align: center;
  }
  .page-cockfighting-live-past-highlights__cta-app-text .page-cockfighting-live-past-highlights__text-block {
    text-align: center;
  }
  .page-cockfighting-live-past-highlights__app-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-cockfighting-live-past-highlights__hero {
    height: 500px;
  }
  .page-cockfighting-live-past-highlights__hero-title {
    font-size: 2.2em;
  }
  .page-cockfighting-live-past-highlights__hero-subtitle {
    font-size: 1em;
  }
  .page-cockfighting-live-past-highlights__section {
    padding: 40px 0;
  }
  .page-cockfighting-live-past-highlights__section-title {
    font-size: 1.8em;
  }
  .page-cockfighting-live-past-highlights__text-block {
    font-size: 0.95em;
  }
  .page-cockfighting-live-past-highlights__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-cockfighting-live-past-highlights__feature-grid, 
  .page-cockfighting-live-past-highlights__category-grid, 
  .page-cockfighting-live-past-highlights__video-grid {
    grid-template-columns: 1fr;
  }
  .page-cockfighting-live-past-highlights__feature-item, 
  .page-cockfighting-live-past-highlights__category-card, 
  .page-cockfighting-live-past-highlights__video-card {
    margin: 0 auto;
    max-width: 400px;
  }
  .page-cockfighting-live-past-highlights__checklist li {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-cockfighting-live-past-highlights__hero {
    height: 400px;
  }
  .page-cockfighting-live-past-highlights__hero-title {
    font-size: 1.8em;
  }
  .page-cockfighting-live-past-highlights__hero-subtitle {
    font-size: 0.9em;
  }
  .page-cockfighting-live-past-highlights__btn--large {
    padding: 15px 25px;
    font-size: 1.1em;
  }
  .page-cockfighting-live-past-highlights__app-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-cockfighting-live-past-highlights__section-title {
    font-size: 1.6em;
  }
}