
    .page-88goo-com {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      background-color: #f0f2f5;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-88goo-com__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      border-radius: 8px;
      margin-bottom: 20px;
    }

    .page-88goo-com__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
    }

    .page-88goo-com__heading {
      text-align: center;
      color: #2c3e50;
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-88goo-com__heading--light {
      color: #ecf0f1;
    }

    .page-88goo-com__sub-heading {
      text-align: center;
      color: #34495e;
      margin-bottom: 20px;
      font-size: 1.8em;
    }

    .page-88goo-com__text-center {
      text-align: center;
    }

    .page-88goo-com__hero-section {
      position: relative;
      background-color: #1a1a1a;
      color: #fff;
      text-align: center;
      padding: 10px 20px 80px;
      overflow: hidden;
      border-radius: 0 0 15px 15px;
    }

    .page-88goo-com__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
      z-index: 0;
    }

    .page-88goo-com__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-88goo-com__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: #f39c12; /* Brand accent color */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-88goo-com__hero-slogan {
      font-size: 1.5em;
      margin-bottom: 30px;
      font-weight: 300;
    }

    .page-88goo-com__cta-button {
      background-color: #e74c3c;
      color: #fff;
      border: none;
      padding: 15px 30px;
      font-size: 1.2em;
      border-radius: 50px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      display: inline-block;
      margin: 10px;
      text-decoration: none;
      font-weight: bold;
    }

    .page-88goo-com__cta-button:hover {
      background-color: #c0392b;
    }

    .page-88goo-com__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: 90%;
      max-width: 400px;
      justify-content: center;
    }

    .page-88goo-com__floating-button {
      background-color: #f39c12;
      color: #fff;
      border: none;
      padding: 12px 25px;
      font-size: 1.1em;
      border-radius: 30px;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      flex: 1;
      text-align: center;
      font-weight: bold;
    }

    .page-88goo-com__floating-button:hover {
      background-color: #e67e22;
      transform: translateY(-2px);
    }

    .page-88goo-com__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

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

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

    .page-88goo-com__product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

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

    .page-88goo-com__product-title {
      font-size: 1.5em;
      color: #2c3e50;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-88goo-com__product-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
    }

    .page-88goo-com__promotion-item {
      background-color: #fdf3e6;
      border: 1px solid #f39c12;
      border-radius: 8px;
      padding: 20px;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .page-88goo-com__promotion-icon {
      width: 80px;
      height: 80px;
      object-fit: contain;
      border-radius: 5px;
    }

    .page-88goo-com__promotion-details {
      flex-grow: 1;
    }

    .page-88goo-com__promotion-title {
      font-size: 1.4em;
      color: #e74c3c;
      margin-bottom: 5px;
      font-weight: bold;
    }

    .page-88goo-com__promotion-description {
      font-size: 1em;
      color: #666;
    }

    .page-88goo-com__news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    .page-88goo-com__news-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-88goo-com__news-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .page-88goo-com__news-content {
      padding: 20px;
    }

    .page-88goo-com__news-title {
      font-size: 1.3em;
      color: #2c3e50;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-88goo-com__news-date {
      font-size: 0.85em;
      color: #7f8c8d;
      margin-bottom: 10px;
    }

    .page-88goo-com__news-excerpt {
      font-size: 0.95em;
      color: #555;
    }

    .page-88goo-com__payment-grid,
    .page-88goo-com__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-88goo-com__logo-card {
      background-color: #fff;
      border: 1px solid #eee;
      border-radius: 8px;
      padding: 15px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100px;
      width: 100%;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease;
      text-decoration: none;
    }

    .page-88goo-com__logo-card:hover {
      transform: translateY(-3px);
    }

    .page-88goo-com__logo-image {
      max-width: 80px;
      max-height: 60px;
      object-fit: contain;
      margin-bottom: 5px;
    }

    .page-88goo-com__logo-name {
      font-size: 0.9em;
      color: #34495e;
      font-weight: bold;
      text-align: center;
    }

    .page-88goo-com__social-links {
      display: flex;
      justify-content: center;
      gap: 25px;
      margin-top: 30px;
      flex-wrap: wrap;
    }

    .page-88goo-com__social-link {
      color: #34495e;
      font-size: 1.1em;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 15px;
      border: 1px solid #ccc;
      border-radius: 25px;
      transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    }

    .page-88goo-com__social-link:hover {
      background-color: #3498db;
      color: #fff;
      border-color: #3498db;
    }

    .page-88goo-com__social-icon {
      width: 24px;
      height: 24px;
      object-fit: contain;
    }

    .page-88goo-com__faq-container {
      margin-top: 40px;
    }

    .page-88goo-com__faq-item {
      background-color: #f9f9f9;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      transition: box-shadow 0.3s ease;
    }

    .page-88goo-com__faq-item:hover {
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .page-88goo-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #ecf0f1;
      color: #2c3e50;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-88goo-com__faq-question:hover {
      background-color: #e0e6e9;
    }

    .page-88goo-com__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #2c3e50;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-88goo-com__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle icon from blocking click */
      transition: transform 0.3s ease;
      color: #f39c12;
    }

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

    .page-88goo-com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      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;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-88goo-com__section {
        padding: 20px 15px;
      }

      .page-88goo-com__heading {
        font-size: 2em;
      }

      .page-88goo-com__sub-heading {
        font-size: 1.4em;
      }

      .page-88goo-com__hero-title {
        font-size: 2.5em;
      }

      .page-88goo-com__hero-slogan {
        font-size: 1.2em;
      }

      .page-88goo-com__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-88goo-com__floating-buttons {
        width: 95%;
        gap: 10px;
        bottom: 15px;
      }

      .page-88goo-com__floating-button {
        padding: 10px 15px;
        font-size: 0.95em;
      }

      .page-88goo-com__product-grid,
      .page-88goo-com__news-grid {
        grid-template-columns: 1fr;
      }

      .page-88goo-com__promotion-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
      }

      .page-88goo-com__promotion-icon {
        width: 60px;
        height: 60px;
      }

      .page-88goo-com__promotion-title {
        font-size: 1.2em;
      }

      .page-88goo-com__promotion-description {
        font-size: 0.9em;
      }

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

      .page-88goo-com__logo-card {
        height: 80px;
      }

      .page-88goo-com__logo-image {
        max-width: 60px;
        max-height: 40px;
      }

      .page-88goo-com__social-links {
        gap: 15px;
      }

      .page-88goo-com__social-link {
        font-size: 0.95em;
        padding: 6px 12px;
      }

      .page-88goo-com__faq-question,
      .page-88goo-com__faq-question h3 {
        font-size: 1em;
        padding: 15px;
      }

      .page-88goo-com__faq-answer {
        padding: 0 15px;
      }

      .page-88goo-com__faq-item.active .page-88goo-com__faq-answer {
        padding: 15px 15px !important;
      }

      /* List item specific responsive rules */
      .page-88goo-com__product-card,
      .page-88goo-com__news-card,
      .page-88goo-com__logo-card,
      .page-88goo-com__promotion-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-88goo-com__product-grid,
      .page-88goo-com__news-grid,
      .page-88goo-com__payment-grid,
      .page-88goo-com__provider-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-88goo-com__product-description,
      .page-88goo-com__news-excerpt,
      .page-88goo-com__promotion-description,
      .page-88goo-com__faq-answer {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-88goo-com__hero-title {
        font-size: 2em;
      }

      .page-88goo-com__hero-slogan {
        font-size: 1em;
      }

      .page-88goo-com__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
    }
  