
    /* Reset & Base Styles */
    .page-bong88 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #f9f9f9;
      margin: 0;
      padding: 0;
      overflow-x: hidden; /* Prevent horizontal scroll due to fixed button */
    }

    /* Fixed Header Spacing */
    .page-bong88__hero-section {
      padding-top: 60px; /* Recommended for mobile fixed header */
      position: relative;
    }
    @media (min-width: 769px) {
        .page-bong88__hero-section {
            padding-top: 10px; /* Recommended for desktop fixed header */
        }
    }

    /* Sections */
    .page-bong88__section {
      padding: 30px 15px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      max-width: 960px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }
    .page-bong88__section:last-of-type {
        margin-bottom: 80px; /* Space for footer and floating button */
    }

    .page-bong88__section-title {
      text-align: center;
      color: #0056b3; /* Darker blue for contrast */
      margin-bottom: 25px;
      font-size: 2em;
      font-weight: 700;
    }
    .page-bong88__section-title strong {
        color: #e44d26; /* Highlight important terms */
    }

    /* Hero Section */
    .page-bong88__hero-section {
      background: linear-gradient(135deg, #007bff, #00c6ff);
      color: #fff;
      text-align: center;
      padding: 40px 15px 60px;
      border-radius: 0 0 15px 15px;
      overflow: hidden;
      position: relative;
      margin-bottom: 20px;
    }

    .page-bong88__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto 20px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      object-fit: cover;
      box-sizing: border-box;
    }

    .page-bong88__hero-content {
      position: relative;
      z-index: 1;
    }

    .page-bong88__hero-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      line-height: 1.2;
      font-weight: 800;
      color: #fff;
    }
    .page-bong88__hero-title span {
        color: #ffeb3b; /* Yellow for highlights */
    }

    .page-bong88__hero-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #f0f8ff;
    }

    .page-bong88__hero-cta {
      display: inline-block;
      background-color: #ffeb3b; /* Yellow for CTA */
      color: #333;
      padding: 15px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      border: none;
      cursor: pointer;
    }

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

    /* Floating Promotion Button */
    .page-bong88__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #e44d26; /* Red-orange for urgency */
      color: #fff;
      padding: 15px 25px;
      border-radius: 50px;
      text-align: center;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-decoration: none; /* Ensure it looks like a button */
      white-space: nowrap;
      display: block; /* Ensure it takes full width on mobile if needed */
      width: fit-content;
      max-width: calc(100% - 40px); /* Ensure it doesn't overflow on small screens */
      box-sizing: border-box;
    }
    .page-bong88__floating-button:hover {
      background-color: #c23b1e;
      transform: translateX(-50%) translateY(-3px);
    }

    /* Game Grid */
    .page-bong88__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }

    .page-bong88__game-card {
      background-color: #f0f8ff;
      border-radius: 10px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
      box-sizing: border-box;
    }

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

    .page-bong88__game-image {
      width: 100%;
      max-width: 100%;
      height: 120px; /* Fixed height for consistency */
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 10px;
      box-sizing: border-box;
    }

    .page-bong88__game-title {
      font-size: 1.1em;
      font-weight: bold;
      color: #0056b3;
      margin: 0;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    /* Benefits and Steps List */
    .page-bong88__benefits-list,
    .page-bong88__steps-list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      display: grid;
      grid-template-columns: 1fr; /* Default to single column for mobile */
      gap: 15px;
    }

    .page-bong88__benefit-item,
    .page-bong88__step-item {
      background-color: #e9f7ff;
      border-left: 5px solid #007bff;
      padding: 15px;
      border-radius: 5px;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
      color: #333;
      font-size: 1em;
      box-sizing: border-box; /* Crucial for responsive lists */
      width: 100%; /* Ensure full width on mobile */
      max-width: 100%;
      margin-left: 0;
      margin-right: 0;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-bong88__benefit-item strong,
    .page-bong88__step-item strong {
        color: #0056b3;
    }

    /* Responsive adjustments for lists */
    @media (max-width: 768px) {
        .page-bong88__benefits-list,
        .page-bong88__steps-list {
            padding: 0 10px !important; /* Adjust padding for list container */
            width: 100% !important;
            max-width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-bong88__benefit-item,
        .page-bong88__step-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 15px !important; /* Adjust padding as needed */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }
        .page-bong88__game-card {
            padding: 10px;
        }
        .page-bong88__game-image {
            height: 100px;
        }
    }
    @media (min-width: 600px) {
      .page-bong88__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      }
      .page-bong88__benefits-list,
      .page-bong88__steps-list {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (min-width: 769px) {
      .page-bong88__section {
        padding: 40px 30px;
      }
      .page-bong88__hero-title {
        font-size: 3.5em;
      }
      .page-bong88__hero-description {
        font-size: 1.2em;
      }
      .page-bong88__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      }
      .page-bong88__benefits-list,
      .page-bong88__steps-list {
        grid-template-columns: repeat(3, 1fr);
      }
      .page-bong88__floating-button {
        max-width: 400px; /* Limit width on desktop */
      }
    }

    /* FAQ Section */
    .page-bong88__faq-section {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      padding: 30px 15px;
      max-width: 960px;
      margin: 0 auto 20px;
      box-sizing: border-box;
    }

    .page-bong88__faq-item {
      border-bottom: 1px solid #eee;
      padding: 15px 0;
      box-sizing: border-box;
    }

    .page-bong88__faq-item:last-child {
      border-bottom: none;
    }

    .page-bong88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
      padding: 5px 0;
      box-sizing: border-box;
    }

    .page-bong88__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #007bff;
      flex-grow: 1;
      text-align: left;
      pointer-events: none; /* Prevent h3 from intercepting click */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-bong88__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #007bff;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from intercepting click */
    }

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

    .page-bong88__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: #555;
      font-size: 0.95em;
      box-sizing: border-box;
    }

    .page-bong88__faq-item.active .page-bong88__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 15px !important;
      opacity: 1;
    }
    .page-bong88__faq-answer p {
        margin: 0;
        padding: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    @media (max-width: 768px) {
      .page-bong88__hero-title {
        font-size: 2em;
      }
      .page-bong88__hero-description {
        font-size: 1em;
      }
      .page-bong88__hero-cta {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-bong88__section-title {
        font-size: 1.8em;
      }
      .page-bong88__faq-question h3 {
        font-size: 1em;
      }
      .page-bong88__faq-answer {
        padding: 0 10px;
      }
      .page-bong88__faq-item.active .page-bong88__faq-answer {
        padding: 15px 10px !important;
      }
    }
  