/* style/live-cockfighting.css */

/* Variables */
:root {
  --page-live-cockfighting-primary-color: #C0392B; /* Deep Red */
  --page-live-cockfighting-secondary-color: #2C3E50; /* Dark Blue Gray */
  --page-live-cockfighting-accent-color: #F39C12; /* Golden Orange for emphasis */
  --page-live-cockfighting-text-light: #ECF0F1; /* Light Gray */
  --page-live-cockfighting-text-dark: #34495E; /* Dark Blue Gray for text */
  --page-live-cockfighting-bg-light: #FFFFFF; /* White */
  --page-live-cockfighting-bg-dark: #233140; /* Slightly darker than secondary for contrast */
  --page-live-cockfighting-border-color: rgba(255, 255, 255, 0.1);
}

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

.page-live-cockfighting .highlight {
  color: var(--page-live-cockfighting-primary-color);
  font-weight: bold;
}

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

.page-live-cockfighting__section {
  padding: 80px 0;
  text-align: center;
}

.page-live-cockfighting__section:nth-of-type(even) {
  background-color: var(--page-live-cockfighting-bg-dark);
  color: var(--page-live-cockfighting-text-light);
}

.page-live-cockfighting__section:nth-of-type(even) .highlight {
  color: var(--page-live-cockfighting-accent-color);
}

.page-live-cockfighting__section-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--page-live-cockfighting-primary-color);
  position: relative;
  padding-bottom: 15px;
}

.page-live-cockfighting__section:nth-of-type(even) .page-live-cockfighting__section-title {
  color: var(--page-live-cockfighting-text-light);
}

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

.page-live-cockfighting__section-description {
  font-size: 1.2em;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-live-cockfighting__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-live-cockfighting__btn--primary {
  background-color: var(--page-live-cockfighting-primary-color);
  color: var(--page-live-cockfighting-text-light);
}

.page-live-cockfighting__btn--primary:hover {
  background-color: #A92C20; /* Darker red */
  transform: translateY(-2px);
}

.page-live-cockfighting__btn--secondary {
  background-color: var(--page-live-cockfighting-secondary-color);
  color: var(--page-live-cockfighting-text-light);
  margin-left: 20px;
}

.page-live-cockfighting__btn--secondary:hover {
  background-color: #1F2D3D; /* Darker blue-gray */
  transform: translateY(-2px);
}

.page-live-cockfighting__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin: 15px 0 0 0;
}

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

/* Hero Section */
.page-live-cockfighting__hero {
  background: linear-gradient(135deg, var(--page-live-cockfighting-primary-color), var(--page-live-cockfighting-secondary-color));
  color: var(--page-live-cockfighting-text-light);
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.page-live-cockfighting__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.15;
}

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

.page-live-cockfighting__hero .page-live-cockfighting__container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-live-cockfighting__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-live-cockfighting__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-live-cockfighting__hero-actions .page-live-cockfighting__btn {
  margin-top: 20px;
}

/* Why Choose Us Section */
.page-live-cockfighting__why-choose-us {
  background-color: var(--page-live-cockfighting-bg-light);
  color: var(--page-live-cockfighting-text-dark);
}

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

