
    /* General styles for the page */
    .page-8k8-7 {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f8f8f8;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    /* Hero Section */
    .page-8k8-7__hero-section {
      position: relative;
      width: 100%;
      height: 600px; /* Adjust height for visual impact */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      padding: 10px 20px 0; /* Small top padding, relying on body for main offset */
      box-sizing: border-box;
    }

    .page-8k8-7__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .page-8k8-7__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8));
      z-index: 2;
    }

    .page-8k8-7__hero-content {
      position: relative;
      z-index: 3;
      max-width: 900px;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-8k8-7__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: #ffcc00; /* Gold color for emphasis */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-7__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-8k8-7__hero-cta-button {
      display: inline-block;
      background-color: #ffcc00;
      color: #333;
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-8k8-7__hero-cta-button:hover {
      background-color: #e6b800;
    }

    /* Floating Buttons */
    .page-8k8-7__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: center;
      padding: 15px 10px;
      background-color: rgba(0, 0, 0, 0.8);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      box-sizing: border-box;
    }

    .page-8k8-7__floating-button {
      background-color: #ffcc00;
      color: #333;
      padding: 12px 25px;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      margin: 0 10px;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
      flex-grow: 1;
      max-width: 180px;
      text-align: center;
    }

    .page-8k8-7__floating-button--login {
      background-color: #007bff; /* Different color for login */
      color: #fff;
    }

    .page-8k8-7__floating-button:hover {
      background-color: #e6b800;
    }

    .page-8k8-7__floating-button--login:hover {
      background-color: #0056b3;
    }

    /* Content Sections */
    .page-8k8-7__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      box-sizing: border-box;
    }

    .page-8k8-7__section-title {
      font-size: 2.5em;
      margin-bottom: 30px;
      color: #333;
      text-align: center;
      position: relative;
      padding-bottom: 10px;
    }

    .page-8k8-7__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #ffcc00;
      border-radius: 2px;
    }

    .page-8k8-7__section-description {
      font-size: 1.1em;
      color: #555;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Game Categories / Product Display */
    .page-8k8-7__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
      text-align: left;
    }

    .page-8k8-7__category-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

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

    .page-8k8-7__category-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid #eee;
    }

    .page-8k8-7__category-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .page-8k8-7__category-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: #333;
    }

    .page-8k8-7__category-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-8k8-7__category-button {
      display: block;
      background-color: #ffcc00;
      color: #333;
      padding: 10px 15px;
      border-radius: 5px;
      font-size: 1em;
      font-weight: bold;
      text-align: center;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-8k8-7__category-button:hover {
      background-color: #e6b800;
    }

    /* Promotions Section */
    .page-8k8-7__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-8k8-7__promo-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

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

    .page-8k8-7__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-bottom: 1px solid #eee;
    }

    .page-8k8-7__promo-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .page-8k8-7__promo-title {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: #333;
    }

    .page-8k8-7__promo-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-8k8-7__promo-link {
      display: inline-block;
      background-color: #007bff;
      color: #fff;
      padding: 10px 15px;
      border-radius: 5px;
      font-size: 1em;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    .page-8k8-7__promo-link:hover {
      background-color: #0056b3;
    }

    /* Payment Methods & Game Providers */
    .page-8k8-7__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 20px;
      margin-top: 30px;
      align-items: center;
      justify-items: center;
    }

    .page-8k8-7__logo-item {
      background-color: #fff;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 80px;
      box-sizing: border-box;
    }

    .page-8k8-7__logo-image {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      filter: grayscale(100%); /* Allowed for brand logos to fit theme, as long as it's not changing specific colors */
      transition: filter 0.3s ease;
    }

    .page-8k8-7__logo-image:hover {
      filter: grayscale(0%);
    }

    /* FAQ Section */
    .page-8k8-7__faq-container {
      margin-top: 40px;
      text-align: left;
    }

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

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

    .page-8k8-7__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-8k8-7__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click event */
      color: #333; /* Ensure contrast */
    }

    .page-8k8-7__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle from blocking click event */
      color: #ffcc00; /* Ensure contrast */
    }

    .page-8k8-7__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Adjusted padding for better visual */
      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: #fdfdfd;
      color: #555; /* Ensure contrast */
    }

    .page-8k8-7__faq-item.active .page-8k8-7__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 20px !important; /* Apply padding when active */
      opacity: 1;
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .page-8k8-7__hero-section {
        height: 450px;
        padding: 10px 15px 0;
      }

      .page-8k8-7__hero-title {
        font-size: 2.5em;
      }

      .page-8k8-7__hero-subtitle {
        font-size: 1.2em;
      }

      .page-8k8-7__hero-cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-8k8-7__floating-buttons {
        flex-direction: row; /* Keep row for small buttons */
        padding: 10px;
      }

      .page-8k8-7__floating-button {
        padding: 10px 15px;
        font-size: 0.95em;
        margin: 0 5px;
        max-width: 150px;
      }

      .page-8k8-7__section {
        padding: 30px 15px;
      }

      .page-8k8-7__section-title {
        font-size: 2em;
      }

      .page-8k8-7__section-description {
        font-size: 1em;
      }

      .page-8k8-7__game-categories,
      .page-8k8-7__promotions-grid,
      .page-8k8-7__logo-grid {
        grid-template-columns: 1fr; /* Stack on mobile */
        gap: 20px;
      }

      .page-8k8-7__category-card,
      .page-8k8-7__promo-card,
      .page-8k8-7__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px; /* Adjust padding for cards */
      }

      .page-8k8-7__category-image,
      .page-8k8-7__promo-image {
        height: 180px; /* Smaller images on mobile */
      }

      .page-8k8-7__faq-question {
        font-size: 1em;
        padding: 15px;
      }

      .page-8k8-7__faq-answer {
        padding: 15px !important; /* Adjust padding for mobile active state */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-7__faq-item.active .page-8k8-7__faq-answer {
        padding: 15px !important;
      }

      /* Ensure all images are responsive */
      .page-8k8-7 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-7__category-image, .page-8k8-7__promo-image, .page-8k8-7__logo-image, .page-8k8-7__hero-background {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }
    @media (max-width: 480px) {
        .page-8k8-7__hero-title {
            font-size: 2em;
        }
        .page-8k8-7__hero-subtitle {
            font-size: 1em;
        }
        .page-8k8-7__floating-button {
            padding: 8px 10px;
            font-size: 0.9em;
            margin: 0 5px;
        }
    }
  