
    .page-w88 {
      font-family: Arial, sans-serif;
      color: #333;
      background-color: #f8f8f8;
      line-height: 1.6;
    }

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

    .page-w88__section-title {
      font-size: 2.5em;
      color: #1a1a1a;
      text-align: center;
      margin-bottom: 30px;
      padding-top: 20px;
      font-weight: bold;
    }

    .page-w88__section-description {
      font-size: 1.1em;
      color: #555;
      text-align: center;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-w88__btn {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      cursor: pointer;
      border: none;
      transition: background-color 0.3s ease, color 0.3s ease;
      font-size: 1em;
    }

    .page-w88__btn--primary {
      background-color: #e44d26; /* A vibrant orange/red */
      color: #fff;
    }

    .page-w88__btn--primary:hover {
      background-color: #cc3c1c;
    }

    .page-w88__btn--secondary {
      background-color: #333;
      color: #fff;
      margin-left: 15px;
    }

    .page-w88__btn--secondary:hover {
      background-color: #555;
    }

    /* Hero Section */
    .page-w88__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('[GALLERY:hero_bg:1920x1080:gaming_platform,dark_bg,w88]') no-repeat center center/cover;
      color: #fff;
      text-align: center;
      padding: 80px 15px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 600px;
      position: relative;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-w88__hero-content {
      max-width: 900px;
      z-index: 1;
    }

    .page-w88__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      line-height: 1.2;
      font-weight: bold;
      color: #fff;
    }

    .page-w88__hero-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      color: #eee;
    }

    .page-w88__hero-buttons {
      margin-top: 30px;
    }

    .page-w88__hero-image-wrapper {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 50%;
      height: auto;
      max-width: 800px;
      z-index: 0;
      display: flex;
      justify-content: center;
      align-items: flex-end;
    }

    .page-w88__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 10px 10px 0 0;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    /* About Section */
    .page-w88__about-section {
      padding: 60px 0;
      background-color: #fff;
    }

    .page-w88__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      text-align: center;
    }

    .page-w88__feature-item {
      background-color: #f0f0f0;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-w88__feature-icon {
      width: 200px;
      height: auto;
      margin-bottom: 20px;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-w88__feature-title {
      font-size: 1.8em;
      color: #1a1a1a;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-w88__feature-text {
      font-size: 1em;
      color: #555;
    }

    /* Game Categories Section */
    .page-w88__games-section {
      padding: 60px 0;
      background-color: #f8f8f8;
    }

    .page-w88__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-w88__game-card {
      background-color: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-w88__game-card:hover {
      transform: translateY(-5px);
    }

    .page-w88__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-w88__game-title {
      font-size: 1.5em;
      color: #1a1a1a;
      margin: 20px 15px 10px;
      font-weight: bold;
    }

    .page-w88__game-text {
      font-size: 0.95em;
      color: #555;
      padding: 0 15px 20px;
    }

    /* Promotions Section */
    .page-w88__promotions-section {
      padding: 60px 0;
      background-color: #fff;
    }

    .page-w88__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
    }

    .page-w88__promo-card {
      background-color: #f0f0f0;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      text-align: center;
      display: flex;
      flex-direction: column;
    }

    .page-w88__promo-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-w88__promo-title {
      font-size: 1.6em;
      color: #1a1a1a;
      margin: 20px 15px 10px;
      font-weight: bold;
    }

    .page-w88__promo-text {
      font-size: 1em;
      color: #555;
      padding: 0 15px 20px;
    }

    .page-w88__promo-cta {
      text-align: center;
    }

    /* Payment Methods Section */
    .page-w88__payments-section,
    .page-w88__providers-section {
      padding: 60px 0;
      background-color: #f8f8f8;
    }

    .page-w88__payment-list,
    .page-w88__provider-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-w88__payment-item,
    .page-w88__provider-item {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      padding: 20px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-width: 180px;
      flex: 1 1 auto;
      max-width: 220px;
      box-sizing: border-box;
    }

    .page-w88__payment-logo,
    .page-w88__provider-logo {
      width: 200px;
      height: 100px;
      object-fit: contain;
      margin-bottom: 10px;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-w88__payment-name,
    .page-w88__provider-name {
      font-weight: bold;
      color: #333;
      font-size: 1.1em;
    }

    /* FAQ Section */
    .page-w88__faq-section {
      padding: 60px 0;
      background-color: #fff;
    }

    .page-w88__faq-list {
      max-width: 900px;
      margin: 0 auto;
    }

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

    .page-w88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #e44d26;
      color: #fff;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease;
    }

    .page-w88__faq-question:hover {
      background-color: #cc3c1c;
    }

    .page-w88__faq-question-text {
      margin: 0;
      color: #fff;
      pointer-events: none;
      flex-grow: 1;
      font-size: 1em;
    }

    .page-w88__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none;
    }

    .page-w88__faq-item.active .page-w88__faq-toggle {
      transform: rotate(45deg);
    }

    .page-w88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #fff;
      color: #333;
    }

    .page-w88__faq-item.active .page-w88__faq-answer {
      max-height: 2000px !important;
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-w88__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }

    /* Final Call to Action */
    .page-w88__cta-final-section {
      padding: 60px 0;
      background-color: #e44d26;
      color: #fff;
      text-align: center;
    }

    .page-w88__cta-final-section .page-w88__section-title {
      color: #fff;
    }

    .page-w88__cta-final-section .page-w88__section-description {
      color: #eee;
    }

    .page-w88__cta-buttons {
      margin-top: 30px;
    }

    .page-w88__cta-buttons .page-w88__btn--primary {
      background-color: #fff;
      color: #e44d26;
    }

    .page-w88__cta-buttons .page-w88__btn--primary:hover {
      background-color: #f0f0f0;
      color: #cc3c1c;
    }

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

    .page-w88__btn--floating {
      width: 120px;
      text-align: center;
      padding: 10px 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .page-w88__btn--register {
      background-color: #28a745;
      color: #fff;
    }
    .page-w88__btn--register:hover {
      background-color: #218838;
    }

    .page-w88__btn--login {
      background-color: #007bff;
      color: #fff;
    }
    .page-w88__btn--login:hover {
      background-color: #0056b3;
    }


    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-w88__hero-title {
        font-size: 3em;
      }
      .page-w88__hero-description {
        font-size: 1.2em;
      }
      .page-w88__hero-image-wrapper {
        width: 60%;
      }
    }

    @media (max-width: 768px) {
      .page-w88__section-title {
        font-size: 2em;
        margin-bottom: 20px;
      }
      .page-w88__section-description {
        font-size: 1em;
        margin-bottom: 30px;
      }
      .page-w88__hero-section {
        padding: 60px 15px 200px;
        min-height: 500px;
      }
      .page-w88__hero-title {
        font-size: 2.2em;
      }
      .page-w88__hero-description {
        font-size: 1em;
      }
      .page-w88__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-w88__btn--secondary {
        margin-left: 0;
      }
      .page-w88__hero-image-wrapper {
        width: 80%;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
      }

      /* List items responsive requirement */
      .page-w88__payment-list,
      .page-w88__provider-list {
        flex-direction: column;
        align-items: center;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-w88__payment-item,
      .page-w88__provider-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        padding: 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-w88__feature-item,
      .page-w88__game-card,
      .page-w88__promo-card {
        margin-bottom: 20px;
      }

      .page-w88__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-w88__faq-answer {
        padding: 0 20px;
      }

      .page-w88__faq-item.active .page-w88__faq-answer {
        padding: 15px 20px !important;
      }

      .page-w88__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row;
        gap: 8px;
      }
      .page-w88__btn--floating {
        width: 100px;
        padding: 8px 10px;
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
      .page-w88__hero-section {
        padding: 40px 10px 150px;
      }
      .page-w88__hero-title {
        font-size: 1.8em;
      }
      .page-w88__hero-description {
        font-size: 0.9em;
      }
      .page-w88__btn {
        padding: 10px 20px;
        font-size: 0.9em;
      }
      .page-w88__floating-buttons {
        flex-direction: row;
        gap: 5px;
        right: 10px;
        bottom: 10px;
      }
      .page-w88__btn--floating {
        width: 90px;
        padding: 7px 8px;
        font-size: 0.8em;
      }
    }
  