
    /* Reset và cơ bản */
    .page-jun888 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding: 20px 0; /* Adjusted for overall page */
    }

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

    .page-jun888__section {
      background-color: #ffffff;
      margin-bottom: 30px;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .page-jun888__section--dark {
        background-color: #2c3e50; /* Dark background */
        color: #ecf0f1; /* Light text */
    }
    .page-jun888__section--dark h2,
    .page-jun888__section--dark h3 {
        color: #ecf0f1;
    }

    .page-jun888__heading {
      text-align: center;
      color: #2c3e50;
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: 700;
      line-height: 1.2;
    }

    .page-jun888__heading--secondary {
      font-size: 2em;
      color: #2980b9;
      margin-bottom: 20px;
      text-align: center;
    }

    .page-jun888__paragraph {
      margin-bottom: 15px;
      text-align: justify;
    }

    /* Hero Section */
    .page-jun888__hero-section {
      text-align: center;
      padding-top: 120px; /* IMPORTANT: Space for fixed header */
      margin-bottom: 30px;
      background: linear-gradient(135deg, #3498db, #2980b9);
      color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
      overflow: hidden; /* Ensure image fits */
    }
    .page-jun888__hero-content {
        padding: 40px 15px;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-jun888__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      font-weight: 800;
      color: #ffffff;
    }

    .page-jun888__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      font-weight: 400;
      color: #ecf0f1;
    }

    .page-jun888__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-top: 20px; /* Space between text and image */
    }

    .page-jun888__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    /* Floating Login Button */
    .page-jun888__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #e74c3c; /* Red color for attention */
      color: #ffffff;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: flex;
      align-items: center;
      gap: 10px;
    }

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

    .page-jun888__floating-button a {
        color: #ffffff;
        text-decoration: none;
    }

    .page-jun888__floating-button::before {
        content: '🔥'; /* Emoji for extra appeal */
        font-size: 1.2em;
    }

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

    .page-jun888__game-card {
      background-color: #ecf0f1;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: #333;
    }

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

    .page-jun888__game-card-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 15px;
    }

    .page-jun888__game-card-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
    }

    .page-jun888__game-card-title {
      font-size: 1.3em;
      font-weight: 600;
      color: #2c3e50;
      margin-top: 10px;
    }

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

    .page-jun888__provider-logo-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #ffffff;
        border-radius: 8px;
        padding: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: transform 0.2s ease;
    }
    .page-jun888__provider-logo-wrapper:hover {
        transform: scale(1.05);
    }

    .page-jun888__provider-logo {
      max-width: 100%;
      height: auto;
      max-height: 80px; /* Limit height for logos */
      display: block;
    }

    /* Why Choose Section */
    .page-jun888__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-jun888__feature-item {
      background-color: #ecf0f1;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      text-align: center;
    }

    .page-jun888__feature-icon {
      font-size: 3em;
      color: #3498db;
      margin-bottom: 15px;
    }

    .page-jun888__feature-title {
      font-size: 1.4em;
      font-weight: 600;
      color: #2c3e50;
      margin-bottom: 10px;
    }

    /* Promotions Section */
    .page-jun888__promo-card {
        background-color: #ecf0f1;
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .page-jun888__promo-card-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    .page-jun888__promo-card-image {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }
    .page-jun888__promo-card-title {
        font-size: 1.3em;
        color: #e74c3c;
        font-weight: 700;
    }
    .page-jun888__promo-card-description {
        font-size: 0.95em;
        color: #555;
    }
    .page-jun888__promo-card-button {
        display: inline-block;
        background-color: #3498db;
        color: #ffffff;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: 600;
        transition: background-color 0.3s ease;
        text-align: center;
    }
    .page-jun888__promo-card-button:hover {
        background-color: #2980b9;
    }

    /* Payment Methods */
    .page-jun888__payment-methods-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* Smaller for payment logos */
      gap: 15px;
      justify-items: center;
      align-items: center;
    }

    .page-jun888__payment-logo-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #ffffff;
        border-radius: 8px;
        padding: 8px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
        transition: transform 0.2s ease;
    }
    .page-jun888__payment-logo-wrapper:hover {
        transform: scale(1.05);
    }

    .page-jun888__payment-logo {
      max-width: 100%;
      height: auto;
      max-height: 60px; /* Limit height for payment logos */
      display: block;
    }

    /* FAQ Section */
    .page-jun888__faq-list {
      list-style: none;
      padding: 0;
    }

    .page-jun888__faq-item {
      background-color: #ecf0f1;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .page-jun888__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #3498db;
      color: #ffffff;
      cursor: pointer;
      user-select: none;
      font-weight: 600;
      font-size: 1.1em;
      border-radius: 8px;
      transition: background-color 0.3s ease;
    }

    .page-jun888__faq-question:hover {
      background-color: #2980b9;
    }

    .page-jun888__faq-question h3 {
        margin: 0;
        flex-grow: 1;
        text-align: left;
        color: #ffffff;
        pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-jun888__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-jun888__faq-item.active .page-jun888__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }
    .page-jun888__faq-item.active .page-jun888__faq-toggle::before {
        content: '−'; /* Change + to - */
    }
    .page-jun888__faq-toggle::before {
        content: '+'; /* Initial state */
    }


    .page-jun888__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding 0 to animate */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #ffffff;
      color: #333;
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
    }

    .page-jun888__faq-item.active .page-jun888__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }
    .page-jun888__faq-answer p {
        margin: 0;
        padding-bottom: 10px; /* Adjust as needed for spacing within answer */
    }
    .page-jun888__faq-answer p:last-child {
        padding-bottom: 0;
    }


    /* Responsive Design */
    @media (max-width: 768px) {
      .page-jun888__hero-section {
        padding-top: 100px; /* IMPORTANT: Mobile fixed header space */
      }
      .page-jun888__hero-title {
        font-size: 2.2em;
      }
      .page-jun888__hero-subtitle {
        font-size: 1.2em;
      }
      .page-jun888__heading {
        font-size: 2em;
      }
      .page-jun888__heading--secondary {
        font-size: 1.6em;
      }
      .page-jun888__game-categories,
      .page-jun888__features-grid {
        grid-template-columns: 1fr;
      }
      .page-jun888__providers-grid,
      .page-jun888__payment-methods-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      }
      .page-jun888__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
      .page-jun888__game-card-image,
      .page-jun888__hero-image,
      .page-jun888__promo-card-image,
      .page-jun888__provider-logo,
      .page-jun888__payment-logo {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-jun888__game-card-image-wrapper,
      .page-jun888__hero-image-wrapper,
      .page-jun888__promo-card-image-wrapper,
      .page-jun888__provider-logo-wrapper,
      .page-jun888__payment-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-jun888__faq-question {
          padding: 15px 20px;
          font-size: 1em;
      }
      .page-jun888__faq-answer {
          padding: 0 20px;
      }
      .page-jun888__faq-item.active .page-jun888__faq-answer {
          padding: 15px 20px !important;
      }
    }
  