
    :root {
      --page-jun88phienban1-primary-color: #ffd700; /* Yellow */
      --page-jun88phienban1-secondary-color: #ffffff; /* White */
      --page-jun88phienban1-background-color: #000000; /* Black */
      --page-jun88phienban1-dark-gray: #1a1a1a;
      --page-jun88phienban1-light-gray: #333333;
    }

    .page-jun88phienban1 {
      font-family: 'Arial', sans-serif;
      background-color: var(--page-jun88phienban1-background-color);
      color: var(--page-jun88phienban1-secondary-color);
      line-height: 1.6;
      overflow-x: hidden;
    }

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

    /* Fixed header safe zone */
    .page-jun88phienban1__hero-section {
      padding-top: 120px; /* Adjust for fixed header */
    }

    @media (max-width: 768px) {
      .page-jun88phienban1__hero-section {
        padding-top: 100px; /* Adjust for fixed header on mobile */
      }
    }

    .page-jun88phienban1__header {
      text-align: center;
      margin-bottom: 40px;
    }

    .page-jun88phienban1__header h1 {
      color: var(--page-jun88phienban1-primary-color);
      font-size: 2.8em;
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-jun88phienban1__header p {
      font-size: 1.2em;
      color: var(--page-jun88phienban1-secondary-color);
    }

    /* Hero Section */
    .page-jun88phienban1__hero-section {
      text-align: center;
      background-color: var(--page-jun88phienban1-dark-gray);
      padding: 0; /* No padding here, banner fills it */
      margin-bottom: 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-jun88phienban1__hero-banner {
      width: 100%;
      height: auto;
      display: block;
      max-width: 100%;
      object-fit: cover;
    }

    .page-jun88phienban1__hero-content {
      padding: 30px 20px;
      max-width: 800px;
      margin-top: -80px; /* Overlap slightly with banner for visual flow */
      background: linear-gradient(to top, var(--page-jun88phienban1-background-color) 0%, rgba(0,0,0,0.8) 70%, rgba(0,0,0,0) 100%);
      position: relative;
      z-index: 1;
    }

    .page-jun88phienban1__hero-content h2 {
      color: var(--page-jun88phienban1-primary-color);
      font-size: 2.2em;
      margin-bottom: 15px;
    }

    .page-jun88phienban1__hero-content p {
      font-size: 1.1em;
      margin-bottom: 25px;
    }

    /* Floating Login Button */
    .page-jun88phienban1__floating-login-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-jun88phienban1-primary-color);
      color: var(--page-jun88phienban1-background-color);
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, background-color 0.3s ease;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
    }

    .page-jun88phienban1__floating-login-btn:hover {
      transform: translateY(-5px) scale(1.05);
      background-color: #ffc107; /* Lighter yellow on hover */
    }

    /* General Section Styling */
    .page-jun88phienban1__section {
      padding: 40px 0;
      margin-bottom: 30px;
      background-color: var(--page-jun88phienban1-background-color);
      border-radius: 8px;
    }

    .page-jun88phienban1__section-title {
      text-align: center;
      color: var(--page-jun88phienban1-primary-color);
      font-size: 2.5em;
      margin-bottom: 30px;
      position: relative;
    }

    .page-jun88phienban1__section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background-color: var(--page-jun88phienban1-primary-color);
      margin: 10px auto 0;
      border-radius: 2px;
    }

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

    .page-jun88phienban1__category-card {
      background-color: var(--page-jun88phienban1-dark-gray);
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-jun88phienban1__category-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-jun88phienban1__category-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .page-jun88phienban1__category-card:hover img {
      transform: scale(1.05);
    }

    .page-jun88phienban1__category-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-jun88phienban1__category-card h3 {
      font-size: 1.5em;
      color: var(--page-jun88phienban1-primary-color);
      margin-bottom: 15px;
    }

    .page-jun88phienban1__category-card p {
      font-size: 0.95em;
      color: var(--page-jun88phienban1-secondary-color);
      margin-bottom: 20px;
    }

    .page-jun88phienban1__category-card a {
      display: inline-block;
      background-color: var(--page-jun88phienban1-primary-color);
      color: var(--page-jun88phienban1-background-color);
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      margin-top: auto; /* Push button to bottom */
    }

    .page-jun88phienban1__category-card a:hover {
      background-color: #ffc107;
    }

    /* Game Providers */
    .page-jun88phienban1__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-items: center;
    }

    .page-jun88phienban1__provider-item {
      background-color: var(--page-jun88phienban1-dark-gray);
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100px; /* Fixed height for logos */
      width: 100%;
      max-width: 180px;
      box-sizing: border-box;
    }

    .page-jun88phienban1__provider-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
    }

    .page-jun88phienban1__provider-item img {
      max-width: 100%;
      max-height: 70px; /* Adjust based on desired logo size */
      object-fit: contain;
      display: block;
      transition: opacity 0.3s ease;
    }

    .page-jun88phienban1__provider-item:hover img {
      opacity: 0.8;
    }

    /* Promotions */
    .page-jun88phienban1__promotion-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-jun88phienban1__promotion-card {
      background-color: var(--page-jun88phienban1-dark-gray);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-jun88phienban1__promotion-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-jun88phienban1__promotion-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .page-jun88phienban1__promotion-card:hover img {
      transform: scale(1.05);
    }

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

    .page-jun88phienban1__promotion-content h3 {
      font-size: 1.6em;
      color: var(--page-jun88phienban1-primary-color);
      margin-bottom: 10px;
    }

    .page-jun88phienban1__promotion-content p {
      font-size: 1em;
      color: var(--page-jun88phienban1-secondary-color);
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .page-jun88phienban1__promotion-content .page-jun88phienban1__btn {
      display: inline-block;
      background-color: var(--page-jun88phienban1-primary-color);
      color: var(--page-jun88phienban1-background-color);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      align-self: flex-start;
    }

    .page-jun88phienban1__promotion-content .page-jun88phienban1__btn:hover {
      background-color: #ffc107;
    }

    /* FAQ Section */
    .page-jun88phienban1__faq-list {
      background-color: var(--page-jun88phienban1-dark-gray);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    }

    .page-jun88phienban1__faq-item {
      border-bottom: 1px solid var(--page-jun88phienban1-light-gray);
      margin-bottom: 15px;
      padding-bottom: 15px;
    }

    .page-jun88phienban1__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .page-jun88phienban1__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      padding: 15px 0;
      color: var(--page-jun88phienban1-secondary-color);
      font-size: 1.2em;
      font-weight: bold;
      user-select: none;
      transition: color 0.3s ease;
    }

    .page-jun88phienban1__faq-question:hover {
      color: var(--page-jun88phienban1-primary-color);
    }

    .page-jun88phienban1__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-jun88phienban1__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      color: var(--page-jun88phienban1-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

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

    .page-jun88phienban1__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      color: var(--page-jun88phienban1-secondary-color);
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-jun88phienban1__faq-item.active .page-jun88phienban1__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to show content */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Call to Action */
    .page-jun88phienban1__cta-section {
      text-align: center;
      padding: 50px 20px;
      background: linear-gradient(45deg, var(--page-jun88phienban1-dark-gray), var(--page-jun88phienban1-background-color));
      border-radius: 8px;
      margin-top: 40px;
    }

    .page-jun88phienban1__cta-section h2 {
      color: var(--page-jun88phienban1-primary-color);
      font-size: 2.8em;
      margin-bottom: 20px;
    }

    .page-jun88phienban1__cta-section p {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-jun88phienban1__cta-section .page-jun88phienban1__btn {
      background-color: var(--page-jun88phienban1-primary-color);
      color: var(--page-jun88phienban1-background-color);
      padding: 18px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.3em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-jun88phienban1__cta-section .page-jun88phienban1__btn:hover {
      background-color: #ffc107;
      transform: translateY(-5px);
    }

    /* Responsive Images */
    .page-jun88phienban1 img {
        max-width: 100%;
        height: auto;
        display: block; /* Remove extra space below images */
    }

    .page-jun88phienban1__image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    @media (max-width: 768px) {
      .page-jun88phienban1__header h1 {
        font-size: 2em;
      }

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

      .page-jun88phienban1__hero-content h2 {
        font-size: 1.8em;
      }

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

      .page-jun88phienban1__floating-login-btn {
        padding: 12px 20px;
        font-size: 1em;
        bottom: 15px;
        right: 15px;
      }

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

      .page-jun88phienban1__game-categories,
      .page-jun88phienban1__promotion-grid {
        grid-template-columns: 1fr;
      }

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

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

      .page-jun88phienban1__faq-answer {
        font-size: 0.9em;
      }

      .page-jun88phienban1__cta-section h2 {
        font-size: 2em;
      }

      .page-jun88phienban1__cta-section p {
        font-size: 1.1em;
      }

      .page-jun88phienban1__cta-section .page-jun88phienban1__btn {
        padding: 15px 30px;
        font-size: 1.1em;
      }

      /* Force responsive image styles */
      .page-jun88phienban1 img {
          max-width: 100% !important;
          height: auto !important;
      }
    }
  