/* style/live-cockfighting-replays.css */

:root {
  --page-primary-color: #B22222;
  --page-secondary-color: #FFD700;
  --page-text-light: #f8f8f8;
  --page-text-dark: #333;
  --page-background-dark: #1a1a1a;
  --page-background-medium: #2a2a2a;
  --page-border-color: #444;
}

.page-live-cockfighting-replays {
  font-family: 'Arial', sans-serif;
  color: var(--page-text-light);
  background-color: var(--page-background-dark);
  line-height: 1.6;
}

.page-live-cockfighting-replays a {
  color: var(--page-secondary-color);
  text-decoration: none;
}

.page-live-cockfighting-replays a:hover {
  text-decoration: underline;
}

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

.page-live-cockfighting-replays__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.page-live-cockfighting-replays__btn--primary {
  background-color: var(--page-primary-color);
  color: var(--page-text-light);
  border: 2px solid var(--page-primary-color);
}

.page-live-cockfighting-replays__btn--primary:hover {
  background-color: #c96464; /* Lighter shade of primary for hover */
  border-color: #c96464;
  color: var(--page-text-light);
}

.page-live-cockfighting-replays__btn--secondary {
  background-color: transparent;
  color: var(--page-secondary-color);
  border: 2px solid var(--page-secondary-color);
}

.page-live-cockfighting-replays__btn--secondary:hover {
  background-color: var(--page-secondary-color);
  color: var(--page-background-dark);
}

.page-live-cockfighting-replays__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-live-cockfighting-replays__btn--center {
  display: block;
  margin: 30px auto;
  width: fit-content;
}

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

.page-live-cockfighting-replays__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-live-cockfighting-replays__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  z-index: 2;
}

.page-live-cockfighting-replays__hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.page-live-cockfighting-replays__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--page-text-light);
  line-height: 1.2;
}

.page-live-cockfighting-replays__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #ddd;
}

.page-live-cockfighting-replays__hero-actions .page-live-cockfighting-replays__btn {
  margin: 0 10px;
}

/* General Section Styling */
.page-live-cockfighting-replays__section {
  padding: 80px 0;
  background-color: var(--page-background-medium);
  border-bottom: 1px solid var(--page-border-color);
}

.page-live-cockfighting-replays__section:nth-of-type(even) {
  background-color: var(--page-background-dark);
}

.page-live-cockfighting-replays__section-title {
  font-size: 2.8em;
  color: var(--page-secondary-color);
  text-align: center;
  margin-bottom: 20px;
}

.page-live-cockfighting-replays__subsection-title {
  font-size: 2em;
  color: var(--page-primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.page-live-cockfighting-replays__section-intro {
  font-size: 1.1em;
  color: #ccc;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

/* Why Us Section */
.page-live-cockfighting-replays__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-live-cockfighting-replays__feature-item {
  background-color: var(--page-background-dark);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--page-border-color);
}

.page-live-cockfighting-replays__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px var(--page-secondary-color));
}

.page-live-cockfighting-replays__feature-title {
  font-size: 1.5em;
  color: var(--page-primary-color);
  margin-bottom: 15px;
}

.page-live-cockfighting-replays__feature-description {
  color: #bbb;
}

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

.page-live-cockfighting-replays__replay-card {
  background-color: var(--page-background-dark);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--page-border-color);
  text-align: center;
  padding-bottom: 20px;
}

.page-live-cockfighting-replays__replay-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-live-cockfighting-replays__replay-title {
  font-size: 1.4em;
  color: var(--page-primary-color);
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-live-cockfighting-replays__replay-meta {
  color: #aaa;
  font-size: 0.9em;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-live-cockfighting-replays__more-replays {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #ccc;
}

/* How to Watch Section */
.page-live-cockfighting-replays__steps {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.page-live-cockfighting-replays__step-item {
  flex: 1;
  min-width: 280px;
  text-align: center;
  background-color: var(--page-background-dark);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--page-border-color);
}

.page-live-cockfighting-replays__step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: var(--page-secondary-color);
  color: var(--page-background-dark);
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-live-cockfighting-replays__step-title {
  font-size: 1.6em;
  color: var(--page-primary-color);
  margin-bottom: 15px;
}

.page-live-cockfighting-replays__step-description {
  color: #bbb;
}

.page-live-cockfighting-replays__cta-box {
  background-color: var(--page-primary-color);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-live-cockfighting-replays__cta-title {
  font-size: 2.2em;
  color: var(--page-text-light);
  margin-bottom: 15px;
}

.page-live-cockfighting-replays__cta-description {
  font-size: 1.1em;
  color: #eee;
  max-width: 700px;
  margin: 0 auto 30px auto;
}

.page-live-cockfighting-replays__cta-box .page-live-cockfighting-replays__btn {
  margin: 0 10px;
}

/* Analysis Section */
.page-live-cockfighting-replays__analysis-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-top: 50px;
}

.page-live-cockfighting-replays__analysis-text {
  flex: 2;
  min-width: 300px;
  color: #ccc;
}

.page-live-cockfighting-replays__analysis-text p {
  margin-bottom: 15px;
}

.page-live-cockfighting-replays__analysis-text ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 15px;
}

.page-live-cockfighting-replays__analysis-text li {
  margin-bottom: 8px;
}

.page-live-cockfighting-replays__analysis-text strong {
  color: var(--page-secondary-color);
}

.page-live-cockfighting-replays__analysis-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--page-border-color);
}

