
    /* Base styles for the page */
    .page-new88login {
      font-family: 'Helvetica Neue', Arial, sans-serif;
      color: #f0f0f0;
      background-color: #1a1a1a;
      line-height: 1.6;
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

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

    .page-new88login__section {
      padding: 60px 0;
      text-align: center;
      position: relative;
    }

    .page-new88login__section--dark {
      background-color: #222;
    }

    .page-new88login__section-title {
      font-size: 2.5em;
      color: #ffcc00; /* Gold/Yellow for highlights */
      margin-bottom: 40px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-new88login__section-subtitle {
      font-size: 1.2em;
      color: #ccc;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Fixed Header Spacing */
    .page-new88login__hero-section {
      padding-top: 120px; /* Desktop spacing for fixed header */
      background-color: #1a1a1a; /* Ensure background for visual consistency */
    }

    /* Hero Section */
    .page-new88login__hero-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 40px 0;
    }

    .page-new88login__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin-bottom: 20px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    .page-new88login__hero-image img {
      width: 100%;
      height: auto;
      display: block;
      max-width: 100%; /* Ensure image doesn't overflow */
    }

    .page-new88login__hero-title {
      font-size: 3em;
      color: #ffcc00;
      margin-bottom: 15px;
      font-weight: 900;
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    }

    .page-new88login__hero-description {
      font-size: 1.5em;
      color: #e0e0e0;
      margin-bottom: 30px;
      max-width: 900px;
      line-height: 1.4;
    }

    .page-new88login__hero-cta {
      display: inline-block;
      background-color: #e74c3c; /* Red for CTA */
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.3em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

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

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

    .page-new88login__floating-button {
      background-color: #27ae60; /* Green for Register */
      color: #fff;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-align: center;
    }

    .page-new88login__floating-button--login {
      background-color: #3498db; /* Blue for Login */
    }

    .page-new88login__floating-button:hover {
      transform: translateY(-3px);
    }

    .page-new88login__floating-button--login:hover {
      background-color: #2980b9;
    }

    .page-new88login__floating-button--register:hover {
      background-color: #229954;
    }

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

    .page-new88login__game-card {
      background-color: #2c2c2c;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between; /* Ensures footer is at bottom */
    }

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

    .page-new88login__game-card-image {
      width: 100%;
      max-width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #333;
    }

    .page-new88login__game-card-image img {
      width: 100%;
      height: auto;
      min-height: 200px; /* Ensure image covers the area */
      object-fit: cover; /* Cover the area without stretching */
      max-width: 100%;
      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.5em;
      color: #ffcc00;
      margin-bottom: 10px;
      font-weight: bold;
    }

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

    .page-new88login__game-card-link {
      display: inline-block;
      background-color: #e74c3c;
      color: #fff;
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-size: 1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      margin-top: auto; /* Push to bottom */
    }

    .page-new88login__game-card-link:hover {
      background-color: #c0392b;
    }

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

    .page-new88login__promo-card {
      background-color: #2c2c2c;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

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

    .page-new88login__promo-card-image {
      width: 100%;
      max-width: 100%;
      height: 220px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #333;
    }

    .page-new88login__promo-card-image img {
      width: 100%;
      height: auto;
      min-height: 220px;
      object-fit: cover;
      max-width: 100%;
      display: block;
    }

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

    .page-new88login__promo-card-title {
      font-size: 1.4em;
      color: #ffcc00;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-new88login__promo-card-description {
      font-size: 0.9em;
      color: #ccc;
      margin-bottom: 15px;
    }

    .page-new88login__promo-card-link {
      display: inline-block;
      background-color: #3498db;
      color: #fff;
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-size: 0.95em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      margin-top: auto;
    }

    .page-new88login__promo-card-link:hover {
      background-color: #2980b9;
    }

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

    .page-new88login__feature-item {
      background-color: #2c2c2c;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
    }

    .page-new88login__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-new88login__feature-icon {
      width: 100px; /* Larger icon size */
      height: 100px;
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      border-radius: 50%; /* Make it round */
      background-color: #ffcc00; /* Background for icon */
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .page-new88login__feature-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        max-width: 100%;
        display: block;
    }

    .page-new88login__feature-title {
      font-size: 1.3em;
      color: #ffcc00;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-new88login__feature-description {
      font-size: 0.95em;
      color: #ccc;
    }

    /* Game Providers */
    .page-new88login__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
      justify-items: center; /* Center items in grid */
    }

    .page-new88login__provider-logo {
      background-color: #2c2c2c;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 100%;
      height: 100px; /* Fixed height for logos */
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      max-width: 200px; /* Max width for individual logo */
    }

    .page-new88login__provider-logo:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    }

    .page-new88login__provider-logo img {
      width: 100%;
      height: auto;
      max-width: 100%;
      max-height: 100%;
      object-fit: contain; /* Ensure logo fits without cropping */
      display: block;
    }

    /* FAQ Section */
    .page-new88login__faq-list {
      margin-top: 40px;
      text-align: left;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-new88login__faq-item {
      background-color: #2c2c2c;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

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

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

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

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

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

    .page-new88login__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding 0, will be 20px on open */
      color: #ccc;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    .page-new88login__faq-answer p {
        margin-bottom: 10px;
    }
    .page-new88login__faq-answer p:last-child {
        margin-bottom: 0;
    }


    /* Call to Action Section */
    .page-new88login__cta-section {
      background-color: #e74c3c; /* Red background for strong CTA */
      padding: 80px 0;
      color: #fff;
    }

    .page-new88login__cta-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-new88login__cta-description {
      font-size: 1.4em;
      margin-bottom: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-new88login__cta-button {
      display: inline-block;
      background-color: #ffcc00;
      color: #1a1a1a;
      padding: 18px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.5em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    .page-new88login__cta-button:hover {
      background-color: #e6b800;
      transform: translateY(-5px);
    }


    /* Responsive Design */
    @media (max-width: 768px) {
      .page-new88login__hero-section {
        padding-top: 100px; /* Mobile spacing for fixed header */
      }

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

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

      .page-new88login__hero-cta {
        font-size: 1.1em;
        padding: 12px 25px;
      }

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

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

      .page-new88login__game-categories,
      .page-new88login__promotions-grid,
      .page-new88login__features-grid,
      .page-new88login__providers-grid {
        grid-template-columns: 1fr;
      }

      .page-new88login__game-card-image,
      .page-new88login__game-card-image img,
      .page-new88login__promo-card-image,
      .page-new88login__promo-card-image img {
        height: 180px;
        min-height: 180px;
      }

      .page-new88login__provider-logo {
        height: 80px;
      }

      .page-new88login__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Horizontal for mobile */
        width: calc(100% - 30px);
        justify-content: space-around;
      }

      .page-new88login__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 1em;
      }

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

      .page-new88login__cta-description {
        font-size: 1.1em;
      }

      .page-new88login__cta-button {
        font-size: 1.2em;
        padding: 15px 30px;
      }

      /* Image responsive optimization for mobile */
      .page-new88login__hero-image img,
      .page-new88login__game-card-image img,
      .page-new88login__promo-card-image img,
      .page-new88login__feature-icon img,
      .page-new88login__provider-logo img {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-new88login__hero-image,
      .page-new88login__game-card-image,
      .page-new88login__promo-card-image,
      .page-new88login__feature-icon,
      .page-new88login__provider-logo {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-new88login__hero-title {
        font-size: 1.8em;
      }
      .page-new88login__hero-description {
        font-size: 1em;
      }
      .page-new88login__hero-cta {
        font-size: 1em;
        padding: 10px 20px;
      }
      .page-new88login__section-title {
        font-size: 1.8em;
      }
      .page-new88login__floating-buttons {
        flex-direction: column; /* Back to vertical for very small screens */
        width: auto;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        bottom: 10px;
      }
      .page-new88login__floating-button {
        width: 200px; /* Fixed width for small buttons */
      }
    }
  