
    /* Base Styles */
    .page-8k8-com-2 {
      font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #f9f9f9;
      padding-top: 10px; /* Small decorative top padding, assuming body has main offset */
    }

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

    .page-8k8-com-2__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-8k8-com-2__section--light {
      background-color: #ffffff;
    }

    .page-8k8-com-2__section--dark {
      background-color: #f0f2f5;
    }

    .page-8k8-com-2__heading {
      font-size: 2.8em;
      color: #1a237e; /* Dark blue */
      margin-bottom: 25px;
      font-weight: 700;
    }

    .page-8k8-com-2__subheading {
      font-size: 1.8em;
      color: #3f51b5; /* Medium blue */
      margin-bottom: 20px;
      font-weight: 600;
    }

    .page-8k8-com-2__paragraph {
      font-size: 1.1em;
      color: #555;
      margin-bottom: 15px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-8k8-com-2__hero-section {
      background: linear-gradient(135deg, #1a237e, #3f51b5); /* Dark to medium blue gradient */
      color: #ffffff;
      padding: 100px 0;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 500px;
    }

    .page-8k8-com-2__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 1;
      max-width: 100%;
    }

    .page-8k8-com-2__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      text-align: center;
    }

    .page-8k8-com-2__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      line-height: 1.2;
      font-weight: 800;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-com-2__hero-description {
      font-size: 1.4em;
      margin-bottom: 30px;
      opacity: 0.9;
    }

    .page-8k8-com-2__cta-button {
      display: inline-block;
      background-color: #ffc107; /* Amber */
      color: #1a237e; /* Dark blue */
      padding: 15px 40px;
      border-radius: 8px;
      font-size: 1.3em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-com-2__cta-button:hover {
      background-color: #ffa000; /* Darker amber */
      transform: translateY(-3px);
    }

    /* Features/Games Section */
    .page-8k8-com-2__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-com-2__feature-card {
      background-color: #ffffff;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
      padding: 30px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-8k8-com-2__feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }

    .page-8k8-com-2__feature-icon {
      width: 100%;
      height: auto;
      max-width: 300px;
      border-radius: 8px;
      margin-bottom: 20px;
      object-fit: cover;
      max-height: 200px;
    }

    .page-8k8-com-2__feature-title {
      font-size: 1.5em;
      color: #1a237e;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .page-8k8-com-2__feature-description {
      font-size: 1em;
      color: #666;
    }

    /* Benefits Section */
    .page-8k8-com-2__benefits-list {
      list-style: none;
      padding: 0;
      margin: 40px auto 0 auto;
      max-width: 900px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .page-8k8-com-2__benefit-item {
      background-color: #e3f2fd; /* Light blue */
      border-left: 5px solid #3f51b5; /* Medium blue */
      padding: 20px 30px;
      border-radius: 8px;
      text-align: left;
      font-size: 1.1em;
      color: #1a237e;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
    }

    .page-8k8-com-2__benefit-item strong {
      color: #0d47a1; /* Darker blue */
    }

    /* Payment Methods */
    .page-8k8-com-2__payments-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      margin-top: 40px;
    }

    .page-8k8-com-2__payment-method {
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
      padding: 20px;
      width: 180px;
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-com-2__payment-method:hover {
      transform: translateY(-5px);
    }

    .page-8k8-com-2__payment-icon {
      width: 100%;
      height: auto;
      max-width: 120px;
      margin-bottom: 15px;
      object-fit: contain;
      max-height: 80px;
    }

    .page-8k8-com-2__payment-name {
      font-size: 1.1em;
      font-weight: 600;
      color: #333;
    }

    /* FAQ Section */
    .page-8k8-com-2__faq-list {
      max-width: 800px;
      margin: 40px auto 0 auto;
      text-align: left;
    }

    .page-8k8-com-2__faq-item {
      background-color: #ffffff;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
      box-sizing: border-box;
    }

    .page-8k8-com-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #f5f5f5;
      color: #1a237e;
      font-weight: 600;
      font-size: 1.2em;
      transition: background-color 0.3s ease;
      user-select: none;
      box-sizing: border-box;
    }

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

    .page-8k8-com-2__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click */
      color: #1a237e;
      font-size: 1em; /* Adjust to fit parent font size */
    }

    .page-8k8-com-2__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-8k8-com-2__faq-item.active .page-8k8-com-2__faq-toggle {
      transform: rotate(45deg); /* Plus to X effect */
    }

    .page-8k8-com-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial horizontal padding */
      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;
      font-size: 1.05em;
      box-sizing: border-box;
    }

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

    /* Call to Action Section */
    .page-8k8-com-2__cta-section {
      background: linear-gradient(135deg, #3f51b5, #1a237e); /* Medium to dark blue gradient */
      color: #ffffff;
      padding: 80px 0;
    }

    .page-8k8-com-2__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .page-8k8-com-2__cta-description {
      font-size: 1.2em;
      margin-bottom: 40px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-com-2__hero-title {
        font-size: 3em;
      }
      .page-8k8-com-2__hero-description {
        font-size: 1.3em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-com-2__section {
        padding: 40px 0;
      }

      .page-8k8-com-2__heading {
        font-size: 2.2em;
      }

      .page-8k8-com-2__subheading {
        font-size: 1.5em;
      }

      .page-8k8-com-2__paragraph {
        font-size: 1em;
      }

      .page-8k8-com-2__hero-section {
        padding: 80px 0;
        min-height: 400px;
      }

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

      .page-8k8-com-2__hero-description {
        font-size: 1.1em;
      }

      .page-8k8-com-2__cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
      }

      .page-8k8-com-2__features-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-com-2__feature-card {
        padding: 25px;
      }

      .page-8k8-com-2__feature-title {
        font-size: 1.3em;
      }

      .page-8k8-com-2__benefits-list {
        margin: 30px auto 0 auto;
      }

      .page-8k8-com-2__benefit-item {
        font-size: 1em;
        padding: 15px 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-com-2__payments-grid {
        gap: 15px;
      }

      .page-8k8-com-2__payment-method {
        width: 150px;
        padding: 15px;
      }

      .page-8k8-com-2__faq-list {
        margin: 30px auto 0 auto;
      }

      .page-8k8-com-2__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-8k8-com-2__faq-answer {
        padding: 0 20px;
      }

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

      .page-8k8-com-2__cta-title {
        font-size: 2em;
      }

      .page-8k8-com-2__cta-description {
        font-size: 1.1em;
      }

      /* Image responsive */
      .page-8k8-com-2__hero-image,
      .page-8k8-com-2__feature-icon,
      .page-8k8-com-2__payment-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-com-2__hero-section .page-8k8-com-2__hero-image-container,
      .page-8k8-com-2__feature-card,
      .page-8k8-com-2__payment-method {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-8k8-com-2__payments-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-2__hero-title {
        font-size: 2em;
      }
      .page-8k8-com-2__hero-description {
        font-size: 1em;
      }
      .page-8k8-com-2__heading {
        font-size: 1.8em;
      }
      .page-8k8-com-2__subheading {
        font-size: 1.3em;
      }
      .page-8k8-com-2__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }
      .page-8k8-com-2__faq-answer {
        font-size: 0.95em;
        padding: 0 15px;
      }
      .page-8k8-com-2__faq-item.active .page-8k8-com-2__faq-answer {
        padding: 12px 15px !important;
      }
      .page-8k8-com-2__payments-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-8k8-com-2__payment-method {
        width: 100%;
        max-width: 100%;
      }
    }
  