
    /* General styles for the page-188v8 wrapper */
    .page-188v8 {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Light text for dark background */
      background-color: #1a1a2e; /* Dark background */
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: 10px; /* Small padding, relying on body padding for header offset */
    }

    /* Hero Section */
    .page-188v8__hero-section {
      position: relative;
      width: 100%;
      height: 60vh; /* Responsive height */
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      margin-bottom: 40px;
    }

    .page-188v8__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .page-188v8__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
      z-index: 2;
    }

    .page-188v8__hero-content {
      position: relative;
      z-index: 3;
      max-width: 900px;
      padding: 20px;
    }

    .page-188v8__hero-title {
      font-size: 2.8em;
      color: #e6b31e; /* Gold/yellow for highlights */
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .page-188v8__hero-subtitle {
      font-size: 1.2em;
      color: #ffffff;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

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

    .page-188v8__hero-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.3s ease;
      cursor: pointer;
    }

    .page-188v8__hero-button--primary {
      background-color: #e6b31e;
      color: #1a1a2e;
      border: 2px solid #e6b31e;
    }

    .page-188v8__hero-button--primary:hover {
      background-color: #ffc107;
      transform: translateY(-2px);
    }

    .page-188v8__hero-button--secondary {
      background-color: transparent;
      color: #e6b31e;
      border: 2px solid #e6b31e;
    }

    .page-188v8__hero-button--secondary:hover {
      background-color: rgba(230, 179, 30, 0.2);
      transform: translateY(-2px);
    }

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

    .page-188v8__sticky-button {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 120px;
      height: 45px;
      border-radius: 25px;
      font-weight: bold;
      font-size: 1em;
      text-decoration: none;
      color: #1a1a2e;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .page-188v8__sticky-button--register {
      background-color: #e6b31e;
    }

    .page-188v8__sticky-button--register:hover {
      background-color: #ffc107;
      transform: scale(1.05);
    }

    .page-188v8__sticky-button--login {
      background-color: #4CAF50; /* Green for login */
    }

    .page-188v8__sticky-button--login:hover {
      background-color: #66BB6A;
      transform: scale(1.05);
    }

    /* Section titles and descriptions */
    .page-188v8__section-title {
      font-size: 2.2em;
      color: #e6b31e;
      text-align: center;
      margin-bottom: 20px;
      padding-top: 40px;
    }

    .page-188v8__section-description {
      font-size: 1.1em;
      color: #cccccc;
      text-align: center;
      max-width: 800px;
      margin: 0 auto 50px auto;
      padding: 0 15px;
    }

    /* Products Section */
    .page-188v8__products-section {
      padding: 40px 0;
      background-color: #2a2a4a;
    }

    .page-188v8__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .page-188v8__product-item {
      background-color: #1a1a2e;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding-bottom: 20px;
      display: flex;
      flex-direction: column;
    }

    .page-188v8__product-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    }

    .page-188v8__product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      margin-bottom: 15px;
      border-bottom: 3px solid #e6b31e;
    }

    .page-188v8__product-title {
      font-size: 1.5em;
      color: #e6b31e;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-188v8__product-text {
      font-size: 1em;
      color: #cccccc;
      padding: 0 15px;
      flex-grow: 1; /* Ensure text pushes content down */
    }

    /* Promotions Section */
    .page-188v8__promotions-section {
      padding: 60px 0;
      background-color: #1a1a2e;
    }

    .page-188v8__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .page-188v8__promo-item {
      background-color: #2a2a4a;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding-bottom: 20px;
      display: flex;
      flex-direction: column;
    }

    .page-188v8__promo-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    }

    .page-188v8__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      margin-bottom: 15px;
      border-bottom: 3px solid #e6b31e;
    }

    .page-188v8__promo-title {
      font-size: 1.4em;
      color: #e6b31e;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-188v8__promo-text {
      font-size: 1em;
      color: #cccccc;
      padding: 0 15px;
      flex-grow: 1;
      margin-bottom: 20px;
    }

    .page-188v8__promo-button-wrapper {
      margin-top: auto; /* Pushes button to the bottom */
      padding: 0 15px;
    }

    .page-188v8__promo-button {
      display: inline-block;
      background-color: #e6b31e;
      color: #1a1a2e;
      padding: 10px 20px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-188v8__promo-button:hover {
      background-color: #ffc107;
    }

    /* About Section */
    .page-188v8__about-section {
      padding: 60px 20px;
      background-color: #2a2a4a;
    }

    .page-188v8__about-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      gap: 40px;
    }

    .page-188v8__about-image-wrapper {
      flex: 1;
      min-width: 300px;
      text-align: center;
    }

    .page-188v8__about-image {
      max-width: 100%;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-188v8__about-text-content {
      flex: 2;
      min-width: 300px;
    }

    .page-188v8__about-paragraph {
      font-size: 1.1em;
      color: #cccccc;
      margin-bottom: 20px;
    }

    .page-188v8__about-features-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-188v8__about-feature-item {
      background-color: #1a1a2e;
      margin-bottom: 10px;
      padding: 12px 15px;
      border-left: 4px solid #e6b31e;
      border-radius: 6px;
      font-size: 1em;
      color: #f0f0f0;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    /* Payments & Providers Section */
    .page-188v8__payments-providers-section {
      padding: 60px 20px;
      background-color: #1a1a2e;
    }

    .page-188v8__logo-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .page-188v8__logo-category-title {
      font-size: 1.8em;
      color: #e6b31e;
      text-align: center;
      margin-bottom: 30px;
    }

    .page-188v8__logo-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 25px;
      justify-items: center;
      align-items: center;
    }

    .page-188v8__logo-item {
      background-color: #2a2a4a;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%; /* Ensures logos take full grid item width */
      height: 100px; /* Fixed height for consistent display */
      box-sizing: border-box;
    }

    .page-188v8__logo-image {
      max-width: 90%;
      max-height: 70px; /* Max height for logos */
      height: auto;
      object-fit: contain;
    }

    /* FAQ Section */
    .page-188v8__faq-section {
      padding: 60px 20px;
      background-color: #2a2a4a;
    }

    .page-188v8__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-188v8__faq-item {
      background-color: #1a1a2e;
      border-radius: 10px;
      margin-bottom: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      overflow: hidden;
    }

    .page-188v8__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      background-color: #333355;
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid #444466;
      transition: background-color 0.3s ease;
    }

    .page-188v8__faq-question:hover {
      background-color: #444466;
    }

    .page-188v8__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #f0f0f0;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-188v8__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #e6b31e;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-188v8__faq-item.active .page-188v8__faq-toggle {
      transform: rotate(45deg);
      /* content: "−"; Visually changed in JS */
    }

    .page-188v8__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding, adjust for transition */
      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: #1a1a2e;
      color: #cccccc;
    }

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

    .page-188v8__faq-answer p {
      margin: 0;
      font-size: 1em;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-188v8__hero-title {
        font-size: 2.4em;
      }
      .page-188v8__hero-subtitle {
        font-size: 1.1em;
      }
      .page-188v8__section-title {
        font-size: 2em;
      }
      .page-188v8__product-grid,
      .page-188v8__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
      .page-188v8__logo-list {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-188v8__hero-section {
        height: 70vh;
        min-height: 350px;
      }
      .page-188v8__hero-title {
        font-size: 2em;
      }
      .page-188v8__hero-subtitle {
        font-size: 1em;
      }
      .page-188v8__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-188v8__hero-button {
        width: 80%;
        max-width: 250px;
        margin: 0 auto;
      }

      .page-188v8__sticky-buttons-wrapper {
        bottom: 15px;
        right: 15px;
        gap: 8px;
      }
      .page-188v8__sticky-button {
        width: 100px;
        height: 40px;
        font-size: 0.9em;
      }

      .page-188v8__section-title {
        font-size: 1.8em;
        padding-top: 30px;
      }
      .page-188v8__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
      }

      .page-188v8__product-grid,
      .page-188v8__promo-grid {
        grid-template-columns: 1fr; /* Stack on mobile */
        padding: 0 15px;
      }
      .page-188v8__product-item,
      .page-188v8__promo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-188v8__product-text,
      .page-188v8__promo-text,
      .page-188v8__about-paragraph {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-188v8__about-content {
        flex-direction: column;
        gap: 30px;
      }
      .page-188v8__about-text-content {
        order: 2; /* Text below image on mobile */
      }
      .page-188v8__about-image-wrapper {
        order: 1;
      }
      .page-188v8__about-features-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-188v8__about-feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 10px; /* Adjust padding for smaller screens */
      }
      
      .page-188v8__payments-providers-section {
        padding: 40px 15px;
      }
      .page-188v8__logo-category-title {
        font-size: 1.6em;
      }
      .page-188v8__logo-list {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-188v8__logo-item {
        height: 80px;
        padding: 10px;
      }
      .page-188v8__logo-image {
        max-height: 50px;
      }

      .page-188v8__faq-section {
        padding: 40px 15px;
      }
      .page-188v8__faq-question {
        padding: 15px 20px;
      }
      .page-188v8__faq-question h3 {
        font-size: 1.1em;
      }
      .page-188v8__faq-answer {
        padding: 0 20px;
      }
      .page-188v8__faq-item.active .page-188v8__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-188v8__hero-title {
        font-size: 1.8em;
      }
      .page-188v8__hero-subtitle {
        font-size: 0.9em;
      }
      .page-188v8__section-title {
        font-size: 1.6em;
      }
      .page-188v8__promo-title,
      .page-188v8__product-title {
        font-size: 1.2em;
      }
      .page-188v8__faq-question h3 {
        font-size: 1em;
      }
      .page-188v8__faq-toggle {
        font-size: 1.5em;
      }
    }
  