
    /* CSS cho trang Đá Gà Trực Tiếp */
    .page-livedaga {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #f8f9fa;
      padding: 20px 0;
    }

    .page-livedaga-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-livedaga-hero {
      background: linear-gradient(135deg, #ff7e5f, #feb47b);
      color: #fff;
      padding: 60px 20px;
      text-align: center;
      border-radius: 8px;
      margin-bottom: 40px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-livedaga-hero h1 {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .page-livedaga-hero p {
      font-size: 1.2em;
      max-width: 800px;
      margin: 0 auto 30px auto;
      color: #eee;
    }

    .page-livedaga-button {
      display: inline-block;
      background-color: #007bff;
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-livedaga-button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    .page-livedaga-section {
      background-color: #fff;
      padding: 30px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .page-livedaga-section h2 {
      color: #d9534f;
      font-size: 2em;
      margin-bottom: 20px;
      border-bottom: 2px solid #eee;
      padding-bottom: 10px;
    }

    .page-livedaga-section h3 {
      color: #0275d8;
      font-size: 1.5em;
      margin-top: 25px;
      margin-bottom: 15px;
    }

    .page-livedaga-section p {
      margin-bottom: 15px;
    }

    .page-livedaga-list {
      list-style: none;
      padding: 0;
    }

    .page-livedaga-list li {
      background-color: #e9ecef;
      margin-bottom: 10px;
      padding: 12px 15px;
      border-left: 5px solid #007bff;
      border-radius: 4px;
      display: flex;
      align-items: center;
    }

    .page-livedaga-list li::before {
      content: '✔';
      color: #28a745;
      font-weight: bold;
      margin-right: 10px;
    }

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

    .page-livedaga-card {
      background-color: #fefefe;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

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

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

    .page-livedaga-card-content {
      padding: 20px;
    }

    .page-livedaga-card-content h3 {
      font-size: 1.3em;
      margin-top: 0;
      margin-bottom: 10px;
      color: #333;
    }

    .page-livedaga-card-content p {
      font-size: 0.95em;
      color: #555;
    }

    .page-livedaga-card-link {
      display: block;
      margin-top: 15px;
      color: #007bff;
      text-decoration: none;
      font-weight: bold;
    }

    .page-livedaga-card-link:hover {
      text-decoration: underline;
    }

    .page-livedaga-testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-livedaga-testimonial-card {
      background-color: #f2f7ff;
      border-left: 4px solid #007bff;
      padding: 20px;
      border-radius: 8px;
      font-style: italic;
      color: #555;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-livedaga-testimonial-card strong {
      display: block;
      margin-top: 10px;
      font-style: normal;
      color: #333;
    }

    .page-livedaga-faq h3 {
      cursor: pointer;
      background-color: #f0f0f0;
      padding: 15px;
      margin-bottom: 10px;
      border-radius: 5px;
      transition: background-color 0.3s ease;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #333;
    }

    .page-livedaga-faq h3:hover {
      background-color: #e0e0e0;
    }

    .page-livedaga-faq h3 .page-livedaga-faq-icon {
      font-size: 1.2em;
      transition: transform 0.3s ease;
    }

    .page-livedaga-faq h3.active .page-livedaga-faq-icon {
      transform: rotate(180deg);
    }

    .page-livedaga-faq-answer {
      background-color: #fff;
      padding: 15px;
      margin-bottom: 10px;
      border-radius: 5px;
      border: 1px solid #eee;
      display: none;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    }

    .page-livedaga-faq-answer.active {
      display: block;
      max-height: 200px; /* Adjust as needed */
      padding: 15px;
    }
    
    .page-livedaga-cta-banner {
      background: linear-gradient(90deg, #1a2a6c, #b21f1f, #fdbb2d);
      color: #fff;
      padding: 40px 20px;
      text-align: center;
      border-radius: 8px;
      margin-top: 40px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .page-livedaga-cta-banner h2 {
      color: #fff;
      font-size: 2.5em;
      margin-bottom: 20px;
      text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    }

    .page-livedaga-cta-banner p {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      color: #eee;
    }

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

      .page-livedaga-hero p {
        font-size: 1em;
      }

      .page-livedaga-section h2 {
        font-size: 1.7em;
      }

      .page-livedaga-section h3 {
        font-size: 1.3em;
      }

      .page-livedaga-grid {
        grid-template-columns: 1fr;
      }

      .page-livedaga-cta-banner h2 {
        font-size: 2em;
      }
    }

    @media (max-width: 480px) {
      .page-livedaga-hero {
        padding: 40px 15px;
      }

      .page-livedaga-hero h1 {
        font-size: 1.8em;
      }

      .page-livedaga-button {
        padding: 12px 25px;
        font-size: 0.9em;
      }

      .page-livedaga-section {
        padding: 20px;
      }

      .page-livedaga-list li {
        padding: 10px 12px;
        font-size: 0.9em;
      }
    }
  