
    /* Ensure body padding-top is handled by shared.css */
    .page-8k8-com {
      font-family: Arial, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-bottom: 80px; /* Space for floating buttons */
      max-width: 100%; /* Ensure no horizontal overflow */
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

    /* Base styles for sections */
    .page-8k8-com__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
      box-sizing: border-box;
    }

    .page-8k8-com__section--dark {
      background-color: #2a2a2a;
      color: #f0f0f0;
    }

    .page-8k8-com__section-title {
      font-size: 2.5em;
      color: #007bff; /* Primary brand color */
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
      word-wrap: break-word; /* Ensure titles wrap */
    }

    .page-8k8-com__section--dark .page-8k8-com__section-title {
      color: #fff;
    }

    /* Hero Section */
    .page-8k8-com__hero-section {
      background: linear-gradient(135deg, #0056b3, #007bff);
      color: #fff;
      text-align: center;
      padding: 10px 20px 60px; /* Decorative padding-top, assuming body has offset from shared.css */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .page-8k8-com__hero-content {
      max-width: 900px;
      z-index: 1;
    }

    .page-8k8-com__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      line-height: 1.2;
      font-weight: 700;
      word-wrap: break-word;
    }

    .page-8k8-com__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      word-wrap: break-word;
    }

    .page-8k8-com__promo-button {
      display: inline-block;
      background-color: #ffc107; /* Accent color */
      color: #333;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      word-wrap: break-word;
    }

    .page-8k8-com__promo-button:hover {
      background-color: #e0a800;
      transform: translateY(-3px);
    }

    .page-8k8-com__hero-image {
      margin-top: 40px;
      border-radius: 15px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* About Section */
    .page-8k8-com__about-content {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      align-items: center;
      justify-content: center;
    }

    .page-8k8-com__about-text {
      flex: 1;
      min-width: 300px;
      font-size: 1.1em;
      word-wrap: break-word;
    }

    .page-8k8-com__about-image {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Features/Products Grid */
    .page-8k8-com__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      padding: 0;
    }

    .page-8k8-com__feature-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      padding: 30px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      word-wrap: break-word;
    }

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

    .page-8k8-com__feature-icon {
      margin-bottom: 20px;
      width: 200px; /* Minimum size */
      height: 200px; /* Minimum size */
      object-fit: contain;
      max-width: 100%;
      height: auto;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-com__feature-title {
      font-size: 1.5em;
      color: #007bff;
      margin-bottom: 15px;
      word-wrap: break-word;
    }

    .page-8k8-com__feature-description {
      font-size: 1em;
      color: #555;
      word-wrap: break-word;
    }

    /* Game Providers Section */
    .page-8k8-com__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-items: center;
      margin-top: 30px;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      padding: 0;
    }

    .page-8k8-com__provider-logo {
      width: 200px; /* Minimum size */
      height: 100px;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: filter 0.3s ease, opacity 0.3s ease;
      max-width: 100%;
      height: auto;
      display: block;
    }

    .page-8k8-com__provider-logo:hover {
      filter: grayscale(0%);
      opacity: 1;
    }

    /* Payment Methods Section */
    .page-8k8-com__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      margin-top: 30px;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      padding: 0;
    }

    .page-8k8-com__payment-item {
      background-color: #fff;
      border-radius: 8px;
      padding: 20px 30px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      text-align: center;
      min-width: 150px;
      flex-basis: auto;
      box-sizing: border-box;
      transition: transform 0.2s ease;
      word-wrap: break-word;
    }

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

    .page-8k8-com__payment-icon {
      width: 200px; /* Minimum size */
      height: 80px;
      object-fit: contain;
      margin-bottom: 10px;
      max-width: 100%;
      height: auto;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-com__payment-name {
      font-weight: bold;
      color: #333;
      word-wrap: break-word;
    }

    /* Floating Buttons */
    .page-8k8-com__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
    }

    .page-8k8-com__floating-button {
      background-color: #007bff;
      color: #fff;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      word-wrap: break-word;
    }

    .page-8k8-com__floating-button--register {
      background-color: #28a745; /* Green for register */
    }

    .page-8k8-com__floating-button--register:hover {
      background-color: #218838;
      transform: translateY(-2px);
    }

    .page-8k8-com__floating-button--login {
      background-color: #007bff; /* Blue for login */
    }

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

    /* FAQ Section */
    .page-8k8-com__faq-section {
      background-color: #fff;
    }

    .page-8k8-com__faq-container {
      max-width: 800px;
      margin: 0 auto;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      padding: 0;
    }

    .page-8k8-com__faq-item {
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-sizing: border-box;
      width: 100%;
      max-width: 100%;
      margin-left: 0;
      margin-right: 0;
    }

    .page-8k8-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f0f0f0;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      color: #333;
      transition: background-color 0.3s ease;
      word-wrap: break-word;
    }

    .page-8k8-com__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-8k8-com__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-8k8-com__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
      transition: transform 0.3s ease;
    }

    .page-8k8-com__faq-item.active .page-8k8-com__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually, or '-' */
    }

    .page-8k8-com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      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;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

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

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-8k8-com__hero-title {
        font-size: 3em;
      }
      .page-8k8-com__hero-subtitle {
        font-size: 1.3em;
      }
      .page-8k8-com__section-title {
        font-size: 2em;
      }
      .page-8k8-com__about-content {
        flex-direction: column;
      }
      .page-8k8-com__about-image {
        max-width: 100%;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-com__hero-section {
        padding-top: 10px; /* Decorative padding-top */
        padding-bottom: 40px;
      }
      .page-8k8-com__hero-title {
        font-size: 2.2em;
      }
      .page-8k8-com__hero-subtitle {
        font-size: 1.1em;
      }
      .page-8k8-com__promo-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-com__section {
        padding: 30px 15px;
      }
      .page-8k8-com__section-title {
        font-size: 1.8em;
      }
      .page-8k8-com__feature-card {
        padding: 20px;
      }
      .page-8k8-com__feature-title {
        font-size: 1.3em;
      }
      .page-8k8-com__feature-icon,
      .page-8k8-com__provider-logo,
      .page-8k8-com__payment-icon {
        width: 150px !important; /* Adjust minimum size for mobile */
        height: auto !important;
      }

      /* List item responsive requirements */
      .page-8k8-com__features-grid,
      .page-8k8-com__providers-grid,
      .page-8k8-com__payment-methods {
        grid-template-columns: 1fr !important; /* Single column for grids */
        gap: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com__feature-card,
      .page-8k8-com__payment-item {
        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;
        word-break: break-word !important;
      }

      .page-8k8-com__faq-question {
        font-size: 1.1em;
        padding: 12px 15px;
      }

      .page-8k8-com__faq-answer {
        padding: 15px 15px !important;
      }

      .page-8k8-com__floating-buttons {
        gap: 10px;
        bottom: 15px;
      }

      .page-8k8-com__floating-button {
        padding: 10px 20px;
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-com__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-com__section-title {
        font-size: 1.5em;
      }
      .page-8k8-com__floating-buttons {
        width: calc(100% - 30px);
        justify-content: space-around;
        gap: 0;
      }
      .page-8k8-com__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9em;
      }
    }
  