
    /* CSS Styles for page-luck8link */
    :root {
      --page-luck8link-primary-color: #f7b32b; /* Vàng cam */
      --page-luck8link-secondary-color: #2c3e50; /* Xám xanh đậm */
      --page-luck8link-accent-color: #e74c3c; /* Đỏ */
      --page-luck8link-text-color: #ecf0f1; /* Trắng xám nhạt */
      --page-luck8link-dark-text-color: #34495e; /* Xám đậm hơn */
      --page-luck8link-background-color: #1a2a3a; /* Nền tối */
      --page-luck8link-card-background: #2e4053; /* Nền thẻ */
      --page-luck8link-button-hover: #e67e22; /* Cam đậm */
    }

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

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

    .page-luck8link__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-luck8link__section:nth-of-type(even) {
      background-color: var(--page-luck8link-secondary-color);
    }

    .page-luck8link__title {
      font-size: 2.8em;
      color: var(--page-luck8link-primary-color);
      margin-bottom: 20px;
      text-transform: uppercase;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-luck8link__subtitle {
      font-size: 1.8em;
      color: var(--page-luck8link-text-color);
      margin-bottom: 40px;
      font-weight: normal;
    }

    .page-luck8link__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--page-luck8link-text-color);
    }

    .page-luck8link__button {
      display: inline-block;
      background-color: var(--page-luck8link-primary-color);
      color: var(--page-luck8link-secondary-color);
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

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

    /* Hero Section */
    .page-luck8link__hero-section {
      position: relative;
      width: 100%;
      height: auto;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding-top: 10px; /* Essential for fixed header */
      padding-bottom: 60px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-luck8link__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.6); /* Slightly darken image for text readability */
    }

    .page-luck8link__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      max-width: 900px;
    }

    .page-luck8link__hero-title {
      font-size: 3em;
      color: var(--page-luck8link-primary-color);
      margin-bottom: 15px;
      text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    }

    .page-luck8link__hero-description {
      font-size: 1.4em;
      color: var(--page-luck8link-text-color);
      margin-bottom: 30px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    }

    /* Floating Login Button */
    .page-luck8link__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--page-luck8link-accent-color);
      color: #fff;
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-decoration: none;
      white-space: nowrap; /* Prevent text wrapping */
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      cursor: pointer;
    }

    .page-luck8link__floating-button:hover {
      background-color: #c0392b; /* Darker red */
      transform: translateX(-50%) translateY(-5px);
    }

    /* Games Grid */
    .page-luck8link__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      padding: 40px 0;
    }

    .page-luck8link__game-card {
      background-color: var(--page-luck8link-card-background);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

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

    .page-luck8link__game-image {
      width: 100%;
      height: 200px; /* Minimum height for content images */
      object-fit: cover;
      display: block;
    }

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

    .page-luck8link__game-title {
      font-size: 1.5em;
      color: var(--page-luck8link-primary-color);
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-luck8link__game-description {
      font-size: 1em;
      color: var(--page-luck8link-text-color);
      margin-bottom: 15px;
    }

    /* Features/Benefits List */
    .page-luck8link__features-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      padding: 40px 0;
    }

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

    .page-luck8link__feature-item:hover {
      transform: scale(1.03);
    }

    .page-luck8link__feature-icon {
      width: 200px; /* Enforce minimum 200px */
      height: 200px; /* Enforce minimum 200px */
      margin-bottom: 20px;
      object-fit: contain;
      margin-left: auto;
      margin-right: auto;
    }

    .page-luck8link__feature-title {
      font-size: 1.6em;
      color: var(--page-luck8link-primary-color);
      margin-bottom: 15px;
    }

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

    /* Guides Section */
    .page-luck8link__guides-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      padding: 40px 0;
    }

    .page-luck8link__guide-card {
      background-color: var(--page-luck8link-card-background);
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
      padding: 25px;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-luck8link__guide-card:hover {
      transform: translateY(-5px);
    }

    .page-luck8link__guide-icon {
      width: 200px; /* Enforce minimum 200px */
      height: 200px; /* Enforce minimum 200px */
      margin-bottom: 15px;
      object-fit: contain;
      margin-left: auto;
      margin-right: auto;
    }

    .page-luck8link__guide-title {
      font-size: 1.4em;
      color: var(--page-luck8link-primary-color);
      margin-bottom: 10px;
    }

    .page-luck8link__guide-description {
      font-size: 0.95em;
      color: var(--page-luck8link-text-color);
    }

    /* FAQ Section */
    .page-luck8link__faq-list {
      max-width: 800px;
      margin: 40px auto;
      text-align: left;
    }

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

    .page-luck8link__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: var(--page-luck8link-secondary-color);
      color: var(--page-luck8link-primary-color);
      font-size: 1.2em;
      font-weight: bold;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-luck8link__faq-question:hover {
      background-color: #3f5168; /* Slightly lighter secondary */
    }

    .page-luck8link__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      color: inherit;
      pointer-events: none; /* Prevents text from blocking click event */
    }

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

    .page-luck8link__faq-item.active .page-luck8link__faq-toggle {
      transform: rotate(45deg); /* Plus to X (minus) */
    }

    .page-luck8link__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--page-luck8link-text-color);
    }

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

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

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

      .page-luck8link__section {
        padding: 40px 0;
      }

      .page-luck8link__title {
        font-size: 2em;
      }

      .page-luck8link__subtitle {
        font-size: 1.4em;
      }

      .page-luck8link__hero-section {
        padding-top: 10px; /* Adjust for mobile fixed header */
        padding-bottom: 40px;
      }

      .page-luck8link__hero-title {
        font-size: 2.2em;
      }

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

      .page-luck8link__floating-button {
        padding: 12px 20px;
        font-size: 1em;
        width: calc(100% - 40px); /* Full width minus padding */
        max-width: 350px; /* Cap max width */
        bottom: 15px;
      }

      .page-luck8link__games-grid,
      .page-luck8link__features-list,
      .page-luck8link__guides-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      /* List Item Responsive - General for any list-like structure */
      .page-luck8link__games-grid > *,
      .page-luck8link__features-list > *,
      .page-luck8link__guides-grid > * {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important; /* Adjust padding to fit screen */
        padding-right: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-luck8link__game-card,
      .page-luck8link__feature-item,
      .page-luck8link__guide-card {
        padding: 20px; /* Adjust internal padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-luck8link__game-title,
      .page-luck8link__feature-title,
      .page-luck8link__guide-title {
        font-size: 1.3em;
      }

      .page-luck8link__game-description,
      .page-luck8link__feature-description,
      .page-luck8link__guide-description {
        font-size: 0.9em;
      }

      .page-luck8link__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }
      .page-luck8link__faq-answer {
        padding: 0 20px;
      }
      .page-luck8link__faq-item.active .page-luck8link__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-luck8link__hero-title {
        font-size: 1.8em;
      }
      .page-luck8link__hero-description {
        font-size: 1em;
      }
      .page-luck8link__title {
        font-size: 1.8em;
      }
      .page-luck8link__subtitle {
        font-size: 1.2em;
      }
      .page-luck8link__button {
        padding: 12px 20px;
        font-size: 1em;
      }
    }

    /* Image responsive default for all images in main content */
    .page-luck8link img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
      margin: 0 auto; /* Center images */
    }
    
    /* Image containers responsive default */
    .page-luck8link__game-card img,
    .page-luck8link__feature-item img,
    .page-luck8link__guide-card img {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    @media (max-width: 768px) {
      .page-luck8link img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-luck8link__game-card img,
      .page-luck8link__feature-item img,
      .page-luck8link__guide-card img {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
    }

  