
    .page-luck8882 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
    }

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

    /* Hero Section */
    .page-luck8882__hero-section {
      position: relative;
      background: linear-gradient(135deg, #004d40 0%, #00796b 100%);
      color: #fff;
      text-align: center;
      padding: 70px 20px 40px; /* Adjusted padding-top for fixed header */
      overflow: hidden;
      border-radius: 10px;
      margin-bottom: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-luck8882__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
      filter: brightness(0.8); /* Allowable filter for background images to improve text readability */
    }

    .page-luck8882__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-luck8882__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: bold;
      color: #ffeb3b; /* Gold accent for title */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-luck8882__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-luck8882__primary-button {
      display: inline-block;
      background-color: #ffeb3b; /* Gold */
      color: #333;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-luck8882__primary-button:hover {
      background-color: #fdd835; /* Slightly darker gold */
      transform: translateY(-3px);
    }

    /* Section Styling */
    .page-luck8882__section {
      background-color: #fff;
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    .page-luck8882__section-title {
      font-size: 2.2em;
      color: #004d40; /* Dark green */
      text-align: center;
      margin-bottom: 30px;
      position: relative;
    }

    .page-luck8882__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: #ffeb3b; /* Gold accent */
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-luck8882__text-content {
      font-size: 1.1em;
      color: #555;
      margin-bottom: 20px;
      text-align: justify;
    }

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

    .page-luck8882__game-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-luck8882__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-luck8882__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      border-bottom: 3px solid #ffeb3b; /* Gold accent */
    }

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

    .page-luck8882__game-card-title {
      font-size: 1.5em;
      color: #004d40;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-luck8882__game-card-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
    }

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

    .page-luck8882__step-item {
      background-color: #e0f2f1; /* Light teal */
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      flex: 1 1 calc(33% - 40px);
      min-width: 280px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      border: 1px solid #b2dfdb;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-luck8882__step-icon {
      font-size: 3em;
      color: #00796b;
      margin-bottom: 15px;
    }

    .page-luck8882__step-title {
      font-size: 1.4em;
      color: #004d40;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-luck8882__step-description {
      font-size: 1em;
      color: #555;
    }

    /* Promotions Section */
    .page-luck8882__promo-card {
      background-color: #ffeb3b; /* Gold accent */
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      color: #333;
    }

    .page-luck8882__promo-title {
      font-size: 2em;
      color: #004d40;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-luck8882__promo-description {
      font-size: 1.2em;
      margin-bottom: 25px;
    }

    /* FAQ Section */
    .page-luck8882__faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-luck8882__faq-item {
      background-color: #fff;
      border: 1px solid #eee;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-luck8882__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      background-color: #e0f7fa; /* Light cyan */
      cursor: pointer;
      font-weight: bold;
      color: #00796b;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-luck8882__faq-question:hover {
      background-color: #b2ebf2; /* Slightly darker cyan */
    }

    .page-luck8882__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click event */
      color: #004d40;
    }

    .page-luck8882__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
      color: #004d40;
    }

    .page-luck8882__faq-item.active .page-luck8882__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or similar for active */
    }

    .page-luck8882__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: #f9f9f9;
      color: #555;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    .page-luck8882__faq-answer p {
      margin: 0;
    }

    /* Floating Promo Button */
    .page-luck8882__floating-promo-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #ffeb3b; /* Gold */
      color: #333;
      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;
      animation: page-luck8882__pulse 2s infinite;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .page-luck8882__floating-promo-button:hover {
      background-color: #fdd835;
      transform: scale(1.05);
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-luck8882__container {
        padding: 15px;
      }

      .page-luck8882__hero-section {
        padding: 60px 15px 30px; /* Adjusted padding-top for fixed header on mobile */
      }

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

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

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

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

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

      .page-luck8882__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-luck8882__game-card-image {
        height: 180px;
      }

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

      .page-luck8882__step-item {
        flex: 1 1 100% !important; /* Force full width for list items */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      
      .page-luck8882__steps-list {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-luck8882__promo-title {
        font-size: 1.6em;
      }

      .page-luck8882__promo-description {
        font-size: 1.1em;
      }

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

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

      .page-luck8882__floating-promo-button {
        font-size: 0.9em;
        padding: 12px 20px;
        bottom: 15px;
        right: 15px;
        width: calc(100% - 30px); /* Adjust width to fit screen with padding */
        left: 15px;
        border-radius: 10px;
      }

      /* Image responsiveness */
      .page-luck8882 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-luck8882__game-card-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-luck8882__hero-background {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }
  