
    /* General page styling */
    .page-king79-1 {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0; /* Light text for dark background */
        background-color: #1a1a1a; /* Dark background */
        line-height: 1.6;
        padding-bottom: 100px; /* Space for floating buttons */
        padding-top: 10px; /* Small top padding, assuming body handles header offset */
    }

    /* Section styling */
    .page-king79-1__section-title {
        font-size: 2.5em;
        color: #ffd700; /* Gold accent */
        text-align: center;
        margin-bottom: 40px;
        padding-top: 20px;
        font-weight: bold;
    }

    .page-king79-1__brand-header {
        text-align: center;
        padding: 20px 15px;
        background-color: #222;
        border-bottom: 2px solid #333;
    }

    .page-king79-1__brand-title {
        font-size: 3.5em;
        color: #ffd700;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }

    .page-king79-1__brand-slogan {
        font-size: 1.2em;
        color: #aaa;
        margin-top: 10px;
    }

    /* Hero Section */
    .page-king79-1__hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 60px 20px;
        background-color: #282828;
        text-align: center;
        overflow: hidden; /* Ensure image doesn't spill */
    }

    .page-king79-1__hero-content {
        max-width: 800px;
        margin-bottom: 30px;
    }

    .page-king79-1__hero-title {
        font-size: 2.8em;
        color: #fff;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .page-king79-1__hero-description {
        font-size: 1.3em;
        color: #ccc;
        margin-bottom: 30px;
    }

    .page-king79-1__hero-button {
        display: inline-block;
        background-color: #ff4500; /* Orange-red accent */
        color: #fff;
        padding: 15px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-king79-1__hero-button:hover {
        background-color: #e63900;
        transform: translateY(-3px);
    }

    .page-king79-1__hero-image-wrapper {
        width: 100%;
        max-width: 900px; /* Limit image width */
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    }

    .page-king79-1__hero-image {
        max-width: 100%;
        height: auto;
        display: block;
    }

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

    .page-king79-1__float-button {
        display: block;
        width: 120px;
        padding: 12px 0;
        text-align: center;
        border-radius: 30px;
        font-size: 1.1em;
        font-weight: bold;
        color: #fff;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .page-king79-1__float-button--register {
        background-color: #008000; /* Green for register */
    }

    .page-king79-1__float-button--login {
        background-color: #007bff; /* Blue for login */
    }

    .page-king79-1__float-button:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    /* Product Display Section */
    .page-king79-1__products-section,
    .page-king79-1__promo-section,
    .page-king79-1__providers-section,
    .page-king79-1__payments-section,
    .page-king79-1__faq-section,
    .page-king79-1__cta-section {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-king79-1__product-grid,
    .page-king79-1__promo-grid,
    .page-king79-1__provider-grid,
    .page-king79-1__payment-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        justify-content: center;
    }

    .page-king79-1__product-item,
    .page-king79-1__promo-card,
    .page-king79-1__provider-item,
    .page-king79-1__payment-item {
        background-color: #222;
        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;
    }

    .page-king79-1__product-item:hover,
    .page-king79-1__promo-card:hover,
    .page-king79-1__provider-item:hover,
    .page-king79-1__payment-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    .page-king79-1__product-image,
    .page-king79-1__promo-image,
    .page-king79-1__provider-logo,
    .page-king79-1__payment-logo {
        max-width: 100%;
        height: auto;
        display: block;
        margin-bottom: 15px;
        border-bottom: 1px solid #333;
    }

    .page-king79-1__product-name,
    .page-king79-1__promo-title {
        font-size: 1.8em;
        color: #ffd700;
        margin: 15px 10px 10px;
        font-weight: bold;
    }

    .page-king79-1__product-description,
    .page-king79-1__promo-description {
        font-size: 1em;
        color: #bbb;
        padding: 0 15px;
        margin-bottom: 15px;
    }

    .page-king79-1__promo-action {
        display: inline-block;
        background-color: #ff4500;
        color: #fff;
        padding: 10px 20px;
        border-radius: 5px;
        font-size: 0.9em;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .page-king79-1__promo-action:hover {
        background-color: #e63900;
    }

    /* Provider/Payment specific */
    .page-king79-1__providers-intro,
    .page-king79-1__payments-intro {
        text-align: center;
        font-size: 1.1em;
        color: #ccc;
        margin-bottom: 40px;
    }

    .page-king79-1__provider-item,
    .page-king79-1__payment-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
        min-height: 200px; /* Ensure consistent height for logos */
    }

    .page-king79-1__provider-logo,
    .page-king79-1__payment-logo {
        max-width: 80%; /* Smaller for logos */
        max-height: 120px; /* Max height for logos */
        object-fit: contain; /* Contain within bounds */
        border-bottom: none; /* No border for logos */
        margin-bottom: 10px;
    }

    .page-king79-1__provider-name,
    .page-king79-1__payment-name {
        font-size: 1.1em;
        color: #ffd700;
        font-weight: bold;
    }

    /* FAQ Section */
    .page-king79-1__faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .page-king79-1__faq-item {
        background-color: #222;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-king79-1__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        background-color: #333;
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-king79-1__faq-question:hover {
        background-color: #444;
    }

    .page-king79-1__faq-title {
        font-size: 1.3em;
        color: #fff;
        margin: 0;
        font-weight: bold;
        pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-king79-1__faq-toggle {
        font-size: 1.8em;
        color: #ffd700;
        font-weight: bold;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent span from blocking click event */
    }

    .page-king79-1__faq-item.active .page-king79-1__faq-toggle {
        transform: rotate(45deg); /* Change + to X (visually) */
    }

    .page-king79-1__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        background-color: #282828;
        color: #ccc;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
    }

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

    .page-king79-1__faq-answer p {
        margin: 0;
        font-size: 1.05em;
    }

    /* Call to Action Section */
    .page-king79-1__cta-section {
        background-color: #222;
        text-align: center;
        padding: 80px 20px;
        border-radius: 10px;
        margin-top: 60px;
    }

    .page-king79-1__cta-title {
        font-size: 2.5em;
        color: #ffd700;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .page-king79-1__cta-description {
        font-size: 1.2em;
        color: #ccc;
        margin-bottom: 40px;
    }

    .page-king79-1__cta-button {
        display: inline-block;
        background-color: #ff4500;
        color: #fff;
        padding: 18px 40px;
        border-radius: 8px;
        text-decoration: none;
        font-size: 1.4em;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-king79-1__cta-button:hover {
        background-color: #e63900;
        transform: translateY(-5px);
    }

    /* Responsive design */
    @media (max-width: 768px) {
        .page-king79-1__section-title {
            font-size: 2em;
            margin-bottom: 30px;
        }

        .page-king79-1__brand-title {
            font-size: 2.5em;
        }

        .page-king79-1__brand-slogan {
            font-size: 1em;
        }

        .page-king79-1__hero-section {
            padding: 40px 15px;
        }

        .page-king79-1__hero-title {
            font-size: 2em;
        }

        .page-king79-1__hero-description {
            font-size: 1.1em;
        }

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

        .page-king79-1__floating-buttons {
            flex-direction: row;
            width: calc(100% - 40px);
            left: 20px;
            right: 20px;
            bottom: 15px;
            justify-content: space-around;
        }

        .page-king79-1__float-button {
            width: 48%; /* Adjust for two buttons */
            font-size: 1em;
        }

        .page-king79-1__products-section,
        .page-king79-1__promo-section,
        .page-king79-1__providers-section,
        .page-king79-1__payments-section,
        .page-king79-1__faq-section,
        .page-king79-1__cta-section {
            padding: 40px 15px;
        }

        .page-king79-1__product-grid,
        .page-king79-1__promo-grid,
        .page-king79-1__provider-grid,
        .page-king79-1__payment-grid {
            grid-template-columns: 1fr; /* Single column for mobile */
            gap: 20px;
        }

        /* List item specific responsive requirements */
        .page-king79-1__product-item,
        .page-king79-1__promo-card,
        .page-king79-1__provider-item,
        .page-king79-1__payment-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px 15px; /* Adjust padding for mobile */
        }

        .page-king79-1__product-item p,
        .page-king79-1__promo-card p,
        .page-king79-1__faq-answer p {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-king79-1__product-image,
        .page-king79-1__promo-image,
        .page-king79-1__provider-logo,
        .page-king79-1__payment-logo {
            max-width: 100% !important;
            height: auto !important;
            object-fit: contain;
        }

        .page-king79-1__faq-question {
            padding: 15px 20px;
        }

        .page-king79-1__faq-title {
            font-size: 1.1em;
        }

        .page-king79-1__faq-toggle {
            font-size: 1.5em;
        }

        .page-king79-1__faq-answer {
            padding: 0 20px;
        }

        .page-king79-1__faq-item.active .page-king79-1__faq-answer {
            padding: 15px 20px !important;
        }

        .page-king79-1__cta-section {
            padding: 60px 15px;
        }

        .page-king79-1__cta-title {
            font-size: 2em;
        }

        .page-king79-1__cta-description {
            font-size: 1.1em;
        }

        .page-king79-1__cta-button {
            padding: 15px 30px;
            font-size: 1.2em;
        }
    }

    @media (max-width: 480px) {
        .page-king79-1__floating-buttons {
            left: 10px;
            right: 10px;
            bottom: 10px;
        }
        .page-king79-1__float-button {
            width: 47%;
        }
    }
  