/* style/cockfighting-live-betting.css */
:root {
  --u88-primary-color: #11A84E;
  --u88-secondary-color: #22C768;
  --u88-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --u88-card-bg: #11271B;
  --u88-background: #08160F;
  --u88-text-main: #F2FFF6;
  --u88-text-secondary: #A7D9B8;
  --u88-border-color: #2E7A4E;
  --u88-glow-color: #57E38D;
  --u88-gold-color: #F2C14E;
  --u88-divider-color: #1E3A2A;
  --u88-deep-green: #0A4B2C;
}

.page-cockfighting-live-betting {
  color: var(--u88-text-main);
  background-color: var(--u88-background);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-cockfighting-live-betting__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  min-height: 500px;
  overflow: hidden;
  background-color: var(--u88-background);
}

.page-cockfighting-live-betting__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
  box-sizing: border-box;
}

.page-cockfighting-live-betting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.page-cockfighting-live-betting__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
  margin-top: -80px; /* Pull content slightly up to overlap image for visual flow, but not on top */
}

.page-cockfighting-live-betting__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--u88-gold-color);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-cockfighting-live-betting__subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--u88-text-main);
  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,
.page-cockfighting-live-betting__btn-link {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-cockfighting-live-betting__btn-primary {
  background: var(--u88-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-cockfighting-live-betting__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(var(--u88-glow-color), 0.4);
}

.page-cockfighting-live-betting__btn-secondary {
  background: #ffffff;
  color: var(--u88-primary-color);
  border: 2px solid var(--u88-primary-color);
}

.page-cockfighting-live-betting__btn-secondary:hover {
  background: var(--u88-primary-color);
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(var(--u88-primary-color), 0.4);
}

.page-cockfighting-live-betting__btn-link {
  background: transparent;
  color: var(--u88-glow-color);
  border: 1px solid var(--u88-glow-color);
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 15px;
}

.page-cockfighting-live-betting__btn-link:hover {
  background: var(--u88-glow-color);
  color: var(--u88-background);
}

.page-cockfighting-live-betting__text-link {
  color: var(--u88-glow-color);
  text-decoration: underline;
}

.page-cockfighting-live-betting__text-link:hover {
  color: var(--u88-gold-color);
}

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

.page-cockfighting-live-betting__dark-bg {
  background-color: var(--u88-background);
  color: var(--u88-text-main);
}

.page-cockfighting-live-betting__medium-bg {
  background-color: var(--u88-card-bg);
  color: var(--u88-text-main);
}

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

.page-cockfighting-live-betting__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--u88-gold-color);
  margin-bottom: 40px;
  font-weight: bold;
}

.page-cockfighting-live-betting__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: var(--u88-text-secondary);
}

.page-cockfighting-live-betting__grid-container,
.page-cockfighting-live-betting__steps-grid,
.page-cockfighting-live-betting__features-grid,
.page-cockfighting-live-betting__promotions-grid,
.page-cockfighting-live-betting__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting-live-betting__card {
  background-color: var(--u88-card-bg);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--u88-border-color);
  color: var(--u88-text-main);
}

.page-cockfighting-live-betting__card-bg-gradient {
  background: linear-gradient(135deg, var(--u88-card-bg) 0%, var(--u88-deep-green) 100%);
  border: 1px solid var(--u88-border-color);
}

.page-cockfighting-live-betting__card-bg-deep-green {
  background-color: var(--u88-deep-green);
  border: 1px solid var(--u88-border-color);
}

.page-cockfighting-live-betting__card-image,
.page-cockfighting-live-betting__feature-icon {
  width: 100%;
  height: auto;
  max-width: 250px;
  min-width: 200px;
  min-height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-cockfighting-live-betting__card-title,
.page-cockfighting-live-betting__step-title,
.page-cockfighting-live-betting__feature-title {
  font-size: 1.4em;
  color: var(--u88-gold-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-cockfighting-live-betting__card-text,
.page-cockfighting-live-betting__step-text,
.page-cockfighting-live-betting__feature-text {
  font-size: 1em;
  color: var(--u88-text-secondary);
  line-height: 1.7;
  flex-grow: 1; /* Ensures text blocks take available space */
}

.page-cockfighting-live-betting__step-card {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-cockfighting-live-betting__step-number {
  background: var(--u88-gold-color);
  color: var(--u88-background);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(var(--u88-gold-color), 0.5);
}

.page-cockfighting-live-betting__promo-card {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.page-cockfighting-live-betting__promo-card .page-cockfighting-live-betting__card-image {
  max-width: 100%;
  height: auto;
  min-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-cockfighting-live-betting__view-all-promos {
  margin-top: 50px;
}

.page-cockfighting-live-betting__tips-grid .page-cockfighting-live-betting__card-title {
  color: var(--u88-gold-color);
}

.page-cockfighting-live-betting__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting-live-betting__faq-item {
  margin-bottom: 20px;
  text-align: left;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--u88-border-color);
  background: linear-gradient(135deg, var(--u88-card-bg) 0%, var(--u88-deep-green) 100%);
}

.page-cockfighting-live-betting__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  list-style: none;
  color: var(--u88-gold-color);
  font-weight: bold;
  font-size: 1.2em;
  background-color: var(--u88-deep-green);
  border-bottom: 1px solid var(--u88-divider-color);
}

.page-cockfighting-live-betting__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-cockfighting-live-betting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-cockfighting-live-betting__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.page-cockfighting-live-betting__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: var(--u88-text-secondary);
  line-height: 1.7;
  background-color: var(--u88-card-bg);
}

.page-cockfighting-live-betting__conclusion .page-cockfighting-live-betting__cta-buttons {
  margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-cockfighting-live-betting__hero-content {
    margin-top: -60px;
  }

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

@media (max-width: 768px) {
  .page-cockfighting-live-betting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-cockfighting-live-betting video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-cockfighting-live-betting__section,
  .page-cockfighting-live-betting__card,
  .page-cockfighting-live-betting__container,
  .page-cockfighting-live-betting__hero-image-wrapper,
  .page-cockfighting-live-betting__video-section,
  .page-cockfighting-live-betting__video-container,
  .page-cockfighting-live-betting__video-wrapper,
  .page-cockfighting-live-betting__cta-buttons,
  .page-cockfighting-live-betting__button-group,
  .page-cockfighting-live-betting__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-cockfighting-live-betting__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-cockfighting-live-betting__hero-content {
    margin-top: -40px;
    padding: 15px;
  }

  .page-cockfighting-live-betting__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-cockfighting-live-betting__subtitle {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }

  .page-cockfighting-live-betting__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

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

  .page-cockfighting-live-betting__section {
    padding: 40px 0;
  }

  .page-cockfighting-live-betting__section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }

  .page-cockfighting-live-betting__grid-container,
  .page-cockfighting-live-betting__steps-grid,
  .page-cockfighting-live-betting__features-grid,
  .page-cockfighting-live-betting__promotions-grid,
  .page-cockfighting-live-betting__tips-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-cockfighting-live-betting__card,
  .page-cockfighting-live-betting__step-card,
  .page-cockfighting-live-betting__feature-item,
  .page-cockfighting-live-betting__promo-card {
    padding: 20px;
  }

  .page-cockfighting-live-betting__card-image,
  .page-cockfighting-live-betting__feature-icon {
    max-width: 100%;
    min-width: 200px;
    min-height: 200px;
  }

  .page-cockfighting-live-betting__faq-item summary {
    padding: 15px 20px;
    font-size: 1.1em;
  }

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