
    /* Tổng thể */
    .page-jd88-com {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      padding-bottom: 80px; /* Để chừa chỗ cho footer */
    }

    .page-jd88-com__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-jd88-com__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-jd88-com__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
    }

    .page-jd88-com__section-title {
      font-size: 2.8em;
      color: #2980b9;
      margin-bottom: 30px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .page-jd88-com__section--dark .page-jd88-com__section-title {
      color: #f39c12; /* Màu vàng cam */
    }

    .page-jd88-com__section-subtitle {
      font-size: 1.4em;
      color: #555;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    .page-jd88-com__section--dark .page-jd88-com__section-subtitle {
      color: #bdc3c7;
    }

    /* Hero Section */
    .page-jd88-com__hero-section {
      position: relative;
      background-color: #1a1a2e; /* Nền tối cho cảm giác sang trọng */
      color: #fff;
      padding: 10px 0 80px 0; /* 10px top padding for decorative spacing, 80px bottom */
      text-align: center;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px; /* Đảm bảo chiều cao tối thiểu */
    }

    .page-jd88-com__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
      z-index: 0;
    }

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

    .page-jd88-com__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      font-weight: 900;
      color: #f39c12; /* Màu vàng cam nổi bật */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-jd88-com__hero-description {
      font-size: 1.5em;
      margin-bottom: 40px;
      font-weight: 300;
      color: #ecf0f1;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .page-jd88-com__promo-banner {
      background-color: rgba(243, 156, 18, 0.9); /* Vàng cam đậm hơn */
      color: #1a1a2e;
      padding: 15px 30px;
      border-radius: 10px;
      font-size: 1.6em;
      font-weight: bold;
      margin-top: 30px;
      display: inline-block;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    /* Floating Buttons */
    .page-jd88-com__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
    }

    .page-jd88-com__button {
      background-color: #e74c3c; /* Đỏ */
      color: #fff;
      padding: 12px 25px;
      border: none;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-jd88-com__button:hover {
      background-color: #c0392b; /* Đỏ sẫm hơn */
      transform: translateY(-2px);
    }

    .page-jd88-com__button--primary {
      background-color: #27ae60; /* Xanh lá cây */
    }

    .page-jd88-com__button--primary:hover {
      background-color: #229954; /* Xanh lá cây sẫm hơn */
    }

    /* Product Showcase */
    .page-jd88-com__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-jd88-com__product-card {
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 20px;
    }

    .page-jd88-com__product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }

    .page-jd88-com__product-image-wrapper {
      width: 100%;
      height: 220px; /* Fixed height for image consistency */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 20px;
    }

    .page-jd88-com__product-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .page-jd88-com__product-title {
      font-size: 1.8em;
      color: #2980b9;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-jd88-com__product-description {
      font-size: 1em;
      color: #666;
      padding: 0 20px;
      margin-bottom: 20px;
      flex-grow: 1; /* Allow description to take available space */
    }

    /* Promotions Section */
    .page-jd88-com__promotion-card {
      background-color: #fcfcfc;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 30px;
      margin-bottom: 20px;
      text-align: left;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-jd88-com__promotion-title {
      font-size: 2em;
      color: #e74c3c;
      margin-bottom: 15px;
      font-weight: 700;
    }

    .page-jd88-com__promotion-description {
      font-size: 1.1em;
      color: #444;
      margin-bottom: 20px;
    }

    .page-jd88-com__promotion-validity {
      font-size: 0.9em;
      color: #777;
      font-style: italic;
    }

    /* About Section */
    .page-jd88-com__about-content {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 40px;
      text-align: left;
      margin-top: 40px;
    }

    .page-jd88-com__about-text {
      flex: 2;
    }

    .page-jd88-com__about-text h3 {
      font-size: 2em;
      color: #f39c12;
      margin-bottom: 20px;
    }

    .page-jd88-com__about-text p {
      margin-bottom: 15px;
      color: #bdc3c7;
    }

    .page-jd88-com__about-image-wrapper {
      flex: 1;
      min-width: 300px;
      max-width: 400px;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .page-jd88-com__about-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    /* Payment and Providers */
    .page-jd88-com__logos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
      justify-items: center;
      align-items: center;
    }

    .page-jd88-com__logo-item {
      background-color: #fff;
      border-radius: 10px;
      padding: 15px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px; /* Fixed height for consistency */
      width: 100%;
      max-width: 180px; /* Max width for each logo item */
      box-sizing: border-box;
    }

    .page-jd88-com__logo-item:hover {
      transform: translateY(-5px);
    }

    .page-jd88-com__logo-image {
      max-width: 100%;
      max-height: 70px; /* Adjust based on logo needs */
      object-fit: contain;
    }

    /* FAQ Section */
    .page-jd88-com__faq-list {
      margin-top: 40px;
      text-align: left;
    }

    .page-jd88-com__faq-item {
      background-color: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }

    .page-jd88-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #f9f9f9;
      border-bottom: 1px solid #e0e0e0;
      transition: background-color 0.3s ease;
      user-select: none;
    }

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

    .page-jd88-com__faq-question h3 {
      margin: 0;
      font-size: 1.3em;
      color: #2980b9;
      font-weight: 600;
      pointer-events: none; /* Prevent h3 from blocking click event */
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    .page-jd88-com__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #2980b9;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-jd88-com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #fff;
      color: #555;
    }

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

    .page-jd88-com__faq-item.active .page-jd88-com__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    /* Call to Action Section */
    .page-jd88-com__cta-section {
      background-color: #2c3e55;
      color: #fff;
      padding: 80px 0;
      text-align: center;
    }

    .page-jd88-com__cta-title {
      font-size: 3em;
      margin-bottom: 20px;
      color: #f39c12;
    }

    .page-jd88-com__cta-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #ecf0f1;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .page-jd88-com__hero-title {
        font-size: 3em;
      }
      .page-jd88-com__hero-description {
        font-size: 1.3em;
      }
      .page-jd88-com__section-title {
        font-size: 2.5em;
      }
      .page-jd88-com__about-content {
        flex-direction: column;
      }
      .page-jd88-com__about-image-wrapper {
        max-width: 100%;
      }
    }

    @media (max-width: 768px) {
      .page-jd88-com__hero-section {
        min-height: 400px;
        padding-bottom: 60px;
      }
      .page-jd88-com__hero-title {
        font-size: 2.5em;
      }
      .page-jd88-com__hero-description {
        font-size: 1.1em;
      }
      .page-jd88-com__promo-banner {
        font-size: 1.3em;
        padding: 10px 20px;
      }
      .page-jd88-com__section {
        padding: 40px 0;
      }
      .page-jd88-com__section-title {
        font-size: 2em;
      }
      .page-jd88-com__section-subtitle {
        font-size: 1.2em;
      }
      .page-jd88-com__product-grid {
        grid-template-columns: 1fr;
      }
      .page-jd88-com__product-image-wrapper {
        height: 180px;
      }
      .page-jd88-com__product-title {
        font-size: 1.5em;
      }
      .page-jd88-com__promotion-title {
        font-size: 1.6em;
      }
      .page-jd88-com__about-text h3 {
        font-size: 1.8em;
      }
      .page-jd88-com__logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-jd88-com__logo-item {
        max-width: 150px;
        height: 80px;
      }
      .page-jd88-com__faq-question {
        padding: 15px 20px;
      }
      .page-jd88-com__faq-question h3 {
        font-size: 1.1em;
      }
      .page-jd88-com__faq-toggle {
        font-size: 1.5em;
      }
      .page-jd88-com__faq-answer {
        padding: 0 20px;
      }
      .page-jd88-com__faq-item.active .page-jd88-com__faq-answer {
        padding: 15px 20px !important;
      }
      .page-jd88-com__cta-title {
        font-size: 2.5em;
      }
      .page-jd88-com__cta-description {
        font-size: 1.1em;
      }
      /* Ensure list items are 100% width on mobile */
      .page-jd88-com__product-grid > div,
      .page-jd88-com__logos-grid > div,
      .page-jd88-com__faq-list > div {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
      }
      .page-jd88-com__product-card,
      .page-jd88-com__promotion-card,
      .page-jd88-com__faq-item {
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-jd88-com__floating-buttons {
        gap: 10px;
        bottom: 15px;
      }
      .page-jd88-com__button {
        width: 100%;
      }
    }

    @media (max-width: 480px) {
      .page-jd88-com__hero-title {
        font-size: 2em;
      }
      .page-jd88-com__hero-description {
        font-size: 1em;
      }
      .page-jd88-com__promo-banner {
        font-size: 1.1em;
        padding: 8px 15px;
      }
      .page-jd88-com__section-title {
        font-size: 1.8em;
      }
      .page-jd88-com__product-title {
        font-size: 1.3em;
      }
      .page-jd88-com__floating-buttons {
        flex-direction: column;
        width: calc(100% - 30px);
        left: 15px;
        transform: none;
        align-items: center;
      }
      .page-jd88-com__button {
        width: 100%;
      }
    }
  