
    /* Tổng thể */
    .page-luck8882 {
        font-family: 'Arial', sans-serif;
        color: #e0e0e0;
        background-color: #1a1a1a;
        line-height: 1.6;
        overflow-x: hidden; /* Ngăn cuộn ngang */
    }

    .page-luck8882__section-title {
        font-size: 2.5em;
        color: #f3d403;
        text-align: center;
        margin-bottom: 20px;
        padding-top: 40px;
        position: relative;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: bold;
    }
    .page-luck8882__section-title::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background-color: #f3d403;
        margin: 10px auto 0;
        border-radius: 2px;
    }

    .page-luck8882__section-subtitle {
        font-size: 1.1em;
        text-align: center;
        color: #cccccc;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 15px;
    }

    .page-luck8882__cta-button {
        display: inline-block;
        background-color: #f3d403;
        color: #1a1a1a;
        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-luck8882__cta-button:hover {
        background-color: #ffd700;
        transform: translateY(-3px);
    }
    .page-luck8882__cta-button--large {
        padding: 18px 35px;
        font-size: 1.2em;
    }

    /* Hero Section */
    .page-luck8882__hero-section {
        position: relative;
        width: 100%;
        min-height: 600px; /* Chiều cao tối thiểu để hiển thị nội dung */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        padding-top: 10px; /* Dành cho header cố định */
        box-sizing: border-box;
    }

    .page-luck8882__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        filter: brightness(0.6); /* Làm tối ảnh một chút để dễ đọc chữ */
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-luck8882__hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        padding: 20px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 15px;
        margin: 0 15px;
    }

    .page-luck8882__hero-title {
        font-size: 3.5em;
        color: #f3d403;
        margin-bottom: 20px;
        line-height: 1.2;
        font-weight: 900;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-luck8882__hero-description {
        font-size: 1.4em;
        color: #ffffff;
        margin-bottom: 30px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .page-luck8882__hero-button {
        background-color: #f3d403;
        color: #1a1a1a;
        padding: 18px 40px;
        font-size: 1.3em;
        border-radius: 50px;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    }

    .page-luck8882__hero-button:hover {
        background-color: #ffd700;
        transform: translateY(-5px);
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
    }

    /* About Section */
    .page-luck8882__about-section {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .page-luck8882__content-wrapper {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 40px;
        margin-top: 40px;
        text-align: left;
    }

    .page-luck8882__about-image {
        flex: 1;
        min-width: 300px;
        border-radius: 15px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        max-width: 100%;
        height: auto;
        object-fit: cover;
        box-sizing: border-box;
    }

    .page-luck8882__about-text {
        flex: 2;
        min-width: 300px;
    }

    .page-luck8882__about-text p {
        margin-bottom: 15px;
        font-size: 1.1em;
        color: #cccccc;
    }

    .page-luck8882__about-text strong {
        color: #f3d403;
    }

    /* Games Section */
    .page-luck8882__games-section {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

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

    .page-luck8882__game-card {
        background-color: #2a2a2a;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: left;
        padding-bottom: 20px;
    }

    .page-luck8882__game-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
    }

    .page-luck8882__game-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-luck8882__game-title {
        font-size: 1.6em;
        color: #f3d403;
        margin: 20px 20px 10px;
        font-weight: bold;
    }

    .page-luck8882__game-description {
        font-size: 1em;
        color: #cccccc;
        padding: 0 20px;
    }

    /* Promotions Section */
    .page-luck8882__promotions-section {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .page-luck8882__promo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-luck8882__promo-card {
        background-color: #2a2a2a;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        padding-bottom: 20px;
    }

    .page-luck8882__promo-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
    }

    .page-luck8882__promo-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        max-width: 100%;
        box-sizing: border-box;
    }

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

    .page-luck8882__promo-description {
        font-size: 1em;
        color: #cccccc;
        padding: 0 20px;
    }

    .page-luck8882__cta-promo {
        margin-top: 50px;
    }
    .page-luck8882__cta-promo p {
        font-size: 1.2em;
        color: #ffffff;
        margin-bottom: 25px;
    }

    /* Guide Section */
    .page-luck8882__guide-section {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .page-luck8882__guide-steps {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin-top: 40px;
    }

    .page-luck8882__step-item {
        background-color: #2a2a2a;
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
        flex: 1;
        min-width: 280px;
        max-width: 350px;
        text-align: center;
        position: relative;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .page-luck8882__step-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
    }

    .page-luck8882__step-number {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background-color: #f3d403;
        color: #1a1a1a;
        font-size: 2em;
        font-weight: bold;
        margin-bottom: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .page-luck8882__step-title {
        font-size: 1.5em;
        color: #f3d403;
        margin-bottom: 15px;
        font-weight: bold;
    }

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

    .page-luck8882__cta-guide {
        margin-top: 50px;
    }

    /* App Section */
    .page-luck8882__app-section {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .page-luck8882__app-content {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 40px;
        margin-top: 40px;
        text-align: left;
    }

    .page-luck8882__app-image {
        flex: 1;
        min-width: 300px;
        border-radius: 15px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        max-width: 100%;
        height: auto;
        object-fit: contain;
        box-sizing: border-box;
    }

    .page-luck8882__app-text {
        flex: 2;
        min-width: 300px;
    }

    .page-luck8882__app-text p {
        margin-bottom: 15px;
        font-size: 1.1em;
        color: #cccccc;
    }

    .page-luck8882__app-features {
        list-style: none;
        padding: 0;
        margin-bottom: 20px;
    }

    .page-luck8882__app-features li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 10px;
        font-size: 1.05em;
        color: #ffffff;
        box-sizing: border-box; /* Bắt buộc cho các mục danh sách */
        word-wrap: break-word; /* Bắt buộc để ngắt dòng văn bản */
        overflow-wrap: break-word; /* Bắt buộc để ngắt dòng văn bản */
    }

    .page-luck8882__app-features li::before {
        content: '✓';
        color: #f3d403;
        font-weight: bold;
        position: absolute;
        left: 0;
        font-size: 1.2em;
        top: 0;
    }

    /* Transaction Section */
    .page-luck8882__transaction-section {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .page-luck8882__transaction-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-luck8882__transaction-card {
        background-color: #2a2a2a;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        padding-bottom: 20px;
    }

    .page-luck8882__transaction-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
    }

    .page-luck8882__transaction-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        max-width: 100%;
        box-sizing: border-box;
    }

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

    .page-luck8882__transaction-description {
        font-size: 1em;
        color: #cccccc;
        padding: 0 20px;
    }

    /* FAQ Section */
    .page-luck8882__faq-section {
        padding: 60px 20px;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-luck8882__faq-container {
        margin-top: 40px;
    }

    .page-luck8882__faq-item {
        background-color: #2a2a2a;
        margin-bottom: 15px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

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

    .page-luck8882__faq-question:hover {
        background-color: #4a4