
    /* Base styles for the page, black background, yellow/white text */
    .page-luck8dangnhap {
      font-family: 'Arial', sans-serif;
      background-color: #000000;
      color: #FFFFFF;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for the floating button */
    }

    .page-luck8dangnhap__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-luck8dangnhap__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-luck8dangnhap__section--dark {
      background-color: #1a1a1a;
      color: #FFFFFF;
    }

    .page-luck8dangnhap__section-title {
      font-size: 2.5em;
      color: #FFD700;
      margin-bottom: 25px;
      font-weight: bold;
      text-transform: uppercase;
    }

    .page-luck8dangnhap__section-subtitle {
      font-size: 1.2em;
      color: #FFFFFF;
      margin-bottom: 40px;
    }

    .page-luck8dangnhap__text--yellow {
      color: #FFD700;
    }

    .page-luck8dangnhap__text--white {
      color: #FFFFFF;
    }

    /* Hero Section */
    .page-luck8dangnhap__hero-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding-top: 150px; /* Safe zone for fixed header on desktop */
      background-color: #000000; /* Ensure black background */
    }

    .page-luck8dangnhap__hero-image {
      display: block;
      width: 100%;
      height: auto;
      object-fit: contain; /* Maintain original ratio */
      max-width: 100%; /* Ensure image is responsive */
      margin: 0 auto; /* Center the image */
    }

    .page-luck8dangnhap__hero-content {
      position: relative;
      z-index: 10;
      padding: 30px 15px 50px;
      background-color: #000000; /* Ensure content background is black */
    }

    .page-luck8dangnhap__hero-title {
      font-size: 3.5em;
      color: #FFD700;
      margin-bottom: 15px;
      font-weight: bold;
      line-height: 1.2;
    }

    .page-luck8dangnhap__hero-description {
      font-size: 1.4em;
      color: #FFFFFF;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-luck8dangnhap__hero-button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.3em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

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

    /* Floating Login Button */
    .page-luck8dangnhap__floating-button-wrapper {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background-color: rgba(0, 0, 0, 0.8);
      padding: 10px 0;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      text-align: center;
    }

    .page-luck8dangnhap__floating-button {
      display: inline-block;
      background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
      color: #000000;
      padding: 15px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.4em;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
      animation: page-luck8dangnhap__pulse 2s infinite;
      border: none;
      cursor: pointer;
    }

    .page-luck8dangnhap__floating-button:hover {
      background: linear-gradient(90deg, #FFA500 0%, #FFD700 100%);
      transform: scale(1.05);
      box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    }

    @keyframes page-luck8dangnhap__pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.03); }
      100% { transform: scale(1); }
    }

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

    .page-luck8dangnhap__game-card {
      background-color: #1a1a1a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
    }

    .page-luck8dangnhap__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    }

    .page-luck8dangnhap__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      border-bottom: 3px solid #FFD700;
    }

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

    .page-luck8dangnhap__game-card-description {
      color: #CCCCCC;
      font-size: 0.95em;
      padding: 0 15px;
    }

    .page-luck8dangnhap__game-card-link {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 10px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      margin-top: 20px;
      font-size: 1em;
      transition: background-color 0.3s ease;
    }

    .page-luck8dangnhap__game-card-link:hover {
      background-color: #ffe066;
    }

    /* Game Providers */
    .page-luck8dangnhap__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Min size for logos now 200px */
      gap: 20px;
      margin-top: 40px;
      align-items: center;
      justify-items: center;
    }

    .page-luck8dangnhap__provider-logo {
      width: 100%;
      max-width: 200px; /* Max width for logos, consistent with min size */
      height: auto;
      object-fit: contain;
      border-radius: 8px;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .page-luck8dangnhap__provider-logo:hover {
      transform: scale(1.1);
      opacity: 0.8;
    }

    /* General Content */
    .page-luck8dangnhap__content-block {
      background-color: #1a1a1a;
      border-radius: 15px;
      padding: 30px;
      margin-bottom: 30px;
      text-align: left;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }

    .page-luck8dangnhap__content-block h2 {
      color: #FFD700;
      font-size: 2em;
      margin-bottom: 20px;
      text-align: center;
    }

    .page-luck8dangnhap__content-block h3 {
      color: #FFD700;
      font-size: 1.5em;
      margin-top: 25px;
      margin-bottom: 15px;
    }

    .page-luck8dangnhap__content-block p {
      color: #CCCCCC;
      margin-bottom: 15px;
      font-size: 1.05em;
    }

    .page-luck8dangnhap__content-block ul {
      list-style-type: disc;
      padding-left: 25px;
      margin-bottom: 15px;
      color: #CCCCCC;
    }

    .page-luck8dangnhap__content-block ol {
      list-style-type: decimal;
      padding-left: 25px;
      margin-bottom: 15px;
      color: #CCCCCC;
    }

    .page-luck8dangnhap__content-block li {
      margin-bottom: 8px;
    }

    /* FAQ Section */
    .page-luck8dangnhap__faq-section {
      padding: 40px 0;
    }

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

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

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

    .page-luck8dangnhap__faq-question h3 {
      margin: 0;
      color: #FFD700;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-luck8dangnhap__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #FFD700;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

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

    .page-luck8dangnhap__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #CCCCCC;
      font-size: 1.05em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-luck8dangnhap__hero-section {
        padding-top: 100px; /* Safe zone for fixed header on mobile */
      }
      .page-luck8dangnhap__hero-title {
        font-size: 2.5em;
      }
      .page-luck8dangnhap__hero-description {
        font-size: 1.1em;
      }
      .page-luck8dangnhap__hero-button {
        font-size: 1.1em;
        padding: 12px 25px;
      }
      .page-luck8dangnhap__section-title {
        font-size: 2em;
      }
      .page-luck8dangnhap__floating-button {
        font-size: 1.2em;
        padding: 12px 30px;
      }
      .page-luck8dangnhap__game-grid {
        grid-template-columns: 1fr;
      }
      .page-luck8dangnhap__game-card-image {
        height: 180px;
      }
      .page-luck8dangnhap__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Adjusted for mobile view, but still > 200px image source */
      }
      .page-luck8dangnhap__provider-logo {
        max-width: 180px; /* Adjusted for mobile view, but still > 200px image source */
      }
      .page-luck8dangnhap__content-block {
        padding: 20px;
      }
      .page-luck8dangnhap__content-block h2 {
        font-size: 1.8em;
      }
      .page-luck8dangnhap__content-block h3 {
        font-size: 1.3em;
      }
      .page-luck8dangnhap__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }
      .page-luck8dangnhap__faq-answer {
        padding: 0 20px;
      }
      .page-luck8dangnhap__faq-item.active .page-luck8dangnhap__faq-answer {
        padding: 15px 20px !important;
      }
    }

    /* Image responsive optimization for mobile */
    .page-luck8dangnhap img {
      max-width: 100%;
      height: auto;
      display: block; /* To remove extra space below images */
    }

    .page-luck8dangnhap__image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin: 0 auto; /* Center image containers */
    }

    @media (max-width: 768px) {
      .page-luck8dangnhap img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-luck8dangnhap__image-container {
        width: 100% !important;
        max-width: 100% !important;
      }
    }
  