
    /* General Styling */
    .page-8k8-com-2 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      padding-top: 10px; /* Small decorative padding, relying on body for main offset */
    }

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

    .page-8k8-com-2__section {
      background-color: #fff;
      margin-bottom: 30px;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-com-2__section-title {
      text-align: center;
      color: #0056b3; /* Darker blue for titles */
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
      position: relative;
    }

    .page-8k8-com-2__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: #007bff; /* Primary blue for underline */
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-8k8-com-2__text-center {
      text-align: center;
    }

    /* Hero Section */
    .page-8k8-com-2__hero-section {
      position: relative;
      overflow: hidden;
      background-color: #1a1a2e; /* Dark background for hero */
      color: #fff;
      padding: 60px 0;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
    }

    .page-8k8-com-2__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.6); /* Slightly dim the background image */
    }

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

    .page-8k8-com-2__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: #ffcc00; /* Gold/yellow for main title */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-com-2__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

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

    .page-8k8-com-2__hero-button {
      background-color: #007bff; /* Primary blue */
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none; /* Ensure it's a button, not a link */
      cursor: pointer;
    }

    .page-8k8-com-2__hero-button--secondary {
      background-color: #ffcc00; /* Gold/yellow */
      color: #1a1a2e;
    }

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

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

    /* Floating Buttons */
    .page-8k8-com-2__floating-buttons {
      position: fixed;
      top: 50%;
      right: 20px;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    .page-8k8-com-2__floating-button {
      background-color: #007bff;
      color: #fff;
      padding: 12px 20px;
      border-radius: 30px;
      text-align: center;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 4px 8px 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;
    }

    .page-8k8-com-2__floating-button:hover {
      background-color: #0056b3;
      transform: scale(1.05);
    }

    .page-8k8-com-2__floating-button--login {
      background-color: #ffcc00;
      color: #1a1a2e;
    }

    .page-8k8-com-2__floating-button--login:hover {
      background-color: #e6b800;
    }

    /* About Section */
    .page-8k8-com-2__about-content {
      display: flex;
      flex-direction: column;
      gap: 20px;
      text-align: justify;
    }

    .page-8k8-com-2__about-image-wrapper {
      text-align: center;
      margin-bottom: 20px;
    }

    .page-8k8-com-2__about-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      width: 100%;
      max-width: 800px;
      object-fit: cover;
    }

    /* Game Categories */
    .page-8k8-com-2__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-8k8-com-2__category-card {
      background-color: #f8f9fa;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8k8-com-2__category-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-com-2__category-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%;
    }

    .page-8k8-com-2__category-info {
      padding: 20px;
    }

    .page-8k8-com-2__category-title {
      font-size: 1.4em;
      color: #0056b3;
      margin-bottom: 10px;
    }

    .page-8k8-com-2__category-description {
      font-size: 0.95em;
      color: #555;
    }

    /* Promotions Section */
    .page-8k8-com-2__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    .page-8k8-com-2__promo-card {
      background-color: #eaf6ff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding-bottom: 20px;
    }

    .page-8k8-com-2__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-com-2__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      max-width: 100%;
    }

    .page-8k8-com-2__promo-info {
      padding: 20px 20px 0;
    }

    .page-8k8-com-2__promo-title {
      font-size: 1.5em;
      color: #007bff;
      margin-bottom: 10px;
    }

    .page-8k8-com-2__promo-description {
      font-size: 0.95em;
      color: #444;
      margin-bottom: 15px;
    }

    .page-8k8-com-2__promo-button {
      background-color: #007bff;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      display: inline-block;
      margin-top: 10px;
    }

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

    /* Payment Methods */
    .page-8k8-com-2__payment-methods-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-content: center;
    }

    .page-8k8-com-2__payment-item {
      text-align: center;
      padding: 15px;
      background-color: #f0f8ff;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
    }

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

    .page-8k8-com-2__payment-image {
      max-width: 100%;
      height: 60px; /* Consistent height for payment logos */
      object-fit: contain;
      margin-bottom: 10px;
      max-width: 150px; /* Ensure max width */
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

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

    /* Why Choose Us */
    .page-8k8-com-2__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-8k8-com-2__feature-card {
      background-color: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8k8-com-2__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-com-2__feature-icon {
      margin-bottom: 15px;
      width: 100px; /* Larger icons for features */
      height: 100px;
      object-fit: contain;
      max-width: 100%;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-com-2__feature-title {
      font-size: 1.3em;
      color: #0056b3;
      margin-bottom: 10px;
    }

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

    /* Call to Action */
    .page-8k8-com-2__cta-section {
      text-align: center;
      background-color: #007bff;
      color: #fff;
      padding: 50px 20px;
      border-radius: 8px;
      margin-top: 40px;
    }

    .page-8k8-com-2__cta-title {
      font-size: 2.2em;
      margin-bottom: 15px;
      color: #ffcc00;
    }

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

    .page-8k8-com-2__cta-button {
      background-color: #ffcc00;
      color: #1a1a2e;
      padding: 15px 35px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

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

    /* FAQ Section */
    .page-8k8-com-2__faq-section {
      padding: 40px 0;
      background-color: #f9f9f9;
      border-radius: 8px;
    }

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

    .page-8k8-com-2__faq-item {
      background-color: #fff;
      border: 1px solid #eee;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-com-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      cursor: pointer;
      background-color: #f0f8ff;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s ease;
    }

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

    .page-8k8-com-2__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #0056b3;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-8k8-com-2__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #007bff;
      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);
    }

    .page-8k8-com-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      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: 0.95em;
    }

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

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .page-8k8-com-2__container {
        padding: 15px;
      }

      .page-8k8-com-2__section {
        padding: 20px;
        margin-bottom: 20px;
      }

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

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

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

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

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

      .page-8k8-com-2__hero-button {
        width: 80%;
        margin: 0 auto;
      }

      .page-8k8-com-2__floating-buttons {
        right: 10px;
        gap: 10px;
      }

      .page-8k8-com-2__floating-button {
        padding: 10px 15px;
        font-size: 0.9em;
      }

      .page-8k8-com-2__game-categories,
      .page-8k8-com-2__promotions-grid,
      .page-8k8-com-2__payment-methods-grid,
      .page-8k8-com-2__features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .page-8k8-com-2__category-image,
      .page-8k8-com-2__promo-image {
        height: 180px;
      }

      .page-8k8-com-2__payment-item,
      .page-8k8-com-2__feature-card,
      .page-8k8-com-2__category-card,
      .page-8k8-com-2__promo-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

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

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

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

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

      .page-8k8-com-2__faq-question h3 {
        font-size: 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;
      }

      /* Image responsiveness */
      .page-8k8-com-2 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-2__about-image-wrapper,
      .page-8k8-com-2__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  