
    /* CSS for new88.bi page */
    .page-new88casino {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f5f5f5;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for fixed button */
    }

    .page-new88casino .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 15px;
    }

    .page-new88casino h1,
    .page-new88casino h2,
    .page-new88casino h3 {
      color: #2c3e50; /* Darker blue for headings */
      text-align: center;
      margin-bottom: 20px;
    }

    .page-new88casino h1 {
      font-size: 2.2em;
      margin-top: 20px;
      margin-bottom: 10px;
    }

    .page-new88casino h2 {
      font-size: 1.8em;
      border-bottom: 2px solid #e67e22; /* Orange accent */
      display: inline-block;
      padding-bottom: 5px;
      margin-top: 40px;
    }

    .page-new88casino h3 {
      font-size: 1.4em;
      color: #e67e22;
      margin-top: 30px;
    }

    .page-new88casino p {
      margin-bottom: 15px;
    }

    .page-new88casino .text-center {
      text-align: center;
    }

    /* Hero Banner Section */
    .page-new88casino__hero {
      position: relative;
      background-color: #2c3e50;
      padding: 20px 0;
      color: #ecf0f1; /* Lighter text for contrast */
    }

    .page-new88casino__hero-banner {
      width: 100%;
      height: auto;
      max-height: 300px; /* Adjust as needed */
      object-fit: cover;
      display: block;
      margin: 0 auto 15px auto;
      border-radius: 8px;
    }

    .page-new88casino__hero-content {
      padding: 15px;
      text-align: center;
    }

    .page-new88casino__hero p {
      font-size: 1.1em;
      max-width: 800px;
      margin: 0 auto 20px auto;
      color: #ecf0f1;
    }

    .page-new88casino__hero a {
      color: #FFD700; /* Gold for links in hero */
      text-decoration: underline;
    }

    /* Floating Login/Register Button */
    .page-new88casino__floating-btn {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #e67e22; /* Orange for button */
      color: #fff;
      padding: 12px 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);
      z-index: 1000;
      transition: background-color 0.3s ease;
      white-space: nowrap; /* Prevent text wrapping */
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .page-new88casino__floating-btn:hover {
      background-color: #d35400; /* Darker orange on hover */
    }

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

    .page-new88casino__game-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      padding: 15px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-new88casino__game-card img {
      width: 100%;
      height: 100px; /* Fixed height for consistency */
      object-fit: contain; /* Ensure image fits without cropping */
      margin-bottom: 10px;
      border-radius: 5px;
    }

    .page-new88casino__game-card h3 {
      font-size: 1.1em;
      margin: 0;
      color: #2c3e50;
    }

    .page-new88casino__game-card a {
      text-decoration: none;
      color: inherit;
    }

    /* List styles */
    .page-new88casino ul {
      list-style: disc inside;
      margin-left: 20px;
      margin-bottom: 20px;
    }

    .page-new88casino ol {
      list-style: decimal inside;
      margin-left: 20px;
      margin-bottom: 20px;
    }

    .page-new88casino li {
      margin-bottom: 8px;
    }

    .page-new88casino strong {
      color: #e67e22;
    }

    /* Call to Action Button */
    .page-new88casino__cta-button {
      display: block;
      width: fit-content;
      margin: 30px auto;
      background-color: #28a745; /* Green for positive action */
      color: #fff;
      padding: 12px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-new88casino__cta-button:hover {
      background-color: #218838;
    }

    /* Two-column grid for payment/support */
    .page-new88casino__grid-2col {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
      margin-top: 40px;
    }

    /* Responsive Adjustments */
    @media (min-width: 768px) {
      .page-new88casino__grid-2col {
        grid-template-columns: repeat(2, 1fr);
        text-align: left; /* Align text left for desktop columns */
      }
      .page-new88casino__grid-2col h2 {
        text-align: left; /* Align heading left for desktop columns */
        display: block;
      }
      .page-new88casino__grid-2col ul {
        margin-left: 0;
      }
    }

    @media (max-width: 768px) {
      .page-new88casino h1 {
        font-size: 1.8em;
      }
      .page-new88casino h2 {
        font-size: 1.5em;
      }
      .page-new88casino h3 {
        font-size: 1.2em;
      }
      .page-new88casino__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-new88casino__floating-btn {
        width: calc(100% - 40px); /* Full width minus padding */
        border-radius: 8px;
        bottom: 15px;
        padding: 15px 10px; /* More padding for easier tap */
      }
    }

    @media (max-width: 480px) {
      .page-new88casino h1 {
        font-size: 1.5em;
      }
      .page-new88casino h2 {
        font-size: 1.3em;
      }
      .page-new88casino__hero p {
        font-size: 1em;
      }
      .page-new88casino__game-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on very small screens */
      }
    }
  