
    :root {
      --page-8ok-primary-color: #0d1a26; /* Dark blue/black */
      --page-8ok-secondary-color: #1a2a3a; /* Slightly lighter dark blue */
      --page-8ok-accent-color: #ffcc00; /* Gold/Yellow */
      --page-8ok-text-color: #ffffff;
      --page-8ok-light-text-color: #e0e0e0;
      --page-8ok-button-hover-color: #e6b800;
      --page-8ok-border-color: #33475b;
      --page-8ok-shadow-color: rgba(0, 0, 0, 0.5);
      --page-8ok-max-width: 1200px;
      --page-8ok-padding-x: 15px;
    }

    .page-8ok {
      font-family: 'Arial', sans-serif;
      color: var(--page-8ok-text-color);
      background-color: var(--page-8ok-primary-color);
      line-height: 1.6;
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .page-8ok__container {
      max-width: var(--page-8ok-max-width);
      margin: 0 auto;
      padding: 20px var(--page-8ok-padding-x);
      box-sizing: border-box;
    }

    /* Section titles */
    .page-8ok__section-title {
      font-size: 2.5em;
      color: var(--page-8ok-accent-color);
      text-align: center;
      margin-bottom: 40px;
      text-shadow: 2px 2px 4px var(--page-8ok-shadow-color);
    }

    .page-8ok__section-title--light {
      color: var(--page-8ok-text-color);
      text-shadow: none;
    }

    /* Text content */
    .page-8ok__text-content {
      font-size: 1.1em;
      text-align: center;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: var(--page-8ok-light-text-color);
    }

    .page-8ok__text-content--light {
      color: var(--page-8ok-text-color);
    }

    /* Buttons */
    .page-8ok__button {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      text-align: center;
    }

    .page-8ok__button--primary {
      background-color: var(--page-8ok-accent-color);
      color: var(--page-8ok-primary-color);
      border: 2px solid var(--page-8ok-accent-color);
    }

    .page-8ok__button--primary:hover {
      background-color: var(--page-8ok-button-hover-color);
      transform: translateY(-2px);
    }

    .page-8ok__button--secondary {
      background-color: transparent;
      color: var(--page-8ok-accent-color);
      border: 2px solid var(--page-8ok-accent-color);
    }

    .page-8ok__button--secondary:hover {
      background-color: var(--page-8ok-accent-color);
      color: var(--page-8ok-primary-color);
      transform: translateY(-2px);
    }

    .page-8ok__button--cta {
      background-color: var(--page-8ok-accent-color);
      color: var(--page-8ok-primary-color);
      border: 2px solid var(--page-8ok-accent-color);
      padding: 15px 35px;
      font-size: 1.2em;
    }

    .page-8ok__button--cta:hover {
      background-color: var(--page-8ok-button-hover-color);
      transform: translateY(-3px);
    }

    .page-8ok__button--small {
      padding: 8px 15px;
      font-size: 0.9em;
      border-radius: 5px;
    }

    /* Hero Section */
    .page-8ok__hero-section {
      position: relative;
      background-color: var(--page-8ok-primary-color);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      min-height: 600px; /* Ensure sufficient height */
      padding-top: 10px; /* Small decorative top padding, assuming body handles header offset */
      padding-bottom: 50px;
      overflow: hidden;
    }

    .page-8ok__hero-image-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      overflow: hidden;
    }

    .page-8ok__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3; /* Subtle background image */
      max-width: 100%; /* Responsive image */
    }

    .page-8ok__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      padding: 20px var(--page-8ok-padding-x);
    }

    .page-8ok__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--page-8ok-accent-color);
      line-height: 1.2;
      text-shadow: 3px 3px 6px var(--page-8ok-shadow-color);
    }

    .page-8ok__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 40px;
      color: var(--page-8ok-light-text-color);
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8ok__hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
    }

    /* About Section */
    .page-8ok__about-section {
      background-color: var(--page-8ok-secondary-color);
      padding: 60px 0;
    }

    .page-8ok__content-image {
      display: block;
      margin: 0 auto 30px auto;
      border-radius: 10px;
      box-shadow: 0 5px 15px var(--page-8ok-shadow-color);
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }

    /* Products Section */
    .page-8ok__products-section {
      background-color: var(--page-8ok-primary-color);
      padding: 60px 0;
    }

    .page-8ok__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
    }

    .page-8ok__product-card {
      background-color: var(--page-8ok-secondary-color);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px var(--page-8ok-shadow-color);
      text-align: center;
      padding-bottom: 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8ok__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px var(--page-8ok-shadow-color);
    }

    .page-8ok__product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      margin-bottom: 15px;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8ok__product-title {
      font-size: 1.5em;
      color: var(--page-8ok-accent-color);
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-8ok__product-description {
      font-size: 0.95em;
      color: var(--page-8ok-light-text-color);
      padding: 0 15px;
    }

    /* Promotions Section */
    .page-8ok__promotions-section {
      background-color: var(--page-8ok-secondary-color);
      padding: 60px 0;
    }

    .page-8ok__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      justify-content: center;
    }

    .page-8ok__promo-card {
      background-color: var(--page-8ok-primary-color);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px var(--page-8ok-shadow-color);
      text-align: center;
      padding-bottom: 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8ok__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px var(--page-8ok-shadow-color);
    }

    .page-8ok__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      margin-bottom: 15px;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8ok__promo-title {
      font-size: 1.4em;
      color: var(--page-8ok-accent-color);
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-8ok__promo-description {
      font-size: 0.95em;
      color: var(--page-8ok-light-text-color);
      margin-bottom: 20px;
      padding: 0 15px;
    }

    /* Features Section */
    .page-8ok__features-section {
      background-color: var(--page-8ok-primary-color);
      padding: 60px 0;
    }

    .page-8ok__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      list-style: none;
      padding: 0;
      margin: 0;
      justify-content: center;
    }

    .page-8ok__feature-item {
      background-color: var(--page-8ok-secondary-color);
      border-radius: 10px;
      box-shadow: 0 4px 10px var(--page-8ok-shadow-color);
      padding: 30px 20px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for list item responsiveness */
    }

    .page-8ok__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px var(--page-8ok-shadow-color);
    }

    .page-8ok__feature-icon {
      width: 100px;
      height: 100px;
      object-fit: contain;
      margin-bottom: 20px;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8ok__feature-heading {
      font-size: 1.4em;
      color: var(--page-8ok-accent-color);
      margin-bottom: 10px;
    }

    .page-8ok__feature-text {
      font-size: 0.95em;
      color: var(--page-8ok-light-text-color);
    }

    /* FAQ Section */
    .page-8ok__faq-section {
      background-color: var(--page-8ok-secondary-color);
      padding: 60px 0;
    }

    .page-8ok__faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-8ok__faq-item {
      background-color: var(--page-8ok-primary-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px var(--page-8ok-shadow-color);
    }

    .page-8ok__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      user-select: none;
      background-color: var(--page-8ok-primary-color);
      border-bottom: 1px solid var(--page-8ok-border-color);
      transition: background-color 0.3s ease;
    }

    .page-8ok__faq-question:hover {
      background-color: #1f3143; /* Slightly lighter on hover */
    }

    .page-8ok__faq-heading {
      font-size: 1.2em;
      color: var(--page-8ok-text-color);
      margin: 0;
      flex-grow: 1;
      text-align: left;
      pointer-events: none; /* Prevent text selection from interfering with click */
    }

    .page-8ok__faq-toggle {
      font-size: 1.8em;
      color: var(--page-8ok-accent-color);
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from interfering with click */
    }

    .page-8ok__faq-item.active .page-8ok__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'X' or similar effect */
    }

    .page-8ok__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;
      background-color: var(--page-8ok-secondary-color);
      color: var(--page-8ok-light-text-color);
      text-align: left;
    }

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

    .page-8ok__faq-answer p {
      margin: 0;
      padding-bottom: 5px;
    }

    /* CTA Section */
    .page-8ok__cta-section {
      background-image: linear-gradient(to right, var(--page-8ok-primary-color), var(--page-8ok-secondary-color));
      padding: 80px 0;
      text-align: center;
    }

    .page-8ok__cta-content {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

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

    .page-8ok__floating-button {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100px;
      height: 45px;
      border-radius: 25px;
      font-weight: bold;
      font-size: 1em;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      color: var(--page-8ok-primary-color); /* Ensure high contrast */
    }

    .page-8ok__floating-button--register {
      background-color: var(--page-8ok-accent-color);
    }

    .page-8ok__floating-button--register:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    }

    .page-8ok__floating-button--login {
      background-color: #a0a0a0; /* A neutral gray for login */
      color: var(--page-8ok-primary-color);
    }

    .page-8ok__floating-button--login:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    }


    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8ok__hero-title {
        font-size: 3em;
      }
      .page-8ok__section-title {
        font-size: 2em;
      }
      .page-8ok__hero-subtitle {
        font-size: 1.2em;
      }
    }

    @media (max-width: 768px) {
      .page-8ok__hero-section {
        min-height: 500px;
        padding-bottom: 30px;
      }
      .page-8ok__hero-title {
        font-size: 2.5em;
      }
      .page-8ok__hero-subtitle {
        font-size: 1.1em;
      }
      .page-8ok__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-8ok__button {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
      }
      .page-8ok__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-8ok__text-content {
        font-size: 1em;
      }

      /* List items responsive for features section */
      .page-8ok__feature-list {
        grid-template-columns: 1fr; /* Stack items */
        padding: 0 !important; /* Ensure no padding issue for container */
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-8ok__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 25px 15px; /* Adjust padding */
        word-wrap: break-word !important; /* Ensure text wraps */
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      /* Image responsiveness */
      .page-8ok__hero-image,
      .page-8ok__content-image,
      .page-8ok__product-image,
      .page-8ok__promo-image,
      .page-8ok__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8ok__product-grid,
      .page-8ok__promo-grid {
        grid-template-columns: 1fr;
      }

      .page-8ok__faq-question {
        padding: 15px;
      }
      .page-8ok__faq-heading {
        font-size: 1.1em;
      }
      .page-8ok__faq-answer {
        padding: 15px 15px !important; /* Adjusted padding for mobile */
      }

      .page-8ok__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Align horizontally for smaller screens if preferred, or keep vertical */
        gap: 8px;
      }
      .page-8ok__floating-button {
        width: 90px;
        height: 40px;
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
      .page-8ok__hero-title {
        font-size: 2em;
      }
      .page-8ok__hero-subtitle {
        font-size: 1em;
      }
      .page-8ok__section-title {
        font-size: 1.5em;
      }
      .page-8ok__floating-buttons {
        bottom: 10px;
        right: 10px;
        gap: 5px;
      }
      .page-8ok__floating-button {
        width: 80px;
        height: 35px;
        font-size: 0.85em;
      }
    }
  