
    :root {
      --page-www88-primary-color: #e44d26;
      --page-www88-secondary-color: #f7931e;
      --page-www88-dark-color: #333;
      --page-www88-light-color: #fff;
      --page-www88-bg-dark: #1a1a1a;
      --page-www88-bg-light: #f0f2f5;
      --page-www88-text-dark: #333;
      --page-www88-text-light: #fff;
      --page-www88-border-color: #ddd;
    }

    .page-www88 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-www88-text-dark);
      background-color: var(--page-www88-bg-light);
      padding: 0;
      margin: 0;
    }

    .page-www88__section {
      padding: 40px 15px;
      margin-bottom: 20px;
      background-color: var(--page-www88-light-color);
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-www88__section--dark {
      background-color: var(--page-www88-bg-dark);
      color: var(--page-www88-text-light);
      box-shadow: none;
    }

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

    .page-www88__hero-section {
      background-color: var(--page-www88-bg-dark);
      color: var(--page-www88-text-light);
      text-align: center;
      padding-top: 10px; /* Account for fixed header on desktop */
      padding-bottom: 40px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-www88__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: contain; /* Ensure image keeps its aspect ratio */
      border-radius: 8px;
      margin-bottom: 20px;
    }

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

    .page-www88__hero-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: var(--page-www88-secondary-color);
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-www88__hero-description {
      font-size: 1.1em;
      margin-bottom: 25px;
      color: var(--page-www88-light-color);
    }

    .page-www88__promo-button {
      display: inline-block;
      background-color: var(--page-www88-primary-color);
      color: var(--page-www88-text-light);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

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

    .page-www88__title {
      font-size: 2em;
      color: var(--page-www88-primary-color);
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-www88__subtitle {
      font-size: 1.5em;
      color: var(--page-www88-dark-color);
      margin-bottom: 20px;
      text-align: left;
    }

    .page-www88__text {
      font-size: 1em;
      margin-bottom: 15px;
      color: var(--page-www88-text-dark);
    }

    .page-www88__text--light {
      color: var(--page-www88-text-light);
    }

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

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

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

    .page-www88__game-image {
      width: 100%;
      max-width: 100%;
      height: 150px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      border-bottom: 1px solid var(--page-www88-border-color);
    }

    .page-www88__game-title {
      font-size: 1.1em;
      font-weight: bold;
      color: var(--page-www88-dark-color);
      padding: 15px 10px;
      margin: 0;
    }

    .page-www88__feature-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: 1fr;
      gap: 15px;
    }

    .page-www88__feature-item {
      background-color: var(--page-www88-light-color);
      padding: 20px;
      border-left: 5px solid var(--page-www88-primary-color);
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      font-size: 1.1em;
      color: var(--page-www88-dark-color);
    }

    .page-www88__feature-item strong {
      color: var(--page-www88-primary-color);
    }

    .page-www88__faq-section {
      margin-top: 40px;
    }

    .page-www88__faq-item {
      background-color: var(--page-www88-light-color);
      border: 1px solid var(--page-www88-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-www88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f9f9f9;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      color: var(--page-www88-dark-color);
      transition: background-color 0.3s ease;
    }

    .page-www88__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-www88__faq-question:hover {
      background-color: #eee;
    }

    .page-www88__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent */
      color: var(--page-www88-primary-color);
    }

    .page-www88__faq-item.active .page-www88__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-www88__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-www88-text-dark);
      background-color: var(--page-www88-light-color);
    }

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

    .page-www88__floating-promo {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: var(--page-www88-primary-color);
      color: var(--page-www88-text-light);
      padding: 12px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, background-color 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      max-width: 250px;
    }

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

    .page-www88__floating-promo span {
        margin-left: 8px;
    }

    .page-www88__image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-www88__content-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      border-radius: 8px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-www88__hero-section {
        padding-top: 10px; /* Account for fixed header on mobile */
        padding-bottom: 30px;
      }

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

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

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

      .page-www88__title {
        font-size: 1.8em;
      }

      .page-www88__subtitle {
        font-size: 1.3em;
      }

      .page-www88__section {
        padding: 30px 10px;
        margin-bottom: 15px;
      }

      .page-www88__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
      }

      .page-www88__game-image {
        height: 120px;
      }

      .page-www88__game-title {
        font-size: 0.9em;
        padding: 10px 5px;
      }

      .page-www88__feature-item {
        font-size: 1em;
        padding: 15px;
      }

      .page-www88__faq-question {
        padding: 12px 15px;
      }

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

      .page-www88__faq-answer {
        padding: 15px 15px;
      }

      .page-www88__floating-promo {
        bottom: 15px;
        right: 15px;
        padding: 10px 15px;
        font-size: 0.9em;
        max-width: 200px;
      }
      .page-www88__floating-promo span {
          margin-left: 5px;
      }

      /* Force image responsiveness */
      .page-www88__hero-image,
      .page-www88__game-image,
      .page-www88__content-image {
          max-width: 100% !important;
          height: auto !important;
      }
      .page-www88__image-wrapper {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
    }
  