/* style/resources-live-cockfighting-betting-guide.css */

/* Base Styles */
.page-resources-live-cockfighting-betting-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Text on body background #121212 should be light */
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-resources-live-cockfighting-betting-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-resources-live-cockfighting-betting-guide__section-title {
  font-size: 2.5em;
  color: #017439; /* Brand color */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-live-cockfighting-betting-guide__section-title--white {
  color: #ffffff;
}

.page-resources-live-cockfighting-betting-guide__section-description,
.page-resources-live-cockfighting-betting-guide__text-block {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 30px;
  color: #f0f0f0; /* Slightly off-white for body text */
}

.page-resources-live-cockfighting-betting-guide__text-block {
  text-align: left;
  margin-bottom: 20px;
}

.page-resources-live-cockfighting-betting-guide__card {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark body background */
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-resources-live-cockfighting-betting-guide__dark-section {
  background-color: #017439; /* Brand primary color for dark sections */
  color: #ffffff;
  padding: 60px 0;
}

/* Buttons */
.page-resources-live-cockfighting-betting-guide__btn-primary,
.page-resources-live-cockfighting-betting-guide__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  text-align: center;
  border: none;
}

.page-resources-live-cockfighting-betting-guide__btn-primary {
  background-color: #A30707; /* Adjusted from #C30808 to ensure #FFFF00 contrast (4.72:1) */
  color: #FFFF00; /* As per requirement, used with adjusted background */
}

.page-resources-live-cockfighting-betting-guide__btn-primary:hover {
  background-color: #8C0606;
}

.page-resources-live-cockfighting-betting-guide__btn-secondary {
  background-color: #017439;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.page-resources-live-cockfighting-betting-guide__btn-secondary:hover {
  background-color: #005f2e;
}

.page-resources-live-cockfighting-betting-guide__btn-center {
  display: block;
  margin: 30px auto;
  max-width: 250px; /* Constrain width for centered buttons */
}

/* Hero Section */
.page-resources-live-cockfighting-betting-guide__hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  padding-bottom: 60px;
  text-align: left;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.page-resources-live-cockfighting-betting-guide__hero-content {
  flex: 1;
  padding: 20px 40px;
  z-index: 1;
  max-width: 60%;
}

.page-resources-live-cockfighting-betting-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #ffffff;
}

.page-resources-live-cockfighting-betting-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
  text-align: left;
}

.page-resources-live-cockfighting-betting-guide__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 20px;
  z-index: 0;
}

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

/* Video Section */
.page-resources-live-cockfighting-betting-guide__video-section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
  text-align: center;
}

.page-resources-live-cockfighting-betting-guide__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 10px;
  margin: 0 auto 30px auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.page-resources-live-cockfighting-betting-guide__video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

.page-resources-live-cockfighting-betting-guide__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

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

.page-resources-live-cockfighting-betting-guide__feature-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-live-cockfighting-betting-guide__feature-icon {
  width: 100%; /* Ensure images fill card width */
  max-width: 400px; /* Max width for feature icons */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-resources-live-cockfighting-betting-guide__feature-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-resources-live-cockfighting-betting-guide__feature-description {
  font-size: 1em;
  color: #f0f0f0;
  text-align: center;
}

/* Guide Steps */
.page-resources-live-cockfighting-betting-guide__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-live-cockfighting-betting-guide__step-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-live-cockfighting-betting-guide__step-title {
  font-size: 1.6em;
  color: #017439;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-live-cockfighting-betting-guide__step-item p {
  color: #f0f0f0;
  margin-bottom: 20px;
}

/* Rules Grid */
.page-resources-live-cockfighting-betting-guide__rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-live-cockfighting-betting-guide__rule-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-live-cockfighting-betting-guide__rule-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-live-cockfighting-betting-guide__rule-item ul {
  list-style: disc;
  padding-left: 20px;
  color: #f0f0f0;
}

.page-resources-live-cockfighting-betting-guide__rule-item li {
  margin-bottom: 10px;
}

/* Tips List */
.page-resources-live-cockfighting-betting-guide__tips-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-resources-live-cockfighting-betting-guide__tips-list li {
  background: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-live-cockfighting-betting-guide__tip-icon {
  width: 200px; /* Minimum size requirement */
  height: 200px; /* Minimum size requirement */
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.page-resources-live-cockfighting-betting-guide__tip-title {
  font-size: 1.4em;
  color: #017439;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-resources-live-cockfighting-betting-guide__tips-list li p {
  color: #f0f0f0;
  text-align: center;
}

/* Benefits List */
.page-resources-live-cockfighting-betting-guide__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-resources-live-cockfighting-betting-guide__benefits-list li {
  background: rgba(255, 255, 255, 0.08);
  border-left: 5px solid #017439;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #f0f0f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-resources-live-cockfighting-betting-guide__benefits-list li strong {
  color: #017439;
}

/* FAQ Section */
.page-resources-live-cockfighting-betting-guide__faq-section {
  padding: 60px 0;
}

.page-resources-live-cockfighting-betting-guide__faq-list {
  margin-top: 40px;
}

.page-resources-live-cockfighting-betting-guide__faq-item {
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.page-resources-live-cockfighting-betting-guide__faq-question {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 18px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.2em;
  color: #ffffff;
  transition: background-color 0.3s ease;
}

.page-resources-live-cockfighting-betting-guide__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-live-cockfighting-betting-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #017439;
}

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

.page-resources-live-cockfighting-betting-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: rgba(255, 255, 255, 0.05);
  color: #f0f0f0;
}

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

.page-resources-live-cockfighting-betting-guide__faq-answer p {
  margin: 0;
  padding-bottom: 10px;
  color: #f0f0f0;
}

/* CTA Section */
.page-resources-live-cockfighting-betting-guide__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #1a1a1a; /* Slightly lighter dark background */
}

.page-resources-live-cockfighting-betting-guide__cta-section .page-resources-live-cockfighting-betting-guide__section-title {
  margin-bottom: 20px;
  color: #ffffff;
}

.page-resources-live-cockfighting-betting-guide__cta-section .page-resources-live-cockfighting-betting-guide__text-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
  text-align: center;
}

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