.page-live-cockfighting-replays__tips-list {
  list-style-type: decimal;
  margin-left: 25px;
  color: #ccc;
  max-width: 800px;
  margin: 30px auto;
  padding-left: 20px;
}

.page-live-cockfighting-replays__tips-list li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.page-live-cockfighting-replays__tips-list li strong {
  color: var(--page-primary-color);
}

/* Updates Section */
.page-live-cockfighting-replays__updates p {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #ccc;
  font-size: 1.1em;
}

/* FAQ Section */
.page-live-cockfighting-replays__accordion {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-live-cockfighting-replays__accordion-item {
  background-color: var(--page-background-dark);
  border: 1px solid var(--page-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-live-cockfighting-replays__accordion-header {
  padding: 20px;
  background-color: var(--page-background-medium);
  color: var(--page-primary-color);
  font-size: 1.3em;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
  margin: 0;
}

.page-live-cockfighting-replays__accordion-header:hover {
  background-color: #3a3a3a;
}

.page-live-cockfighting-replays__accordion-header::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: var(--page-secondary-color);
  transition: transform 0.3s ease;
}

.page-live-cockfighting-replays__accordion-item.active .page-live-cockfighting-replays__accordion-header::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-live-cockfighting-replays__accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  color: #bbb;
}

.page-live-cockfighting-replays__accordion-item.active .page-live-cockfighting-replays__accordion-content {
  max-height: 200px; /* Adjust as needed */
  padding: 20px;
}

.page-live-cockfighting-replays__accordion-content p {
  margin-bottom: 10px;
}

.page-live-cockfighting-replays__accordion-content a {
  color: var(--page-secondary-color);
  text-decoration: underline;
}

/* Final CTA Section */
.page-live-cockfighting-replays__cta-final {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.page-live-cockfighting-replays__cta-final-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.4);
}

.page-live-cockfighting-replays__cta-final-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-live-cockfighting-replays__cta-final-title {
  font-size: 3.2em;
  color: var(--page-secondary-color);
  margin-bottom: 20px;
}

.page-live-cockfighting-replays__cta-final-description {
  font-size: 1.2em;
  color: #eee;
  margin-bottom: 40px;
}

.page-live-cockfighting-replays__cta-final-actions .page-live-cockfighting-replays__btn {
  margin: 0 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-live-cockfighting-replays__hero-title {
    font-size: 2.8em;
  }
  .page-live-cockfighting-replays__hero-description {
    font-size: 1.1em;
  }
  .page-live-cockfighting-replays__section-title {
    font-size: 2.2em;
  }
  .page-live-cockfighting-replays__subsection-title {
    font-size: 1.8em;
  }
  .page-live-cockfighting-replays__analysis-content {
    flex-direction: column;
  }
  .page-live-cockfighting-replays__analysis-image {
    max-width: 100%;
  }
  .page-live-cockfighting-replays__cta-final-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-live-cockfighting-replays__hero {
    height: 450px;
  }
  .page-live-cockfighting-replays__hero-title {
    font-size: 2.2em;
  }
  .page-live-cockfighting-replays__hero-description {
    font-size: 1em;
  }
  .page-live-cockfighting-replays__hero-actions .page-live-cockfighting-replays__btn {
    margin-bottom: 15px;
  }
  .page-live-cockfighting-replays__section {
    padding: 60px 0;
  }
  .page-live-cockfighting-replays__section-title {
    font-size: 2em;
  }
  .page-live-cockfighting-replays__replay-grid {
    grid-template-columns: 1fr;
  }
  .page-live-cockfighting-replays__steps {
    flex-direction: column;
  }
  .page-live-cockfighting-replays__step-item {
    min-width: unset;
  }
  .page-live-cockfighting-replays__cta-box .page-live-cockfighting-replays__btn {
    display: block;
    margin: 15px auto;
  }
  .page-live-cockfighting-replays__cta-final {
    padding: 80px 0;
  }
  .page-live-cockfighting-replays__cta-final-title {
    font-size: 2em;
  }
  .page-live-cockfighting-replays__cta-final-description {
    font-size: 1em;
  }
  .page-live-cockfighting-replays__cta-final-actions .page-live-cockfighting-replays__btn {
    display: block;
    margin: 15px auto;
  }
}

@media (max-width: 480px) {
  .page-live-cockfighting-replays__hero {
    height: 350px;
  }
  .page-live-cockfighting-replays__hero-title {
    font-size: 1.8em;
  }
  .page-live-cockfighting-replays__hero-description {
    font-size: 0.9em;
  }
  .page-live-cockfighting-replays__section-title {
    font-size: 1.8em;
  }
  .page-live-cockfighting-replays__subsection-title {
    font-size: 1.5em;
  }
  .page-live-cockfighting-replays__feature-item, .page-live-cockfighting-replays__replay-card, .page-live-cockfighting-replays__step-item {
    padding: 20px;
  }
  .page-live-cockfighting-replays__cta-box {
    padding: 30px;
  }
  .page-live-cockfighting-replays__cta-title {
    font-size: 1.8em;
  }
  .page-live-cockfighting-replays__cta-final-title {
    font-size: 1.8em;
  }
  .page-live-cockfighting-replays__accordion-header {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-live-cockfighting-replays__accordion-header::after {
    right: 15px;
  }
  .page-live-cockfighting-replays__accordion-content {
    padding: 15px;
  }
}