
    /* CSS Styles for Trực tiếp đá gà Xà Xía page */
    .page-livecockfighting {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      padding-bottom: 80px; /* Space for the floating button */
    }

    .page-livecockfighting__hero-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      background-color: #1a2a3a;
      color: #fff;
      text-align: center;
      padding-top: 10px; /* For fixed header */
      padding-bottom: 40px;
    }

    .page-livecockfighting__hero-background {
      width: 100%;
      height: 300px; /* Default height */
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
      opacity: 0.6;
    }

    .page-livecockfighting__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-livecockfighting__hero-title {
      font-size: 2.5em;
      margin-bottom: 10px;
      color: #ffcc00; /* Gold color for emphasis */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-livecockfighting__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 20px;
      color: #e0e0e0;
    }

    .page-livecockfighting__promo-button {
      display: inline-block;
      background-color: #ff4500; /* Orange-red for CTA */
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-livecockfighting__promo-button:hover {
      background-color: #e03d00;
      transform: translateY(-2px);
    }

    .page-livecockfighting__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      margin-bottom: 20px;
    }

    .page-livecockfighting__section:first-of-type {
      margin-top: 20px; /* Adjust for hero section padding-top */
    }

    .page-livecockfighting__section-title {
      font-size: 2em;
      color: #1a2a3a;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-livecockfighting__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: #ff4500;
      border-radius: 2px;
    }

    .page-livecockfighting__content-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-livecockfighting__game-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
    }

    .page-livecockfighting__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .page-livecockfighting__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-livecockfighting__game-card-title {
      font-size: 1.4em;
      color: #1a2a3a;
      margin: 15px 10px 10px;
    }

    .page-livecockfighting__game-card-description {
      font-size: 0.95em;
      color: #555;
      padding: 0 15px 15px;
    }

    .page-livecockfighting__text-block {
      margin-bottom: 20px;
      text-align: left;
    }

    .page-livecockfighting__text-block h3 {
      font-size: 1.5em;
      color: #1a2a3a;
      margin-bottom: 15px;
    }

    .page-livecockfighting__text-block p {
      margin-bottom: 10px;
      color: #444;
    }

    .page-livecockfighting__text-block ul {
      list-style: disc;
      padding-left: 25px;
      margin-bottom: 15px;
      color: #444;
    }

    .page-livecockfighting__text-block li {
      margin-bottom: 8px;
    }

    .page-livecockfighting__cta-section {
      text-align: center;
      background-color: #1a2a3a;
      color: #fff;
      padding: 50px 20px;
      border-radius: 8px;
      margin-bottom: 20px;
    }

    .page-livecockfighting__cta-title {
      font-size: 2em;
      margin-bottom: 20px;
      color: #ffcc00;
    }

    .page-livecockfighting__cta-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-livecockfighting__cta-button {
      display: inline-block;
      background-color: #ff4500;
      color: #fff;
      padding: 15px 35px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-livecockfighting__cta-button:hover {
      background-color: #e03d00;
      transform: translateY(-2px);
    }

    .page-livecockfighting__faq-section {
      padding: 40px 20px;
      max-width: 900px;
      margin: 0 auto 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .page-livecockfighting__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
    }

    .page-livecockfighting__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-livecockfighting__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      color: #1a2a3a;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-livecockfighting__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-livecockfighting__faq-question h3 {
      margin: 0;
      font-size: 1.1em; /* Keep it consistent with parent font-size */
      pointer-events: none; /* Prevent h3 from blocking click event */
      color: #1a2a3a;
    }

    .page-livecockfighting__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #ff4500;
      pointer-events: none; /* Prevent span from blocking click event */
      transition: transform 0.3s ease;
    }

    /* JavaScript will change text content, not rotate */
    /* .page-livecockfighting__faq-item.active .page-livecockfighting__faq-toggle {
      transform: rotate(45deg);
    } */

    .page-livecockfighting__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
      color: #555;
      font-size: 0.95em;
      text-align: left;
    }

    .page-livecockfighting__faq-item.active .page-livecockfighting__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-livecockfighting__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #ff4500;
      color: #fff;
      padding: 12px 25px;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .page-livecockfighting__floating-button:hover {
      background-color: #e03d00;
      transform: translateY(-3px);
    }

    .page-livecockfighting__floating-button-icon {
      font-size: 1.2em;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-livecockfighting__hero-title {
        font-size: 2em;
      }

      .page-livecockfighting__hero-subtitle {
        font-size: 1em;
      }

      .page-livecockfighting__promo-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-livecockfighting__section {
        padding: 25px 15px;
        margin-bottom: 15px;
      }

      .page-livecockfighting__section-title {
        font-size: 1.7em;
        margin-bottom: 20px;
      }

      .page-livecockfighting__content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-livecockfighting__game-card-image {
        height: 180px;
      }

      .page-livecockfighting__game-card-title {
        font-size: 1.2em;
      }

      .page-livecockfighting__cta-section {
        padding: 30px 15px;
      }

      .page-livecockfighting__cta-title {
        font-size: 1.7em;
      }

      .page-livecockfighting__cta-description {
        font-size: 1em;
      }

      .page-livecockfighting__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-livecockfighting__faq-section {
        padding: 25px 15px;
      }

      .page-livecockfighting__faq-question {
        font-size: 1em;
        padding: 12px 0;
      }

      .page-livecockfighting__faq-question h3 {
        font-size: 1em;
      }

      .page-livecockfighting__faq-answer {
        font-size: 0.9em;
        padding: 0 10px; /* Reduced padding for mobile */
      }

      .page-livecockfighting__faq-item.active .page-livecockfighting__faq-answer {
        padding: 15px 10px !important; /* Reduced padding for mobile */
      }

      .page-livecockfighting__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 20px;
        font-size: 0.9em;
      }

      /* Ensure images are responsive */
      .page-livecockfighting img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-livecockfighting__game-card-image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important; /* Allow auto height */
        object-fit: cover !important;
      }
    }

    /* General image responsive rules for all images in main content */
    .page-livecockfighting img {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
      box-sizing: border-box;
      overflow: hidden;
    }

    .page-livecockfighting__image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px; /* Example spacing */
    }
  