@media (max-width: 768px) {
  .page-resources-live-cockfighting-betting-guide__hero-section {
    flex-direction: column;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
    text-align: center;
  }

  .page-resources-live-cockfighting-betting-guide__hero-content {
    max-width: 100%;
    padding: 20px;
  }

  .page-resources-live-cockfighting-betting-guide__hero-title {
    font-size: 2.2em;
    text-align: center;
  }

  .page-resources-live-cockfighting-betting-guide__hero-description {
    text-align: center;
    font-size: 1em;
  }

  .page-resources-live-cockfighting-betting-guide__hero-image-wrapper {
    padding-right: 0;
    margin-top: 30px;
  }

  .page-resources-live-cockfighting-betting-guide__section-title {
    font-size: 2em;
  }

  .page-resources-live-cockfighting-betting-guide__section-description,
  .page-resources-live-cockfighting-betting-guide__text-block {
    font-size: 0.95em;
  }

  .page-resources-live-cockfighting-betting-guide__features-grid,
  .page-resources-live-cockfighting-betting-guide__guide-steps,
  .page-resources-live-cockfighting-betting-guide__rules-grid,
  .page-resources-live-cockfighting-betting-guide__tips-list {
    grid-template-columns: 1fr;
  }

  .page-resources-live-cockfighting-betting-guide__tip-icon {
    width: 150px;
    height: 150px;
  }

  /* Mobile image responsiveness */
  .page-resources-live-cockfighting-betting-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Mobile video responsiveness */
  .page-resources-live-cockfighting-betting-guide video,
  .page-resources-live-cockfighting-betting-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-resources-live-cockfighting-betting-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  /* Mobile button responsiveness */
  .page-resources-live-cockfighting-betting-guide__btn-primary,
  .page-resources-live-cockfighting-betting-guide__btn-secondary,
  .page-resources-live-cockfighting-betting-guide a[class*="button"],
  .page-resources-live-cockfighting-betting-guide a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-resources-live-cockfighting-betting-guide__btn-center {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-live-cockfighting-betting-guide__container,
  .page-resources-live-cockfighting-betting-guide__video-section,
  .page-resources-live-cockfighting-betting-guide__content-area,
  .page-resources-live-cockfighting-betting-guide__dark-section,
  .page-resources-live-cockfighting-betting-guide__faq-section,
  .page-resources-live-cockfighting-betting-guide__cta-section {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .page-resources-live-cockfighting-betting-guide__hero-title {
    font-size: 1.8em;
  }
  .page-resources-live-cockfighting-betting-guide__hero-description {
    font-size: 0.9em;
  }
  .page-resources-live-cockfighting-betting-guide__section-title {
    font-size: 1.8em;
  }
  .page-resources-live-cockfighting-betting-guide__btn-primary,
  .page-resources-live-cockfighting-betting-guide__btn-secondary {
    font-size: 1em;
    padding: 10px 20px;
  }
}