
    :root {
      --page-ae886-primary-color: #ffcc00; /* Gold/Yellow */
      --page-ae886-secondary-color: #333333; /* Dark Grey */
      --page-ae886-text-color: #ffffff; /* White */
      --page-ae886-background-dark: #1a1a1a; /* Very Dark Grey */
      --page-ae886-background-light: #2c2c2c; /* Slightly Lighter Dark Grey */
      --page-ae886-accent-color: #e60000; /* Red for emphasis */
    }

    .page-ae886 {
      font-family: 'Arial', sans-serif;
      color: var(--page-ae886-text-color);
      background-color: var(--page-ae886-background-dark);
      line-height: 1.6;
    }

    .page-ae886__section-title {
      font-size: 2.2em;
      color: var(--page-ae886-primary-color);
      text-align: center;
      margin-bottom: 20px;
      padding: 0 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      box-sizing: border-box;
    }

    .page-ae886__section-description {
      font-size: 1.1em;
      color: #cccccc;
      text-align: center;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-ae886__subtitle {
      font-size: 1.8em;
      color: var(--page-ae886-primary-color);
      text-align: center;
      margin-top: 40px;
      margin-bottom: 20px;
      padding: 0 15px;
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-ae886__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), var(--page-ae886-background-dark);
      padding: 10px 0 40px; /* 10px top padding as per requirement */
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-ae886__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px 15px;
      max-width: 900px;
      box-sizing: border-box;
    }

    .page-ae886__main-title {
      font-size: 2.8em;
      color: var(--page-ae886-primary-color);
      margin-bottom: 15px;
      text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
      box-sizing: border-box;
    }

    .page-ae886__hero-description {
      font-size: 1.2em;
      color: #f0f0f0;
      margin-bottom: 30px;
      box-sizing: border-box;
    }

    .page-ae886__hero-buttons {
      margin-top: 20px;
      box-sizing: border-box;
    }

    .page-ae886__btn {
      display: inline-block;
      background-color: var(--page-ae886-primary-color);
      color: var(--page-ae886-secondary-color);
      padding: 12px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      box-sizing: border-box;
    }

    .page-ae886__btn:hover {
      background-color: #ffd740;
      transform: translateY(-2px);
    }

    .page-ae886__hero-image-wrapper {
      margin-top: 30px;
      width: 100%;
      max-width: 600px; /* Adjust as needed for mobile device image */
      overflow: hidden;
      box-sizing: border-box;
      padding: 0 15px;
    }

    .page-ae886__hero-image {
      max-width: 100%;
      height: auto;
      border-radius: 15px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
      display: block;
      margin: 0 auto;
      box-sizing: border-box;
    }

    /* Floating Register/Login Buttons */
    .page-ae886__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: 100%;
      max-width: 350px; /* Limit width for mobile */
      padding: 0 15px;
      box-sizing: border-box;
      justify-content: center;
    }

    .page-ae886__floating-btn {
      flex: 1;
      text-align: center;
      padding: 12px 15px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.05em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-ae886__floating-btn--register {
      background-color: var(--page-ae886-primary-color);
      color: var(--page-ae886-background-dark);
    }

    .page-ae886__floating-btn--register:hover {
      background-color: #ffd740;
      transform: translateY(-2px);
    }

    .page-ae886__floating-btn--login {
      background-color: var(--page-ae886-accent-color);
      color: var(--page-ae886-text-color);
    }

    .page-ae886__floating-btn--login:hover {
      background-color: #cc0000;
      transform: translateY(-2px);
    }

    /* General Section Styling */
    .page-ae886__products-section,
    .page-ae886__promotions-section,
    .page-ae886__about-section,
    .page-ae886__faq-section,
    .page-ae886__payment-providers-section,
    .page-ae886__contact-social-section {
      padding: 60px 20px;
      background-color: var(--page-ae886-background-light);
      margin-bottom: 20px;
      box-sizing: border-box;
    }

    .page-ae886__products-section:nth-of-type(even),
    .page-ae886__promotions-section:nth-of-type(even),
    .page-ae886__about-section:nth-of-type(even),
    .page-ae886__faq-section:nth-of-type(even),
    .page-ae886__payment-providers-section:nth-of-type(even),
    .page-ae886__contact-social-section:nth-of-type(even) {
        background-color: var(--page-ae886-background-dark);
    }


    .page-ae886__product-grid,
    .page-ae886__promo-grid,
    .page-ae886__about-content,
    .page-ae886__logo-grid,
    .page-ae886__social-links {
      display: grid;
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-ae886__product-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .page-ae886__promo-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .page-ae886__product-card,
    .page-ae886__promo-card {
      background-color: var(--page-ae886-secondary-color);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-ae886__product-card:hover,
    .page-ae886__promo-card:hover {
      transform: translateY(-5px);
    }

    .page-ae886__product-image,
    .page-ae886__promo-image {
      width: 100%;
      height: 200px; /* Fixed height for product images */
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-ae886__product-title,
    .page-ae886__promo-title {
      font-size: 1.5em;
      color: var(--page-ae886-primary-color);
      margin: 20px 15px 10px;
      box-sizing: border-box;
    }

    .page-ae886__product-text,
    .page-ae886__promo-text {
      font-size: 1em;
      color: #cccccc;
      padding: 0 15px 20px;
      flex-grow: 1;
      box-sizing: border-box;
    }

    /* About Section */
    .page-ae886__about-content {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      text-align: center;
    }

    .page-ae886__about-item {
      background-color: var(--page-ae886-secondary-color);
      padding: 30px 20px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-ae886__about-item:hover {
      transform: translateY(-5px);
    }

    .page-ae886__about-icon {
      width: 200px; /* Minimum size */
      height: 200px; /* Minimum size */
      object-fit: contain;
      margin-bottom: 20px;
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }

    .page-ae886__about-heading {
      font-size: 1.4em;
      color: var(--page-ae886-primary-color);
      margin-bottom: 10px;
      box-sizing: border-box;
    }

    .page-ae886__about-text {
      color: #cccccc;
      font-size: 0.95em;
      box-sizing: border-box;
    }

    /* FAQ Section */
    .page-ae886__faq-container {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-ae886__faq-item {
      background-color: var(--page-ae886-secondary-color);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-ae886__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #3a3a3a;
      color: var(--page-ae886-text-color);
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
      box-sizing: border-box;
    }

    .page-ae886__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-ae886__faq-title {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-ae886-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
      box-sizing: border-box;
    }

    .page-ae886__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      color: var(--page-ae886-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click event on parent */
      box-sizing: border-box;
    }

    .page-ae886__faq-item.active .page-ae886__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or similar visual cue */
    }

    .page-ae886__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #cccccc;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      box-sizing: border-box;
    }

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

    .page-ae886__faq-answer p {
      margin: 0;
      padding-bottom: 10px; /* Add some spacing if multiple paragraphs */
      box-sizing: border-box;
    }

    /* Payment & Providers Section */
    .page-ae886__logo-grid {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      margin-bottom: 40px;
    }

    .page-ae886__logo-item {
      background-color: #3a3a3a;
      padding: 20px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      box-sizing: border-box;
    }

    .page-ae886__logo-image {
      max-width: 200px; /* Minimum size */
      height: 200px; /* Minimum size */
      object-fit: contain;
      margin-bottom: 10px;
      filter: grayscale(10%) brightness(110%); /* Subtle effect, not changing color */
      max-height: 60px; /* Limit height for uniform display */
      box-sizing: border-box;
    }

    .page-ae886__logo-name {
      color: var(--page-ae886-text-color);
      font-weight: bold;
      font-size: 0.9em;
      margin: 0;
      box-sizing: border-box;
    }

    /* Contact Social Section */
    .page-ae886__social-links {
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 20px;
      margin-top: 30px;
      max-width: 900px;
    }

    .page-ae886__social-icon-link {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-decoration: none;
      color: var(--page-ae886-text-color);
      transition: transform 0.3s ease, color 0.3s ease;
      box-sizing: border-box;
      padding: 10px;
      background-color: #3a3a3a;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-ae886__social-icon-link:hover {
      transform: translateY(-5px);
      color: var(--page-ae886-primary-color);
    }

    .page-ae886__social-icon {
      width: 200px; /* Minimum size */
      height: 200px; /* Minimum size */
      object-fit: contain;
      margin-bottom: 10px;
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }

    .page-ae886__social-text {
      font-size: 0.9em;
      font-weight: bold;
      text-align: center;
      box-sizing: border-box;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-ae886__main-title {
        font-size: 2.5em;
      }
      .page-ae886__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-ae886__main-title {
        font-size: 2em;
      }
      .page-ae886__section-title {
        font-size: 1.8em;
      }
      .page-ae886__hero-description {
        font-size: 1.1em;
      }
      .page-ae886__btn {
        padding: 10px 25px;
        font-size: 1em;
      }
      .page-ae886__products-section,
      .page-ae886__promotions-section,
      .page-ae886__about-section,
      .page-ae886__faq-section,
      .page-ae886__payment-providers-section,
      .page-ae886__contact-social-section {
        padding: 40px 15px;
      }

      /* List item responsive adjustments */
      .page-ae886__product-grid,
      .page-ae886__promo-grid,
      .page-ae886__about-content,
      .page-ae886__logo-grid,
      .page-ae886__social-links {
        grid-template-columns: 1fr;
        padding: 0;
      }

      .page-ae886__product-card,
      .page-ae886__promo-card,
      .page-ae886__about-item,
      .page-ae886__logo-item,
      .page-ae886__social-icon-link {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important;
      }

      .page-ae886__product-image,
      .page-ae886__promo-image,
      .page-ae886__about-icon,
      .page-ae886__logo-image,
      .page-ae886__social-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-ae886__product-text,
      .page-ae886__promo-text,
      .page-ae886__about-text,
      .page-ae886__logo-name,
      .page-ae886__social-text,
      .page-ae886__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-ae886__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }

      .page-ae886__faq-answer {
        padding: 0 20px;
      }

      .page-ae886__faq-item.active .page-ae886__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-ae886__main-title {
        font-size: 1.8em;
      }
      .page-ae886__section-title {
        font-size: 1.6em;
      }
      .page-ae886__floating-buttons {
        gap: 10px;
      }
      .page-ae886__floating-btn {
        font-size: 0.95em;
        padding: 10px 10px;
      }
      .page-ae886__product-image,
      .page-ae886__promo-image {
        height: 160px;
      }
    }
  