
    /* Base styles for the page */
    .page-www-8k8 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-top: var(--header-offset, 122px); /* Fallback for body padding */
    }

    /* Hero Section */
    .page-www-8k8__hero-section {
      background-color: #1a2a4b; /* Dark blue */
      color: #fff;
      text-align: center;
      padding: 60px 20px;
      position: relative;
      overflow: hidden;
      padding-top: 70px; /* Decorative top padding, body padding handles header offset */
      padding-bottom: 60px;
    }

    .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: 2.8em;
      margin-bottom: 15px;
      color: #ffcc00; /* Gold */
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-www-8k8__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-www-8k8__promo-button {
      display: inline-block;
      background-color: #ffcc00; /* Gold */
      color: #1a2a4b; /* Dark blue */
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-www-8k8__promo-button:hover {
      background-color: #e6b800; /* Darker gold */
      transform: translateY(-3px);
    }

    /* Section General Styles */
    .page-www-8k8__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-bottom: 1px solid #eee;
    }

    .page-www-8k8__section:last-of-type {
        border-bottom: none;
    }

    .page-www-8k8__section-dark {
        background-color: #f2f2f2;
    }

    .page-www-8k8__section-title {
      font-size: 2.2em;
      color: #1a2a4b;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-www-8k8__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: center;
    }

    /* Features/Highlights Section */
    .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-card {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-www-8k8__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }

    .page-www-8k8__feature-icon {
      width: 200px; /* Minimum size requirement */
      height: 200px; /* Minimum size requirement */
      margin: 0 auto 15px auto; /* Center image */
      object-fit: contain;
    }

    .page-www-8k8__feature-title {
      font-size: 1.4em;
      color: #1a2a4b;
      margin-bottom: 10px;
    }

    .page-www-8k8__feature-description {
      font-size: 0.95em;
      color: #555;
    }

    /* How to Access Section */
    .page-www-8k8__access-steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 30px;
    }

    .page-www-8k8__step-card {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      flex: 1;
      min-width: 280px;
      max-width: 380px;
      box-sizing: border-box;
      transition: transform 0.3s ease;
    }

    .page-www-8k8__step-card:hover {
        transform: translateY(-5px);
    }

    .page-www-8k8__step-number {
      font-size: 2em;
      color: #ffcc00;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .page-www-8k8__step-title {
      font-size: 1.3em;
      color: #1a2a4b;
      margin-bottom: 10px;
    }

    .page-www-8k8__step-description {
      font-size: 0.95em;
      color: #555;
    }

    /* Game Providers Section */
    .page-www-8k8__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-www-8k8__provider-item {
      background-color: #fff;
      border: 1px solid #eee;
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.03);
      box-sizing: border-box;
      transition: transform 0.2s ease;
    }

    .page-www-8k8__provider-item:hover {
        transform: scale(1.03);
    }

    .page-www-8k8__provider-logo {
      width: 200px; /* Minimum size requirement */
      height: 100px; /* Example height to make it 200x100 */
      margin: 0 auto 10px auto;
      object-fit: contain;
    }

    .page-www-8k8__provider-name {
      font-size: 1em;
      color: #333;
      font-weight: bold;
    }

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

    .page-www-8k8__promo-card {
      background-color: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-www-8k8__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .page-www-8k8__promo-content {
      padding: 20px;
      text-align: center;
    }

    .page-www-8k8__promo-title {
      font-size: 1.5em;
      color: #1a2a4b;
      margin-bottom: 10px;
    }

    .page-www-8k8__promo-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 20px;
    }

    /* Payment Methods Section */
    .page-www-8k8__payments-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-www-8k8__payment-item {
      background-color: #fff;
      border: 1px solid #eee;
      border-radius: 8px;
      padding: 15px 25px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
      box-sizing: border-box;
      min-width: 120px;
      flex: 1 1 auto;
      max-width: 180px; /* Control max width for larger screens */
    }

    .page-www-8k8__payment-logo {
      width: 200px; /* Minimum size requirement */
      height: 100px; /* Example height to make it 200x100 */
      margin: 0 auto;
      object-fit: contain;
    }

    /* FAQ Section */
    .page-www-8k8__faq-container {
      margin-top: 30px;
    }

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

    .page-www-8k8__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #1a2a4b; /* Dark blue background for question */
      color: #fff; /* White text for question */
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-www-8k8__faq-question:hover {
      background-color: #2b3d60; /* Slightly lighter blue on hover */
    }

    .page-www-8k8__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      pointer-events: none; /* Crucial for click event on parent div */
      color: #fff; /* Ensure H3 text is white */
    }

    .page-www-8k8__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      pointer-events: none; /* Crucial for click event on parent div */
      transition: transform 0.3s ease;
      color: #ffcc00; /* Gold color for toggle icon */
    }

    .page-www-8k8__faq-item.active .page-www-8k8__faq-toggle {
      transform: rotate(45deg); /* Rotate for 'x' or '-' effect */
    }

    .page-www-8k8__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px; /* Initial padding */
      opacity: 0;
      background-color: #fefefe;
      color: #333;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      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 20px !important; /* Expanded padding */
      opacity: 1;
    }

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

    .page-www-8k8__floating-button {
      background-color: #ffcc00; /* Gold */
      color: #1a2a4b; /* Dark blue */
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-align: center;
      border: none;
      cursor: pointer;
    }

    .page-www-8k8__floating-button:hover {
      background-color: #e6b800; /* Darker gold */
      transform: translateY(-2px);
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-www-8k8__hero-title {
        font-size: 2.5em;
      }
      .page-www-8k8__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-www-8k8__hero-section {
        padding: 50px 15px;
        padding-top: 60px;
      }
      .page-www-8k8__hero-title {
        font-size: 2em;
      }
      .page-www-8k8__hero-subtitle {
        font-size: 1.1em;
      }
      .page-www-8k8__promo-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-www-8k8__section {
        padding: 30px 15px;
      }
      .page-www-8k8__section-title {
        font-size: 1.8em;
      }
      .page-www-8k8__text-content {
        font-size: 1em;
      }

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

      .page-www-8k8__feature-card,
      .page-www-8k8__step-card,
      .page-www-8k8__provider-item,
      .page-www-8k8__promo-card,
      .page-www-8k8__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px; /* Adjust padding for smaller screens */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      
      .page-www-8k8__feature-description,
      .page-www-8k8__step-description,
      .page-www-8k8__promo-description,
      .page-www-8k8__provider-name {
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
          word-break: break-word !important;
      }

      .page-www-8k8__feature-icon,
      .page-www-8k8__provider-logo,
      .page-www-8k8__payment-logo {
          width: 200px !important; /* Enforce minimum width for logos on mobile */
          height: auto !important;
          max-height: 120px !important; /* Max height to prevent overly tall images */
          margin-left: auto !important;
          margin-right: auto !important;
      }

      .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 15px !important;
      }

      .page-www-8k8__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Buttons side-by-side on mobile */
        width: calc(100% - 30px);
        justify-content: space-around;
      }

      .page-www-8k8__floating-button {
        flex: 1;
        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__section-title {
        font-size: 1.6em;
      }
      .page-www-8k8__floating-button {
        padding: 8px 10px;
        font-size: 0.85em;
      }
    }
  