
    /* Tổng thể */
    :root {
      --page-bg-color: #1a1a2e;
      --primary-color: #e94560;
      --secondary-color: #0f3460;
      --text-color: #e0e0e0;
      --heading-color: #ffffff;
      --card-bg-color: #2e3a59;
      --button-bg-color: #ff6b6b;
      --button-hover-bg-color: #ff4757;
      --accent-color: #ffcc00; /* For highlighting */
    }

    .page-jun888login {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--page-bg-color);
      padding: 0;
      margin: 0;
      overflow-x: hidden;
    }

    /* Hero Section */
    .page-jun888login__hero-section {
      position: relative;
      width: 100%;
      background-color: var(--secondary-color);
      text-align: center;
      padding-top: 10px; /* For fixed header */
      padding-bottom: 40px;
      overflow: hidden;
      background-image: url('[GALLERY:banner:jun888,login,hero,banner]');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      min-height: 450px; /* Ensure sufficient height */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .page-jun888login__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8));
      z-index: 1;
    }

    .page-jun888login__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-jun888login__hero-title {
      font-size: 2.8em;
      color: var(--heading-color);
      margin-bottom: 15px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-jun888login__hero-subtitle {
      font-size: 1.3em;
      color: var(--text-color);
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-jun888login__cta-button {
      display: inline-block;
      background-color: var(--button-bg-color);
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-jun888login__cta-button:hover {
      background-color: var(--button-hover-bg-color);
      transform: translateY(-3px);
    }

    /* Floating Login Button */
    .page-jun888login__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--primary-color);
      color: #ffffff;
      padding: 12px 20px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.2s ease;
      animation: pulse 2s infinite;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .page-jun888login__floating-login-button:hover {
      background-color: #c7374e;
      transform: scale(1.05);
    }

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

    /* General Section Styling */
    .page-jun888login__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-jun888login__section-title {
      font-size: 2.2em;
      color: var(--heading-color);
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-jun888login__text-content {
      font-size: 1.1em;
      margin-bottom: 30px;
      color: var(--text-color);
    }

    /* Game List */
    .page-jun888login__game-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-jun888login__game-item {
      background-color: var(--card-bg-color);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
      max-width: 100%; /* Ensure it doesn't exceed container */
    }

    .page-jun888login__game-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .page-jun888login__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-jun888login__game-content {
      padding: 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .page-jun888login__game-title {
      font-size: 1.5em;
      color: var(--heading-color);
      margin-top: 0;
      margin-bottom: 15px;
      line-height: 1.3;
    }

    .page-jun888login__game-description {
      font-size: 0.95em;
      color: var(--text-color);
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .page-jun888login__game-cta {
      display: inline-block;
      background-color: var(--primary-color);
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.95em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      text-align: center;
    }

    .page-jun888login__game-cta:hover {
      background-color: #c7374e;
    }

    /* Benefits Section */
    .page-jun888login__benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-jun888login__benefit-item {
      background-color: var(--card-bg-color);
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-jun888login__benefit-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      object-fit: contain;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-jun888login__benefit-title {
      font-size: 1.4em;
      color: var(--heading-color);
      margin-bottom: 15px;
    }

    .page-jun888login__benefit-description {
      font-size: 1em;
      color: var(--text-color);
    }

    /* FAQ Section */
    .page-jun888login__faq-section {
      background-color: var(--secondary-color);
    }

    .page-jun888login__faq-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-jun888login__faq-item {
      background-color: var(--card-bg-color);
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-jun888login__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #3a4768; /* Slightly lighter for question */
      color: var(--heading-color);
      font-size: 1.15em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-jun888login__faq-question:hover {
      background-color: #4a5b80;
    }

    .page-jun888login__faq-question h3 {
      margin: 0;
      font-size: 1.15em; /* Match parent */
      pointer-events: none; /* Prevent h3 from blocking click event */
      flex-grow: 1;
      text-align: left;
    }

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

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

    .page-jun888login__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: var(--card-bg-color);
      color: var(--text-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      text-align: left;
      font-size: 1em;
    }

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

    /* Call to Action Section */
    .page-jun888login__cta-section {
      background-color: var(--primary-color);
      color: #ffffff;
      padding: 50px 20px;
      text-align: center;
      border-radius: 12px;
      margin: 40px auto;
      max-width: 900px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    .page-jun888login__cta-section h2 {
      font-size: 2em;
      margin-bottom: 20px;
      color: #ffffff;
    }

    .page-jun888login__cta-section p {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-jun888login__hero-section {
        min-height: 350px;
        padding-top: 10px; /* Adjust for mobile fixed header */
        padding-bottom: 30px;
      }

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

      .page-jun888login__hero-subtitle {
        font-size: 1em;
      }

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

      .page-jun888login__section {
        padding: 40px 15px;
      }

      .page-jun888login__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-jun888login__text-content {
        font-size: 1em;
      }

      .page-jun888login__game-list,
      .page-jun888login__benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-jun888login__game-item,
      .page-jun888login__benefit-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-jun888login__game-list,
      .page-jun888login__benefits-grid,
      .page-jun888login__faq-list {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          padding: 0 15px !important; /* Adjust padding for mobile list containers */
          margin-left: 0 !important;
          margin-right: 0 !important;
      }

      .page-jun888login__game-image,
      .page-jun888login__benefit-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-jun888login__game-title {
        font-size: 1.3em;
      }

      .page-jun888login__game-description {
        font-size: 0.9em;
      }

      .page-jun888login__benefit-title {
        font-size: 1.2em;
      }

      .page-jun888login__faq-question {
        font-size: 1em;
        padding: 15px 20px;
      }

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

      .page-jun888login__faq-toggle {
        font-size: 1.5em;
        margin-left: 10px;
      }

      .page-jun888login__faq-answer {
        padding: 15px 20px !important;
      }

      .page-jun888login__cta-section {
        padding: 40px 15px;
        margin: 30px auto;
      }

      .page-jun888login__cta-section h2 {
        font-size: 1.6em;
      }

      .page-jun888login__cta-section p {
        font-size: 1em;
      }

      .page-jun888login__floating-login-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 18px;
        font-size: 1em;
      }

      /* Ensure all images are responsive */
      .page-jun888login img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-jun888login__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }
  