
    /* CSS Styles for bl55 page */
    :root {
        --bl55-primary-color: #FFD700; /* Gold/Yellow for highlights */
        --bl55-secondary-color: #1a1a1a; /* Dark background */
        --bl55-accent-color: #FF4500; /* Orange-red for action */
        --bl55-text-light: #ffffff;
        --bl55-text-dark: #333333;
        --bl55-bg-dark: #0d1117; /* Darker background for main content */
        --bl55-bg-light: #161b22; /* Slightly lighter dark background */
        --bl55-border-color: #30363d;
        --bl55-shadow-color: rgba(0, 0, 0, 0.5);
    }

    .page-bl55 {
        font-family: 'Arial', sans-serif;
        color: var(--bl55-text-light);
        background-color: var(--bl55-bg-dark);
        line-height: 1.6;
        overflow-x: hidden; /* Prevent horizontal scroll from padding/margin issues */
    }

    /* Ensure body padding for fixed header is handled by shared.css */
    /* .page-bl55 { padding-top: var(--header-offset, 122px); } */ /* Only if shared.css doesn't set body padding-top */

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

    /* Hero Section */
    .page-bl55__hero-section {
        position: relative;
        text-align: center;
        padding: 10px 0 60px; /* Small decorative padding-top, main offset from body */
        background-color: var(--bl55-bg-dark);
        overflow: hidden;
        margin-bottom: 40px;
    }

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

    .page-bl55__hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        margin: 0 auto;
        padding: 40px 20px;
        background-color: rgba(0, 0, 0, 0.4);
        border-radius: 15px;
        box-shadow: 0 10px 30px var(--bl55-shadow-color);
        animation: fadeIn 1s ease-out;
    }

    .page-bl55__hero-title {
        font-size: 3.2em;
        color: var(--bl55-primary-color);
        margin-bottom: 20px;
        text-shadow: 2px 2px 8px var(--bl55-shadow-color);
        line-height: 1.2;
    }

    .page-bl55__hero-subtitle {
        font-size: 1.5em;
        color: var(--bl55-text-light);
        margin-bottom: 30px;
        font-weight: normal;
    }

    .page-bl55__hero-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .page-bl55__button {
        display: inline-block;
        padding: 15px 35px;
        background-color: var(--bl55-accent-color);
        color: var(--bl55-text-light);
        border: none;
        border-radius: 50px;
        font-size: 1.1em;
        font-weight: bold;
        text-decoration: none;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
    }

    .page-bl55__button:hover {
        background-color: #e03c00;
        transform: translateY(-3px);
    }

    .page-bl55__button--secondary {
        background-color: var(--bl55-primary-color);
        color: var(--bl55-text-dark);
        box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    }

    .page-bl55__button--secondary:hover {
        background-color: #e6c200;
        color: var(--bl55-text-dark);
    }

    /* Section Styling */
    .page-bl55__section {
        padding: 60px 0;
        text-align: center;
        margin-bottom: 40px;
        background-color: var(--bl55-bg-light);
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }

    .page-bl55__section-title {
        font-size: 2.5em;
        color: var(--bl55-primary-color);
        margin-bottom: 40px;
        text-shadow: 1px 1px 5px var(--bl55-shadow-color);
    }

    .page-bl55__section-description {
        font-size: 1.1em;
        max-width: 800px;
        margin: 0 auto 50px;
        color: var(--bl55-text-light);
    }

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

    .page-bl55__game-card {
        background-color: var(--bl55-secondary-color);
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: left;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .page-bl55__game-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    }

    .page-bl55__game-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
        border-bottom: 2px solid var(--bl55-border-color);
    }

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

    .page-bl55__game-title {
        font-size: 1.6em;
        color: var(--bl55-primary-color);
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .page-bl55__game-description {
        font-size: 1em;
        color: var(--bl55-text-light);
        margin-bottom: 20px;
        flex-grow: 1;
    }

    .page-bl55__game-action {
        text-align: right;
    }

    /* Promotions Section */
    .page-bl55__promo-card {
        background-color: var(--bl55-secondary-color);
        border-radius: 15px;
        padding: 30px;
        margin-bottom: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .page-bl55__promo-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
        object-fit: contain;
    }

    .page-bl55__promo-title {
        font-size: 1.8em;
        color: var(--bl55-accent-color);
        margin-bottom: 15px;
    }

    .page-bl55__promo-description {
        font-size: 1.1em;
        color: var(--bl55-text-light);
        margin-bottom: 25px;
    }

    /* Why Choose Us Section */
    .page-bl55__feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .page-bl55__feature-item {
        background-color: var(--bl55-secondary-color);
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .page-bl55__feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
        object-fit: contain;
    }

    .page-bl55__feature-title {
        font-size: 1.5em;
        color: var(--bl55-primary-color);
        margin-bottom: 15px;
    }

    .page-bl55__feature-description {
        font-size: 1em;
        color: var(--bl55-text-light);
    }

    /* Floating Buttons for Register/Login */
    .page-bl55__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 1000;
    }

    .page-bl55__floating-button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 140px;
        height: 50px;
        border-radius: 30px;
        font-weight: bold;
        text-decoration: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        font-size: 1em;
    }

    .page-bl55__floating-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-bl55__floating-button--register {
        background-color: var(--bl55-accent-color);
        color: var(--bl55-text-light);
    }

    .page-bl55__floating-button--login {
        background-color: var(--bl55-primary-color);
        color: var(--bl55-text-dark);
    }

    /* FAQ Section */
    .page-bl55__faq-section {
        background-color: var(--bl55-bg-light);
        padding: 60px 0;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        margin-bottom: 40px;
    }

    .page-bl55__faq-item {
        background-color: var(--bl55-secondary-color);
        border-radius: 10px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-bl55__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: var(--bl55-secondary-color);
        border-bottom: 1px solid var(--bl55-border-color);
        transition: background-color 0.3s ease;
        user-select: none;
    }

    .page-bl55__faq-question:hover {
        background-color: #2a2a2a;
    }

    .page-bl55__faq-question h3 {
        margin: 0;
        font-size: 1.3em;
        color: var(--bl55-primary-color);
        pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-bl55__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: var(--bl55-accent-color);
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-bl55__faq-item.active .page-bl55__faq-toggle {
        transform: rotate(45deg);
    }

    .page-bl55__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(--bl55-text-light);
    }

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

    .page-bl55__faq-answer p {
        margin-bottom: 15px;
        font-size: 1em;
    }

    .page-bl55__faq-answer p:last-child {
        margin-bottom: 0;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .page-bl55__hero-title {
            font-size: 2.8em;
        }
        .page-bl55__hero-subtitle {
            font-size: 1.3em;
        }
        .page-bl55__section-title {
            font-size: 2em;
        }
        .page-bl55__game-grid,
        .page-bl55__feature-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }
    }

    @media (max-width: 768px) {
        .page-bl55__container {
            padding: 15px;
        }
        .page-bl55__hero-section {
            padding-bottom: 40px;
        }
        .page-bl55__hero-content {
            padding: 30px 15px;
        }
        .page-bl55__hero-title {
            font-size: 2.2em;
            margin-bottom: 15px;
        }
        .page-bl55__hero-subtitle {
            font-size: 1.1em;
            margin-bottom: 25px;
        }
        .page-bl55__hero-buttons {
            flex-direction: column;
            gap: 15px;
        }
        .page-bl55__button {
            width: 80%;
            margin: 0 auto;
            padding: 12px 25px;
            font-size: 1em;
        }
        .page-bl55__section {
            padding: 40px 0;
        }
        .page-bl55__section-title {
            font-size: 1.8em;
            margin-bottom: 30px;
        }
        .page-bl55__section-description {
            font-size: 0.95em;
            margin-bottom: 40px;
        }
        .page-bl55__game-grid,
        .page-bl55__feature-grid {
            grid-template-columns: 1fr; /* Single column for mobile */
            gap: 25px;
        }
        .page-bl55__game-card,
        .page-bl55__feature-item,
        .page-bl55__promo-card {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        /* Image responsiveness for mobile */
        .page-bl55__hero-background,
        .page-bl55__game-image,
        .page-bl55__promo-icon,
        .page-bl55__feature-icon {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        /* Ensure image containers are also responsive */
        .page-bl55__game-card > img, /* Direct image in card */
        .page-bl55__promo-card > img, /* Direct image in promo */
        .page-bl55__feature-item > img { /* Direct image in feature */
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }

        .page-bl55__floating-buttons {
            bottom: 15px;
            right: 15px;
            gap: 10px;
        }
        .page-bl55__floating-button {
            width: 120px;
            height: 45px;
            font-size: 0.9em;
        }

        /* FAQ mobile adjustments */
        .page-bl55__faq-question {
            padding: 15px 20px;
        }
        .page-bl55__faq-question h3 {
            font-size: 1.1em;
        }
        .page-bl55__faq-toggle {
            font-size: 1.5em;
        }
        .page-bl55__faq-answer {
            padding: 0 20px;
        }
        .page-bl55__faq-item.active .page-bl55__faq-answer {
            padding: 15px 20px !important;
        }
    }

    @media (max-width: 480px) {
        .page-bl55__hero-title {
            font-size: 1.8em;
        }
        .page-bl55__hero-subtitle {
            font-size: 1em;
        }
        .page-bl55__button {
            width: 90%;
        }
        .page-bl55__section-title {
            font-size: 1.5em;
        }
        .page-bl55__floating-buttons {
            flex-direction: row;
            width: 100%;
            left: 0;
            right: 0;
            justify-content: center;
            bottom: 0;
            padding: 10px;
            background-color: rgba(0, 0, 0, 0.8);
            border-top: 1px solid var(--bl55-border-color);
            border-radius: 0;
        }
        .page-bl55__floating-button {
            width: 45%;
            height: 40px;
            font-size: 0.85em;
        }
        .page-bl55__faq-question h3 {
            font-size: 1em;
        }
    }

    /* Keyframe Animations */
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes slideInUp {
        from { opacity: 0; transform: translateY(50px); }
        to { opacity: 1; transform: translateY(0); }
    }
  