
    .page-b-c-8 {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e;
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-b-c-8__section-title {
      font-size: 2.5rem;
      color: #e94560;
      text-align: center;
      margin-bottom: 20px;
      padding: 0 15px;
      font-weight: bold;
    }

    .page-b-c-8__section-description {
      font-size: 1.1rem;
      text-align: center;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 15px;
    }

    .page-b-c-8__button {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-size: 1rem;
      cursor: pointer;
      text-align: center;
    }

    .page-b-c-8__button--primary {
      background-color: #e94560;
      color: #ffffff;
      border: 2px solid #e94560;
    }

    .page-b-c-8__button--primary:hover {
      background-color: #c73a50;
      transform: translateY(-2px);
    }

    .page-b-c-8__button--secondary {
      background-color: transparent;
      color: #e94560;
      border: 2px solid #e94560;
    }

    .page-b-c-8__button--secondary:hover {
      background-color: #e94560;
      color: #ffffff;
      transform: translateY(-2px);
    }

    .page-b-c-8__button--small {
      padding: 8px 15px;
      font-size: 0.9rem;
      background-color: #0f3460;
      color: #e0e0e0;
      border: none;
      margin-top: 15px;
      display: inline-block;
      cursor: default; /* No actual link */
    }

    /* Hero Section */
    .page-b-c-8__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 80vh;
      text-align: center;
      padding: 10px 20px 60px 20px; /* 10px top for visual offset, rest for content */
      background: linear-gradient(135deg, #1a1a2e, #0f3460);
      position: relative;
      overflow: hidden;
    }

    .page-b-c-8__hero-content {
      z-index: 1;
      max-width: 900px;
    }

    .page-b-c-8__hero-title {
      font-size: 3.5rem;
      color: #ffffff;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-b-c-8__hero-description {
      font-size: 1.3rem;
      color: #e0e0e0;
      margin-bottom: 40px;
    }

    .page-b-c-8__hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
    }

    .page-b-c-8__hero-image-wrapper {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: auto;
      opacity: 0.3;
      z-index: 0;
      overflow: hidden;
    }

    .page-b-c-8__hero-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      object-position: bottom;
    }

    /* About Section */
    .page-b-c-8__about-section {
      padding: 80px 20px;
      background-color: #16162a;
      text-align: center;
    }

    .page-b-c-8__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-b-c-8__feature-item {
      background-color: #22223b;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-b-c-8__feature-item:hover {
      transform: translateY(-10px);
    }

    .page-b-c-8__feature-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      max-width: 100%;
      height: auto;
    }

    .page-b-c-8__feature-title {
      font-size: 1.8rem;
      color: #e94560;
      margin-bottom: 15px;
    }

    .page-b-c-8__feature-text {
      font-size: 1rem;
      color: #c0c0c0;
    }

    /* Product Showcase Section */
    .page-b-c-8__product-showcase {
      padding: 80px 20px;
      background-color: #1a1a2e;
    }

    .page-b-c-8__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      justify-items: center; /* Center items in the grid */
    }

    .page-b-c-8__game-card {
      background-color: #22223b;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-b-c-8__game-card:hover {
      transform: translateY(-10px);
    }

    .page-b-c-8__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      height: auto;
    }

    .page-b-c-8__game-title {
      font-size: 1.5rem;
      color: #e94560;
      margin: 20px 15px 10px 15px;
    }

    .page-b-c-8__game-text {
      font-size: 0.95rem;
      color: #c0c0c0;
      padding: 0 15px 20px 15px;
    }

    /* Promotions Section */
    .page-b-c-8__promotions-section {
      padding: 80px 20px;
      background-color: #16162a;
    }

    .page-b-c-8__promo-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      justify-items: center;
    }

    .page-b-c-8__promo-card {
      background-color: #22223b;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-b-c-8__promo-card:hover {
      transform: translateY(-10px);
    }

    .page-b-c-8__promo-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      height: auto;
    }

    .page-b-c-8__promo-title {
      font-size: 1.6rem;
      color: #e94560;
      margin: 20px 15px 10px 15px;
    }

    .page-b-c-8__promo-text {
      font-size: 0.95rem;
      color: #c0c0c0;
      padding: 0 15px;
    }

    /* FAQ Section */
    .page-b-c-8__faq-section {
      padding: 80px 20px;
      background-color: #1a1a2e;
    }

    .page-b-c-8__faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-b-c-8__faq-item {
      background-color: #22223b;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-b-c-8__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      user-select: none;
      background-color: #0f3460;
      color: #ffffff;
      transition: background-color 0.3s ease;
    }

    .page-b-c-8__faq-question:hover {
      background-color: #e94560;
    }

    .page-b-c-8__faq-title {
      font-size: 1.2rem;
      margin: 0;
      flex-grow: 1;
      text-align: left;
      pointer-events: none;
    }

    .page-b-c-8__faq-toggle {
      font-size: 1.8rem;
      font-weight: bold;
      margin-left: 20px;
      pointer-events: none;
      transition: transform 0.3s ease;
    }

    .page-b-c-8__faq-item.active .page-b-c-8__faq-toggle {
      transform: rotate(45deg); /* Plus to X/Minus for visual effect */
    }

    .page-b-c-8__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #c0c0c0;
      font-size: 1rem;
      text-align: left;
    }

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

    /* Floating Register/Login Buttons */
    .page-b-c-8__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-b-c-8__floating-button {
      display: block;
      padding: 12px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1rem;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.2s ease, background-color 0.3s ease;
    }

    .page-b-c-8__floating-button--register {
      background-color: #e94560;
      color: #ffffff;
    }

    .page-b-c-8__floating-button--register:hover {
      background-color: #c73a50;
      transform: scale(1.05);
    }

    .page-b-c-8__floating-button--login {
      background-color: #0f3460;
      color: #ffffff;
    }

    .page-b-c-8__floating-button--login:hover {
      background-color: #0a2442;
      transform: scale(1.05);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-b-c-8__hero-title {
        font-size: 3rem;
      }
      .page-b-c-8__hero-description {
        font-size: 1.1rem;
      }
      .page-b-c-8__section-title {
        font-size: 2rem;
      }
      .page-b-c-8__section-description {
        font-size: 1rem;
      }
    }

    @media (max-width: 768px) {
      .page-b-c-8__hero-section {
        min-height: 60vh;
        padding-top: 10px; /* Still a small offset */
        padding-bottom: 40px;
      }
      .page-b-c-8__hero-title {
        font-size: 2.2rem;
      }
      .page-b-c-8__hero-description {
        font-size: 1rem;
      }
      .page-b-c-8__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-b-c-8__button {
        width: 80%;
        margin: 0 auto;
      }

      .page-b-c-8__section-title {
        font-size: 1.8rem;
      }
      .page-b-c-8__section-description {
        font-size: 0.95rem;
      }

      .page-b-c-8__about-section,
      .page-b-c-8__product-showcase,
      .page-b-c-8__promotions-section,
      .page-b-c-8__faq-section {
        padding: 60px 15px;
      }

      /* List items responsiveness */
      .page-b-c-8__features-grid > .page-b-c-8__feature-item,
      .page-b-c-8__game-grid > .page-b-c-8__game-card,
      .page-b-c-8__promo-cards > .page-b-c-8__promo-card,
      .page-b-c-8__faq-list > .page-b-c-8__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px;
        padding-right: 15px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-b-c-8__features-grid,
      .page-b-c-8__game-grid,
      .page-b-c-8__promo-cards,
      .page-b-c-8__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-b-c-8__feature-icon {
        width: 80px;
        height: 80px;
      }

      .page-b-c-8__game-image,
      .page-b-c-8__promo-image {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-b-c-8__faq-question {
        padding: 15px;
      }

      .page-b-c-8__faq-title {
        font-size: 1.1rem;
      }

      .page-b-c-8__faq-answer {
        padding: 15px !important;
      }

      .page-b-c-8__floating-buttons {
        bottom: 15px;
        right: 15px;
      }

      .page-b-c-8__floating-button {
        padding: 10px 18px;
        font-size: 0.9rem;
      }
    }

    @media (max-width: 480px) {
      .page-b-c-8__hero-title {
        font-size: 1.8rem;
      }
      .page-b-c-8__hero-description {
        font-size: 0.9rem;
      }
      .page-b-c-8__section-title {
        font-size: 1.5rem;
      }
      .page-b-c-8__feature-title {
        font-size: 1.4rem;
      }
      .page-b-c-8__game-title,
      .page-b-c-8__promo-title {
        font-size: 1.3rem;
      }
    }
  