/* style/resources-how-to-watch-c1-live-cockfighting.css */

.page-resources-how-to-watch-c1-live-cockfighting {
  color: #ffffff; /* Default text color for dark body background */
  background-color: var(--dark-background); /* Inherited from shared.css */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-resources-how-to-watch-c1-live-cockfighting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-how-to-watch-c1-live-cockfighting__section {
  padding: 60px 0;
  text-align: center;
}

.page-resources-how-to-watch-c1-live-cockfighting__section--dark {
  background-color: rgba(38, 169, 224, 0.1);
  color: #ffffff;
}

.page-resources-how-to-watch-c1-live-cockfighting__heading {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #26A9E0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.page-resources-how-to-watch-c1-live-cockfighting__section--dark .page-resources-how-to-watch-c1-live-cockfighting__heading {
  color: #ffffff;
}

.page-resources-how-to-watch-c1-live-cockfighting__text-block {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

/* Hero Section */
.page-resources-how-to-watch-c1-live-cockfighting__hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
  box-sizing: border-box;
}

.page-resources-how-to-watch-c1-live-cockfighting__hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-resources-how-to-watch-c1-live-cockfighting__hero-video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.page-resources-how-to-watch-c1-live-cockfighting__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.page-resources-how-to-watch-c1-live-cockfighting__hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 900px;
  padding: 20px;
}

.page-resources-how-to-watch-c1-live-cockfighting__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.page-resources-how-to-watch-c1-live-cockfighting__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-resources-how-to-watch-c1-live-cockfighting__hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Buttons */
.page-resources-how-to-watch-c1-live-cockfighting__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-how-to-watch-c1-live-cockfighting__btn--primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-resources-how-to-watch-c1-live-cockfighting__btn--primary:hover {
  background-color: #1a7fb0;
  transform: translateY(-2px);
}

.page-resources-how-to-watch-c1-live-cockfighting__btn--secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-how-to-watch-c1-live-cockfighting__btn--secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-resources-how-to-watch-c1-live-cockfighting__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* Features Grid */
.page-resources-how-to-watch-c1-live-cockfighting__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-how-to-watch-c1-live-cockfighting__feature-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-how-to-watch-c1-live-cockfighting__feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
  display: block; /* Ensure it behaves as a block element */
  margin-left: auto;
  margin-right: auto;
}

.page-resources-how-to-watch-c1-live-cockfighting__feature-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-resources-how-to-watch-c1-live-cockfighting__feature-description {
  color: #f0f0f0;
}

/* Steps Grid */
.page-resources-how-to-watch-c1-live-cockfighting__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 50px;
  text-align: left;
}

.page-resources-how-to-watch-c1-live-cockfighting__step-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-resources-how-to-watch-c1-live-cockfighting__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #26A9E0;
  margin-bottom: 15px;
  background-color: rgba(38, 169, 224, 0.2);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-resources-how-to-watch-c1-live-cockfighting__step-title {
  font-size: 1.8em;
  color: #ffffff;
  margin-bottom: 15px;
}

.page-resources-how-to-watch-c1-live-cockfighting__step-description {
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-resources-how-to-watch-c1-live-cockfighting__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
  display: block;
  margin-top: auto; /* Push image to bottom if content above is short */
}

/* Tips List */
.page-resources-how-to-watch-c1-live-cockfighting__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-resources-how-to-watch-c1-live-cockfighting__tip-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  color: #f0f0f0;
}

.page-resources-how-to-watch-c1-live-cockfighting__tip-item strong {
  color: #26A9E0;
  font-size: 1.1em;
}

/* FAQ Section */
.page-resources-how-to-watch-c1-live-cockfighting__faq-list {
  max-width: 800px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-resources-how-to-watch-c1-live-cockfighting__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-resources-how-to-watch-c1-live-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  background-color: rgba(38, 169, 224, 0.1);
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-resources-how-to-watch-c1-live-cockfighting__faq-question::-webkit-details-marker {
  display: none;
}

.page-resources-how-to-watch-c1-live-cockfighting__faq-question:hover {
  background-color: rgba(38, 169, 224, 0.2);
}

.page-resources-how-to-watch-c1-live-cockfighting__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
}

