
    .page-88v-com {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a1a;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-88v-com__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: 90%;
      max-width: 380px; /* Limit width on larger screens */
      justify-content: center;
    }

    .page-88v-com__button {
      padding: 12px 25px;
      border: none;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      white-space: nowrap;
      box-sizing: border-box;
      width: 100%; /* Make buttons fill available width */
    }

    .page-88v-com__button--register {
      background-color: #e44d26; /* Red/Orange */
      color: #ffffff;
      box-shadow: 0 4px 15px rgba(228, 77, 38, 0.4);
    }

    .page-88v-com__button--register:hover {
      background-color: #ff6a3c;
      transform: translateY(-2px);
    }

    .page-88v-com__button--login {
      background-color: #333333; /* Dark grey */
      color: #ffffff;
      border: 2px solid #e44d26;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-88v-com__button--login:hover {
      background-color: #e44d26;
      border-color: #e44d26;
      transform: translateY(-2px);
    }

    .page-88v-com__button--primary {
      background-color: #e44d26;
      color: #ffffff;
      padding: 15px 30px;
      font-size: 1.2em;
      border-radius: 5px;
      box-shadow: 0 5px 20px rgba(228, 77, 38, 0.5);
    }

    .page-88v-com__button--primary:hover {
      background-color: #ff6a3c;
      transform: translateY(-3px);
    }

    .page-88v-com__button--secondary {
      background-color: #333333;
      color: #e44d26;
      border: 1px solid #e44d26;
      padding: 10px 20px;
      font-size: 1em;
      border-radius: 5px;
    }

    .page-88v-com__button--secondary:hover {
      background-color: #e44d26;
      color: #ffffff;
    }

    .page-88v-com__section-title {
      font-size: 2.2em;
      color: #e44d26;
      text-align: center;
      margin-bottom: 20px;
      padding: 0 15px;
      font-weight: bold;
    }

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

    /* Hero Section */
    .page-88v-com__hero-section {
      position: relative;
      overflow: hidden;
      padding: 10px 0 50px; /* Small top padding, relying on body padding-top for full offset */
      background-color: #0d0d0d;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .page-88v-com__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px 15px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-88v-com__main-title {
      font-size: 2.8em;
      color: #ffd700; /* Gold */
      margin-bottom: 15px;
      line-height: 1.2;
      font-weight: 900;
    }

    .page-88v-com__hero-description {
      font-size: 1.3em;
      color: #e0e0e0;
      margin-bottom: 30px;
    }

    .page-88v-com__hero-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      margin-top: 30px;
      object-fit: cover;
    }

    /* Product Showcase */
    .page-88v-com__product-showcase {
      padding: 60px 20px;
      background-color: #1a1a1a;
    }

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

    .page-88v-com__product-item {
      background-color: #222222;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      padding-bottom: 20px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-88v-com__product-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }

    .page-88v-com__product-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-88v-com__product-title {
      font-size: 1.5em;
      color: #ffd700;
      margin: 20px 15px 10px;
      font-weight: bold;
    }

    .page-88v-com__product-text {
      font-size: 1em;
      color: #cccccc;
      padding: 0 15px;
      flex-grow: 1; /* Ensure text pushes button to bottom */
    }

    /* Promotions Section */
    .page-88v-com__promotions-section {
      padding: 60px 20px;
      background-color: #0d0d0d;
    }

    .page-88v-com__promotion-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-88v-com__promotion-card {
      background-color: #222222;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      padding-bottom: 20px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-88v-com__promotion-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }

    .page-88v-com__promotion-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-88v-com__card-title {
      font-size: 1.4em;
      color: #ffd700;
      margin: 20px 15px 10px;
      font-weight: bold;
    }

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

    /* About Section */
    .page-88v-com__about-section {
      padding: 60px 20px;
      background-color: #1a1a1a;
    }

    .page-88v-com__about-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-88v-com__about-image {
      width: 100%;
      max-width: 500px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      height: auto;
      object-fit: cover;
      box-sizing: border-box;
    }

    .page-88v-com__about-text {
      flex: 1;
      min-width: 300px;
      max-width: 600px;
      color: #cccccc;
      font-size: 1.1em;
    }

    .page-88v-com__about-text p {
      margin-bottom: 15px;
    }

    /* News Section */
    .page-88v-com__news-section {
      padding: 60px 20px;
      background-color: #0d0d0d;
    }

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

    .page-88v-com__news-item {
      background-color: #222222;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-88v-com__news-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }

    .page-88v-com__news-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-88v-com__news-title {
      font-size: 1.4em;
      color: #ffd700;
      margin: 20px 15px 10px;
      font-weight: bold;
    }

    .page-88v-com__news-date {
      font-size: 0.9em;
      color: #888888;
      margin: 0 15px 10px;
    }

    .page-88v-com__news-excerpt {
      font-size: 1em;
      color: #cccccc;
      padding: 0 15px 20px;
      flex-grow: 1;
    }

    /* Payment and Providers */
    .page-88v-com__payment-providers {
      padding: 60px 20px;
      background-color: #1a1a1a;
    }

    .page-88v-com__partner-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-88v-com__partner-category {
      background-color: #222222;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-88v-com__partner-category-title {
      font-size: 1.8em;
      color: #e44d26;
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-88v-com__partner-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .page-88v-com__partner-list li {
      box-sizing: border-box;
      width: 100%; /* Default to full width on mobile */
      max-width: 200px; /* Limit individual logo width */
      text-align: center;
    }

    .page-88v-com__partner-logo {
      max-width: 100%;
      height: auto;
      object-fit: contain;
      border-radius: 5px;
      background-color: #333333; /* Slightly lighter background for logos */
      padding: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
      box-sizing: border-box;
      min-height: 80px; /* Ensure a minimum height for all logos */
      display: block;
      margin: 0 auto;
    }

    .page-88v-com__partner-logo:hover {
      transform: scale(1.05);
    }

    /* FAQ Section */
    .page-88v-com__faq-section {
      padding: 60px 20px;
      background-color: #0d0d0d;
    }

    .page-88v-com__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-88v-com__faq-item {
      background-color: #222222;
      border-radius: 10px;
      margin-bottom: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      overflow: hidden;
    }

    .page-88v-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #333333;
      color: #ffd700;
      font-weight: bold;
      font-size: 1.2em;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-88v-com__faq-question:hover {
      background-color: #444444;
    }

    .page-88v-com__faq-question-text {
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
      color: inherit;
      font-size: 1em; /* Adjust h3 font size to match parent */
    }

    .page-88v-com__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #e44d26;
      pointer-events: none; /* Prevent span from blocking click on parent */
      transition: transform 0.3s ease;
    }

    .page-88v-com__faq-item.active .page-88v-com__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
      color: #ffd700;
    }

    .page-88v-com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #cccccc;
      font-size: 1em;
    }

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

    .page-88v-com__faq-answer p {
      margin: 0 0 10px 0;
    }
    .page-88v-com__faq-answer p:last-child {
      margin-bottom: 0;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-88v-com__main-title {
        font-size: 2.5em;
      }
      .page-88v-com__hero-description {
        font-size: 1.2em;
      }
      .page-88v-com__section-title {
        font-size: 2em;
      }
      .page-88v-com__product-grid,
      .page-88v-com__promotion-cards,
      .page-88v-com__news-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-88v-com__floating-buttons {
        width: 95%;
        gap: 10px;
      }
      .page-88v-com__button {
        padding: 10px 15px;
        font-size: 1em;
      }
      .page-88v-com__main-title {
        font-size: 2em;
      }
      .page-88v-com__hero-description {
        font-size: 1.1em;
      }
      .page-88v-com__section-title {
        font-size: 1.8em;
      }
      .page-88v-com__section-description {
        font-size: 1em;
      }
      .page-88v-com__about-content {
        flex-direction: column;
      }
      .page-88v-com__about-image {
        max-width: 100%;
      }
      .page-88v-com__about-text {
        min-width: unset;
        max-width: 100%;
        text-align: center;
      }

      /* List Item Responsive Requirements */
      .page-88v-com__partner-list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
      }
      .page-88v-com__partner-list li {
        width: 100% !important;
        max-width: 250px !important; /* Adjust max-width for smaller screens if needed */
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-88v-com__partner-list li a {
        display: block;
        width: 100%;
        box-sizing: border-box;
      }
      .page-88v-com__partner-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-88v-com__partner-category {
        padding: 20px 15px;
      }
      .page-88v-com__partner-category-title {
        font-size: 1.5em;
      }

      /* Image Responsive Optimization */
      .page-88v-com__hero-image,
      .page-88v-com__product-image,
      .page-88v-com__promotion-image,
      .page-88v-com__about-image,
      .page-88v-com__news-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-88v-com__hero-section,
      .page-88v-com__product-showcase,
      .page-88v-com__promotions-section,
      .page-88v-com__about-section,
      .page-88v-com__news-section,
      .page-88v-com__payment-providers,
      .page-88v-com__faq-section {
        padding-left: 15px;
        padding-right: 15px;
      }
      .page-88v-com__faq-question,
      .page-88v-com__faq-answer {
        padding-left: 15px;
        padding-right: 15px;
      }
      .page-88v-com__faq-item.active .page-88v-com__faq-answer {
        padding: 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-88v-com__main-title {
        font-size: 1.8em;
      }
      .page-88v-com__hero-description {
        font-size: 1em;
      }
      .page-88v-com__section-title {
        font-size: 1.6em;
      }
      .page-88v-com__button {
        font-size: 0.9em;
        padding: 10px 12px;
      }
    }
  