
    /* CSS Styles for page-daga88 */
    :root {
      --page-daga88-primary-color: #e44d26; /* Cam đậm */
      --page-daga88-secondary-color: #333; /* Xám đậm */
      --page-daga88-accent-color: #f7b731; /* Vàng cam */
      --page-daga88-text-color: #333; /* Màu chữ chính */
      --page-daga88-light-bg: #f9f9f9; /* Nền sáng */
      --page-daga88-dark-bg: #2c3e50; /* Nền tối */
      --page-daga88-white: #fff;
      --page-daga88-border-color: #ddd;
    }

    .page-daga88 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-daga88-text-color);
      background-color: var(--page-daga88-light-bg);
      padding-bottom: 80px; /* Space for fixed button */
    }

    .page-daga88__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-daga88__hero-section {
      text-align: center;
      background-color: var(--page-daga88-dark-bg);
      color: var(--page-daga88-white);
      padding: 10px 0 40px 0; /* Adjusted padding-top for fixed header */
      position: relative;
      overflow: hidden;
    }

    .page-daga88__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin-bottom: 20px;
      border-radius: 8px;
      object-fit: cover; /* Ensures image covers the area without distortion */
      aspect-ratio: 16/9; /* Common aspect ratio for hero images */
    }

    .page-daga88__hero-content {
      padding: 0 20px;
    }

    .page-daga88__hero-title {
      font-size: 2.5em;
      margin-bottom: 10px;
      color: var(--page-daga88-accent-color);
      line-height: 1.2;
    }

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

    .page-daga88__button {
      display: inline-block;
      background-color: var(--page-daga88-primary-color);
      color: var(--page-daga88-white);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      font-size: 1em;
      border: none;
      cursor: pointer;
    }

    .page-daga88__button:hover {
      background-color: #c0392b; /* Slightly darker red */
    }

    .page-daga88__section {
      background-color: var(--page-daga88-white);
      margin-bottom: 20px;
      padding: 30px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .page-daga88__section-title {
      font-size: 2em;
      color: var(--page-daga88-primary-color);
      text-align: center;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-daga88__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--page-daga88-accent-color);
      border-radius: 2px;
    }

    .page-daga88__content-text {
      font-size: 1em;
      line-height: 1.8;
      margin-bottom: 15px;
      text-align: justify;
    }

    .page-daga88__content-list {
      list-style: disc;
      padding-left: 25px;
      margin-bottom: 15px;
    }

    .page-daga88__content-list-item {
      margin-bottom: 8px;
      font-size: 1em;
      line-height: 1.6;
    }

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

    .page-daga88__game-card {
      background-color: var(--page-daga88-light-bg);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-daga88__game-card:hover {
      transform: translateY(-5px);
    }

    .page-daga88__game-card-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for image container */
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--page-daga88-dark-bg);
    }

    .page-daga88__game-card-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: contain; /* Ensure the whole image is visible */
    }

    .page-daga88__game-card-content {
      padding: 15px;
    }

    .page-daga88__game-card-title {
      font-size: 1.3em;
      color: var(--page-daga88-primary-color);
      margin-bottom: 10px;
      min-height: 2em; /* Ensure consistent height for titles */
    }

    .page-daga88__game-card-description {
      font-size: 0.9em;
      color: var(--page-daga88-secondary-color);
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-daga88__game-card-link {
      background-color: var(--page-daga88-accent-color);
      color: var(--page-daga88-dark-bg);
      padding: 8px 15px;
      border-radius: 4px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      font-size: 0.9em;
    }

    .page-daga88__game-card-link:hover {
      background-color: #e6a226;
    }

    /* FAQ Section */
    .page-daga88__faq-section {
      background-color: var(--page-daga88-white);
      margin-bottom: 20px;
      padding: 30px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .page-daga88__faq-item {
      border-bottom: 1px solid var(--page-daga88-border-color);
      margin-bottom: 10px;
    }

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

    .page-daga88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      user-select: none;
      background-color: transparent;
      border: none;
      width: 100%;
      text-align: left;
    }

    .page-daga88__faq-question:hover {
      background-color: #f0f0f0;
      border-radius: 4px;
    }

    .page-daga88__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-daga88-secondary-color);
      pointer-events: none; /* Prevents text from blocking click event */
      flex-grow: 1;
    }

    .page-daga88__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-daga88-primary-color);
      margin-left: 10px;
      pointer-events: none; /* Prevents icon from blocking click event */
    }

    .page-daga88__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.4s ease;
      color: var(--page-daga88-text-color);
      font-size: 0.95em;
      line-height: 1.6;
    }

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

    .page-daga88__faq-item.active .page-daga88__faq-toggle {
      content: '−';
    }

    /* Floating CTA Button */
    .page-daga88__floating-cta {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: var(--page-daga88-primary-color);
      color: var(--page-daga88-white);
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, background-color 0.3s ease;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .page-daga88__floating-cta:hover {
      background-color: #c0392b;
      transform: translateY(-3px);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-daga88__container {
        padding: 15px;
      }

      .page-daga88__hero-section {
        padding-top: 10px; /* Ensure space for fixed header on mobile */
      }

      .page-daga88__hero-title {
        font-size: 2em;
      }

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

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

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

      .page-daga88__game-card-image-wrapper {
        height: 180px; /* Adjust height for smaller screens */
      }

      .page-daga88__faq-question {
        padding: 12px 0;
      }

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

      .page-daga88__faq-answer {
        padding: 0 10px;
        font-size: 0.9em;
      }

      .page-daga88__faq-item.active .page-daga88__faq-answer {
        padding: 15px 10px !important;
      }

      .page-daga88__floating-cta {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
      
      /* Image responsiveness enforcement */
      .page-daga88 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-daga88__game-card-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  