.page-live-cockfighting__feature-item {
  background-color: var(--page-live-cockfighting-bg-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live-cockfighting__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-live-cockfighting__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

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

/* How To Section */
.page-live-cockfighting__how-to {
  background-color: var(--page-live-cockfighting-bg-dark);
  color: var(--page-live-cockfighting-text-light);
}

.page-live-cockfighting__how-to .page-live-cockfighting__section-title {
  color: var(--page-live-cockfighting-text-light);
}

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

.page-live-cockfighting__step-item {
  background-color: var(--page-live-cockfighting-secondary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: left;
  position: relative;
  padding-top: 70px; /* Space for number */
}

.page-live-cockfighting__step-number {
  position: absolute;
  top: 20px;
  left: 30px;
  background-color: var(--page-live-cockfighting-accent-color);
  color: var(--page-live-cockfighting-text-dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-live-cockfighting__step-title {
  font-size: 1.4em;
  color: var(--page-live-cockfighting-text-light);
  margin-bottom: 10px;
}

.page-live-cockfighting__step-item .page-live-cockfighting__btn {
  margin-left: 0;
  margin-top: 20px;
}

/* Betting Types Section */
.page-live-cockfighting__betting-types {
  background-color: var(--page-live-cockfighting-bg-light);
  color: var(--page-live-cockfighting-text-dark);
}

.page-live-cockfighting__bet-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-live-cockfighting__bet-type-item {
  background-color: var(--page-live-cockfighting-bg-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-live-cockfighting__bet-type-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-live-cockfighting__read-more {
  margin-top: 40px;
  font-size: 1.1em;
}

.page-live-cockfighting__link {
  color: var(--page-live-cockfighting-primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-live-cockfighting__link:hover {
  text-decoration: underline;
}

/* Strategy Section */
.page-live-cockfighting__strategy {
  background-color: var(--page-live-cockfighting-bg-dark);
  color: var(--page-live-cockfighting-text-light);
  text-align: left;
}

.page-live-cockfighting__strategy .page-live-cockfighting__section-title {
  color: var(--page-live-cockfighting-text-light);
  text-align: center;
}

.page-live-cockfighting__strategy .page-live-cockfighting__section-description {
  text-align: center;
}

.page-live-cockfighting__strategy-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 50px;
  align-items: center;
}

@media (min-width: 768px) {
  .page-live-cockfighting__strategy-content {
    grid-template-columns: 1fr 2fr;
  }
  .page-live-cockfighting__strategy-content:nth-child(even) {
    grid-template-columns: 2fr 1fr;
  }
}

.page-live-cockfighting__strategy-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-live-cockfighting__strategy-subtitle {
  font-size: 1.8em;
  color: var(--page-live-cockfighting-accent-color);
  margin-top: 25px;
  margin-bottom: 10px;
}

.page-live-cockfighting__strategy-subtitle:first-of-type {
  margin-top: 0;
}

.page-live-cockfighting__strategy p {
  margin-bottom: 15px;
}

/* Other Games Section */
.page-live-cockfighting__other-games {
  background-color: var(--page-live-cockfighting-bg-light);
  color: var(--page-live-cockfighting-text-dark);
}

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

.page-live-cockfighting__game-item {
  background-color: var(--page-live-cockfighting-bg-light);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-live-cockfighting__game-image {
  width: 100%;
  max-height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-live-cockfighting__game-title {
  font-size: 1.3em;
  color: var(--page-live-cockfighting-primary-color);
  margin-bottom: 10px;
}

.page-live-cockfighting__other-games-cta {
    margin-top: 50px;
}

/* App Download Section */
.page-live-cockfighting__app-download {
  background-color: var(--page-live-cockfighting-secondary-color);
  color: var(--page-live-cockfighting-text-light);
}

.page-live-cockfighting__app-download .page-live-cockfighting__section-title {
  color: var(--page-live-cockfighting-text-light);
}

.page-live-cockfighting__app-download-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

@media (min-width: 768px) {
  .page-live-cockfighting__app-download-content {
    flex-direction: row;
    justify-content: center;
  }
}

.page-live-cockfighting__app-image {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-live-cockfighting__app-info {
  text-align: center;
  max-width: 500px;
}

@media (min-width: 768px) {
  .page-live-cockfighting__app-info {
    text-align: left;
  }
}

.page-live-cockfighting__app-info p {
  font-size: 1.1em;
  margin-bottom: 25px;
}

/* Related Articles Section */
.page-live-cockfighting__related-articles {
  background-color: var(--page-live-cockfighting-bg-light);
  color: var(--page-live-cockfighting-text-dark);
}

.page-live-cockfighting__article-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-live-cockfighting__article-item {
  background-color: var(--page-live-cockfighting-bg-light);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live-cockfighting__article-title {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-live-cockfighting__article-title a {
  color: var(--page-live-cockfighting-primary-color);
  text-decoration: none;
}

.page-live-cockfighting__article-title a:hover {
  text-decoration: underline;
}

.page-live-cockfighting__article-description {
  font-size: 0.95em;
  color: var(--page-live-cockfighting-text-dark);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-live-cockfighting__link--inline {
    color: var(--page-live-cockfighting-primary-color);
    font-weight: bold;
    text-decoration: underline;
}

/* FAQ Section */
.page-live-cockfighting__faq {
  background-color: var(--page-live-cockfighting-bg-dark);
  color: var(--page-live-cockfighting-text-light);
}

.page-live-cockfighting__faq .page-live-cockfighting__section-title {
  color: var(--page-live-cockfighting-text-light);
}

.page-live-cockfighting__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
  text-align: left;
}

.page-live-cockfighting__faq-item {
  background-color: var(--page-live-cockfighting-secondary-color);
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-live-cockfighting__faq-question {
  font-size: 1.3em;
  color: var(--page-live-cockfighting-accent-color);
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-live-cockfighting__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-live-cockfighting__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-live-cockfighting__faq-answer {
  font-size: 1em;
  color: var(--page-live-cockfighting-text-light);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
}

.page-live-cockfighting__faq-answer.active {
  max-height: 200px; /* Adjust based on content */
  opacity: 1;
  padding-top: 10px;
}

/* Final CTA Section */
.page-live-cockfighting__cta-final {
  background-color: var(--page-live-cockfighting-primary-color);
  color: var(--page-live-cockfighting-text-light);
  padding: 100px 0;
}

.page-live-cockfighting__cta-final .page-live-cockfighting__section-title {
  color: var(--page-live-cockfighting-text-light);
}

.page-live-cockfighting__cta-final .page-live-cockfighting__section-description {
  color: var(--page-live-cockfighting-text-light);
}

.page-live-cockfighting__cta-final .page-live-cockfighting__btn {
  margin: 20px 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live-cockfighting__hero-title {
    font-size: 3em;
  }
  .page-live-cockfighting__hero-subtitle {
    font-size: 1.3em;
  }
  .page-live-cockfighting__section-title {
    font-size: 2.2em;
  }
  .page-live-cockfighting__section-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-live-cockfighting__section {
    padding: 60px 0;
  }
  .page-live-cockfighting__hero {
    padding: 80px 0;
  }
  .page-live-cockfighting__hero-title {
    font-size: 2.5em;
  }
  .page-live-cockfighting__hero-subtitle {
    font-size: 1.1em;
  }
  .page-live-cockfighting__hero-actions .page-live-cockfighting__btn {
    display: block;
    margin: 15px auto;
  }
  .page-live-cockfighting__btn--secondary {
    margin-left: auto;
  }
  .page-live-cockfighting__features-grid,
  .page-live-cockfighting__steps-grid,
  .page-live-cockfighting__bet-types-grid,
  .page-live-cockfighting__games-grid,
  .page-live-cockfighting__article-list {
    grid-template-columns: 1fr;
  }
  .page-live-cockfighting__strategy-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .page-live-cockfighting__strategy-subtitle {
    text-align: center;
  }
  .page-live-cockfighting__app-download-content {
    flex-direction: column;
  }
  .page-live-cockfighting__app-info {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .page-live-cockfighting__hero-title {
    font-size: 2em;
  }
  .page-live-cockfighting__section-title {
    font-size: 1.8em;
  }
  .page-live-cockfighting__btn--large {
    font-size: 1em;
    padding: 15px 25px;
  }
  .page-live-cockfighting__feature-title, .page-live-cockfighting__bet-type-title, .page-live-cockfighting__game-title, .page-live-cockfighting__article-title, .page-live-cockfighting__faq-question {
    font-size: 1.2em;
  }
}