
    :root {
      --page-jun88-primary-color: #e44d26; /* A vibrant orange-red for branding */
      --page-jun88-secondary-color: #333;
      --page-jun88-accent-color: #f7b731; /* Gold/yellow for accents */
      --page-jun88-background-light: #f8f9fa;
      --page-jun88-background-dark: #2c3e50; /* Dark blue-grey */
      --page-jun88-text-light: #fff;
      --page-jun88-text-dark: #333;
      --page-jun88-border-color: #ddd;
    }

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

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

    .page-jun88__section {
      padding: 40px 20px;
      margin-bottom: 30px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-jun88__section--dark {
      background-color: var(--page-jun88-background-dark);
      color: var(--page-jun88-text-light);
    }

    .page-jun88__heading {
      text-align: center;
      color: var(--page-jun88-primary-color);
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-jun88__heading--light {
      color: var(--page-jun88-text-light);
    }

    .page-jun88__subheading {
      color: var(--page-jun88-secondary-color);
      font-size: 1.8em;
      margin-bottom: 20px;
      border-bottom: 2px solid var(--page-jun88-accent-color);
      padding-bottom: 10px;
      display: inline-block;
    }

    .page-jun88__subheading--light {
      color: var(--page-jun88-text-light);
      border-bottom-color: var(--page-jun88-primary-color);
    }

    .page-jun88__paragraph {
      margin-bottom: 15px;
      font-size: 1.1em;
      line-height: 1.8;
    }

    .page-jun88__paragraph--light {
      color: #e0e0e0;
    }

    /* Hero Section */
    .page-jun88__hero-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      text-align: center;
      color: var(--page-jun88-text-light);
      padding-top: 10px; /* For fixed header */
      box-sizing: border-box;
      background-color: #000; /* Fallback */
    }

    .page-jun88__hero-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      max-height: 500px; /* Limit height for aesthetic */
    }

    .page-jun88__hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 90%;
      max-width: 800px;
      background-color: rgba(0, 0, 0, 0.6);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .page-jun88__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: bold;
      color: var(--page-jun88-accent-color);
      line-height: 1.2;
    }

    .page-jun88__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 25px;
      color: #eee;
    }

    .page-jun88__button {
      display: inline-block;
      background-color: var(--page-jun88-primary-color);
      color: var(--page-jun88-text-light);
      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;
    }

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

    .page-jun88__button--accent {
      background-color: var(--page-jun88-accent-color);
      color: var(--page-jun88-text-dark);
    }

    .page-jun88__button--accent:hover {
      background-color: #e6a72c;
    }

    /* Floating Login Button */
    .page-jun88__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      background-color: var(--page-jun88-primary-color);
      color: var(--page-jun88-text-light);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      animation: page-jun88-pulse 2s infinite;
      display: flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
    }

    .page-jun88__floating-button:hover {
      background-color: #d14220;
    }

    @keyframes page-jun88-pulse {
      0% {
        transform: translateX(-50%) scale(1);
      }
      50% {
        transform: translateX(-50%) scale(1.05);
      }
      100% {
        transform: translateX(-50%) scale(1);
      }
    }

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

    .page-jun88__game-card {
      background-color: #f0f2f5;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      text-decoration: none;
      color: var(--page-jun88-text-dark);
    }

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

    .page-jun88__game-card-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
    }

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

    .page-jun88__game-card-title {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: var(--page-jun88-primary-color);
      font-weight: bold;
    }

    .page-jun88__game-card-description {
      font-size: 0.95em;
      color: #555;
    }

    /* Guide Steps */
    .page-jun88__guide-steps {
      display: flex;
      flex-direction: column;
      gap: 25px;
      margin-top: 30px;
    }

    .page-jun88__step-item {
      display: flex;
      align-items: flex-start;
      background-color: #fff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .page-jun88__step-number {
      background-color: var(--page-jun88-primary-color);
      color: var(--page-jun88-text-light);
      width: 40px;
      height: 40px;
      min-width: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5em;
      font-weight: bold;
      margin-right: 20px;
    }

    .page-jun88__step-content h3 {
      color: var(--page-jun88-primary-color);
      font-size: 1.5em;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-jun88__step-content p {
      margin-bottom: 0;
      color: var(--page-jun88-text-dark);
    }

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

    .page-jun88__provider-logo-wrapper {
      background-color: #fff;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100px; /* Fixed height for logos */
      width: 100%;
      max-width: 200px;
      box-sizing: border-box;
    }

    .page-jun88__provider-logo {
      max-width: 100%;
      max-height: 100%;
      height: auto;
      object-fit: contain;
    }

    /* FAQ Section */
    .page-jun88__faq-list {
      margin-top: 30px;
    }

    .page-jun88__faq-item {
      background-color: #fff;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

    .page-jun88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: var(--page-jun88-primary-color);
      color: var(--page-jun88-text-light);
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-jun88__faq-question:hover {
      background-color: #d14220;
    }

    .page-jun88__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-jun88__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    /* Initial state and active state for toggle icon */
    .page-jun88__faq-item:not(.active) .page-jun88__faq-toggle::before {
      content: '+';
    }
    .page-jun88__faq-item.active .page-jun88__faq-toggle::before {
      content: '−';
    }


    .page-jun88__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;
      background-color: #fefefe;
      color: var(--page-jun88-text-dark);
      font-size: 1em;
    }

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

    .page-jun88__faq-answer p {
      margin-bottom: 0;
    }

    /* General image responsiveness */
    .page-jun88 img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-jun88__container {
        padding: 15px;
      }

      .page-jun88__section {
        padding: 25px 15px;
        margin-bottom: 20px;
      }

      .page-jun88__hero-section {
        padding-top: 10px; /* For fixed header on mobile */
      }

      .page-jun88__hero-title {
        font-size: 2em;
      }

      .page-jun88__hero-subtitle {
        font-size: 1.1em;
      }

      .page-jun88__hero-content {
        padding: 20px;
      }

      .page-jun88__heading {
        font-size: 2em;
        margin-bottom: 20px;
      }

      .page-jun88__subheading {
        font-size: 1.5em;
      }

      .page-jun88__paragraph {
        font-size: 1em;
      }

      .page-jun88__button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-jun88__game-grid {
        grid-template-columns: 1fr;
      }

      .page-jun88__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
      }

      .page-jun88__step-number {
        margin-right: 0;
        margin-bottom: 15px;
      }

      .page-jun88__step-content h3 {
        font-size: 1.3em;
      }

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

      .page-jun88__floating-button {
        font-size: 1em;
        padding: 12px 25px;
      }

      .page-jun88__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-jun88__faq-question h3 {
        font-size: 1.1em;
      }

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

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

      /* Image responsiveness for mobile */
      .page-jun88 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-jun88__hero-image,
      .page-jun88__game-card-image,
      .page-jun88__provider-logo {
        width: 100% !important; /* Ensure images take full width of their container */
      }
      .page-jun88__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
      }
    }
  