
    /* Base styles */
    .page-jum88 {
      font-family: 'Arial', sans-serif;
      background-color: #000000; /* Black background */
      color: #FFFFFF; /* White text */
      line-height: 1.6;
      box-sizing: border-box;
      padding-bottom: 80px; /* Space for potential footer content */
    }

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

    .page-jum88__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-jum88__section-title {
      font-size: 2.8em;
      color: #FFD700; /* Gold/Yellow for titles */
      margin-bottom: 30px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-jum88__section-subtitle {
      font-size: 1.2em;
      color: #FFFFFF;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-jum88__hero-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding-top: 150px; /* Offset for fixed header */
      box-sizing: border-box;
    }

    .page-jum88__hero-image-wrapper {
      width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 30px; /* Space between image and title */
    }

    .page-jum88__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto; /* Center the image */
      border-radius: 8px;
    }

    .page-jum88__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px 15px;
      text-align: center;
    }

    .page-jum88__hero-title {
      font-size: 3.5em;
      color: #FFD700;
      margin-bottom: 20px;
      line-height: 1.2;
      font-weight: 900;
    }

    .page-jum88__hero-description {
      font-size: 1.5em;
      color: #FFFFFF;
      margin-bottom: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Floating Login Button */
    .page-jum88__floating-button-wrapper {
        position: fixed;
        bottom: 20px;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        z-index: 1000;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .page-jum88__floating-button {
      display: inline-block;
      background-color: #FFD700; /* Gold/Yellow */
      color: #000000; /* Black text */
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-align: center;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 90%; /* Limit width for mobile */
    }

    .page-jum88__floating-button:hover {
      background-color: #e6c200;
      transform: translateY(-3px);
    }

    /* General Button Style (for non-floating buttons) */
    .page-jum88__button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 12px 25px;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-jum88__button:hover {
      background-color: #e6c200;
    }

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

    .page-jum88__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      padding: 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;
      align-items: center;
      justify-content: center;
    }

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

    .page-jum88__game-card-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for image consistency */
      overflow: hidden;
      margin-bottom: 15px;
      border-radius: 8px;
    }

    .page-jum88__game-card-image {
      max-width: 100%;
      height: 100%;
      object-fit: cover; /* Cover the area without distortion */
      display: block;
      margin: 0 auto;
    }

    .page-jum88__game-card-title {
      font-size: 1.5em;
      color: #FFD700;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-jum88__game-card-description {
      font-size: 0.95em;
      color: #CCCCCC;
    }

    /* Game Providers Section */
    .page-jum88__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 50px;
      align-items: center;
      justify-content: center;
    }

    .page-jum88__provider-logo-wrapper {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      height: 100px; /* Fixed height for logos */
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
    }

    .page-jum88__provider-logo-wrapper:hover {
      transform: scale(1.05);
    }

    .page-jum88__provider-logo {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      display: block;
    }

    /* Why Choose Section */
    .page-jum88__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
      text-align: left;
    }

    .page-jum88__feature-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-jum88__feature-title {
      font-size: 1.8em;
      color: #FFD700;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-jum88__feature-description {
      font-size: 1em;
      color: #CCCCCC;
    }

    /* FAQ Section */
    .page-jum88__faq-list {
      margin-top: 50px;
      text-align: left;
    }

    .page-jum88__faq-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    }

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

    .page-jum88__faq-question h3 {
      margin: 0;
      font-size: 1.2em; /* Keep font size consistent with parent */
      color: #FFD700;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-jum88__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-jum88__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent */
    }

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

    .page-jum88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #1a1a1a;
      color: #CCCCCC;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    .page-jum88__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }

    /* Social Media Section */
    .page-jum88__social-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 40px;
    }

    .page-jum88__social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      background-color: #1a1a1a;
      border-radius: 50%;
      color: #FFD700;
      font-size: 1.8em;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-jum88__social-link:hover {
      background-color: #FFD700;
      color: #000000;
      transform: translateY(-5px);
    }

    .page-jum88__social-icon {
      /* This would typically be an SVG or font icon */
      /* For now, we'll just use text placeholders or rely on image placeholders */
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
      border-radius: 50%; /* Ensure round shape for social icons */
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-jum88__hero-section {
        padding-top: 150px; /* Maintain offset for mobile */
      }
      .page-jum88__hero-title {
        font-size: 2.5em;
      }
      .page-jum88__hero-description {
        font-size: 1.2em;
      }
      .page-jum88__section-title {
        font-size: 2em;
      }
      .page-jum88__section {
        padding: 40px 0;
      }
      .page-jum88__game-grid {
        grid-template-columns: 1fr;
      }
      .page-jum88__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-jum88__feature-list {
        grid-template-columns: 1fr;
      }
      .page-jum88__faq-question, .page-jum88__faq-question h3 {
        font-size: 1em;
        padding: 15px 20px;
      }
      .page-jum88__faq-answer {
        padding: 0 20px;
      }
      .page-jum88__faq-item.active .page-jum88__faq-answer {
        padding: 15px 20px !important;
      }
      .page-jum88__floating-button {
        padding: 12px 20px;
        font-size: 1em;
      }

      /* Image responsiveness for mobile */
      .page-jum88 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-jum88__hero-image-wrapper,
      .page-jum88__game-card-image-wrapper,
      .page-jum88__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-jum88__hero-title {
        font-size: 2em;
      }
      .page-jum88__hero-description {
        font-size: 1em;
      }
      .page-jum88__section-title {
        font-size: 1.8em;
      }
    }
  