
    /* CSS Reset & Base */
    .page-new88login {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333333;
      background-color: #f5f5f5;
      padding-bottom: 80px; /* Space for floating button */
    }

    /* Fixed Nav Spacing */
    .page-new88login__hero-section {
      padding-top: 10px; /* For fixed header */
    }
    @media (max-width: 768px) {
      .page-new88login__hero-section {
        padding-top: 10px; /* For fixed header on mobile */
      }
    }

    /* Hero Section */
    .page-new88login__hero-section {
      text-align: center;
      background-color: #ffffff;
      padding-bottom: 20px;
      margin-bottom: 20px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .page-new88login__hero-banner {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto 20px auto;
      object-fit: cover;
      border-radius: 8px;
    }

    .page-new88login__hero-content {
      padding: 0 15px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-new88login__hero-title {
      font-size: 2.5em;
      color: #0056b3;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-new88login__hero-description {
      font-size: 1.1em;
      margin-bottom: 25px;
      color: #555555;
    }

    .page-new88login__main-button {
      display: inline-block;
      background-color: #007bff;
      color: #ffffff;
      padding: 14px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
    }

    .page-new88login__main-button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    /* Floating Login Button */
    .page-new88login__floating-login-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #ff4d4d; /* Striking red */
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 6px 15px rgba(255, 77, 77, 0.4);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      white-space: nowrap;
    }

    .page-new88login__floating-login-button:hover {
      background-color: #cc0000;
      transform: translateX(-50%) translateY(-3px);
    }

    /* Section Styling */
    .page-new88login__section {
      background-color: #ffffff;
      padding: 30px 20px;
      margin: 20px auto;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      max-width: 1000px;
    }

    .page-new88login__section-title {
      font-size: 2em;
      color: #0056b3;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-new88login__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: #ff4d4d;
      border-radius: 2px;
    }

    /* Content Area */
    .page-new88login__content-text {
      font-size: 1em;
      margin-bottom: 15px;
      text-align: justify;
    }

    .page-new88login__content-list {
      list-style-type: disc;
      padding-left: 25px;
      margin-bottom: 20px;
    }

    .page-new88login__content-list-item {
      margin-bottom: 10px;
    }

    /* Game Categories / Product Display */
    .page-new88login__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      justify-content: center;
    }

    .page-new88login__game-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

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

    .page-new88login__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      box-sizing: border-box;
    }

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

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

    .page-new88login__game-card-title {
      font-size: 1.3em;
      color: #0056b3;
      margin-bottom: 10px;
      text-decoration: none; /* Ensure link style is clean */
      font-weight: bold;
    }

    .page-new88login__game-card-title a {
      color: #0056b3;
      text-decoration: none;
    }

    .page-new88login__game-card-title a:hover {
      text-decoration: underline;
    }

    .page-new88login__game-card-description {
      font-size: 0.95em;
      color: #666666;
      margin-bottom: 15px;
    }

    .page-new88login__game-card-button {
      display: inline-block;
      background-color: #28a745;
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-size: 1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

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

    /* Game Providers */
    .page-new88login__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      justify-items: center;
      align-items: center;
    }

    .page-new88login__provider-item {
      background-color: #f0f0f0;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
      transition: transform 0.2s ease;
      width: 100%;
      max-width: 150px; /* Max width for logos */
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 80px; /* Consistent height for logo display */
    }

    .page-new88login__provider-item:hover {
      transform: translateY(-3px);
    }

    .page-new88login__provider-logo {
      width: 100%;
      height: auto;
      max-height: 50px; /* Ensure logos don't get too big */
      object-fit: contain;
    }

    /* Promotions Section */
    .page-new88login__promo-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      background-color: #fff8e1; /* Light yellow background */
      border: 2px solid #ffc107; /* Yellow border */
      border-radius: 10px;
      padding: 25px;
      margin-bottom: 25px;
      text-align: center;
    }

    .page-new88login__promo-icon {
      width: 100px;
      height: auto;
      margin-bottom: 15px;
    }

    .page-new88login__promo-title {
      font-size: 1.8em;
      color: #e65100; /* Dark orange */
      margin-bottom: 10px;
    }

    .page-new88login__promo-description {
      font-size: 1.1em;
      color: #424242;
      margin-bottom: 20px;
    }

    .page-new88login__promo-button {
      background-color: #ffc107;
      color: #333333;
      padding: 12px 25px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-new88login__promo-button:hover {
      background-color: #e0a800;
    }

    /* FAQ Section */
    .page-new88login__faq-list {
      list-style: none;
      padding: 0;
    }

    .page-new88login__faq-item {
      background-color: #f9f9f9;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      margin-bottom: 10px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .page-new88login__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #f0f0f0;
      font-weight: bold;
      color: #0056b3;
      font-size: 1.1em;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-new88login__faq-question:hover {
      background-color: #e0e0e0;
    }

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

    .page-new88login__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent */
      transition: transform 0.3s ease;
      color: #ff4d4d;
    }

    .page-new88login__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px; /* Initial padding matches closed state */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555555;
      text-align: justify;
    }

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

    .page-new88login__faq-item.active .page-new88login__faq-toggle {
      transform: rotate(45deg); /* Rotate + to become X or - */
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-new88login__hero-title {
        font-size: 1.8em;
      }

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

      .page-new88login__main-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-new88login__floating-login-button {
        width: calc(100% - 40px);
        max-width: 350px;
        font-size: 1em;
        padding: 12px 20px;
      }

      .page-new88login__section {
        padding: 20px 15px;
        margin: 15px auto;
      }

      .page-new88login__section-title {
        font-size: 1.6em;
        margin-bottom: 25px;
      }

      .page-new88login__game-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
      }

      .page-new88login__game-card-image-wrapper {
        height: 180px;
      }

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

      .page-new88login__provider-item {
        max-width: 120px;
        height: 70px;
      }

      .page-new88login__promo-title {
        font-size: 1.5em;
      }

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

      .page-new88login__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }

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

    /* Image responsive styles for all images and their containers */
    .page-new88login img {
      max-width: 100%;
      height: auto;
      display: block; /* To remove extra space below image */
    }
    .page-new88login .page-new88login__hero-banner,
    .page-new88login .page-new88login__game-card-image-wrapper,
    .page-new88login .page-new88login__provider-item,
    .page-new88login .page-new88login__promo-icon {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }
    @media (max-width: 768px) {
      .page-new88login img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-new88login .page-new88login__hero-banner,
      .page-new88login .page-new88login__game-card-image-wrapper,
      .page-new88login .page-new88login__provider-item,
      .page-new88login .page-new88login__promo-icon {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  