
    .page-88vv-2026-com {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e;
      line-height: 1.6;
      padding-top: 10px; /* Small padding top for the overall page content, assuming body has header offset */
    }

    .page-88vv-2026-com__section-title {
      font-size: 2.2em;
      color: #ffcc00; /* Gold */
      text-align: center;
      margin-bottom: 20px;
      padding-top: 40px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-88vv-2026-com__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;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-88vv-2026-com__button {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      text-align: center;
      box-sizing: border-box;
    }

    .page-88vv-2026-com__button--primary {
      background-color: #ffcc00; /* Gold */
      color: #1a1a2e;
    }

    .page-88vv-2026-com__button--primary:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-88vv-2026-com__button--secondary {
      background-color: #007bff; /* Blue */
      color: #ffffff;
      border: 2px solid #007bff;
    }

    .page-88vv-2026-com__button--secondary:hover {
      background-color: #0056b3;
      border-color: #0056b3;
      transform: translateY(-2px);
    }

    .page-88vv-2026-com__button--large {
      padding: 15px 30px;
      font-size: 1.2em;
    }

    /* Hero Section */
    .page-88vv-2026-com__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(135deg, #2a0a4a, #0a0a2a); /* Dark gradient */
      min-height: 80vh;
      position: relative;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-88vv-2026-com__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin-bottom: 30px;
    }

    .page-88vv-2026-com__hero-title {
      font-size: 2.8em;
      color: #ffcc00; /* Gold */
      margin-bottom: 15px;
      line-height: 1.2;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-88vv-2026-com__hero-subtitle {
      font-size: 1.3em;
      color: #ffffff;
      margin-bottom: 30px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-88vv-2026-com__hero-cta-buttons {
      display: flex;
      flex-direction: column;
      gap: 15px;
      align-items: center;
    }

    .page-88vv-2026-com__hero-image-container {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 600px; /* Centered product display image */
      margin-top: 40px;
      box-sizing: border-box;
    }

    .page-88vv-2026-com__hero-image-container img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      display: block;
      margin: 0 auto; /* Center image */
      box-sizing: border-box;
    }

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

    .page-88vv-2026-com__floating-button {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px 20px;
      border-radius: 30px;
      font-size: 1em;
      font-weight: bold;
      color: #1a1a2e;
      text-decoration: none;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease, background-color 0.3s ease;
      min-width: 100px;
      box-sizing: border-box;
    }

    .page-88vv-2026-com__floating-button--register {
      background-color: #00ff99; /* Neon Green */
    }

    .page-88vv-2026-com__floating-button--register:hover {
      background-color: #00e68a;
      transform: translateY(-3px);
    }

    .page-88vv-2026-com__floating-button--login {
      background-color: #ffcc00; /* Gold */
    }

    .page-88vv-2026-com__floating-button--login:hover {
      background-color: #e6b800;
      transform: translateY(-3px);
    }

    /* Game Categories */
    .page-88vv-2026-com__game-categories {
      padding: 60px 20px;
      background-color: #1a1a2e;
      box-sizing: border-box;
    }

    .page-88vv-2026-com__category-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-88vv-2026-com__category-item {
      background-color: #2e1a47; /* Slightly lighter dark purple */
      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;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%; /* For mobile list item constraint */
    }

    .page-88vv-2026-com__category-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-88vv-2026-com__category-item img {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      border-bottom: 2px solid #ffcc00;
      box-sizing: border-box;
    }

    .page-88vv-2026-com__category-title {
      font-size: 1.6em;
      color: #ffcc00;
      margin: 20px 0 10px;
      padding: 0 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-88vv-2026-com__category-text {
      font-size: 1em;
      color: #cccccc;
      padding: 0 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Promotions Section */
    .page-88vv-2026-com__promotions-section {
      padding: 60px 20px;
      background-color: #0a0a2a; /* Even darker */
      box-sizing: border-box;
    }

    .page-88vv-2026-com__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      justify-content: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-88vv-2026-com__promo-card {
      background-color: #2e1a47;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%; /* For mobile list item constraint */
    }

    .page-88vv-2026-com__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-88vv-2026-com__promo-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-bottom: 2px solid #00ff99;
      box-sizing: border-box;
    }

    .page-88vv-2026-com__promo-title {
      font-size: 1.5em;
      color: #00ff99; /* Neon Green */
      margin: 20px 0 10px;
      padding: 0 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-88vv-2026-com__promo-text {
      font-size: 1em;
      color: #cccccc;
      padding: 0 15px 20px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-88vv-2026-com__view-all-promos {
      text-align: center;
      margin-top: 50px;
    }

    /* Why Choose Us Section */
    .page-88vv-2026-com__why-us-section {
      padding: 60px 20px;
      background-color: #1a1a2e;
      box-sizing: border-box;
    }

    .page-88vv-2026-com__why-us-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      justify-content: center;
    }

    .page-88vv-2026-com__why-us-item {
      background-color: #2e1a47;
      border-radius: 10px;
      padding: 30px 20px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      width: 100%; /* For mobile list item constraint */
    }

    .page-88vv-2026-com__why-us-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-88vv-2026-com__why-us-item img {
      width: 250px; /* Adjusted to be > 200px */
      height: 250px; /* Adjusted to be > 200px */
      object-fit: contain;
      margin-bottom: 20px;
      box-sizing: border-box;
      max-width: 100%;
    }

    .page-88vv-2026-com__why-us-title {
      font-size: 1.6em;
      color: #ffcc00;
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-88vv-2026-com__why-us-text {
      font-size: 1em;
      color: #cccccc;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* FAQ Section */
    .page-88vv-2026-com__faq-section {
      padding: 60px 20px;
      background-color: #0a0a2a;
      box-sizing: border-box;
    }

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

    .page-88vv-2026-com__faq-item {
      background-color: #2e1a47;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-88vv-2026-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #3a2a57;
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid #4a3a67;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-88vv-2026-com__faq-question:hover {
      background-color: #4a3a67;
    }

    .page-88vv-2026-com__faq-question-title {
      font-size: 1.2em;
      color: #ffcc00;
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Crucial for click event on parent */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-88vv-2026-com__faq-toggle {
      font-size: 1.8em;
      color: #00ff99;
      font-weight: bold;
      margin-left: 20px;
      pointer-events: none; /* Crucial for click event on parent */
      transition: transform 0.3s ease;
    }

    .page-88vv-2026-com__faq-item.active .page-88vv-2026-com__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }

    .page-88vv-2026-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;
      box-sizing: border-box;
    }

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

    .page-88vv-2026-com__faq-answer p {
      margin: 0;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Final Call to Action */
    .page-88vv-2026-com__cta-section {
      padding: 60px 20px;
      background: linear-gradient(135deg, #0a0a2a, #2a0a4a);
      text-align: center;
      box-sizing: border-box;
    }

    .page-88vv-2026-com__cta-section .page-88vv-2026-com__button {
      margin-top: 30px;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
      .page-88vv-2026-com__hero-title {
        font-size: 2em;
      }

      .page-88vv-2026-com__hero-subtitle {
        font-size: 1.1em;
      }

      .page-88vv-2026-com__hero-cta-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
      }

      .page-88vv-2026-com__button {
        width: 100%;
      }

      .page-88vv-2026-com__section-title {
        font-size: 1.8em;
        padding-top: 30px;
      }

      .page-88vv-2026-com__section-description {
        font-size: 1em;
        margin-bottom: 30px;
      }

      /* List items responsive */
      .page-88vv-2026-com__category-grid,
      .page-88vv-2026-com__promo-grid,
      .page-88vv-2026-com__why-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
        box-sizing: border-box;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      
      .page-88vv-2026-com__category-item,
      .page-88vv-2026-com__promo-card,
      .page-88vv-2026-com__why-us-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-88vv-2026-com__category-item img,
      .page-88vv-2026-com__promo-card img,
      .page-88vv-2026-com__why-us-item img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-88vv-2026-com__faq-question {
        padding: 15px 20px;
      }

      .page-88vv-2026-com__faq-question-title {
        font-size: 1.1em;
      }

      .page-88vv-2026-com__faq-toggle {
        font-size: 1.5em;
        margin-left: 15px;
      }

      .page-88vv-2026-com__faq-answer {
        padding: 0 20px;
      }
      
      .page-88vv-2026-com__faq-item.active .page-88vv-2026-com__faq-answer {
        padding: 15px 20px !important;
      }

      .page-88vv-2026-com__floating-buttons {
        flex-direction: row;
        bottom: 10px;
        right: 50%;
        transform: translateX(50%);
        width: calc(100% - 40px);
        justify-content: space-around;
      }
      .page-88vv-2026-com__floating-button {
        flex: 1;
        margin: 0 5px;
      }
    }

    @media (min-width: 769px) {
      .page-88vv-2026-com__hero-section {
        flex-direction: row;
        padding: 80px 40px;
        text-align: left;
      }

      .page-88vv-2026-com__hero-content {
        text-align: left;
        margin-bottom: 0;
        margin-right: 50px;
      }

      .page-88vv-2026-com__hero-title {
        font-size: 3.5em;
      }

      .page-88vv-2026-com__hero-subtitle {
        font-size: 1.4em;
      }

      .page-88vv-2026-com__hero-cta-buttons {
        flex-direction: row;
        justify-content: flex-start;
        gap: 20px;
      }

      .page-88vv-2026-com__hero-image-container {
        margin-top: 0;
        max-width: 800px;
      }

      .page-88vv-2026-com__floating-buttons {
        flex-direction: column;
        bottom: 30px;
        right: 30px;
        transform: none;
        width: auto;
      }
      .page-88vv-2026-com__floating-button {
        min-width: 120px;
        margin: 0;
      }
    }
  