
    /* Base styles for the page */
    .page-8k8-com-3 {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0; /* Light gray text for high contrast on dark background */
      background-color: #1a1a1a; /* Dark background */
      line-height: 1.6;
      padding-bottom: 50px; /* Ensure space above footer */
    }

    /* Hero Section */
    .page-8k8-com-3__hero-section {
      padding-top: 10px; /* Small decorative padding, assuming body handles main offset */
      position: relative;
      overflow: hidden;
      text-align: center;
      color: #ffffff;
      min-height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      background: linear-gradient(135deg, #0a0a0a, #333333);
    }

    .page-8k8-com-3__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-8k8-com-3__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: #ffcc00; /* Gold accent for headings */
      text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
      font-weight: bold;
    }

    .page-8k8-com-3__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #ffffff;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-com-3__cta-button {
      display: inline-block;
      background-color: #007bff; /* Blue for primary call to action */
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      border: none;
    }

    .page-8k8-com-3__cta-button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    /* General Section Styling */
    .page-8k8-com-3__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-8k8-com-3__section--dark {
      background-color: #222222;
    }

    .page-8k8-com-3__section--light {
      background-color: #1a1a1a;
    }

    .page-8k8-com-3__section-title {
      font-size: 2.8em;
      color: #ffcc00; /* Gold accent */
      margin-bottom: 40px;
      font-weight: bold;
    }

    .page-8k8-com-3__section-text {
      font-size: 1.1em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    /* Grid Layouts for Features, Games, Providers, Payments */
    .page-8k8-com-3__features-grid,
    .page-8k8-com-3__games-grid,
    .page-8k8-com-3__providers-grid,
    .page-8k8-com-3__payments-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-com-3__feature-item,
    .page-8k8-com-3__game-card,
    .page-8k8-com-3__provider-card,
    .page-8k8-com-3__payment-card {
      background-color: #2a2a2a;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-com-3__feature-item:hover,
    .page-8k8-com-3__game-card:hover,
    .page-8k8-com-3__provider-card:hover,
    .page-8k8-com-3__payment-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-com-3__item-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      display: block;
    }

    .page-8k8-com-3__item-title {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-8k8-com-3__item-description {
      font-size: 1em;
      color: #c0c0c0;
    }

    /* Promotions Section */
    .page-8k8-com-3__promo-card {
      background-color: #333333;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      box-sizing: border-box;
      position: relative;
      overflow: hidden;
    }

    .page-8k8-com-3__promo-card-image-container {
      width: 100%;
      height: 200px;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 20px;
    }

    .page-8k8-com-3__promo-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-8k8-com-3__promo-card-title {
      font-size: 1.8em;
      color: #ffcc00;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-8k8-com-3__promo-card-description {
      font-size: 1em;
      color: #c0c0c0;
      margin-bottom: 20px;
    }

    .page-8k8-com-3__promo-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;
    }

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

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

    .page-8k8-com-3__faq-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-com-3__faq-item:hover {
      background-color: #333333;
    }

    .page-8k8-com-3__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      color: #ffcc00;
      font-weight: bold;
      position: relative;
    }
    .page-8k8-com-3__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #ffcc00;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-8k8-com-3__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent */
    }

    .page-8k8-com-3__faq-item.active .page-8k8-com-3__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or similar, or just change text to '-' */
    }

    .page-8k8-com-3__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #c0c0c0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 1em;
    }

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

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

    .page-8k8-com-3__floating-button {
      background-color: #ffcc00; /* Gold accent */
      color: #1a1a1a;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-8k8-com-3__hero-title {
        font-size: 2.5em;
      }

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

      .page-8k8-com-3__section {
        padding: 40px 15px;
      }

      .page-8k8-com-3__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }

      .page-8k8-com-3__features-grid,
      .page-8k8-com-3__games-grid,
      .page-8k8-com-3__providers-grid,
      .page-8k8-com-3__payments-grid {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
      }

      /* List item responsive requirements */
      .page-8k8-com-3__feature-item,
      .page-8k8-com-3__game-card,
      .page-8k8-com-3__provider-card,
      .page-8k8-com-3__payment-card,
      .page-8k8-com-3__promo-card,
      .page-8k8-com-3__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for mobile */
      }
      .page-8k8-com-3__feature-item .page-8k8-com-3__item-description,
      .page-8k8-com-3__game-card .page-8k8-com-3__item-description,
      .page-8k8-com-3__provider-card .page-8k8-com-3__item-description,
      .page-8k8-com-3__payment-card .page-8k8-com-3__item-description,
      .page-8k8-com-3__promo-card .page-8k8-com-3__promo-card-description,
      .page-8k8-com-3__faq-answer {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-com-3__faq-question {
        padding: 15px 20px;
      }
      .page-8k8-com-3__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-com-3__faq-answer {
        padding: 15px 20px !important;
      }

      /* Images responsive requirements */
      .page-8k8-com-3__item-image,
      .page-8k8-com-3__promo-card-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-com-3__promo-card-image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-3__floating-buttons {
        bottom: 15px;
        right: 15px;
      }
      .page-8k8-com-3__floating-button {
        padding: 10px 20px;
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-3__hero-title {
        font-size: 2em;
      }
      .page-8k8-com-3__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-com-3__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
    }
  