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

    .page-bl555acc__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-bl555acc__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-bl555acc__section--light {
      background-color: #ffffff;
    }

    .page-bl555acc__section--dark {
      background-color: #e0e0e0;
    }

    .page-bl555acc__heading {
      font-size: 2.5em;
      color: #007bff;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-bl555acc__subheading {
      font-size: 1.8em;
      color: #0056b3;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .page-bl555acc__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #555;
    }

    /* Hero Section */
    .page-bl555acc__hero-section {
      position: relative;
      overflow: hidden;
      color: #fff;
      text-align: center;
      padding-top: 10px; /* Space for fixed header */
      padding-bottom: 60px; /* Additional space */
      background: linear-gradient(135deg, #007bff, #0056b3);
    }

    .page-bl555acc__hero-background-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.3; /* Slightly transparent */
    }

    .page-bl555acc__hero-content {
      position: relative;
      z-index: 2;
      padding: 80px 20px;
    }

    .page-bl555acc__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-bl555acc__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #eee;
    }

    /* Floating Promotion Button */
    .page-bl555acc__floating-promo-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #ffc107; /* Yellow for attention */
      color: #333;
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      transition: transform 0.3s ease, background-color 0.3s ease;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      border: none;
      outline: none;
    }

    .page-bl555acc__floating-promo-button:hover {
      transform: translateY(-5px);
      background-color: #e0a800;
    }
    
    /* Games Grid */
    .page-bl555acc__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-bl555acc__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;
      padding-bottom: 20px; /* Ensure content doesn't touch bottom */
    }

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

    .page-bl555acc__game-card-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
    }

    .page-bl555acc__game-card-title {
      font-size: 1.5em;
      color: #007bff;
      margin: 15px 0 10px;
      padding: 0 15px;
    }

    .page-bl555acc__game-card-description {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px;
    }

    /* Features List */
    .page-bl555acc__features-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      list-style: none;
      padding: 0;
      margin: 30px 0;
    }

    .page-bl555acc__feature-item {
      background-color: #fff;
      border-left: 5px solid #007bff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      text-align: left;
      transition: transform 0.2s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

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

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

    .page-bl555acc__feature-description {
      font-size: 1em;
      color: #444;
    }

    /* Steps Section */
    .page-bl555acc__steps-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      list-style: none;
      padding: 0;
      margin: 30px 0;
    }

    .page-bl555acc__step-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      text-align: center;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-bl555acc__step-number {
      font-size: 2.5em;
      color: #007bff;
      font-weight: bold;
      margin-bottom: 15px;
      display: block;
    }

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

    .page-bl555acc__step-description {
      font-size: 1em;
      color: #555;
    }

    /* FAQ Section */
    .page-bl555acc__faq-list {
      list-style: none;
      padding: 0;
      margin: 30px 0;
      text-align: left;
    }

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

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

    .page-bl555acc__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-bl555acc__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click */
      color: #0056b3;
    }

    .page-bl555acc__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      color: #007bff;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-bl555acc__faq-item.active .page-bl555acc__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }
    
    .page-bl555acc__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding, will be overridden */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #ffffff;
      color: #555;
      font-size: 1em;
    }

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

    /* Call to Action */
    .page-bl555acc__cta-button {
      display: inline-block;
      background-color: #28a745; /* Green for CTA */
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.3em;
      font-weight: bold;
      text-decoration: none;
      margin-top: 30px;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      border: none;
      outline: none;
      cursor: pointer;
    }

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

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-bl555acc__hero-title {
        font-size: 2.5em;
      }
      .page-bl555acc__hero-description {
        font-size: 1.1em;
      }
      .page-bl555acc__heading {
        font-size: 2em;
      }
      .page-bl555acc__subheading {
        font-size: 1.6em;
      }
    }

    @media (max-width: 768px) {
      .page-bl555acc__hero-section {
        padding-top: 10px; /* Adjust for mobile fixed header */
        padding-bottom: 40px;
      }
      .page-bl555acc__hero-content {
        padding: 60px 15px;
      }
      .page-bl555acc__hero-title {
        font-size: 2em;
      }
      .page-bl555acc__hero-description {
        font-size: 1em;
      }
      .page-bl555acc__section {
        padding: 30px 0;
      }
      .page-bl555acc__heading {
        font-size: 1.8em;
      }
      .page-bl555acc__subheading {
        font-size: 1.4em;
      }
      .page-bl555acc__paragraph {
        font-size: 1em;
      }

      /* Responsive list items */
      .page-bl555acc__features-list,
      .page-bl555acc__steps-list,
      .page-bl555acc__games-grid {
        grid-template-columns: 1fr; /* Stack items */
        gap: 20px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      
      .page-bl555acc__feature-item,
      .page-bl555acc__step-item,
      .page-bl555acc__game-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px 15px; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      
      .page-bl555acc__game-card-image {
        height: 180px; /* Adjust image height for mobile */
      }

      .page-bl555acc__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }
      .page-bl555acc__faq-question h3 {
        font-size: 1em; /* Smaller font for mobile FAQ question */
      }
      .page-bl555acc__faq-toggle {
        font-size: 1.5em;
      }
      .page-bl555acc__faq-answer {
        padding: 0 20px;
      }
      .page-bl555acc__faq-item.active .page-bl555acc__faq-answer {
        padding: 15px 20px !important;
      }

      .page-bl555acc__floating-promo-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1.1em;
      }
      .page-bl555acc__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
    }

    @media (max-width: 480px) {
      .page-bl555acc__hero-title {
        font-size: 1.8em;
      }
      .page-bl555acc__hero-description {
        font-size: 0.9em;
      }
      .page-bl555acc__heading {
        font-size: 1.6em;
      }
      .page-bl555acc__subheading {
        font-size: 1.2em;
      }
      .page-bl555acc__game-card-title {
        font-size: 1.3em;
      }
      .page-bl555acc__game-card-description {
        font-size: 0.85em;
      }
      .page-bl555acc__floating-promo-button {
        font-size: 1em;
        padding: 10px 18px;
        bottom: 10px;
        right: 10px;
      }
    }
  