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

    .page-a-888__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-a-888__hero-section {
      background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
      color: #fff;
      text-align: center;
      padding: 10px 20px 60px 20px; /* Add a small decorative top padding */
      border-radius: 0 0 20px 20px;
      position: relative;
      overflow: hidden;
    }

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

    .page-a-888__hero-content {
      position: relative;
      z-index: 1;
    }

    .page-a-888__hero-title {
      font-size: 2.8em;
      margin-bottom: 10px;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-a-888__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-a-888__cta-button {
      display: inline-block;
      background-color: #007bff;
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-a-888__cta-button:hover {
      background-color: #0056b3;
    }

    .page-a-888__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-a-888__section--dark {
      background-color: #e8e8e8;
    }

    .page-a-888__section-title {
      font-size: 2.2em;
      color: #333;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-a-888__text-content {
      font-size: 1.1em;
      color: #555;
      max-width: 800px;
      margin: 0 auto 30px auto;
    }

    .page-a-888__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-a-888__game-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-a-888__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-a-888__game-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #f0f0f0;
    }

    .page-a-888__game-image {
      max-width: 100%;
      height: auto;
      object-fit: cover;
    }

    .page-a-888__game-title {
      font-size: 1.5em;
      color: #333;
      padding: 15px 10px 10px;
      margin: 0;
    }

    .page-a-888__game-description {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px 20px;
    }

    .page-a-888__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-a-888__promo-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 25px;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-a-888__promo-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-a-888__promo-title {
      font-size: 1.8em;
      color: #007bff;
      margin-bottom: 10px;
    }

    .page-a-888__promo-description {
      font-size: 1em;
      color: #555;
      margin-bottom: 20px;
    }

    .page-a-888__feature-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      list-style: none;
      padding: 0;
      margin-top: 30px;
    }

    .page-a-888__feature-item {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      padding: 25px;
      text-align: center;
      flex: 1 1 calc(33% - 40px);
      max-width: calc(33% - 40px);
      box-sizing: border-box;
      transition: transform 0.3s ease;
    }

    .page-a-888__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-a-888__feature-icon {
      margin-bottom: 15px;
    }

    .page-a-888__feature-icon img {
      max-width: 100px;
      height: auto;
    }

    .page-a-888__feature-title {
      font-size: 1.3em;
      color: #333;
      margin-bottom: 10px;
    }

    .page-a-888__feature-description {
      font-size: 0.95em;
      color: #666;
    }

    .page-a-888__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-a-888__payment-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 15px 25px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease;
      min-width: 120px;
      box-sizing: border-box;
    }

    .page-a-888__payment-item:hover {
      transform: translateY(-3px);
    }

    .page-a-888__payment-logo {
      max-width: 80px;
      height: auto;
      margin-bottom: 5px;
    }

    .page-a-888__payment-name {
      font-size: 0.9em;
      color: #333;
      font-weight: bold;
    }

    .page-a-888__faq-section {
      background-color: #f0f0f0;
    }

    .page-a-888__faq-list {
      list-style: none;
      padding: 0;
      max-width: 800px;
      margin: 40px auto 0 auto;
    }

    .page-a-888__faq-item {
      background-color: #fff;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

    .page-a-888__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #FFD700;
      color: #333;
      font-weight: bold;
      font-size: 1.1em;
      border-radius: 8px;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-a-888__faq-question:hover {
      background-color: #e0c240;
    }

    .page-a-888__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #333;
      pointer-events: none; /* Prevent h3 from blocking click event */
      flex-grow: 1;
      text-align: left;
    }

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

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

    .page-a-888__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;
      color: #555;
      text-align: left;
      font-size: 1em;
    }

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

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

    .page-a-888__floating-button {
      background-color: #007bff;
      color: #fff;
      padding: 12px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease;
      text-align: center;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-a-888__floating-button--register {
      background-color: #28a745;
    }

    .page-a-888__floating-button--register:hover {
      background-color: #218838;
    }

    .page-a-888__floating-button--login {
      background-color: #007bff;
    }

    .page-a-888__floating-button--login:hover {
      background-color: #0056b3;
    }

    @media (max-width: 768px) {
      .page-a-888__container {
        padding: 15px;
      }

      .page-a-888__hero-title {
        font-size: 2em;
      }

      .page-a-888__hero-subtitle {
        font-size: 1.1em;
      }

      .page-a-888__section-title {
        font-size: 1.8em;
      }

      .page-a-888__text-content {
        font-size: 1em;
      }

      .page-a-888__game-grid, .page-a-888__promo-grid {
        grid-template-columns: 1fr;
      }

      .page-a-888__feature-list {
        flex-direction: column;
      }

      .page-a-888__feature-item {
        flex: 1 1 100% !important;
        max-width: 100% !important;
        padding: 20px !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-a-888__faq-question {
        font-size: 1em;
        padding: 15px 20px;
      }

      .page-a-888__faq-question h3 {
        font-size: 1em;
      }

      .page-a-888__faq-answer {
        padding: 0 20px;
      }

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

      .page-a-888__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row;
        width: calc(100% - 30px);
        justify-content: space-around;
      }

      .page-a-888__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9em;
      }

      .page-a-888__payment-item {
        min-width: unset;
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
      }

      .page-a-888__game-image, .page-a-888__promo-image, .page-a-888__feature-icon img, .page-a-888__payment-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-a-888__game-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

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

      .page-a-888__hero-subtitle {
        font-size: 1em;
      }

      .page-a-888__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-a-888__section-title {
        font-size: 1.5em;
      }

      .page-a-888__floating-buttons {
        flex-direction: column;
        align-items: stretch;
      }

      .page-a-888__floating-button {
        width: 100%;
      }

      .page-a-888__payment-item {
        flex: 1 1 calc(100% - 20px);
        max-width: calc(100% - 20px);
      }
    }
  