
    /* General styles for the page, scoped to .page-www-8k8 */
    .page-www-8k8 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      overflow-x: hidden; /* Prevent horizontal scroll due to padding */
    }

    /* Consistent padding for sections */
    .page-www-8k8__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-www-8k8__hero-section {
      background: linear-gradient(135deg, #001f3f, #003366);
      color: #ffffff;
      text-align: center;
      padding: 80px 20px; /* Adjusted padding-top as per fixed nav requirement */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      position: relative;
      overflow: hidden;
      min-height: 500px;
      box-sizing: border-box;
    }
    .page-www-8k8__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3;
        z-index: 0;
    }
    .page-www-8k8__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        margin: 0 auto;
    }
    .page-www-8k8__hero-title {
      font-size: 3em;
      margin-bottom: 20px;
      color: #ffd700; /* Gold color for emphasis */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    .page-www-8k8__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }
    .page-www-8k8__hero-button {
      display: inline-block;
      background-color: #ffd700;
      color: #001f3f;
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none; /* Ensure it's a button, not a link */
      cursor: pointer;
    }
    .page-www-8k8__hero-button:hover {
      background-color: #ffeb3b;
      transform: translateY(-3px);
    }

    /* Promotions Section */
    .page-www-8k8__promotions-section {
      background-color: #ffffff;
      text-align: center;
    }
    .page-www-8k8__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }
    .page-www-8k8__promotion-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 25px;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }
    .page-www-8k8__promotion-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
    .page-www-8k8__promotion-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 15px;
      max-width: 100%; /* Responsive image */
      box-sizing: border-box;
    }
    .page-www-8k8__promotion-title {
      font-size: 1.8em;
      color: #001f3f;
      margin-bottom: 10px;
    }
    .page-www-8k8__promotion-description {
      font-size: 1em;
      color: #555;
      margin-bottom: 20px;
    }
    .page-www-8k8__promotion-link {
      display: inline-block;
      background-color: #007bff;
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none; /* Ensure it's a button, not a link */
      cursor: pointer;
    }
    .page-www-8k8__promotion-link:hover {
      background-color: #0056b3;
    }

    /* Games Section */
    .page-www-8k8__games-section {
      background-color: #e6eef5;
      text-align: center;
    }
    .page-www-8k8__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }
    .page-www-8k8__game-card {
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }
    .page-www-8k8__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    }
    .page-www-8k8__game-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      max-width: 100%; /* Responsive image */
      box-sizing: border-box;
    }
    .page-www-8k8__game-info {
      padding: 15px;
    }
    .page-www-8k8__game-title {
      font-size: 1.5em;
      color: #001f3f;
      margin-bottom: 10px;
    }
    .page-www-8k8__game-description {
      font-size: 0.9em;
      color: #666;
    }

    /* Why Choose Us Section */
    .page-www-8k8__features-section {
      background-color: #ffffff;
    }
    .page-www-8k8__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }
    .page-www-8k8__feature-item {
      text-align: center;
      padding: 20px;
      border-radius: 10px;
      background-color: #f9f9f9;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }
    .page-www-8k8__feature-icon {
      width: 100px; /* Minimum size requirement */
      height: 100px;
      margin-bottom: 15px;
      max-width: 100%; /* Responsive image */
      object-fit: contain;
    }
    .page-www-8k8__feature-title {
      font-size: 1.6em;
      color: #001f3f;
      margin-bottom: 10px;
    }
    .page-www-8k8__feature-description {
      color: #555;
    }

    /* Payment Providers Section */
    .page-www-8k8__payments-section {
      background-color: #e6eef5;
      text-align: center;
    }
    .page-www-8k8__payments-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }
    .page-www-8k8__payment-logo {
      width: 150px; /* Minimum size requirement for logos */
      height: 80px;
      object-fit: contain;
      background-color: #ffffff;
      padding: 10px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      max-width: 100%; /* Responsive image */
      box-sizing: border-box;
    }

    /* FAQ Section */
    .page-www-8k8__faq-section {
      background-color: #ffffff;
      text-align: center;
    }
    .page-www-8k8__faq-container {
      margin-top: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
    }
    .page-www-8k8__faq-item {
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }
    .page-www-8k8__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #f0f8ff;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      color: #001f3f;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }
    .page-www-8k8__faq-question:hover {
      background-color: #e0f0ff;
    }
    .page-www-8k8__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #001f3f; /* Ensure contrast */
      pointer-events: none; /* Prevent h3 from blocking click */
    }
    .page-www-8k8__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #001f3f;
      pointer-events: none; /* Prevent toggle from blocking click */
      transition: transform 0.3s ease;
    }
    .page-www-8k8__faq-item.active .page-www-8k8__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
    }
    .page-www-8k8__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: #555;
      background-color: #ffffff;
      box-sizing: border-box;
    }
    .page-www-8k8__faq-item.active .page-www-8k8__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px !important;
      opacity: 1;
    }
    .page-www-8k8__faq-answer p {
      margin: 0;
      padding-bottom: 10px; /* Add some space below paragraphs */
    }


    /* General Heading Styles */
    .page-www-8k8__main-heading {
      font-size: 2.5em;
      color: #001f3f;
      margin-bottom: 20px;
      text-align: center;
    }
    .page-www-8k8__sub-heading {
      font-size: 2em;
      color: #001f3f;
      margin-bottom: 15px;
      text-align: center;
    }

    /* Floating Register/Login Buttons */
    .page-www-8k8__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }
    .page-www-8k8__floating-button {
      background-color: #ffd700;
      color: #001f3f;
      padding: 12px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none; /* Ensure it's a button, not a link */
      cursor: pointer;
      text-align: center;
      width: 120px; /* Fixed width for consistency */
      box-sizing: border-box;
    }
    .page-www-8k8__floating-button.page-www-8k8__floating-button--register {
        background-color: #007bff;
        color: #ffffff;
    }
    .page-www-8k8__floating-button.page-www-8k8__floating-button--register:hover {
        background-color: #0056b3;
        transform: translateY(-3px);
    }
    .page-www-8k8__floating-button:hover {
      background-color: #ffeb3b;
      transform: translateY(-3px);
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .page-www-8k8__hero-section {
        padding: 60px 15px;
      }
      .page-www-8k8__hero-title {
        font-size: 2.2em;
      }
      .page-www-8k8__hero-subtitle {
        font-size: 1.2em;
      }
      .page-www-8k8__hero-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-www-8k8__section {
        padding: 30px 15px;
      }
      .page-www-8k8__main-heading {
        font-size: 2em;
      }
      .page-www-8k8__sub-heading {
        font-size: 1.6em;
      }

      /* List item mobile responsiveness */
      .page-www-8k8__promotions-grid,
      .page-www-8k8__games-grid,
      .page-www-8k8__features-grid {
        grid-template-columns: 1fr; /* Stack items vertically */
        gap: 20px;
      }

      .page-www-8k8__promotion-card,
      .page-www-8k8__game-card,
      .page-www-8k8__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-www-8k8__promotion-image,
      .page-www-8k8__game-image,
      .page-www-8k8__feature-icon,
      .page-www-8k8__payment-logo {
        max-width: 100% !important;
        height: auto !important; /* Ensure images scale proportionally */
        box-sizing: border-box !important;
        word-wrap: break-word !important; /* Ensure content wraps */
        overflow-wrap: break-word !important;
      }

      .page-www-8k8__faq-container {
        padding: 0 10px;
      }
      .page-www-8k8__faq-question {
        padding: 12px 15px;
      }
      .page-www-8k8__faq-question h3 {
        font-size: 1.1em;
      }
      .page-www-8k8__faq-answer {
        padding: 0 15px;
      }
      .page-www-8k8__faq-item.active .page-www-8k8__faq-answer {
        padding: 15px !important;
      }

      .page-www-8k8__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Buttons side-by-side on smaller screens */
        gap: 8px;
        width: auto;
      }
      .page-www-8k8__floating-button {
        width: 100px;
        padding: 10px 15px;
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
        .page-www-8k8__hero-title {
            font-size: 1.8em;
        }
        .page-www-8k8__hero-subtitle {
            font-size: 1em;
        }
        .page-www-8k8__main-heading {
            font-size: 1.8em;
        }
        .page-www-8k8__sub-heading {
            font-size: 1.4em;
        }
        .page-www-8k8__floating-buttons {
            flex-direction: column; /* Stack buttons vertically again on very small screens */
            align-items: flex-end;
            right: 10px;
            bottom: 10px;
        }
        .page-www-8k8__floating-button {
            width: 110px;
        }
    }
  