
    .page-a-888 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #f0f0f0;
      background-color: #1a1a2e;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-a-888__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

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

    .page-a-888__section-title {
      text-align: center;
      color: #e94560;
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-a-888__section-subtitle {
      text-align: center;
      color: #0f3460;
      margin-bottom: 20px;
      font-size: 1.8em;
      font-weight: 600;
    }

    .page-a-888__hero-section {
      background-image: url('[GALLERY:hero:1920x1080:gaming,casino,abstract]');
      background-size: cover;
      background-position: center;
      text-align: center;
      padding: 100px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 60vh;
      position: relative;
      padding-top: 10px; /* Small top padding for aesthetic spacing, body handles main offset */
    }

    .page-a-888__hero-title {
      font-size: 3.5em;
      color: #fff;
      margin-bottom: 20px;
      font-weight: 900;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    }

    .page-a-888__hero-description {
      font-size: 1.4em;
      color: #fff;
      max-width: 800px;
      margin: 0 auto 30px auto;
      text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
    }

    .page-a-888__cta-button {
      background-color: #e94560;
      color: #fff;
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: 700;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: inline-block;
      border: none;
      cursor: pointer;
    }

    .page-a-888__cta-button:hover {
      background-color: #0f3460;
      transform: translateY(-3px);
    }

    .page-a-888__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 15px 10px;
      background-color: rgba(22, 33, 62, 0.95);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
    }

    .page-a-888__floating-button {
      flex: 1;
      margin: 0 5px;
      padding: 12px 15px;
      border-radius: 25px;
      font-size: 1.1em;
      font-weight: 600;
      text-align: center;
      color: #fff;
      border: none;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

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

    .page-a-888__floating-button--register:hover {
      background-color: #c43750;
      transform: translateY(-2px);
    }

    .page-a-888__floating-button--login {
      background-color: #0f3460;
    }

    .page-a-888__floating-button--login:hover {
      background-color: #0a2340;
      transform: translateY(-2px);
    }

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

    .page-a-888__product-item {
      background-color: #0f3460;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      height: 100%;
      box-sizing: border-box;
    }

    .page-a-888__product-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
    }

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

    .page-a-888__product-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-bottom: 3px solid #e94560;
      max-width: 100%;
    }

    .page-a-888__product-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 100%;
      box-sizing: border-box;
    }

    .page-a-888__product-title {
      font-size: 1.6em;
      color: #e94560;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .page-a-888__product-description {
      font-size: 1em;
      color: #ccc;
      margin-bottom: 20px;
      word-wrap: break-word;
    }

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

    .page-a-888__promo-item {
      background-color: #0f3460;
      border-left: 5px solid #e94560;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-a-888__promo-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

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

    .page-a-888__promo-description {
      color: #ccc;
      font-size: 1em;
      word-wrap: break-word;
    }

    .page-a-888__partners-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
      justify-items: center;
      align-items: center;
    }

    .page-a-888__partner-logo-wrapper {
      background-color: #0f3460;
      padding: 15px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      width: 100%;
      height: 100px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-sizing: border-box;
      max-width: 200px;
    }

    .page-a-888__partner-logo {
      max-width: 100%;
      max-height: 70px;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: filter 0.3s ease, opacity 0.3s ease;
      width: 100%;
      height: auto;
    }

    .page-a-888__partner-logo:hover {
      filter: grayscale(0%);
      opacity: 1;
    }

    .page-a-888__faq-list {
      margin-top: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-a-888__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #0f3460;
      color: #e94560;
      font-size: 1.3em;
      font-weight: 600;
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      transition: background-color 0.3s ease;
    }

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

    .page-a-888__faq-question h3 {
      margin: 0;
      color: inherit;
      font-size: inherit;
      font-weight: inherit;
      pointer-events: none; /* Prevent h3 from blocking click event */
      flex-grow: 1;
    }

    .page-a-888__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle 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;
      color: #ccc;
      font-size: 1.1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    .page-a-888__text-content {
      font-size: 1.1em;
      color: #ccc;
      text-align: justify;
    }

    .page-a-888__text-content p {
      margin-bottom: 15px;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-a-888__section {
        padding: 30px 15px;
      }

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

      .page-a-888__hero-section {
        padding: 80px 15px;
        min-height: 50vh;
      }

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

      .page-a-888__hero-description {
        font-size: 1.2em;
      }

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

      .page-a-888__floating-buttons {
        padding: 10px 5px;
      }

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

      .page-a-888__product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-a-888__product-image {
        height: 200px;
      }

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

      .page-a-888__promo-item {
        padding: 20px;
      }

      .page-a-888__promo-title {
        font-size: 1.3em;
      }

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

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

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

      .page-a-888__partner-logo-wrapper {
        width: 100% !important;
        max-width: 150px !important;
        height: 80px;
        box-sizing: border-box !important;
      }
      .page-a-888__partner-logo {
        max-width: 90% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

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

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

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

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