
    :root {
      --page-jun888vip__primary-color: #e44d26; /* Cam đậm */
      --page-jun888vip__secondary-color: #f7931e; /* Cam nhạt */
      --page-jun888vip__accent-color: #4CAF50; /* Xanh lá cây */
      --page-jun888vip__text-color: #333;
      --page-jun888vip__background-color: #f8f8f8;
      --page-jun888vip__light-gray: #eee;
      --page-jun888vip__dark-gray: #555;
      --page-jun888vip__white: #ffffff;
    }

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

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

    /* Hero Section */
    .page-jun888vip__hero-section {
      background: linear-gradient(135deg, var(--page-jun888vip__primary-color), var(--page-jun888vip__secondary-color));
      color: var(--page-jun888vip__white);
      text-align: center;
      padding: 100px 20px 60px; /* Adjusted padding-top for fixed header */
      position: relative;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-jun888vip__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto 20px;
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
      object-fit: cover;
      min-width: 200px; /* Ensure minimum size */
      min-height: 200px; /* Ensure minimum size */
      width: 100%; /* Important for mobile responsiveness */
      max-width: 800px; /* Max width for larger screens */
    }
    .page-jun888vip__hero-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
    }

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

    .page-jun888vip__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      opacity: 0.9;
      color: var(--page-jun888vip__white);
    }

    .page-jun888vip__cta-button {
      display: inline-block;
      background-color: var(--page-jun888vip__accent-color);
      color: var(--page-jun888vip__white);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      border: none;
      cursor: pointer;
      text-align: center;
    }

    .page-jun888vip__cta-button:hover {
      background-color: #4CAF50; /* Slightly darker green */
      transform: translateY(-2px);
    }

    /* Floating Login Button */
    .page-jun888vip__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      background-color: #FF0000; /* Đỏ rực */
      color: var(--page-jun888vip__white);
      padding: 15px 25px;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
      animation: page-jun888vip__pulse 1.5s infinite;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      text-align: center;
      white-space: nowrap; /* Prevent text wrapping */
      text-decoration: none; /* Remove underline for link */
    }

    .page-jun888vip__floating-button:hover {
      background-color: #CC0000; /* Darker red */
    }

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

    /* General Sections */
    .page-jun888vip__section {
      background-color: var(--page-jun888vip__white);
      padding: 40px 20px;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-jun888vip__section-title {
      font-size: 2em;
      color: var(--page-jun888vip__primary-color);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-jun888vip__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--page-jun888vip__secondary-color);
      border-radius: 2px;
    }

    .page-jun888vip__text-content {
      max-width: 800px;
      margin: 0 auto 30px;
      text-align: justify;
    }

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

    .page-jun888vip__game-card {
      background-color: var(--page-jun888vip__light-gray);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
      box-sizing: border-box;
    }

    .page-jun888vip__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    }

    .page-jun888vip__game-card-image-container {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #f0f0f0;
      box-sizing: border-box;
    }

    .page-jun888vip__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      min-width: 200px; /* Ensure minimum size */
      min-height: 200px; /* Ensure minimum size */
    }

    .page-jun888vip__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      color: var(--page-jun888vip__dark-gray);
    }

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

    .page-jun888vip__game-card-description {
      font-size: 0.95em;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    /* How-to Steps */
    .page-jun888vip__step-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-jun888vip__step-item {
      background-color: var(--page-jun888vip__white);
      border: 1px solid var(--page-jun888vip__light-gray);
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      flex: 1 1 300px;
      max-width: 350px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-jun888vip__step-number {
      background-color: var(--page-jun888vip__primary-color);
      color: var(--page-jun888vip__white);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8em;
      font-weight: bold;
      margin: 0 auto 20px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-jun888vip__step-title {
      font-size: 1.3em;
      color: var(--page-jun888vip__secondary-color);
      margin-bottom: 15px;
    }

    .page-jun888vip__step-description {
      font-size: 1em;
      color: var(--page-jun888vip__dark-gray);
    }

    /* FAQ Section */
    .page-jun888vip__faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-jun888vip__faq-item {
      background-color: var(--page-jun888vip__white);
      border: 1px solid var(--page-jun888vip__light-gray);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-jun888vip__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: var(--page-jun888vip__white);
      border-bottom: 1px solid var(--page-jun888vip__light-gray);
      transition: background-color 0.3s ease;
    }

    .page-jun888vip__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-jun888vip__faq-question h3 {
      margin: 0;
      font-size: 1.15em;
      color: var(--page-jun888vip__primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-jun888vip__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-jun888vip__secondary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

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

    .page-jun888vip__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #fdfdfd;
      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-jun888vip__dark-gray);
    }

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

    .page-jun888vip__faq-answer p {
      margin: 0 0 10px;
    }
    .page-jun888vip__faq-answer p:last-child {
      margin-bottom: 0;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-jun888vip__hero-section {
        padding: 80px 15px 40px; /* Adjusted for mobile fixed header */
      }

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

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

      .page-jun888vip__cta-button,
      .page-jun888vip__floating-button {
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-jun888vip__section {
        padding: 30px 15px;
      }

      .page-jun888vip__section-title {
        font-size: 1.8em;
      }

      .page-jun888vip__game-grid {
        grid-template-columns: 1fr;
      }
      
      .page-jun888vip__game-card-image-container {
        height: 180px;
      }

      .page-jun888vip__step-item {
        flex: 1 1 100%;
        max-width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      .page-jun888vip__step-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      .page-jun888vip__step-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-jun888vip__faq-question {
        padding: 15px 20px;
      }

      .page-jun888vip__faq-question h3 {
        font-size: 1em;
      }

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

    @media (max-width: 480px) {
      .page-jun888vip__hero-title {
        font-size: 1.7em;
      }
      .page-jun888vip__hero-subtitle {
        font-size: 1em;
      }
      .page-jun888vip__floating-button {
        width: calc(100% - 40px);
        left: 20px;
        transform: translateX(0);
        bottom: 15px;
      }
    }
  