
    /* CSS styles for 56.com page */
    :root {
        --page-56-com__primary-color: #ffcc00; /* Gold/Yellow */
        --page-56-com__secondary-color: #333333; /* Dark Grey */
        --page-56-com__background-dark: #1a1a1a; /* Very Dark Grey */
        --page-56-com__text-light: #ffffff; /* White */
        --page-56-com__text-dark: #000000; /* Black */
        --page-56-com__accent-color: #e60000; /* Red for alerts/promos */
        --page-56-com__border-radius: 8px;
        --page-56-com__section-padding: 40px 20px;
    }

    .page-56-com {
        font-family: 'Arial', sans-serif;
        color: var(--page-56-com__text-light);
        background-color: var(--page-56-com__background-dark);
        line-height: 1.6;
        padding-top: 10px; /* Small decorative padding, assuming body handles main offset */
    }

    .page-56-com__section {
        padding: var(--page-56-com__section-padding);
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .page-56-com__section--dark {
        background-color: var(--page-56-com__secondary-color);
    }

    .page-56-com__heading-1,
    .page-56-com__heading-2,
    .page-56-com__heading-3 {
        color: var(--page-56-com__primary-color);
        margin-bottom: 20px;
        text-align: center;
    }

    .page-56-com__heading-1 {
        font-size: 2.8em;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-top: 0;
        padding-top: 20px; /* Ensure space from the top of the section */
    }

    .page-56-com__heading-2 {
        font-size: 2.2em;
        margin-top: 30px;
        border-bottom: 2px solid var(--page-56-com__primary-color);
        display: inline-block;
        padding-bottom: 5px;
    }

    .page-56-com__heading-3 {
        font-size: 1.6em;
        color: var(--page-56-com__text-light); /* Ensure good contrast */
    }

    .page-56-com__paragraph {
        margin-bottom: 15px;
        font-size: 1.1em;
        color: var(--page-56-com__text-light);
    }

    .page-56-com__button {
        display: inline-block;
        padding: 12px 25px;
        background-color: var(--page-56-com__primary-color);
        color: var(--page-56-com__background-dark);
        text-decoration: none;
        border-radius: var(--page-56-com__border-radius);
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        cursor: pointer;
        font-size: 1em;
    }

    .page-56-com__button:hover {
        background-color: #ffd700; /* Slightly brighter gold */
        transform: translateY(-2px);
    }

    .page-56-com__button--secondary {
        background-color: var(--page-56-com__accent-color);
        color: var(--page-56-com__text-light);
    }

    .page-56-com__button--secondary:hover {
        background-color: #cc0000;
        transform: translateY(-2px);
    }

    /* Hero Section */
    .page-56-com__hero-section {
        background-color: var(--page-56-com__background-dark);
        color: var(--page-56-com__text-light);
        padding: 60px 20px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .page-56-com__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3;
        z-index: 0;
    }

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

    .page-56-com__hero-title {
        font-size: 3.5em;
        color: var(--page-56-com__primary-color);
        margin-bottom: 15px;
        line-height: 1.2;
        text-transform: uppercase;
    }

    .page-56-com__hero-subtitle {
        font-size: 1.5em;
        margin-bottom: 30px;
        color: var(--page-56-com__text-light);
    }

    /* Floating Register/Login Buttons */
    .page-56-com__floating-buttons {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        z-index: 1000;
        background-color: rgba(0, 0, 0, 0.7);
        padding: 10px 20px;
        border-radius: var(--page-56-com__border-radius);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

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

    .page-56-com__game-card {
        background-color: var(--page-56-com__secondary-color);
        border-radius: var(--page-56-com__border-radius);
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
        display: flex;
        flex-direction: column;
        box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-56-com__game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .page-56-com__game-card-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        max-width: 100%; /* Ensure responsiveness */
        display: block;
    }

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

    .page-56-com__game-card-title {
        font-size: 1.4em;
        color: var(--page-56-com__primary-color);
        margin-bottom: 10px;
    }

    .page-56-com__game-card-description {
        font-size: 0.95em;
        color: #cccccc;
        margin-bottom: 15px;
    }

    /* Promotions Section */
    .page-56-com__promotions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .page-56-com__promo-card {
        background-color: var(--page-56-com__secondary-color);
        border-radius: var(--page-56-com__border-radius);
        padding: 25px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        text-align: left;
        box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-56-com__promo-card-title {
        font-size: 1.5em;
        color: var(--page-56-com__primary-color);
        margin-bottom: 10px;
    }

    .page-56-com__promo-card-description {
        color: #cccccc;
        margin-bottom: 15px;
    }

    /* Features Section */
    .page-56-com__features-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 30px;
        list-style: none;
        padding: 0;
    }

    .page-56-com__feature-item {
        background-color: var(--page-56-com__secondary-color);
        border-radius: var(--page-56-com__border-radius);
        padding: 25px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-56-com__feature-icon {
        width: 200px; /* Min size for images */
        height: 200px;
        object-fit: contain;
        margin-bottom: 15px;
        max-width: 100%;
        display: block;
    }

    .page-56-com__feature-title {
        font-size: 1.3em;
        color: var(--page-56-com__primary-color);
        margin-bottom: 10px;
    }

    .page-56-com__feature-description {
        color: #cccccc;
    }

    /* Game Providers Section */
    .page-56-com__providers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 30px;
        align-items: center;
        justify-items: center;
    }

    .page-56-com__provider-logo {
        max-width: 100%;
        height: auto;
        object-fit: contain;
        filter: grayscale(80%);
        transition: filter 0.3s ease;
        max-height: 80px; /* Limit height for uniform display */
        display: block;
    }

    .page-56-com__provider-logo:hover {
        filter: grayscale(0%);
    }

    /* Payment Methods Section */
    .page-56-com__payments-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 20px;
        margin-top: 30px;
        align-items: center;
        justify-items: center;
    }

    .page-56-com__payment-logo {
        max-width: 100%;
        height: auto;
        object-fit: contain;
        max-height: 60px; /* Limit height for uniform display */
        filter: brightness(0.8) grayscale(50%); /* Slightly dim for background */
        transition: filter 0.3s ease;
        display: block;
    }

    .page-56-com__payment-logo:hover {
        filter: brightness(1) grayscale(0%);
    }

    /* FAQ Section */
    .page-56-com__faq-container {
        margin-top: 40px;
        text-align: left;
    }

    .page-56-com__faq-item {
        background-color: var(--page-56-com__secondary-color);
        border-radius: var(--page-56-com__border-radius);
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .page-56-com__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        background-color: #444444; /* Slightly lighter for question bar */
        color: var(--page-56-com__primary-color);
        font-weight: bold;
        transition: background-color 0.3s ease;
        user-select: none;
    }

    .page-56-com__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: inherit;
        pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-56-com__faq-question:hover {
        background-color: #555555;
    }

    .page-56-com__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle from blocking click on parent div */
    }

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

    .page-56-com__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px; /* Initial padding 0 */
        color: #cccccc;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        font-size: 0.95em;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-56-com__heading-1 {
            font-size: 2.2em;
        }

        .page-56-com__hero-title {
            font-size: 2.5em;
        }

        .page-56-com__hero-subtitle {
            font-size: 1.2em;
        }

        .page-56-com__section {
            padding: 30px 15px;
        }

        .page-56-com__floating-buttons {
            flex-direction: column;
            width: calc(100% - 40px);
            left: 20px;
            transform: none;
            bottom: 10px;
        }

        .page-56-com__button {
            width: 100%;
            text-align: center;
            box-sizing: border-box;
        }

        /* List Item Responsive Requirements */
        .page-56-com__game-categories,
        .page-56-com__promotions-grid,
        .page-56-com__features-list,
        .page-56-com__providers-grid,
        .page-56-com__payments-grid {
            grid-template-columns: 1fr; /* Single column layout */
            gap: 20px;
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
        }

        .page-56-com__game-card,
        .page-56-com__promo-card,
        .page-56-com__feature-item,
        .page-56-com__provider-logo,
        .page-56-com__payment-logo {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important; /* Ensure text wraps */
            overflow-wrap: break-word !important;
        }

        .page-56-com__game-card-description,
        .page-56-com__promo-card-description,
        .page-56-com__feature-description,
        .page-56-com__faq-answer {
            word-break: break-word !important; /* Force break for long words/keywords */
        }

        .page-56-com__game-card-image {
            height: 180px; /* Adjust height for smaller screens */
        }
    }

    @media (max-width: 480px) {
        .page-56-com__heading-1 {
            font-size: 1.8em;
        }
        .page-56-com__hero-title {
            font-size: 2em;
        }
        .page-56-com__hero-subtitle {
            font-size: 1em;
        }
        .page-56-com__faq-question h3 {
            font-size: 1.1em;
        }
        .page-56-com__faq-answer {
            font-size: 0.9em;
        }
    }
  