/* style/cockfighting-live.css */

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

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

.page-cockfighting-live h1, .page-cockfighting-live h2, .page-cockfighting-live h3, .page-cockfighting-live h4, .page-cockfighting-live h5, .page-cockfighting-live h6 {
  color: var(--text-main);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-cockfighting-live h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.page-cockfighting-live h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 30px;
}

.page-cockfighting-live h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.page-cockfighting-live p {
  margin-bottom: 15px;
  color: var(--text-secondary);
}

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

.page-cockfighting-live__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--divider-color);
}

.page-cockfighting-live__section:last-of-type {
  border-bottom: none;
}

.page-cockfighting-live__dark-section {
  background-color: var(--deep-green);
}

.page-cockfighting-live__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles header offset, this is decorative */
  background-color: var(--page-bg);
}

.page-cockfighting-live__video-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 30px auto;
  box-sizing: border-box;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-cockfighting-live__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.page-cockfighting-live__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
}

.page-cockfighting-live__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-cockfighting-live__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-cockfighting-live__btn-primary,
.page-cockfighting-live__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  min-width: 200px;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%; /* Ensure button doesn't overflow */
}

.page-cockfighting-live__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main);
  border: none;
}

.page-cockfighting-live__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

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

.page-cockfighting-live__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-main);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-cockfighting-live__content-wrapper {
  padding: 0 20px;
}

.page-cockfighting-live__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-cockfighting-live__image--full-width {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.page-cockfighting-live__step-list, .page-cockfighting-live__bet-list, .page-cockfighting-live__strategy-list, .page-cockfighting-live__feature-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-cockfighting-live__step-item, .page-cockfighting-live__bet-item, .page-cockfighting-live__strategy-item, .page-cockfighting-live__feature-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-live__step-title, .page-cockfighting-live__bet-title, .page-cockfighting-live__feature-title {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.page-cockfighting-live__strategy-list strong {
  color: var(--glow-color);
}

/* FAQ Section */
.page-cockfighting-live__faq-section {
  padding: 60px 0;
}

.page-cockfighting-live__faq-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-cockfighting-live__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-cockfighting-live__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  outline: none;
  font-weight: bold;
  color: var(--text-main);
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  list-style: none; /* Hide default marker */
}

.page-cockfighting-live__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit */
}

.page-cockfighting-live__faq-item summary:hover {
  background-color: rgba(var(--primary-color), 0.1);
}

.page-cockfighting-live__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

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

.page-cockfighting-live__faq-answer {
  padding: 0 25px 20px 25px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.page-cockfighting-live__cta-bottom {
  text-align: center;
  padding-bottom: 80px;
}

.page-cockfighting-live__cta-bottom .page-cockfighting-live__description {
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-cockfighting-live__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-cockfighting-live__video-container {
    margin-bottom: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-cockfighting-live__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-cockfighting-live__subtitle {
    font-size: 1rem;
    padding: 0 15px;
  }

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

  .page-cockfighting-live h2 {
    font-size: clamp(1.8rem, 6vw, 2rem);
    margin-bottom: 20px;
  }

  .page-cockfighting-live h3 {
    font-size: clamp(1.3rem, 4vw, 1.5rem);
  }

  .page-cockfighting-live p,
  .page-cockfighting-live li {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary) !important; /* Ensure text color for contrast */
  }

  .page-cockfighting-live__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto;
    padding: 0 15px;
    box-sizing: border-box !important;
  }

  .page-cockfighting-live__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-cockfighting-live__video-section,
  .page-cockfighting-live__video-container,
  .page-cockfighting-live__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-cockfighting-live__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

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

  .page-cockfighting-live__step-item, .page-cockfighting-live__bet-item, .page-cockfighting-live__strategy-item, .page-cockfighting-live__feature-item {
    padding: 20px;
    margin-left: 15px;
    margin-right: 15px;
    box-sizing: border-box;
  }

  .page-cockfighting-live__faq-list {
    padding: 0 15px;
  }

  .page-cockfighting-live__faq-item summary {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-cockfighting-live__faq-answer {
    padding: 0 20px 15px 20px;
  }

  .page-cockfighting-live__cta-bottom {
    padding-bottom: 60px;
  }

  .page-cockfighting-live__content-wrapper {
    padding: 0;
  }
}

/* Ensure content images are not small icons */
.page-cockfighting-live img:not(.page-cockfighting-live__logo):not(.page-cockfighting-live__icon) {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}