/* style/blog-f888-cockfighting-platform-analysis.css */

/* Base styles for the page content, assuming dark body background */
.page-blog-f888-cockfighting-platform-analysis {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-blog-f888-cockfighting-platform-analysis__section {
  padding: 60px 0;
}

.page-blog-f888-cockfighting-platform-analysis__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-blog-f888-cockfighting-platform-analysis__sub-title {
  font-size: 1.8em;
  font-weight: 600;
  color: #2AD16F; /* Brighter green from button gradient */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-f888-cockfighting-platform-analysis__content-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-blog-f888-cockfighting-platform-analysis__content-block p {
  margin-bottom: 15px;
  text-align: justify;
  color: #F2FFF6; /* Text Main */
}

.page-blog-f888-cockfighting-platform-analysis__content-block ul {
  list-style: disc inside;
  padding-left: 20px;
  margin-bottom: 20px;
}

.page-blog-f888-cockfighting-platform-analysis__content-block li {
  margin-bottom: 10px;
  color: #F2FFF6; /* Text Main */
}

.page-blog-f888-cockfighting-platform-analysis__content-block strong {
  color: #A7D9B8; /* Text Secondary */
}

/* Hero Section */
.page-blog-f888-cockfighting-platform-analysis__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  overflow: hidden;
  min-height: 600px;
  text-align: center;
}

.page-blog-f888-cockfighting-platform-analysis__hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-blog-f888-cockfighting-platform-analysis__hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.5);
}

.page-blog-f888-cockfighting-platform-analysis__video-link {
  display: block;
  width: 100%;
  height: 100%;
}

.page-blog-f888-cockfighting-platform-analysis__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background-color: rgba(8, 22, 15, 0.7); /* Deep Green with opacity */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-blog-f888-cockfighting-platform-analysis__main-title {
  font-size: clamp(2.5em, 5vw, 3.2em);
  font-weight: 800;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-f888-cockfighting-platform-analysis__intro-text {
  font-size: 1.2em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-blog-f888-cockfighting-platform-analysis__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-blog-f888-cockfighting-platform-analysis__btn-primary,
.page-blog-f888-cockfighting-platform-analysis__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-blog-f888-cockfighting-platform-analysis__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-f888-cockfighting-platform-analysis__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(17, 168, 78, 0.6);
}

.page-blog-f888-cockfighting-platform-analysis__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Brighter green from button gradient */
  border: 2px solid #2AD16F;
}

.page-blog-f888-cockfighting-platform-analysis__btn-secondary:hover {
  background-color: #2AD16F;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.3);
}

/* General Image Styles */
.page-blog-f888-cockfighting-platform-analysis__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto 20px auto; /* Center images and add bottom margin */
}

/* Card Grid Section */
.page-blog-f888-cockfighting-platform-analysis__card-grid .page-blog-f888-cockfighting-platform-analysis__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-f888-cockfighting-platform-analysis__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  box-sizing: border-box;
}

.page-blog-f888-cockfighting-platform-analysis__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-f888-cockfighting-platform-analysis__card-title {
  font-size: 1.5em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-blog-f888-cockfighting-platform-analysis__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-f888-cockfighting-platform-analysis__card p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
  text-align: justify;
}

/* Feature List */
.page-blog-f888-cockfighting-platform-analysis__feature-list,
.page-blog-f888-cockfighting-platform-analysis__responsibility-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-blog-f888-cockfighting-platform-analysis__feature-list li,
.page-blog-f888-cockfighting-platform-analysis__responsibility-list li {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #F2FFF6; /* Text Main */
  text-align: justify;
}

.page-blog-f888-cockfighting-platform-analysis__feature-list li strong,
.page-blog-f888-cockfighting-platform-analysis__responsibility-list li strong {
  color: #F2C14E; /* Gold */
}

/* FAQ Section */
.page-blog-f888-cockfighting-platform-analysis__faq-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-blog-f888-cockfighting-platform-analysis__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.page-blog-f888-cockfighting-platform-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15em;
  font-weight: 600;
  color: #F2C14E; /* Gold */
  cursor: pointer;
  background-color: #11271B;
  border-bottom: 1px solid #1E3A2A; /* Divider */
  list-style: none;
}

.page-blog-f888-cockfighting-platform-analysis__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-f888-cockfighting-platform-analysis__faq-qtext {
  flex-grow: 1;
}

.page-blog-f888-cockfighting-platform-analysis__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
  color: #2AD16F;
}

.page-blog-f888-cockfighting-platform-analysis__faq-item[open] .page-blog-f888-cockfighting-platform-analysis__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-f888-cockfighting-platform-analysis__faq-answer {
  padding: 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  text-align: justify;
}

.page-blog-f888-cockfighting-platform-analysis__faq-answer p {
  margin-bottom: 0;
}

.page-blog-f888-cockfighting-platform-analysis__text-link {
  color: #2AD16F;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-blog-f888-cockfighting-platform-analysis__text-link:hover {
  color: #57E38D; /* Glow */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-f888-cockfighting-platform-analysis__section-title {
    font-size: 2em;
  }

  .page-blog-f888-cockfighting-platform-analysis__main-title {
    font-size: clamp(2em, 5vw, 2.8em);
  }
}

@media (max-width: 768px) {
  .page-blog-f888-cockfighting-platform-analysis__section {
    padding: 40px 0;
  }

  .page-blog-f888-cockfighting-platform-analysis__hero-section {
    padding: 10px 0 40px 0;
    min-height: 400px;
  }

  .page-blog-f888-cockfighting-platform-analysis__hero-content {
    padding: 15px;
  }

  .page-blog-f888-cockfighting-platform-analysis__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
    margin-bottom: 15px;
  }

  .page-blog-f888-cockfighting-platform-analysis__intro-text {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-f888-cockfighting-platform-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

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

  .page-blog-f888-cockfighting-platform-analysis__container,
  .page-blog-f888-cockfighting-platform-analysis__content-block,
  .page-blog-f888-cockfighting-platform-analysis__card-grid .page-blog-f888-cockfighting-platform-analysis__grid {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-f888-cockfighting-platform-analysis__image,
  .page-blog-f888-cockfighting-platform-analysis__card-image,
  .page-blog-f888-cockfighting-platform-analysis__hero-video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-f888-cockfighting-platform-analysis__hero-video-wrapper {
    overflow: hidden !important;
  }

  .page-blog-f888-cockfighting-platform-analysis__card {
    padding: 20px;
  }

  .page-blog-f888-cockfighting-platform-analysis__card-title {
    font-size: 1.3em;
  }

  .page-blog-f888-cockfighting-platform-analysis__faq-question {
    font-size: 1em;
    padding: 15px;
  }

  .page-blog-f888-cockfighting-platform-analysis__faq-answer {
    padding: 15px;
  }

  .page-blog-f888-cockfighting-platform-analysis__feature-list li,
  .page-blog-f888-cockfighting-platform-analysis__responsibility-list li {
    padding: 15px;
  }

  .page-blog-f888-cockfighting-platform-analysis__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
}

@media (max-width: 480px) {
  .page-blog-f888-cockfighting-platform-analysis__section-title {
    font-size: 1.8em;
  }

  .page-blog-f888-cockfighting-platform-analysis__sub-title {
    font-size: 1.5em;
  }
}