
    /* Base styles for the page */
    .page-jun88 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #e0e0e0; /* Light gray text for contrast on dark background */
      background-color: #1a1a1a; /* Dark background */
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating ad */
    }

    .page-jun88-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-jun88-hero {
      background: linear-gradient(135deg, #2a0a5e, #0f042e); /* Dark purple gradient */
      padding: 60px 20px;
      text-align: center;
      color: #ffffff;
      border-radius: 8px;
      margin-bottom: 40px;
    }

    .page-jun88-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #ffcc00; /* Gold accent */
      line-height: 1.2;
    }

    .page-jun88-intro {
      font-size: 1.1em;
      max-width: 800px;
      margin: 0 auto 30px;
      color: #f0f0f0;
    }

    .page-jun88-cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .page-jun88-btn {
      display: inline-block;
      padding: 14px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      transition: all 0.3s ease;
      font-size: 1em;
      text-align: center;
    }

    .page-jun88-btn-primary {
      background-color: #ffcc00; /* Gold */
      color: #1a1a1a; /* Dark text for contrast */
      border: 2px solid #ffcc00;
    }

    .page-jun88-btn-primary:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-jun88-btn-secondary {
      background-color: transparent;
      color: #ffcc00;
      border: 2px solid #ffcc00;
    }

    .page-jun88-btn-secondary:hover {
      background-color: #ffcc00;
      color: #1a1a1a;
      transform: translateY(-2px);
    }

    .page-jun88-section {
      padding: 40px 0;
      margin-bottom: 30px;
      background-color: #242424; /* Slightly lighter dark for sections */
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-jun88-subtitle {
      font-size: 2.2em;
      color: #ffcc00;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-jun88-subtitle::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #ffcc00;
      border-radius: 2px;
    }

    .page-jun88-about .page-jun88-content-grid {
      display: flex;
      flex-direction: column;
      gap: 30px;
      align-items: center;
    }

    @media (min-width: 768px) {
      .page-jun88-about .page-jun88-content-grid {
        flex-direction: row;
        text-align: left;
      }
      .page-jun88-about .page-jun88-text-content {
        flex: 2;
      }
      .page-jun88-about .page-jun88-image-wrapper {
        flex: 1;
        text-align: center;
      }
    }

    .page-jun88-text-content p {
      margin-bottom: 15px;
      color: #c0c0c0;
    }

    .page-jun88-text-content ul {
      list-style: none;
      padding: 0;
      margin-top: 20px;
    }

    .page-jun88-text-content li {
      background-color: #2c2c2c;
      margin-bottom: 10px;
      padding: 10px 15px;
      border-left: 4px solid #ffcc00;
      border-radius: 4px;
      color: #e0e0e0;
    }

    .page-jun88-image-wrapper {
      width: 100%;
      max-width: 400px;
    }

    .page-jun88-image {
      width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    }

    .page-jun88-highlight {
      color: #ffcc00;
    }

    .page-jun88-how-to .page-jun88-steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-jun88-step-card {
      background-color: #2c2c2c;
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-jun88-step-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    }

    .page-jun88-step-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
      border-radius: 50%;
      background-color: #ffcc00;
      padding: 10px;
      object-fit: contain;
    }

    .page-jun88-step-title {
      font-size: 1.4em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-jun88-step-card p {
      color: #c0c0c0;
      margin-bottom: 20px;
    }

    .page-jun88-card-link {
      display: inline-block;
      background-color: #007bff; /* Blue for action */
      color: #ffffff;
      padding: 8px 20px;
      border-radius: 20px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-jun88-card-link:hover {
      background-color: #0056b3;
    }

    .page-jun88-games .page-jun88-game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-jun88-game-card {
      background-color: #2c2c2c;
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-jun88-game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    }

    .page-jun88-game-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 15px;
      object-fit: contain;
      border-radius: 8px;
      background-color: #3a3a3a;
    }

    .page-jun88-game-title {
      font-size: 1.3em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-jun88-game-title a {
      color: #ffcc00;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-jun88-game-title a:hover {
      color: #ffffff;
    }

    .page-jun88-game-card p {
      color: #c0c0c0;
      flex-grow: 1; /* Ensures paragraphs take up available space */
    }

    .page-jun88-highlight-game {
      border: 2px solid #ffcc00; /* Highlight popular games */
      box-shadow: 0 0 15px rgba(255, 204, 0, 0.5);
    }

    .page-jun88-promotions .page-jun88-promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-jun88-promo-card {
      background-color: #2c2c2c;
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-jun88-promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    }

    .page-jun88-promo-image {
      width: 120px;
      height: 120px;
      object-fit: contain;
      margin-bottom: 20px;
      border-radius: 50%;
      background-color: #3a3a3a;
      padding: 10px;
    }

    .page-jun88-promo-title {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-jun88-promo-card p {
      color: #c0c0c0;
      margin-bottom: 20px;
    }

    .page-jun88-btn-small {
      padding: 8px 18px;
      font-size: 0.9em;
    }

    .page-jun88-promo-note {
      text-align: center;
      margin-top: 40px;
      font-style: italic;
      color: #a0a0a0;
    }

    .page-jun88-faq .page-jun88-faq-item {
      background-color: #2c2c2c;
      margin-bottom: 15px;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    .page-jun88-faq-question {
      font-size: 1.2em;
      color: #ffcc00;
      margin-bottom: 10px;
      cursor: pointer;
      position: relative;
      padding-right: 30px;
    }

    .page-jun88-faq-question::after {
      content: '+';
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
    }

    .page-jun88-faq-question.active::after {
      content: '-';
      transform: translateY(-50%) rotate(0deg);
    }

    .page-jun88-faq-answer {
      color: #c0c0c0;
      display: none; /* Hidden by default */
      padding-top: 10px;
      border-top: 1px solid #3a3a3a;
      margin-top: 10px;
    }

    /* Floating Ad */
    .page-jun88-floating-ad {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: #ffcc00; /* Gold background for high visibility */
      padding: 10px 0;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      text-align: center;
    }

    .page-jun88-floating-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background-color: #e6b800; /* Slightly darker gold for button */
      color: #1a1a1a;
      padding: 10px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-jun88-floating-btn:hover {
      background-color: #ffcc00;
      transform: translateY(-2px);
    }

    .page-jun88-floating-icon {
      width: 30px;
      height: 30px;
      margin-right: 10px;
      object-fit: contain;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-jun88-title {
        font-size: 2em;
      }
      .page-jun88-subtitle {
        font-size: 1.8em;
      }
      .page-jun88-hero {
        padding: 40px 15px;
      }
      .page-jun88-cta-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-jun88-btn {
        width: 80%;
        margin: 0 auto;
      }
      .page-jun88-floating-btn {
        padding: 8px 15px;
        font-size: 1em;
      }
      .page-jun88-floating-icon {
        width: 25px;
        height: 25px;
      }
    }

    @media (max-width: 480px) {
      .page-jun88-title {
        font-size: 1.8em;
      }
      .page-jun88-subtitle {
        font-size: 1.6em;
      }
      .page-jun88-btn {
        width: 90%;
      }
    }
  