
    .page-abch88 {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f0f2f5;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-abch88__header-brand {
      text-align: center;
      padding: 15px 0;
      background-color: #2c3e50;
      color: #fff;
      margin-bottom: 20px;
      border-bottom: 3px solid #e74c3c;
    }

    .page-abch88__header-brand h1 {
      margin: 0;
      font-size: 2.2em;
      font-weight: bold;
      color: #f39c12; /* Brand color */
      text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }

    .page-abch88__hero-section {
      padding: 10px 0 40px;
      text-align: center;
      background: linear-gradient(135deg, #2c3e50, #1a252f);
      color: #fff;
      margin-bottom: 30px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

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

    .page-abch88__hero-content h2 {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: #f39c12;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    }

    .page-abch88__hero-content p {
      font-size: 1.1em;
      margin-bottom: 25px;
      color: #ecf0f1;
    }

    .page-abch88__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.4);
      margin-top: 20px;
    }

    .page-abch88__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: #e74c3c;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
      z-index: 1000;
    }

    .page-abch88__button {
      background-color: #f39c12;
      color: #fff;
      padding: 12px 25px;
      border: none;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: inline-block;
      text-align: center;
      box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    }

    .page-abch88__button:hover {
      background-color: #e67e22;
      transform: translateY(-2px);
    }

    .page-abch88__section {
      padding: 40px 15px;
      max-width: 1200px;
      margin: 0 auto 30px;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

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

    .page-abch88__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #e74c3c;
      border-radius: 2px;
    }

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

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

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

    .page-abch88__game-image-container {
      width: 100%;
      height: 200px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-abch88__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .page-abch88__game-card:hover .page-abch88__game-image {
      transform: scale(1.05);
    }

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

    .page-abch88__game-info h3 {
      font-size: 1.5em;
      color: #e74c3c;
      margin-bottom: 10px;
    }

    .page-abch88__game-info p {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
    }

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

    .page-abch88__promotion-item {
      background-color: #f9f9f9;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      padding: 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-abch88__promotion-item h3 {
      color: #e74c3c;
      font-size: 1.6em;
      margin-bottom: 10px;
    }

    .page-abch88__promotion-item p {
      color: #555;
      font-size: 1em;
    }

    .page-abch88__cta-section {
      text-align: center;
      padding: 50px 15px;
      background-color: #2c3e50;
      color: #fff;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .page-abch88__cta-section h2 {
      font-size: 2.5em;
      color: #f39c12;
      margin-bottom: 20px;
    }

    .page-abch88__cta-section p {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-abch88__faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-abch88__faq-item {
      background-color: #f0f2f5;
      border-bottom: 1px solid #ddd;
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

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

    .page-abch88__faq-question:hover {
      background-color: #c0392b;
    }

    .page-abch88__faq-question h3 {
      margin: 0;
      color: #fff;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

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

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

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

    .page-abch88__faq-item.active .page-abch88__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 20px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-abch88__header-brand h1 {
        font-size: 1.8em;
      }

      .page-abch88__hero-content h2 {
        font-size: 2em;
      }

      .page-abch88__hero-content p {
        font-size: 1em;
      }

      .page-abch88__button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-abch88__section {
        padding: 25px 10px;
        margin-bottom: 20px;
      }

      .page-abch88__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
      }

      .page-abch88__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-abch88__game-card {
        max-width: 100%;
      }

      .page-abch88__game-image-container {
        height: 180px;
      }

      .page-abch88__promotion-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-abch88__cta-section {
        padding: 40px 15px;
      }

      .page-abch88__cta-section h2 {
        font-size: 2em;
      }

      .page-abch88__cta-section p {
        font-size: 1em;
      }

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

      .page-abch88__faq-question h3 {
        font-size: 1em;
      }

      .page-abch88__faq-answer {
        padding: 0 15px;
      }

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

      /* List item responsive requirements */
      .page-abch88__game-grid > div,
      .page-abch88__promotion-list > div {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-abch88__game-grid,
      .page-abch88__promotion-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      /* Image responsive requirements */
      .page-abch88__hero-image,
      .page-abch88__game-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-abch88__game-image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-abch88__floating-buttons {
        flex-direction: column;
        gap: 8px;
        padding: 8px 0;
      }
      .page-abch88__button {
        width: 80%;
        margin: 0 auto;
      }
      .page-abch88 {
        padding-bottom: 120px; /* Adjust for stacked buttons */
      }
    }
  