/* style/cockfighting-live-betting.css */
.page-cockfighting-live-betting {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #121212; /* Matches body background from shared.css */
  line-height: 1.6;
}

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

.page-cockfighting-live-betting__dark-bg {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-cockfighting-live-betting__light-bg {
  background-color: #2a2a2a;
  color: #ffffff;
}

/* Hero Section */
.page-cockfighting-live-betting__hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-cockfighting-live-betting__hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}

.page-cockfighting-live-betting__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.page-cockfighting-live-betting__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

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

.page-cockfighting-live-betting__intro-text {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-cockfighting-live-betting__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-cockfighting-live-betting__btn-primary,
.page-cockfighting-live-betting__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%;
}

.page-cockfighting-live-betting__btn-primary {
  background-color: #FFD700;
  color: #121212;
  border: 2px solid #FFD700;
}

.page-cockfighting-live-betting__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

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

.page-cockfighting-live-betting__btn-secondary:hover {
  background-color: #FFD700;
  color: #121212;
}

/* Section Titles */
.page-cockfighting-live-betting__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-cockfighting-live-betting__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-cockfighting-live-betting__text-block {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: justify;
  margin-bottom: 20px;
}

/* Image Grid */
.page-cockfighting-live-betting__image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-cockfighting-live-betting__image-item {
  text-align: center;
  background-color: #1a1a1a;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-live-betting__image-item img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 15px;
  display: block;
}

.page-cockfighting-live-betting__image-caption {
  font-size: 1.2em;
  color: #FFD700;
}

/* Feature Grid */
.page-cockfighting-live-betting__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-cockfighting-live-betting__card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white background */
  color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-cockfighting-live-betting__card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-cockfighting-live-betting__card-text {
  font-size: 1em;
  color: #f0f0f0;
}

/* How-to-Play Section */
.page-cockfighting-live-betting__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-cockfighting-live-betting__step-card {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-cockfighting-live-betting__step-icon {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 15px;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border: 2px solid #FFD700;
  border-radius: 50%;
  background-color: #8B0000;
}

.page-cockfighting-live-betting__step-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-cockfighting-live-betting__step-text {
  font-size: 0.95em;
  color: #f0f0f0;
}

.page-cockfighting-live-betting__cta-area {
  text-align: center;
  margin-top: 50px;
}

/* Live Experience Section */
.page-cockfighting-live-betting__content-flex {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 30px;
}

.page-cockfighting-live-betting__text-content {
  flex: 1;
}

.page-cockfighting-live-betting__feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-cockfighting-live-betting__feature-list 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="none" stroke="%23FFD700" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path><polyline points="22 4 12 14.01 9 11.01"></polyline></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #f0f0f0;
}

.page-cockfighting-live-betting__feature-list strong {
  color: #FFD700;
}

.page-cockfighting-live-betting__image-container {
  flex: 1;
  min-width: 400px;
}

.page-cockfighting-live-betting__image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  display: block;
}

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

.page-cockfighting-live-betting__tip-card {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
}

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

.page-cockfighting-live-betting__promo-card {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-cockfighting-live-betting__promo-card img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 15px;
  display: block;
}

.page-cockfighting-live-betting__promo-card .page-cockfighting-live-betting__btn-primary {
  margin-top: auto; /* Push button to the bottom */
  max-width: fit-content; /* Adjust button width */
  padding: 10px 20px;
  font-size: 0.9em;
}

/* FAQ Section */
.page-cockfighting-live-betting__faq-list {
  margin-top: 30px;
}

.page-cockfighting-live-betting__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-live-betting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  background-color: #8B0000; /* Auxiliary color for question background */
  color: #ffffff;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-cockfighting-live-betting__faq-question:hover {
  background-color: #a00000;
}

.page-cockfighting-live-betting__faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #ffffff; /* Ensure high contrast for question text */
}

.page-cockfighting-live-betting__faq-toggle {
  font-size: 1.8em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFD700;
}

.page-cockfighting-live-betting__faq-item.active .page-cockfighting-live-betting__faq-toggle {
  transform: rotate(45deg);
}

.page-cockfighting-live-betting__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background-color: #1a1a1a; /* Darker background for answer */
  color: #f0f0f0;
}

.page-cockfighting-live-betting__faq-item.active .page-cockfighting-live-betting__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 15px 25px !important;
}

.page-cockfighting-live-betting__faq-answer p {
  margin: 0;
  padding-bottom: 10px;
}

/* Contact Section */
.page-cockfighting-live-betting__contact-section {
  text-align: center;
  padding-bottom: 60px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting-live-betting__main-title {
    font-size: 2.8em;
  }

  .page-cockfighting-live-betting__section-title {
    font-size: 2em;
  }

  .page-cockfighting-live-betting__content-flex {
    flex-direction: column;
    align-items: center;
  }

  .page-cockfighting-live-betting__image-container {
    min-width: unset;
    width: 100%;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-cockfighting-live-betting {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-cockfighting-live-betting__hero-section {
    min-height: 450px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure content is not hidden by fixed header */
  }

  .page-cockfighting-live-betting__main-title {
    font-size: 2em;
  }

  .page-cockfighting-live-betting__intro-text {
    font-size: 1.1em;
  }

  .page-cockfighting-live-betting__section-title {
    font-size: 1.8em;
  }

  .page-cockfighting-live-betting__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  .page-cockfighting-live-betting__btn-primary,
  .page-cockfighting-live-betting__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  .page-cockfighting-live-betting img,
  .page-cockfighting-live-betting video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-cockfighting-live-betting__hero-video {
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
  }

  .page-cockfighting-live-betting__container,
  .page-cockfighting-live-betting__image-grid,
  .page-cockfighting-live-betting__feature-grid,
  .page-cockfighting-live-betting__steps-grid,
  .page-cockfighting-live-betting__tips-grid,
  .page-cockfighting-live-betting__promo-grid,
  .page-cockfighting-live-betting__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }

  .page-cockfighting-live-betting__image-item,
  .page-cockfighting-live-betting__card,
  .page-cockfighting-live-betting__step-card,
  .page-cockfighting-live-betting__tip-card,
  .page-cockfighting-live-betting__promo-card {
    margin-bottom: 20px;
  }

  .page-cockfighting-live-betting__faq-question {
    padding: 15px 20px;
  }

  .page-cockfighting-live-betting__faq-question h3 {
    font-size: 1.1em;
  }

  .page-cockfighting-live-betting__faq-answer {
    padding: 0 20px;
  }

  .page-cockfighting-live-betting__faq-item.active .page-cockfighting-live-betting__faq-answer {
    padding: 10px 20px !important;
  }
}

@media (max-width: 480px) {
  .page-cockfighting-live-betting__main-title {
    font-size: 1.8em;
  }

  .page-cockfighting-live-betting__intro-text {
    font-size: 1em;
  }

  .page-cockfighting-live-betting__section-title {
    font-size: 1.5em;
  }
}