.page-resources-how-to-watch-c1-live-cockfighting__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1.1em;
  color: #f0f0f0;
  line-height: 1.5;
}

.page-resources-how-to-watch-c1-live-cockfighting__faq-answer p {
  margin-top: 0;
  margin-bottom: 0;
}

/* CTA Section */
.page-resources-how-to-watch-c1-live-cockfighting__cta-section {
  padding: 80px 0;
  background-color: #26A9E0;
  color: #ffffff;
}

.page-resources-how-to-watch-c1-live-cockfighting__cta-section .page-resources-how-to-watch-c1-live-cockfighting__heading {
  color: #ffffff;
}

.page-resources-how-to-watch-c1-live-cockfighting__cta-section .page-resources-how-to-watch-c1-live-cockfighting__text-block {
  color: #ffffff;
  margin-bottom: 50px;
}

.page-resources-how-to-watch-c1-live-cockfighting__cta-section .page-resources-how-to-watch-c1-live-cockfighting__btn--primary {
  background-color: #EA7C07; /* Login color */
  border-color: #EA7C07;
}

.page-resources-how-to-watch-c1-live-cockfighting__cta-section .page-resources-how-to-watch-c1-live-cockfighting__btn--primary:hover {
  background-color: #d16e06;
  border-color: #d16e06;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-how-to-watch-c1-live-cockfighting__hero-title {
    font-size: 2.8em;
  }
  .page-resources-how-to-watch-c1-live-cockfighting__hero-description {
    font-size: 1.1em;
  }
  .page-resources-how-to-watch-c1-live-cockfighting__heading {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-how-to-watch-c1-live-cockfighting {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-resources-how-to-watch-c1-live-cockfighting__hero-section {
    height: 70vh;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-resources-how-to-watch-c1-live-cockfighting__hero-title {
    font-size: 2em;
  }
  .page-resources-how-to-watch-c1-live-cockfighting__hero-description {
    font-size: 1em;
  }
  .page-resources-how-to-watch-c1-live-cockfighting__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-how-to-watch-c1-live-cockfighting__btn {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .page-resources-how-to-watch-c1-live-cockfighting__section {
    padding: 40px 0;
  }
  .page-resources-how-to-watch-c1-live-cockfighting__container {
    padding: 0 15px;
  }

  /* Image responsiveness */
  .page-resources-how-to-watch-c1-live-cockfighting img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-how-to-watch-c1-live-cockfighting__feature-image,
  .page-resources-how-to-watch-c1-live-cockfighting__step-image {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  /* Video responsiveness */
  .page-resources-how-to-watch-c1-live-cockfighting video,
  .page-resources-how-to-watch-c1-live-cockfighting__hero-video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-how-to-watch-c1-live-cockfighting__hero-video-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }
  .page-resources-how-to-watch-c1-live-cockfighting__video-section {
    padding-top: var(--header-offset, 120px) !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-resources-how-to-watch-c1-live-cockfighting__cta-buttons,
  .page-resources-how-to-watch-c1-live-cockfighting__button-group,
  .page-resources-how-to-watch-c1-live-cockfighting__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-resources-how-to-watch-c1-live-cockfighting__faq-question {
    font-size: 1.1em;
  }
  .page-resources-how-to-watch-c1-live-cockfighting__faq-answer {
    font-size: 1em;
  }
  .page-resources-how-to-watch-c1-live-cockfighting__cta-section .page-resources-how-to-watch-c1-live-cockfighting__btn--primary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-resources-how-to-watch-c1-live-cockfighting__hero-title {
    font-size: 1.8em;
  }
  .page-resources-how-to-watch-c1-live-cockfighting__heading {
    font-size: 1.8em;
  }
  .page-resources-how-to-watch-c1-live-cockfighting__feature-title,
  .page-resources-how-to-watch-c1-live-cockfighting__step-title {
    font-size: 1.5em;
  }
}