
    /* CSS Styles for jun88v8 page */
    :root {
      --page-jun88v8__primary-color: #e44d26; /* A vibrant orange-red */
      --page-jun88v8__secondary-color: #f0ad4e; /* A complementary orange */
      --page-jun88v8__text-color: #333;
      --page-jun88v8__light-bg: #f9f9f9;
      --page-jun88v8__dark-bg: #1a1a1a;
      --page-jun88v8__white: #fff;
      --page-jun88v8__gray: #666;
      --page-jun88v8__border-color: #ddd;
    }

    .page-jun88v8 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--page-jun88v8__text-color);
      background-color: var(--page-jun88v8__light-bg);
      padding: 0;
      margin: 0;
    }

    /* Fixed header spacing */
    .page-jun88v8__hero-section {
      padding-top: 120px; /* Adjust for fixed header */
    }

    @media (max-width: 768px) {
      .page-jun88v8__hero-section {
        padding-top: 100px; /* Adjust for mobile fixed header */
      }
    }

    .page-jun88v8__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-jun88v8__section {
      padding: 60px 0;
      text-align: center;
      background-color: var(--page-jun88v8__white);
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .page-jun88v8__section--dark {
      background-color: var(--page-jun88v8__dark-bg);
      color: var(--page-jun88v8__white);
    }

    .page-jun88v8__section--dark h2,
    .page-jun88v8__section--dark h3,
    .page-jun88v8__section--dark p {
      color: var(--page-jun88v8__white);
    }

    .page-jun88v8__section-title {
      font-size: 2.8em;
      color: var(--page-jun88v8__primary-color);
      margin-bottom: 40px;
      font-weight: 700;
      position: relative;
      padding-bottom: 15px;
    }

    .page-jun88v8__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-jun88v8__secondary-color);
      border-radius: 2px;
    }

    .page-jun88v8__text-center {
      text-align: center;
    }

    .page-jun88v8__hero-section {
      background-color: var(--page-jun88v8__dark-bg);
      color: var(--page-jun88v8__white);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding-bottom: 40px;
    }

    .page-jun88v8__hero-image {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 30px;
    }

    .page-jun88v8__hero-image img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
    }

    .page-jun88v8__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--page-jun88v8__secondary-color);
      font-weight: 800;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-jun88v8__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      line-height: 1.5;
      color: var(--page-jun88v8__white);
    }

    .page-jun88v8__button {
      display: inline-block;
      background-color: var(--page-jun88v8__primary-color);
      color: var(--page-jun88v8__white);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-jun88v8__button:hover {
      background-color: #c73c1d; /* Darker shade */
      transform: translateY(-3px);
    }

    /* Floating Login Button */
    .page-jun88v8__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: var(--page-jun88v8__secondary-color);
      color: var(--page-jun88v8__dark-bg);
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .page-jun88v8__floating-button:hover {
      background-color: #e09b30; /* Darker shade */
      transform: translateY(-5px);
    }

    .page-jun88v8__floating-button-icon {
      font-size: 1.5em;
      line-height: 1;
    }

    /* Product/Game Grid */
    .page-jun88v8__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-jun88v8__game-card {
      background-color: var(--page-jun88v8__white);
      border-radius: 12px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--page-jun88v8__border-color);
    }

    .page-jun88v8__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .page-jun88v8__game-card-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #eee;
    }

    .page-jun88v8__game-card-image {
      width: 100%;
      height: auto;
      object-fit: cover; /* Ensure image covers the area without distortion */
      display: block;
    }

    .page-jun88v8__game-card-content {
      padding: 20px;
    }

    .page-jun88v8__game-card-title {
      font-size: 1.5em;
      color: var(--page-jun88v8__primary-color);
      margin-bottom: 10px;
      font-weight: 600;
      text-decoration: none; /* Ensure link text is not underlined by default */
    }

    .page-jun88v8__game-card-title a {
      color: var(--page-jun88v8__primary-color);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-jun88v8__game-card-title a:hover {
      color: var(--page-jun88v8__secondary-color);
    }

    .page-jun88v8__game-card-description {
      font-size: 0.95em;
      color: var(--page-jun88v8__gray);
    }

    /* Game Provider Logos */
    .page-jun88v8__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
      align-items: center;
      justify-items: center;
    }

    .page-jun88v8__provider-item {
      padding: 15px;
      background-color: var(--page-jun88v8__white);
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 120px;
    }

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

    .page-jun88v8__provider-logo-wrapper {
        width: 100%;
        max-width: 120px; /* Constrain logo size */
        height: 80px; /* Fixed height for logos */
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 10px;
    }

    .page-jun88v8__provider-logo {
      max-width: 100%;
      max-height: 100%;
      height: auto;
      object-fit: contain; /* Ensure logo fits without cropping */
      display: block;
    }

    .page-jun88v8__provider-name {
      font-weight: 600;
      color: var(--page-jun88v8__text-color);
      font-size: 1.1em;
    }

    /* FAQ Section */
    .page-jun88v8__faq-list {
      margin-top: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
    }

    .page-jun88v8__faq-item {
      background-color: var(--page-jun88v8__white);
      border: 1px solid var(--page-jun88v8__border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

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

    .page-jun88v8__faq-question:hover {
      background-color: #e5e5e5;
    }

    .page-jun88v8__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-jun88v8__text-color);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-jun88v8__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-jun88v8__primary-color);
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-jun88v8__faq-item.active .page-jun88v8__faq-toggle {
      transform: rotate(45deg); /* Change + to X-like or - */
    }

    .page-jun88v8__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: var(--page-jun88v8__gray);
    }

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

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-jun88v8__hero-title {
        font-size: 3em;
      }
      .page-jun88v8__section-title {
        font-size: 2.2em;
      }
    }

    @media (max-width: 768px) {
      .page-jun88v8__hero-title {
        font-size: 2.5em;
      }
      .page-jun88v8__hero-subtitle {
        font-size: 1.2em;
      }
      .page-jun88v8__section {
        padding: 40px 0;
      }
      .page-jun88v8__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-jun88v8__container {
        padding: 15px;
      }
      .page-jun88v8__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
      .page-jun88v8__floating-button-icon {
        font-size: 1.2em;
      }
      .page-jun88v8__game-grid {
        grid-template-columns: 1fr;
      }
      .page-jun88v8__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-jun88v8__faq-question {
        padding: 12px 15px;
      }
      .page-jun88v8__faq-question h3 {
        font-size: 1.1em;
      }
      .page-jun88v8__faq-toggle {
        font-size: 1.5em;
      }
      .page-jun88v8__faq-answer {
        padding: 15px 15px !important; /* For mobile, ensure padding is consistent */
      }
      /* Image responsive optimization */
      .page-jun88v8 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-jun88v8__hero-image,
      .page-jun88v8__game-card-image-wrapper,
      .page-jun88v8__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-jun88v8__hero-title {
        font-size: 2em;
      }
      .page-jun88v8__hero-subtitle {
        font-size: 1em;
      }
      .page-jun88v8__button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
    }
  