
    /* General page styling */
    .page-alo-789-n {
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f8f9fa; /* Light background */
        padding-bottom: 100px; /* Space for floating buttons */
    }

    /* Section styling */
    .page-alo-789-n__hero-section,
    .page-alo-789-n__features-section,
    .page-alo-789-n__games-section,
    .page-alo-789-n__promotion-cta,
    .page-alo-789-n__providers-section,
    .page-alo-789-n__faq-section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .page-alo-789-n__hero-section {
        background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); /* Dark gradient background */
        color: #fff;
        padding-top: 50px; /* Small decorative top padding as per instruction, assuming body padding from shared.css */
        padding-bottom: 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }

    .page-alo-789-n__hero-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .page-alo-789-n__hero-title {
        font-size: 2.8em;
        margin-bottom: 20px;
        color: #fff;
        text-align: center; /* Brand keyword centered top */
    }

    .page-alo-789-n__hero-description {
        font-size: 1.2em;
        margin-bottom: 30px;
        color: #e0e0e0;
    }

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

    .page-alo-789-n__button {
        padding: 15px 30px;
        border: none;
        border-radius: 8px;
        font-size: 1.1em;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-decoration: none; /* For potential future use with <a> */
        display: inline-block;
        text-align: center;
    }

    .page-alo-789-n__button--primary {
        background-color: #ffc107; /* Gold/Yellow */
        color: #000;
        font-weight: bold;
    }

    .page-alo-789-n__button--primary:hover {
        background-color: #e0a800;
        transform: translateY(-2px);
    }

    .page-alo-789-n__button--secondary {
        background-color: #6c757d; /* Grey */
        color: #fff;
    }

    .page-alo-789-n__button--secondary:hover {
        background-color: #5a6268;
        transform: translateY(-2px);
    }

    .page-alo-789-n__hero-image-wrapper {
        width: 100%;
        max-width: 600px; /* Product display image centered */
        margin: 30px auto 0;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-alo-789-n__hero-image {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .page-alo-789-n__section-title {
        font-size: 2.2em;
        margin-bottom: 20px;
        color: #0f2027;
    }

    .page-alo-789-n__section-subtitle {
        font-size: 1.1em;
        margin-bottom: 40px;
        color: #555;
    }

    /* Features Section */
    .page-alo-789-n__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .page-alo-789-n__feature-item {
        background-color: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
        box-sizing: border-box; /* For list item responsiveness */
    }

    .page-alo-789-n__feature-item:hover {
        transform: translateY(-5px);
    }

    .page-alo-789-n__feature-icon {
        width: 100%; /* Ensure images are responsive */
        max-width: 250px; /* Min size 200x200, so 250px is good */
        height: auto;
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .page-alo-789-n__feature-title {
        font-size: 1.5em;
        color: #0f2027;
        margin-bottom: 10px;
    }

    .page-alo-789-n__feature-text {
        color: #666;
    }

    /* Games Section */
    .page-alo-789-n__games-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .page-alo-789-n__game-card {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        transition: transform 0.3s ease;
        text-align: center;
        box-sizing: border-box; /* For list item responsiveness */
    }

    .page-alo-789-n__game-card:hover {
        transform: translateY(-5px);
    }

    .page-alo-789-n__game-image {
        width: 100%;
        height: 200px; /* Fixed height for consistency, will be responsive */
        object-fit: cover;
        display: block;
    }

    .page-alo-789-n__game-title {
        font-size: 1.4em;
        color: #0f2027;
        margin: 15px 10px 5px;
    }

    .page-alo-789-n__game-description {
        color: #666;
        padding: 0 15px 20px;
    }

    /* Promotion CTA */
    .page-alo-789-n__promotion-cta {
        background-color: #e9ecef;
        padding: 60px 20px;
        border-radius: 10px;
        margin-top: 50px;
    }

    /* Providers Section */
    .page-alo-789-n__providers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    .page-alo-789-n__provider-item {
        background-color: #fff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        font-weight: bold;
        color: #0f2027;
        text-align: center;
        box-sizing: border-box; /* For list item responsiveness */
    }

    /* FAQ Section */
    .page-alo-789-n__faq-list {
        text-align: left;
        max-width: 800px;
        margin: 30px auto 0;
    }

    .page-alo-789-n__faq-item {
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-sizing: border-box; /* For list item responsiveness */
    }

    .page-alo-789-n__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        background-color: #f1f1f1;
        border-bottom: 1px solid #eee;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-alo-789-n__faq-question:hover {
        background-color: #e0e0e0;
    }

    .page-alo-789-n__faq-q-text {
        font-size: 1.2em;
        color: #0f2027;
        margin: 0;
        pointer-events: none; /* Prevent text from blocking click event */
    }

    .page-alo-789-n__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: #ffc107;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-alo-789-n__faq-item.active .page-alo-789-n__faq-toggle {
        transform: rotate(45deg); /* Change '+' to 'x' visually, or use '-' */
        color: #dc3545; /* Red for active */
    }

    .page-alo-789-n__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px; /* Initial padding 0 15px */
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

    .page-alo-789-n__faq-item.active .page-alo-789-n__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px 15px !important; /* Active padding */
        opacity: 1;
    }

    .page-alo-789-n__faq-answer p {
        margin: 0;
        color: #555;
    }

    /* Floating Buttons */
    .page-alo-789-n__floating-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-around;
        padding: 15px 20px;
        background-color: #0f2027; /* Dark background */
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        gap: 15px;
        box-sizing: border-box;
    }

    .page-alo-789-n__floating-button {
        flex: 1;
        padding: 12px 15px;
        border-radius: 5px;
        font-size: 1.1em;
        font-weight: bold;
        text-align: center;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-sizing: border-box;
        max-width: 48%; /* To ensure two buttons fit */
    }

    .page-alo-789-n__floating-button--register {
        background-color: #ffc107; /* Gold/Yellow */
        color: #000;
    }

    .page-alo-789-n__floating-button--register:hover {
        background-color: #e0a800;
        transform: translateY(-2px);
    }

    .page-alo-789-n__floating-button--login {
        background-color: #007bff; /* Blue */
        color: #fff;
    }

    .page-alo-789-n__floating-button--login:hover {
        background-color: #0056b3;
        transform: translateY(-2px);
    }


    /* Responsive Design */
    @media (max-width: 768px) {
        .page-alo-789-n__hero-title {
            font-size: 2.2em;
        }

        .page-alo-789-n__hero-description {
            font-size: 1em;
        }

        .page-alo-789-n__button {
            padding: 12px 20px;
            font-size: 1em;
        }

        .page-alo-789-n__section-title {
            font-size: 1.8em;
        }

        .page-alo-789-n__section-subtitle {
            font-size: 1em;
        }

        /* List item responsiveness */
        .page-alo-789-n__features-grid,
        .page-alo-789-n__games-grid,
        .page-alo-789-n__providers-grid {
            grid-template-columns: 1fr !important; /* Single column on mobile */
            gap: 20px;
            padding: 0 10px !important; /* Adjust container padding */
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-alo-789-n__feature-item,
        .page-alo-789-n__game-card,
        .page-alo-789-n__provider-item,
        .page-alo-789-n__faq-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px 15px !important; /* Adjust padding for items */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-alo-789-n__feature-icon,
        .page-alo-789-n__game-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        .page-alo-789-n__faq-list {
            padding: 0 10px !important;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        .page-alo-789-n__faq-question {
            padding: 15px !important;
        }

        .page-alo-789-n__faq-q-text {
            font-size: 1.1em !important;
        }

        .page-alo-789-n__faq-answer {
            padding: 0 15px !important;
        }

        .page-alo-789-n__faq-item.active .page-alo-789-n__faq-answer {
            padding: 20px 15px !important;
        }

        .page-alo-789-n__floating-buttons {
            flex-direction: row; /* Keep as row for two buttons side-by-side */
            padding: 10px 15px;
            gap: 10px;
        }

        .page-alo-789-n__floating-button {
            font-size: 1em;
            padding: 10px 12px;
        }
    }

    @media (max-width: 480px) {
        .page-alo-789-n__hero-buttons {
            flex-direction: column;
            gap: 15px;
        }
        .page-alo-789-n__button {
            width: 100%;
        }
        .page-alo-789-n__floating-buttons {
            padding: 8px 10px;
            gap: 8px;
        }
        .page-alo-789-n__floating-button {
            font-size: 0.95em;
            padding: 10px 8px;
        }
    }
  