
    .page-777king99 {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0; /* Light text for dark background */
        background-color: #1a1a2e; /* Dark background */
        line-height: 1.6;
        padding-bottom: 50px; /* Space for footer */
    }

    /* Floating buttons */
    .page-777king99__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }

    .page-777king99__register-btn,
    .page-777king99__login-btn {
        display: block;
        padding: 12px 25px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, background-color 0.3s ease;
        min-width: 120px; /* Ensure button width */
    }

    .page-777king99__register-btn {
        background-color: #e44d26; /* Vibrant orange */
        color: #ffffff;
    }

    .page-777king99__login-btn {
        background-color: #2e86de; /* Blue */
        color: #ffffff;
    }

    .page-777king99__register-btn:hover,
    .page-777king99__login-btn:hover {
        transform: translateY(-3px);
        opacity: 0.9;
    }

    /* Hero Section */
    .page-777king99__hero-section {
        position: relative;
        padding: 10px 20px 60px; /* Small top padding, larger bottom for content */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        background-color: #252542; /* Slightly lighter dark for hero */
        overflow: hidden;
    }

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

    .page-777king99__hero-image {
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-777king99__hero-content {
        max-width: 800px;
        z-index: 1;
    }

    .page-777king99__hero-title {
        font-size: 2.8em;
        color: #f7b32b; /* Gold/yellow for emphasis */
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-777king99__hero-description {
        font-size: 1.2em;
        color: #e0e0e0;
        margin-bottom: 30px;
    }

    .page-777king99__hero-action-btn {
        display: inline-block;
        background-color: #e44d26;
        color: #ffffff;
        padding: 15px 40px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    }

    .page-777king99__hero-action-btn:hover {
        background-color: #ff6a3d;
        transform: translateY(-2px);
    }

    /* General Section Styles */
    .page-777king99__section-title {
        font-size: 2.2em;
        color: #f7b32b;
        text-align: center;
        margin-top: 60px;
        margin-bottom: 40px;
        position: relative;
        padding-bottom: 15px;
    }

    .page-777king99__section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: #e44d26;
        border-radius: 2px;
    }

    /* About Section */
    .page-777king99__about-section {
        padding: 40px 20px;
        max-width: 960px;
        margin: 0 auto;
        text-align: center;
    }

    .page-777king99__about-text {
        font-size: 1.1em;
        color: #c0c0c0;
        margin-bottom: 20px;
    }

    /* Product Grid */
    .page-777king99__products-section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-777king99__product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        justify-content: center;
    }

    .page-777king99__product-item {
        background-color: #2a2a4a;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
        padding-bottom: 20px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box; /* Crucial for list items */
    }

    .page-777king99__product-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }

    .page-777king99__product-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        border-bottom: 3px solid #e44d26;
        box-sizing: border-box; /* For image in item */
    }

    .page-777king99__product-title {
        font-size: 1.6em;
        color: #f7b32b;
        margin: 20px 15px 10px;
    }

    .page-777king99__product-description {
        font-size: 1em;
        color: #c0c0c0;
        padding: 0 15px;
    }

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

    .page-777king99__promotions-intro {
        font-size: 1.1em;
        color: #c0c0c0;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-777king99__promotion-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-bottom: 40px;
        justify-content: center;
    }

    .page-777king99__promotion-card {
        background-color: #2a2a4a;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        text-align: left;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box; /* Crucial for cards */
    }

    .page-777king99__promotion-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }

    .page-777king99__promotion-image {
        width: 100%;
        max-width: 100%;
        height: 200px; /* Fixed height for consistency */
        object-fit: cover;
        display: block;
        border-bottom: 3px solid #f7b32b;
        box-sizing: border-box; /* For image in card */
    }

    .page-777king99__card-title {
        font-size: 1.5em;
        color: #e0e0e0;
        margin: 20px 15px 10px;
    }

    .page-777king99__card-description {
        font-size: 1em;
        color: #c0c0c0;
        padding: 0 15px 20px;
    }

    .page-777king99__promotions-action {
        margin-top: 30px;
    }

    .page-777king99__action-btn {
        display: inline-block;
        background-color: #2e86de;
        color: #ffffff;
        padding: 12px 30px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1em;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-777king99__action-btn:hover {
        background-color: #4a90e2;
        transform: translateY(-2px);
    }

    /* Partners and Payments Section */
    .page-777king99__partners-section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .page-777king99__partner-grid,
    .page-777king99__payment-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        justify-content: center;
        margin-top: 30px;
        margin-bottom: 50px;
    }

    .page-777king99__partner-item,
    .page-777king99__payment-item {
        background-color: #2a2a4a;
        border-radius: 8px;
        padding: 20px 10px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box; /* Crucial for list items */
    }

    .page-777king99__partner-item:hover,
    .page-777king99__payment-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    }

    .page-777king99__partner-item a,
    .page-777king99__payment-item a {
        text-decoration: none;
        color: inherit;
        display: block; /* Make the whole item clickable */
    }

    .page-777king99__partner-logo,
    .page-777king99__payment-logo {
        max-width: 100px;
        height: auto;
        display: block;
        margin: 0 auto 10px;
        filter: brightness(0.8) grayscale(0.2); /* Slightly dim for dark theme, no color change */
        transition: filter 0.3s ease;
        box-sizing: border-box; /* For image in item */
    }

    .page-777king99__partner-item:hover .page-777king99__partner-logo,
    .page-777king99__payment-item:hover .page-777king99__payment-logo {
        filter: brightness(1) grayscale(0);
    }

    .page-777king99__partner-name,
    .page-777king99__payment-name {
        font-size: 0.9em;
        color: #c0c0c0;
        font-weight: bold;
    }

    .page-777king99__subsection-title {
        font-size: 1.8em;
        color: #f7b32b;
        margin-top: 60px;
        margin-bottom: 30px;
    }

    /* FAQ Section */
    .page-777king99__faq-section {
        padding: 40px 20px;
        max-width: 960px;
        margin: 0 auto;
    }

    .page-777king99__faq-list {
        margin-top: 30px;
    }

    .page-777king99__faq-item {
        background-color: #2a2a4a;
        border-radius: 8px;
        margin-bottom: 15px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        overflow: hidden;
        box-sizing: border-box; /* Crucial for list items */
    }

    .page-777king99__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        background-color: #35355a;
        border-bottom: 1px solid #4a4a7a;
        transition: background-color 0.3s ease;
        user-select: none;
    }

    .page-777king99__faq-question:hover {
        background-color: #40406a;
    }

    .page-777king99__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: #e0e0e0;
        pointer-events: none; /* Prevent h3 from blocking click */
    }

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

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

    .page-777king99__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px; /* Adjust padding for closed state */
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: #c0c0c0;
        font-size: 1em;
    }

    .page-777king99__faq-item.active .page-777king99__faq-answer {
        max-height: 2000px !important; /* Sufficiently large for content */
        padding: 20px 20px !important; /* Padding for open state */
        opacity: 1;
    }

    /* Call to Action Section */
    .page-777king99__cta-section {
        padding: 60px 20px;
        text-align: center;
        background-color: #252542;
        margin-top: 60px;
    }

    .page-777king99__cta-description {
        font-size: 1.2em;
        color: #e0e0e0;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-777king99__cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap; /* Allow wrapping on small screens */
    }

    .page-777king99__cta-action-btn {
        display: inline-block;
        padding: 15px 40px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
        min-width: 180px;
    }

    .page-777king99__cta-action-btn {
        background-color: #e44d26;
        color: #ffffff;
    }

    .page-777king99__cta-action-btn:hover {
        background-color: #ff6a3d;
        transform: translateY(-2px);
    }

    .page-777king99__cta-action-btn--secondary {
        background-color: #2e86de;
    }

    .page-777king99__cta-action-btn--secondary:hover {
        background-color: #4a90e2;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .page-777king99 {
            padding-bottom: 80px; /* More space for floating buttons on mobile */
        }

        .page-777king99__floating-buttons {
            flex-direction: row;
            width: 100%;
            left: 0;
            right: 0;
            bottom: 0;
            border-top: 1px solid #3a3a5a;
            background-color: #1a1a2e;
            padding: 10px 15px;
            box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
            justify-content: space-around;
            gap: 5px;
            box-sizing: border-box;
        }

        .page-777king99__register-btn,
        .page-777king99__login-btn {
            flex: 1;
            padding: 10px 15px;
            font-size: 0.9em;
            min-width: unset;
        }

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

        .page-777king99__hero-description {
            font-size: 1em;
        }

        .page-777king99__section-title {
            font-size: 1.8em;
            margin-top: 40px;
            margin-bottom: 30px;
        }

        .page-777king99__product-grid,
        .page-777king99__promotion-cards,
        .page-777king99__partner-grid,
        .page-777king99__payment-grid {
            grid-template-columns: 1fr; /* Single column layout for grids */
            gap: 20px;
        }

        .page-777king99__product-item,
        .page-777king99__promotion-card,
        .page-777king99__partner-item,
        .page-777king99__payment-item,
        .page-777king99__faq-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        /* List container adjustments for mobile */
        .page-777king99__product-grid,
        .page-777king99__promotion-cards,
        .page-777king99__partner-grid,
        .page-777king99__payment-grid,
        .page-777king99__faq-list {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 15px !important; /* Adjust padding for containers */
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-777king99__product-description,
        .page-777king99__card-description,
        .page-777king99__faq-answer p {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-777king99__faq-question {
            padding: 12px 15px;
        }

        .page-777king99__faq-question h3 {
            font-size: 1.1em;
        }

        .page-777king99__faq-answer {
            padding: 0 15px;
        }

        .page-777king99__faq-item.active .page-777king99__faq-answer {
            padding: 15px 15px !important;
        }

        .page-777king99__cta-buttons {
            flex-direction: column;
            gap: 15px;
        }

        .page-777king99__cta-action-btn {
            width: 100%;
            max-width: 300px; /* Limit width for single column buttons */
            margin: 0 auto;
        }

        .page-777king99__partner-logo,
        .page-777king99__payment-logo {
            max-width: 80px;
        }
    }
  