
    :root {
      --primary-color: #e0b000; /* Gold-like color for accents */
      --secondary-color: #c09a00; /* Darker gold */
      --background-dark: #1a1a1a;
      --text-light: #ffffff;
      --text-dark: #333333;
      --border-color: #444444;
      --button-bg-hover: #ffcc00;
      --button-text-color: #1a1a1a;
      --shadow-color: rgba(0, 0, 0, 0.5);
      --faq-question-bg: #2a2a2a;
      --faq-answer-bg: #333333;
    }

    /* Base styles for the page, ensuring it doesn't affect global elements */
    .page-888k-2 {
      font-family: 'Arial', sans-serif;
      background-color: var(--background-dark);
      color: var(--text-light);
      line-height: 1.6;
      padding-top: 10px; /* Small top padding, assuming body padding-top handles header offset */
    }

    /* Fallback for body padding-top if not handled by shared.css */
    @media (max-width: 768px) {
      .page-888k-2 {
        padding-top: var(--header-offset, 122px);
      }
    }

    /* Section styling */
    .page-888k-2__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      border-bottom: 1px solid var(--border-color);
    }
    .page-888k-2__section--no-border {
      border-bottom: none;
    }

    .page-888k-2__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    /* Headings */
    .page-888k-2__h1,
    .page-888k-2__h2,
    .page-888k-2__h3 {
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 25px;
      font-weight: bold;
    }
    .page-888k-2__h1 {
      font-size: 2.8em;
      text-shadow: 2px 2px 4px var(--shadow-color);
    }
    .page-888k-2__h2 {
      font-size: 2.2em;
      margin-top: 40px;
      color: var(--text-light);
    }
    .page-888k-2__h3 {
      font-size: 1.6em;
      color: var(--primary-color);
      text-align: left;
    }

    /* Paragraphs */
    .page-888k-2__paragraph {
      margin-bottom: 15px;
      color: var(--text-light);
      word-wrap: break-word; /* Ensure long words break */
      overflow-wrap: break-word;
    }
    .page-888k-2__paragraph strong {
      color: var(--primary-color);
    }

    /* Buttons */
    .page-888k-2__button {
      display: inline-block;
      padding: 12px 25px;
      background-color: var(--primary-color);
      color: var(--button-text-color);
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      box-shadow: 0 4px 8px var(--shadow-color);
    }
    .page-888k-2__button:hover {
      background-color: var(--button-bg-hover);
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-888k-2__hero-section {
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
      position: relative;
      overflow: hidden;
      margin-bottom: 30px;
    }
    .page-888k-2__hero-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      margin-top: 30px;
      box-shadow: 0 8px 16px var(--shadow-color);
    }
    .page-888k-2__hero-content {
      position: relative;
      z-index: 2;
    }

    /* Floating Register/Login Buttons */
    .page-888k-2__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .page-888k-2__floating-button {
      background-color: var(--primary-color);
      color: var(--button-text-color);
      padding: 10px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      min-width: 100px;
    }
    .page-888k-2__floating-button:hover {
      background-color: var(--button-bg-hover);
      transform: scale(1.05);
    }

    /* Product Grid */
    .page-888k-2__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      justify-content: center; /* Center items in the grid */
      margin-top: 30px;
    }
    .page-888k-2__product-card {
      background-color: var(--faq-question-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px var(--shadow-color);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%; /* Ensure cards have equal height */
    }
    .page-888k-2__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px var(--shadow-color);
    }
    .page-888k-2__product-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistent image display */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .page-888k-2__product-image {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Cover the area, cropping if necessary */
      display: block;
    }
    .page-888k-2__product-info {
      padding: 20px;
      flex-grow: 1; /* Allow info section to grow */
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .page-888k-2__product-title {
      font-size: 1.4em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }
    .page-888k-2__product-description {
      font-size: 0.95em;
      color: var(--text-light);
      margin-bottom: 15px;
      flex-grow: 1; /* Allow description to grow */
    }
    .page-888k-2__product-button {
      display: block;
      width: fit-content;
      margin: 0 auto;
      background-color: var(--secondary-color);
      color: var(--button-text-color);
      padding: 8px 15px;
      border-radius: 5px;
      font-size: 0.9em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }
    .page-888k-2__product-button:hover {
      background-color: var(--button-bg-hover);
    }

    /* Promotions Section */
    .page-888k-2__promotions-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }
    .page-888k-2__promotion-item {
      background-color: var(--faq-question-bg);
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 2px 8px var(--shadow-color);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }
    .page-888k-2__promotion-item:hover {
      transform: translateY(-3px);
    }
    .page-888k-2__promotion-title {
      color: var(--primary-color);
      font-size: 1.5em;
      margin-bottom: 10px;
    }
    .page-888k-2__promotion-description {
      color: var(--text-light);
      font-size: 0.95em;
      margin-bottom: 15px;
    }

    /* Why Choose Us Section */
    .page-888k-2__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }
    .page-888k-2__feature-item {
      background-color: var(--faq-question-bg);
      padding: 25px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 2px 8px var(--shadow-color);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100%;
    }
    .page-888k-2__feature-icon-wrapper {
        width: 100px; /* Ensure icon wrapper is large enough */
        height: 100px;
        margin-bottom: 15px;
    }
    .page-888k-2__feature-icon {
      width: 100%;
      height: 100%;
      object-fit: contain;
      border-radius: 5px; /* Added for consistency */
    }
    .page-888k-2__feature-title {
      color: var(--primary-color);
      font-size: 1.3em;
      margin-bottom: 10px;
    }
    .page-888k-2__feature-description {
      color: var(--text-light);
      font-size: 0.9em;
    }

    /* FAQ Section */
    .page-888k-2__faq-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
    }
    .page-888k-2__faq-item {
      background-color: var(--faq-question-bg);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px var(--shadow-color);
    }
    .page-888k-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      color: var(--primary-color);
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }
    .page-888k-2__faq-question h3 {
      margin: 0;
      color: var(--primary-color);
      font-size: 1.1em;
      pointer-events: none; /* Crucial for click event to work on parent */
      flex-grow: 1;
    }
    .page-888k-2__faq-question:hover {
      background-color: #3a3a3a;
    }
    .page-888k-2__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Crucial for click event to work on parent */
    }
    .page-888k-2__faq-item.active .page-888k-2__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
    }
    .page-888k-2__faq-answer {
      background-color: var(--faq-answer-bg);
      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: var(--text-light);
    }
    .page-888k-2__faq-item.active .page-888k-2__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 15px !important;
      opacity: 1;
    }
    .page-888k-2__faq-answer p {
      margin: 0;
      color: var(--text-light);
      word-wrap: break-word; /* Ensure long words break */
      overflow-wrap: break-word;
    }

    /* Partners & Payments */
    .page-888k-2__partners-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-content: center;
      margin-top: 30px;
    }
    .page-888k-2__partner-item {
      background-color: var(--faq-question-bg);
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 6px var(--shadow-color);
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 80px; /* Ensure minimum height */
    }
    .page-888k-2__partner-logo {
      max-width: 100%;
      max-height: 60px;
      height: auto;
      object-fit: contain;
    }

    /* Social Media */
    .page-888k-2__social-links {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
      flex-wrap: wrap;
    }
    .page-888k-2__social-link {
      color: var(--primary-color);
      font-size: 2.5em;
      transition: color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: inline-flex; /* For better icon alignment */
      align-items: center;
      justify-content: center;
    }
    .page-888k-2__social-link:hover {
      color: var(--button-bg-hover);
      transform: translateY(-3px);
    }
    .page-888k-2__social-icon-wrapper {
        width: 60px; /* Larger wrapper for social icons */
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background-color: #333;
        box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    }
    .page-888k-2__social-icon {
        width: 80%;
        height: 80%;
        object-fit: contain;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-888k-2__h1 {
        font-size: 2em;
      }
      .page-888k-2__h2 {
        font-size: 1.8em;
      }
      .page-888k-2__h3 {
        font-size: 1.4em;
      }
      .page-888k-2__section {
        padding: 30px 15px;
      }
      .page-888k-2__container {
        padding: 0 10px;
      }
      .page-888k-2__product-grid,
      .page-888k-2__promotions-list,
      .page-888k-2__features-grid,
      .page-888k-2__partners-grid {
        grid-template-columns: 1fr; /* Single column layout for most grids */
        gap: 15px;
      }

      /* List item mobile responsiveness */
      .page-888k-2__promotions-list li,
      .page-888k-2__features-grid > div,
      .page-888k-2__partners-grid > div {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for smaller screens */
      }
      .page-888k-2__product-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-888k-2__product-image-wrapper {
        height: 180px; /* Adjust height for mobile */
      }

      .page-888k-2__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }
      .page-888k-2__faq-question h3 {
        font-size: 1em;
      }
      .page-888k-2__faq-answer {
        padding: 0 15px;
      }
      .page-888k-2__faq-item.active .page-888k-2__faq-answer {
        padding: 15px !important;
      }

      .page-888k-2__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Buttons side-by-side on smaller screens */
        width: calc(100% - 30px);
        justify-content: space-around;
      }
      .page-888k-2__floating-button {
        flex: 1; /* Distribute space evenly */
        max-width: 48%; /* Ensure they don't overlap */
      }

      /* Ensure all images are responsive on mobile */
      .page-888k-2 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-888k-2__hero-image,
      .page-888k-2__product-image,
      .page-888k-2__feature-icon,
      .page-888k-2__partner-logo,
      .page-888k-2__social-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-888k-2__product-image-wrapper,
      .page-888k-2__feature-icon-wrapper,
      .page-888k-2__partner-item,
      .page-888k-2__social-icon-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  