
    /* Base styles for the page, ensuring good contrast and responsive behavior */
    .page-8k8-com-4 {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Light text for dark background */
      background-color: #1a1a2e; /* Dark background */
      line-height: 1.6;
      padding-bottom: 80px; /* Space for fixed buttons at bottom */
    }

    .page-8k8-com-4__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-8k8-com-4__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #16213e; /* Slightly lighter dark background for sections */
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-com-4__section--dark {
      background-color: #0f3460;
    }

    .page-8k8-com-4__title {
      color: #e94560; /* Accent color */
      text-align: center;
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-8k8-com-4__subtitle {
      color: #533483; /* Another accent color */
      text-align: center;
      margin-bottom: 20px;
      font-size: 1.8em;
    }

    .page-8k8-com-4__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: #cccccc;
    }

    /* Buttons */
    .page-8k8-com-4__button {
      display: inline-block;
      padding: 12px 25px;
      background-color: #e94560;
      color: #ffffff;
      text-decoration: none;
      border-radius: 30px;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
      text-align: center;
    }

    .page-8k8-com-4__button:hover {
      background-color: #b8364e;
      transform: translateY(-2px);
    }

    .page-8k8-com-4__button--secondary {
      background-color: #533483;
    }

    .page-8k8-com-4__button--secondary:hover {
      background-color: #412a64;
    }

    /* Image styles */
    .page-8k8-com-4__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      display: block;
      margin: 20px auto;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      object-fit: cover; /* Ensure images fill their space nicely */
    }

    .page-8k8-com-4__image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    /* Hero Section */
    .page-8k8-com-4__hero-section {
      text-align: center;
      padding: 10px 20px 60px; /* Small top padding as body handles header offset */
      background: linear-gradient(135deg, #1a1a2e, #0f3460);
      border-radius: 0; /* No border-radius for full-width hero */
      margin-bottom: 0;
    }

    .page-8k8-com-4__hero-title {
      font-size: 3.5em;
      color: #e94560;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-8k8-com-4__hero-text {
      font-size: 1.3em;
      color: #f0f0f0;
      max-width: 800px;
      margin: 0 auto 30px;
    }

    .page-8k8-com-4__hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    /* Game Categories / Lists */
    .page-8k8-com-4__games-grid,
    .page-8k8-com-4__payments-list,
    .page-8k8-com-4__providers-list,
    .page-8k8-com-4__promotions-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-8k8-com-4__game-item,
    .page-8k8-com-4__payment-item,
    .page-8k8-com-4__provider-item,
    .page-8k8-com-4__promotion-item {
      background-color: #2e3a59;
      padding: 20px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-com-4__game-item:hover,
    .page-8k8-com-4__payment-item:hover,
    .page-8k8-com-4__provider-item:hover,
    .page-8k8-com-4__promotion-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-com-4__game-item h3,
    .page-8k8-com-4__payment-item h3,
    .page-8k8-com-4__provider-item h3,
    .page-8k8-com-4__promotion-item h3 {
      color: #e94560;
      margin-top: 10px;
      margin-bottom: 10px;
      font-size: 1.3em;
    }

    .page-8k8-com-4__game-item p,
    .page-8k8-com-4__payment-item p,
    .page-8k8-com-4__provider-item p,
    .page-8k8-com-4__promotion-item p {
      color: #cccccc;
      font-size: 0.95em;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    .page-8k8-com-4__game-icon,
    .page-8k8-com-4__payment-logo,
    .page-8k8-com-4__provider-logo {
      max-width: 150px; /* Adjust size for logos/icons */
      height: auto;
      margin-bottom: 10px;
      border-radius: 4px;
    }

    /* Access section (Login/Register steps) */
    .page-8k8-com-4__access-steps {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
      margin-top: 30px;
    }

    .page-8k8-com-4__step-card {
      background-color: #2e3a59;
      padding: 25px;
      border-radius: 8px;
      flex: 1;
      min-width: 280px;
      max-width: 45%;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-8k8-com-4__step-card h3 {
      color: #e94560;
      margin-bottom: 15px;
      font-size: 1.5em;
    }

    .page-8k8-com-4__step-list {
      list-style: decimal;
      padding-left: 20px;
      color: #cccccc;
    }

    .page-8k8-com-4__step-list li {
      margin-bottom: 10px;
      font-size: 1.05em;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Floating buttons (Register/Login) */
    .page-8k8-com-4__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      background-color: rgba(26, 26, 46, 0.8); /* Semi-transparent background */
      padding: 10px 20px;
      border-radius: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(5px); /* Modern touch */
    }

    .page-8k8-com-4__floating-button {
      padding: 10px 20px;
      border-radius: 25px;
      font-weight: bold;
      font-size: 1.05em;
      cursor: pointer;
      border: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      color: #ffffff;
    }

    .page-8k8-com-4__floating-button--register {
      background-color: #e94560;
    }

    .page-8k8-com-4__floating-button--register:hover {
      background-color: #b8364e;
      transform: translateY(-2px);
    }

    .page-8k8-com-4__floating-button--login {
      background-color: #533483;
    }

    .page-8k8-com-4__floating-button--login:hover {
      background-color: #412a64;
      transform: translateY(-2px);
    }

    /* FAQ Section */
    .page-8k8-com-4__faq-item {
      background-color: #2e3a59;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-com-4__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #16213e;
      border-bottom: 1px solid #3e4a6e;
      transition: background-color 0.3s ease;
    }

    .page-8k8-com-4__faq-question:hover {
      background-color: #253355;
    }

    .page-8k8-com-4__faq-question h3 {
      margin: 0;
      color: #e94560;
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-8k8-com-4__faq-toggle {
      font-size: 1.8em;
      color: #e94560;
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

    .page-8k8-com-4__faq-item.active .page-8k8-com-4__faq-toggle {
      transform: rotate(45deg); /* Change + to X (or similar) */
    }

    .page-8k8-com-4__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: #cccccc;
      font-size: 1em;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

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

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-8k8-com-4__hero-title {
        font-size: 3em;
      }
      .page-8k8-com-4__hero-text {
        font-size: 1.2em;
      }
      .page-8k8-com-4__title {
        font-size: 2.2em;
      }
      .page-8k8-com-4__subtitle {
        font-size: 1.6em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-com-4__container {
        padding: 15px;
      }

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

      .page-8k8-com-4__hero-title {
        font-size: 2.2em;
      }

      .page-8k8-com-4__hero-text {
        font-size: 1em;
      }

      .page-8k8-com-4__hero-buttons {
        flex-direction: column;
        gap: 10px;
      }

      .page-8k8-com-4__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }

      .page-8k8-com-4__title {
        font-size: 1.8em;
      }

      .page-8k8-com-4__subtitle {
        font-size: 1.4em;
      }

      /* Responsive list items */
      .page-8k8-com-4__games-grid,
      .page-8k8-com-4__payments-list,
      .page-8k8-com-4__providers-list,
      .page-8k8-com-4__promotions-list {
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 15px;
      }

      .page-8k8-com-4__game-item,
      .page-8k8-com-4__payment-item,
      .page-8k8-com-4__provider-item,
      .page-8k8-com-4__promotion-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important;
      }

      .page-8k8-com-4__access-steps {
        flex-direction: column;
        gap: 20px;
      }

      .page-8k8-com-4__step-card {
        max-width: 100%;
        padding: 20px;
      }

      .page-8k8-com-4__floating-buttons {
        flex-direction: column;
        width: calc(100% - 40px);
        left: 20px;
        transform: none;
        bottom: 10px;
        padding: 10px;
        border-radius: 10px;
      }

      .page-8k8-com-4__floating-button {
        width: 100%;
        margin-bottom: 5px; /* Space between buttons */
      }

      .page-8k8-com-4__faq-question {
        padding: 15px;
      }

      .page-8k8-com-4__faq-question h3 {
        font-size: 1.1em;
      }

      .page-8k8-com-4__faq-answer {
        padding: 0 15px;
      }

      .page-8k8-com-4__faq-item.active .page-8k8-com-4__faq-answer {
        padding: 15px !important;
      }

      /* Image responsive */
      .page-8k8-com-4__image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-com-4__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-4__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-com-4__title {
        font-size: 1.5em;
      }
      .page-8k8-com-4__subtitle {
        font-size: 1.2em;
      }
      .page-8k8-com-4__floating-buttons {
        bottom: 5px;
        left: 10px;
        width: calc(100% - 20px);
      }
      .page-8k8-com-4__faq-question h3 {
        font-size: 1em;
      }
    }
  