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

    .page-fly88hcom__hero-section {
      position: relative;
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
      color: #fff;
      text-align: center;
      padding: 10px 20px 60px;
      overflow: hidden;
      border-bottom-left-radius: 30px;
      border-bottom-right-radius: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-fly88hcom__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-fly88hcom__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
      padding-top: 20px;
    }

    .page-fly88hcom__hero-title {
      font-size: 2.5em;
      margin-bottom: 10px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      color: #fff;
    }

    .page-fly88hcom__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-fly88hcom__cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-fly88hcom__cta-button {
      background-color: #ffcc00;
      color: #333;
      padding: 12px 25px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      display: inline-block;
      border: none;
      cursor: pointer;
    }

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

    .page-fly88hcom__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-fly88hcom__floating-button {
      background-color: #ff4d4d;
      color: #fff;
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-fly88hcom__floating-button--login {
      background-color: #4CAF50;
    }

    .page-fly88hcom__floating-button:hover {
      transform: scale(1.05);
      opacity: 0.9;
    }

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

    .page-fly88hcom__section-title {
      font-size: 2em;
      color: #1a2a6c;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
    }

    .page-fly88hcom__section-title::after {
      content: '';
      width: 60px;
      height: 4px;
      background-color: #fdbb2d;
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
    }

    .page-fly88hcom__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      justify-content: center;
      margin-top: 30px;
    }

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

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

    .page-fly88hcom__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid #eee;
    }

    .page-fly88hcom__game-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 100%;
    }

    .page-fly88hcom__game-title {
      font-size: 1.3em;
      color: #1a2a6c;
      margin-bottom: 10px;
    }

    .page-fly88hcom__game-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
    }

    .page-fly88hcom__game-button {
      background-color: #fdbb2d;
      color: #333;
      padding: 10px 20px;
      border-radius: 20px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      display: inline-block;
      width: fit-content;
      margin-top: auto;
    }

    .page-fly88hcom__game-button:hover {
      background-color: #e6a800;
    }

    .page-fly88hcom__promotion-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .page-fly88hcom__promotion-item {
      background-color: #fdfdfd;
      border-left: 5px solid #ffcc00;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-fly88hcom__promotion-title {
      color: #1a2a6c;
      font-size: 1.2em;
      margin-bottom: 10px;
    }

    .page-fly88hcom__promotion-description {
      color: #555;
      font-size: 0.9em;
    }

    .page-fly88hcom__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-content: center;
      margin-top: 30px;
    }

    .page-fly88hcom__provider-item {
      text-align: center;
      padding: 15px;
      background-color: #f9f9f9;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-fly88hcom__provider-image {
      max-width: 100%;
      height: auto;
      max-height: 80px;
      object-fit: contain;
      margin-bottom: 10px;
    }

    .page-fly88hcom__provider-name {
      font-weight: bold;
      color: #333;
      font-size: 0.95em;
    }

    .page-fly88hcom__payment-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 30px;
    }

    .page-fly88hcom__payment-item {
      background-color: #e8f5e9;
      color: #2e7d32;
      padding: 10px 20px;
      border-radius: 25px;
      font-weight: bold;
      font-size: 0.9em;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
    }

    .page-fly88hcom__faq-container {
      margin-top: 30px;
    }

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

    .page-fly88hcom__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #e0f2f7;
      color: #1a2a6c;
      font-weight: bold;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-fly88hcom__faq-question:hover {
      background-color: #cce9f2;
    }

    .page-fly88hcom__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #1a2a6c;
      pointer-events: none;
    }

    .page-fly88hcom__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none;
      transition: transform 0.3s ease;
      color: #1a2a6c;
    }

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

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

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

    .page-fly88hcom__social-media {
      text-align: center;
      margin-top: 40px;
    }

    .page-fly88hcom__social-icon-list {
      list-style: none;
      padding: 0;
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .page-fly88hcom__social-icon-item {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: #eee;
      font-size: 1.8em;
      color: #333;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
    }

    .page-fly88hcom__social-icon-item:hover {
      transform: translateY(-3px);
      background-color: #ddd;
    }

    .page-fly88hcom__social-icon-item img {
      max-width: 100%;
      height: auto;
      border-radius: 50%;
    }

    @media (max-width: 768px) {
      .page-fly88hcom__hero-title {
        font-size: 2em;
      }

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

      .page-fly88hcom__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-fly88hcom__cta-button {
        width: 80%;
        margin: 0 auto;
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-fly88hcom__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        justify-content: space-around;
        bottom: 15px;
      }

      .page-fly88hcom__floating-button {
        flex: 1;
        margin: 0 5px;
        padding: 8px 15px;
        font-size: 0.9em;
      }

      .page-fly88hcom__section {
        padding: 25px 15px;
        margin: 15px auto;
      }

      .page-fly88hcom__section-title {
        font-size: 1.7em;
      }

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

      .page-fly88hcom__game-image {
        height: 180px;
      }

      .page-fly88hcom__promotion-list,
      .page-fly88hcom__provider-grid {
        grid-template-columns: 1fr;
        gap: 15px;
      }

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

      .page-fly88hcom__payment-list {
        padding: 0 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        gap: 10px;
      }

      .page-fly88hcom__faq-question {
        padding: 12px 15px;
      }

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

      .page-fly88hcom__faq-answer {
        padding: 15px 15px !important;
      }

      .page-fly88hcom__social-icon-list {
        gap: 15px;
      }

      .page-fly88hcom__social-icon-item {
        width: 45px;
        height: 45px;
      }
    }

    @media (max-width: 480px) {
      .page-fly88hcom__hero-title {
        font-size: 1.8em;
      }

      .page-fly88hcom__floating-button {
        font-size: 0.8em;
        padding: 8px 10px;
      }

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

      .page-fly88hcom__game-title {
        font-size: 1.1em;
      }

      .page-fly88hcom__game-description {
        font-size: 0.85em;
      }

      .page-fly88hcom__payment-item {
        padding: 8px 15px;
        font-size: 0.8em;
      }
    }
  