
    /* Base styles for the page-bcx88us scope */
    .page-bcx88us {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-bottom: 80px; /* Space for the floating button */
    }

    /* General section padding */
    .page-bcx88us__section-title {
      text-align: center;
      font-size: 2.2em;
      color: #0056b3;
      margin-bottom: 40px;
      padding: 0 15px;
    }

    .page-bcx88us__strong-text {
      font-weight: bold;
      color: #0056b3;
    }

    /* Hero Section */
    .page-bcx88us__hero-section {
      position: relative;
      width: 100%;
      background-color: #e0f2f7;
      text-align: center;
      padding: 100px 20px 60px; /* Added padding-top for fixed header */
      box-sizing: border-box;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-bcx88us__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto 30px; /* Centered, text below image */
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      object-fit: cover; /* Ensures image covers area without distortion */
      min-width: 200px; /* Minimum size constraint */
      min-height: 200px; /* Minimum size constraint */
    }

    .page-bcx88us__hero-content {
      max-width: 900px;
      margin: 0 auto;
      z-index: 1;
    }

    .page-bcx88us__hero-title {
      font-size: 2.8em;
      color: #004085;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-bcx88us__hero-description {
      font-size: 1.2em;
      color: #0056b3;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-bcx88us__hero-cta-button {
      display: inline-block;
      background-color: #ff6f00;
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .page-bcx88us__hero-cta-button:hover {
      background-color: #e65100;
      transform: translateY(-3px);
    }

    /* About Section */
    .page-bcx88us__about-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-bcx88us__about-content p {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #555;
      text-align: left;
    }

    /* Games Section */
    .page-bcx88us__games-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      background-color: #f0f8ff;
    }

    .page-bcx88us__games-intro {
      font-size: 1.1em;
      color: #555;
      margin-bottom: 40px;
      padding: 0 15px;
    }

    .page-bcx88us__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
      padding: 0 15px;
    }

    .page-bcx88us__game-card {
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      padding: 25px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box; /* Crucial for list item responsiveness */
    }

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

    .page-bcx88us__game-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 20px;
      min-width: 200px; /* Minimum size constraint */
      min-height: 200px; /* Minimum size constraint */
      max-width: 100%; /* Responsive image */
    }

    .page-bcx88us__game-title {
      font-size: 1.5em;
      color: #0056b3;
      margin-bottom: 10px;
    }

    .page-bcx88us__game-description {
      font-size: 0.95em;
      color: #666;
    }

    /* Promotions Section */
    .page-bcx88us__promo-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-bcx88us__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      justify-content: center;
      padding: 0 15px;
    }

    .page-bcx88us__promo-card {
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      padding: 25px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box; /* Crucial for list item responsiveness */
    }

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

    .page-bcx88us__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 20px;
      min-width: 200px; /* Minimum size constraint */
      min-height: 200px; /* Minimum size constraint */
      max-width: 100%; /* Responsive image */
    }

    .page-bcx88us__promo-title {
      font-size: 1.6em;
      color: #e65100;
      margin-bottom: 15px;
    }

    .page-bcx88us__promo-description {
      font-size: 1em;
      color: #666;
      margin-bottom: 20px;
      flex-grow: 1; /* Pushes button to bottom */
    }

    .page-bcx88us__promo-button {
      display: inline-block;
      background-color: #007bff;
      color: #fff;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-size: 1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-bcx88us__promo-button:hover {
      background-color: #0056b3;
    }

    .page-bcx88us__promo-note {
      font-size: 1em;
      color: #777;
      margin-top: 40px;
    }

    /* Guide Section */
    .page-bcx88us__guide-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      background-color: #f0f8ff;
    }

    .page-bcx88us__guide-steps {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 30px;
      margin-bottom: 50px;
      padding: 0 15px;
    }

    .page-bcx88us__guide-step {
      flex: 1;
      min-width: 280px;
      max-width: 350px;
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      padding: 30px;
      text-align: center;
      box-sizing: border-box; /* Crucial for list item responsiveness */
    }

    .page-bcx88us__step-icon {
      width: 120px; /* Larger icons, not small */
      height: 120px;
      object-fit: contain;
      margin-bottom: 25px;
      min-width: 200px; /* Minimum size constraint */
      min-height: 200px; /* Minimum size constraint */
      max-width: 100%; /* Responsive image */
    }

    .page-bcx88us__step-title {
      font-size: 1.6em;
      color: #0056b3;
      margin-bottom: 15px;
    }

    .page-bcx88us__step-description {
      font-size: 1em;
      color: #666;
    }

    .page-bcx88us__guide-cta {
      margin-top: 40px;
    }

    .page-bcx88us__guide-button {
      display: inline-block;
      background-color: #ff6f00;
      color: #fff;
      padding: 15px 35px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .page-bcx88us__guide-button:hover {
      background-color: #e65100;
      transform: translateY(-3px);
    }

    /* FAQ Section */
    .page-bcx88us__faq-section {
      padding: 60px 20px;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .page-bcx88us__faq-container {
      margin-top: 40px;
      text-align: left;
      padding: 0 15px;
    }

    .page-bcx88us__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      box-sizing: border-box; /* Crucial for list item responsiveness */
    }

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

    .page-bcx88us__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-bcx88us__faq-q-text {
      margin: 0;
      color: #0056b3;
      pointer-events: none; /* Prevent click interference */
      font-size: 1.1em; /* Ensure consistent font size */
    }

    .page-bcx88us__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #0056b3;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent click interference */
    }

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

    .page-bcx88us__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding 0 to animate */
      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: 1em;
    }

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

    /* Floating Login Button */
    .page-bcx88us__floating-button-wrapper {
      position: fixed;
      bottom: 20px;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: center;
      z-index: 1000;
      padding: 0 15px; /* Ensure it doesn't touch edges on small screens */
      box-sizing: border-box;
    }

    .page-bcx88us__floating-button {
      background-color: #e60023; /* Attractive red */
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      max-width: 90%; /* Ensure it fits on smaller screens */
      width: auto; /* Adjust width based on content */
      white-space: nowrap; /* Keep text on one line if possible */
      overflow: hidden; /* Hide overflow if text is too long */
      text-overflow: ellipsis; /* Add ellipsis for overflow */
      display: block; /* For max-width to work */
    }

    .page-bcx88us__floating-button:hover {
      background-color: #cc001f;
      transform: translateY(-5px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-bcx88us__hero-section {
        padding-top: 80px; /* Adjust for mobile fixed header */
        padding-bottom: 40px;
      }

      .page-bcx88us__hero-title {
        font-size: 2em;
      }

      .page-bcx88us__hero-description {
        font-size: 1em;
      }

      .page-bcx88us__hero-cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-bcx88us__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-bcx88us__game-grid,
      .page-bcx88us__promo-grid,
      .page-bcx88us__guide-steps {
        grid-template-columns: 1fr; /* Stack items on mobile */
        gap: 20px;
        padding: 0 10px;
      }

      .page-bcx88us__game-card,
      .page-bcx88us__promo-card,
      .page-bcx88us__guide-step,
      .page-bcx88us__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px 15px !important; /* Adjust padding for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-bcx88us__game-image,
      .page-bcx88us__promo-image,
      .page-bcx88us__step-icon {
        height: auto; /* Allow height to adjust */
        min-width: 200px;
        min-height: 200px;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

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

      .page-bcx88us__faq-q-text {
        font-size: 1em;
      }

      .page-bcx88us__faq-answer {
        padding: 0 20px;
      }

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

      .page-bcx88us__floating-button {
        font-size: 1em;
        padding: 12px 20px;
        max-width: calc(100% - 30px); /* Adjust for padding on wrapper */
      }
    }

    @media (max-width: 480px) {
      .page-bcx88us__hero-title {
        font-size: 1.8em;
      }
      .page-bcx88us__section-title {
        font-size: 1.6em;
      }
      .page-bcx88us__floating-button {
        font-size: 0.9em;
        padding: 10px 15px;
      }
    }
  