/* style/blog-charm-of-commented-cockfighting-live.css */
/* body background is #0a0a0a (dark), so use light text. */

:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --accent-register: #C30808;
  --accent-login: #C30808;
  --text-color-dark-bg: #FFFFFF;
  --text-color-light-bg: #333333;
  --bg-color-light: #FFFFFF;
  --login-register-font: #FFFF00;
}

.page-blog-charm-of-commented-cockfighting-live {
  color: var(--text-color-dark-bg); /* Default text color for the page content */
  background-color: #0a0a0a; /* Ensure the main content area respects body background */
}

.page-blog-charm-of-commented-cockfighting-live__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding for content separation */
  text-align: center;
}

.page-blog-charm-of-commented-cockfighting-live__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
}

.page-blog-charm-of-commented-cockfighting-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-blog-charm-of-commented-cockfighting-live__hero-content {
  max-width: 900px;
  color: var(--text-color-dark-bg);
}

.page-blog-charm-of-commented-cockfighting-live__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-color-dark-bg);
  margin-bottom: 20px;
  max-width: 100%;
  /* No fixed font-size, rely on clamp if needed but not explicitly set here */
}

.page-blog-charm-of-commented-cockfighting-live__intro-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-blog-charm-of-commented-cockfighting-live__cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-charm-of-commented-cockfighting-live__btn-primary,
.page-blog-charm-of-commented-cockfighting-live__btn-secondary {
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  display: inline-block;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-charm-of-commented-cockfighting-live__btn-primary {
  background-color: var(--accent-register);
  color: var(--login-register-font);
  border: 2px solid var(--accent-register);
}

.page-blog-charm-of-commented-cockfighting-live__btn-primary:hover {
  background-color: darken(var(--accent-register), 10%);
  border-color: darken(var(--accent-register), 10%);
}

.page-blog-charm-of-commented-cockfighting-live__btn-secondary {
  background-color: transparent;
  color: var(--login-register-font);
  border: 2px solid var(--accent-login);
}

.page-blog-charm-of-commented-cockfighting-live__btn-secondary:hover {
  background-color: var(--accent-login);
  color: var(--text-color-dark-bg);
}

.page-blog-charm-of-commented-cockfighting-live__btn-inline {
  margin-top: 20px;
  margin-bottom: 20px;
}

.page-blog-charm-of-commented-cockfighting-live__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--bg-color-light); /* White background for readability */
  color: var(--text-color-light-bg);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-charm-of-commented-cockfighting-live__article {
  line-height: 1.7;
}

.page-blog-charm-of-commented-cockfighting-live__publish-date {
  font-size: 0.9em;
  color: #666;
  text-align: right;
  margin-bottom: 30px;
}

.page-blog-charm-of-commented-cockfighting-live__section-title {
  font-size: 2.2em;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.page-blog-charm-of-commented-cockfighting-live__sub-section-title {
  font-size: 1.6em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.page-blog-charm-of-commented-cockfighting-live p {
  margin-bottom: 15px;
}

.page-blog-charm-of-commented-cockfighting-live a {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-blog-charm-of-commented-cockfighting-live a:hover {
  color: darken(var(--primary-color), 10%);
}

.page-blog-charm-of-commented-cockfighting-live__image-block {
  margin: 30px 0;
  text-align: center;
}

.page-blog-charm-of-commented-cockfighting-live__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-charm-of-commented-cockfighting-live__faq-list {
  margin-top: 30px;
}

.page-blog-charm-of-commented-cockfighting-live__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-charm-of-commented-cockfighting-live__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: var(--secondary-color);
  color: var(--text-color-light-bg);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Safari */
  -khtml-user-select: none;    /* Konqueror HTML */
  -moz-user-select: none;      /* Old versions of Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;           /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.page-blog-charm-of-commented-cockfighting-live__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-charm-of-commented-cockfighting-live__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
  color: var(--primary-color);
}

.page-blog-charm-of-commented-cockfighting-live__faq-answer {
  padding: 15px 20px;
  background-color: #ffffff;
  color: var(--text-color-light-bg);
  border-top: 1px solid #e0e0e0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-charm-of-commented-cockfighting-live__hero-section {
    padding: 10px 15px 40px;
  }

  .page-blog-charm-of-commented-cockfighting-live__main-title {
    font-size: 2.5em;
  }

  .page-blog-charm-of-commented-cockfighting-live__section-title {
    font-size: 1.8em;
  }

  .page-blog-charm-of-commented-cockfighting-live__sub-section-title {
    font-size: 1.4em;
  }

  .page-blog-charm-of-commented-cockfighting-live__content-area {
    padding: 30px 15px;
  }
}

@media (max-width: 768px) {
  .page-blog-charm-of-commented-cockfighting-live {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-charm-of-commented-cockfighting-live__hero-section {
    padding: 10px 15px 30px;
  }

  .page-blog-charm-of-commented-cockfighting-live__main-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-blog-charm-of-commented-cockfighting-live__intro-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-charm-of-commented-cockfighting-live__cta-group {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 300px; /* Constrain button group width */
    margin: 0 auto;
  }

  .page-blog-charm-of-commented-cockfighting-live__btn-primary,
  .page-blog-charm-of-commented-cockfighting-live__btn-secondary,
  .page-blog-charm-of-commented-cockfighting-live a[class*="button"],
  .page-blog-charm-of-commented-cockfighting-live 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-blog-charm-of-commented-cockfighting-live__content-area {
    padding: 20px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-charm-of-commented-cockfighting-live__section-title {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-charm-of-commented-cockfighting-live__sub-section-title {
    font-size: 1.2em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-blog-charm-of-commented-cockfighting-live img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-charm-of-commented-cockfighting-live__image-block,
  .page-blog-charm-of-commented-cockfighting-live__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }

  .page-blog-charm-of-commented-cockfighting-live__faq-question {
    padding: 12px 15px;
  }

  .page-blog-charm-of-commented-cockfighting-live__faq-answer {
    padding: 12px 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-charm-of-commented-cockfighting-live__main-title {
    font-size: 1.5em;
  }

  .page-blog-charm-of-commented-cockfighting-live__section-title {
    font-size: 1.3em;
  }

  .page-blog-charm-of-commented-cockfighting-live__sub-section-title {
    font-size: 1.1em;
  }
}