
    :root {
      --page-88-com-primary-color: #ffcc00; /* Yellow */
      --page-88-com-secondary-color: #333; /* Dark Grey */
      --page-88-com-accent-color: #e6b800; /* Darker Yellow */
      --page-88-com-text-light: #f8f8f8;
      --page-88-com-text-dark: #1a1a1a;
      --page-88-com-bg-dark: #222;
      --page-88-com-bg-light: #f0f0f0;
      --page-88-com-border-color: #444;
    }

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

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

    .page-88-com__section--dark {
      background-color: var(--page-88-com-bg-dark);
      color: var(--page-88-com-text-light);
    }

    .page-88-com__section-title {
      text-align: center;
      font-size: 2.5em;
      margin-bottom: 40px;
      color: var(--page-88-com-secondary-color);
      position: relative;
      padding-bottom: 10px;
    }

    .page-88-com__section--dark .page-88-com__section-title {
      color: var(--page-88-com-primary-color);
    }

    .page-88-com__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-88-com-primary-color);
      border-radius: 2px;
    }

    /* Hero Section */
    .page-88-com__hero-section {
      position: relative;
      text-align: center;
      color: var(--page-88-com-text-light);
      padding: 10px 0 0 0; /* Small top padding as body should have offset */
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
      background-color: var(--page-88-com-bg-dark);
    }

    .page-88-com__hero-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
    }

    .page-88-com__hero-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      max-height: 500px; /* Limit height for hero image */
    }

    .page-88-com__hero-content {
      position: relative;
      z-index: 2;
      padding: 0 20px 40px;
    }

    .page-88-com__hero-title {
      font-size: 3em;
      margin-bottom: 10px;
      color: var(--page-88-com-primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-88-com__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: var(--page-88-com-text-light);
    }

    /* Floating Buttons */
    .page-88-com__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-88-com__floating-button {
      background-color: var(--page-88-com-primary-color);
      color: var(--page-88-com-text-dark);
      padding: 12px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 16px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      min-width: 120px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-88-com__floating-button:hover {
      background-color: var(--page-88-com-accent-color);
      transform: translateY(-2px);
    }

    /* Game Categories */
    .page-88-com__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-88-com__category-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px 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;
      box-sizing: border-box;
    }

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

    .page-88-com__category-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for consistent card appearance */
    }

    .page-88-com__category-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-88-com__category-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-88-com__category-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: var(--page-88-com-secondary-color);
    }

    .page-88-com__category-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    /* Promotions */
    .page-88-com__promotions-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-88-com__promotion-card {
      background-color: var(--page-88-com-bg-dark);
      color: var(--page-88-com-text-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-88-com__promotion-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .page-88-com__promotion-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 220px;
    }

    .page-88-com__promotion-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-88-com__promotion-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .page-88-com__promotion-title {
      font-size: 1.6em;
      margin-bottom: 10px;
      color: var(--page-88-com-primary-color);
    }

    .page-88-com__promotion-description {
      font-size: 0.95em;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    /* Features / Why Choose Us */
    .page-88-com__features-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-88-com__feature-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      text-align: center;
      box-sizing: border-box;
    }

    .page-88-com__feature-icon-container {
      margin-bottom: 15px;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      display: inline-block; /* For centering */
      width: 80px; /* Placeholder for icon size */
      height: 80px;
    }

    .page-88-com__feature-icon {
      width: 80px;
      height: 80px;
      object-fit: contain;
      display: block;
      margin: 0 auto;
    }

    .page-88-com__feature-title {
      font-size: 1.4em;
      color: var(--page-88-com-secondary-color);
      margin-bottom: 10px;
    }

    .page-88-com__feature-description {
      font-size: 0.9em;
      color: #555;
    }

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

    .page-88-com__logo-item {
      background-color: #fff;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      text-align: center;
      box-sizing: border-box;
      width: 100%;
      max-width: 200px;
    }

    .page-88-com__logo-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 60px; /* Fixed height for logos */
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-88-com__logo-image {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      display: block;
    }

    /* FAQ Section */
    .page-88-com__faq-container {
      margin-top: 40px;
      border-top: 1px solid var(--page-88-com-border-color);
      padding-top: 20px;
    }

    .page-88-com__faq-item {
      background-color: #fff;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .page-88-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: var(--page-88-com-bg-dark);
      color: var(--page-88-com-primary-color);
      font-weight: bold;
      border-radius: 8px;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-88-com__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-88-com__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-88-com-primary-color);
      pointer-events: none; /* Prevent text selection from interfering with click */
    }

    .page-88-com__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 10px;
      pointer-events: none; /* Prevent toggle icon from interfering with click */
      transition: transform 0.3s ease;
    }

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

    .page-88-com__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: var(--page-88-com-text-dark);
      background-color: #fcfcfc;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-88-com__section {
        padding: 30px 15px;
      }

      .page-88-com__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }

      .page-88-com__hero-title {
        font-size: 2.2em;
      }

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

      .page-88-com__game-categories,
      .page-88-com__promotions-list,
      .page-88-com__features-list,
      .page-88-com__logos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-88-com__category-card,
      .page-88-com__promotion-card,
      .page-88-com__feature-item,
      .page-88-com__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important;
      }

      .page-88-com__category-description,
      .page-88-com__promotion-description,
      .page-88-com__feature-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-88-com__hero-image-container,
      .page-88-com__category-image-container,
      .page-88-com__promotion-image-container,
      .page-88-com__feature-icon-container,
      .page-88-com__logo-image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-88-com__hero-image,
      .page-88-com__category-image,
      .page-88-com__promotion-image,
      .page-88-com__feature-icon,
      .page-88-com__logo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-88-com__category-image-container {
        height: 180px;
      }
      .page-88-com__promotion-image-container {
        height: 200px;
      }

      .page-88-com__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row;
        width: calc(100% - 30px);
        justify-content: space-around;
      }

      .page-88-com__floating-button {
        flex: 1;
        font-size: 14px;
        padding: 10px 15px;
        min-width: unset;
      }

      .page-88-com__faq-question {
        padding: 12px 15px;
      }
      .page-88-com__faq-question h3 {
        font-size: 1em;
      }
      .page-88-com__faq-answer {
        padding: 15px 15px !important;
      }
    }
  