
    /* General styling for page-f168 scope */
    .page-f168 {
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f8f8f8;
        overflow-x: hidden; /* Prevent horizontal scroll from fixed button */
    }

    /* Hero Section */
    .page-f168__hero-section {
        position: relative;
        width: 100%;
        min-height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: #fff;
        padding: 10px 20px 40px; /* Added padding-top for fixed header */
        box-sizing: border-box;
        overflow: hidden;
    }

    .page-f168__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        filter: brightness(0.6); /* Use brightness for overlay, not color change */
    }

    .page-f168__hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
    }

    .page-f168__hero-title {
        font-size: 2.2em;
        margin-bottom: 15px;
        color: #fff; /* Ensure good contrast */
        text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .page-f168__hero-description {
        font-size: 1.1em;
        margin-bottom: 30px;
        color: #eee;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    }

    .page-f168__hero-cta {
        margin-top: 20px;
    }

    /* General Section Styling */
    .page-f168__section-title {
        font-size: 1.8em;
        color: #2c3e50; /* Dark blue for contrast */
        text-align: center;
        margin-bottom: 20px;
        padding-top: 20px;
    }

    .page-f168__section-description {
        font-size: 1em;
        color: #555;
        text-align: center;
        max-width: 800px;
        margin: 0 auto 30px;
        padding: 0 15px;
    }

    /* Buttons */
    .page-f168__button {
        display: inline-block;
        padding: 12px 25px;
        border-radius: 8px;
        font-size: 1.1em;
        font-weight: bold;
        text-align: center;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        color: #fff; /* White text for buttons */
    }

    .page-f168__button--primary {
        background-color: #e74c3c; /* Reddish for CTA */
    }

    .page-f168__button--primary:hover {
        background-color: #c0392b;
        transform: translateY(-2px);
    }

    /* Advantages Section */
    .page-f168__advantages-section {
        padding: 40px 20px;
        background-color: #fff;
    }

    .page-f168__advantages-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin-top: 30px;
    }

    .page-f168__advantage-item {
        background-color: #fefefe;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 25px;
        text-align: center;
        max-width: 320px;
        flex: 1 1 300px;
        transition: transform 0.3s ease;
    }

    .page-f168__advantage-item:hover {
        transform: translateY(-5px);
    }

    .page-f168__advantage-icon {
        width: 100%; /* Ensure images are responsive */
        max-width: 200px; /* Adjusted to meet minimum size requirement */
        height: auto;
        margin-bottom: 15px;
        border-radius: 8px;
        object-fit: cover;
    }

    .page-f168__advantage-title {
        font-size: 1.3em;
        color: #2c3e50;
        margin-bottom: 10px;
    }

    .page-f168__advantage-description {
        font-size: 0.95em;
        color: #666;
    }

    /* Games Section */
    .page-f168__games-section {
        padding: 40px 20px;
        background-color: #f0f2f5;
    }

    .page-f168__games-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 30px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-f168__game-card {
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease;
    }

    .page-f168__game-card:hover {
        transform: translateY(-5px);
    }

    .page-f168__game-image {
        width: 100%;
        height: 180px; /* Fixed height for consistency */
        object-fit: cover;
        border-bottom: 1px solid #eee;
    }

    .page-f168__game-title {
        font-size: 1.2em;
        color: #2c3e50;
        margin: 15px 10px 5px;
    }

    .page-f168__game-description {
        font-size: 0.9em;
        color: #666;
        padding: 0 15px 15px;
    }

    /* Login Steps Section */
    .page-f168__login-steps-section {
        padding: 40px 20px;
        background-color: #fff;
    }

    .page-f168__login-steps-list {
        list-style: none;
        padding: 0;
        max-width: 800px;
        margin: 30px auto 0;
    }

    .page-f168__login-step-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 25px;
        background-color: #fefefe;
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        padding: 20px;
    }

    .page-f168__step-number {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 35px;
        height: 35px;
        background-color: #e74c3c;
        color: #fff;
        border-radius: 50%;
        font-weight: bold;
        font-size: 1.1em;
        flex-shrink: 0;
        margin-right: 15px;
    }

    .page-f168__step-title {
        font-size: 1.2em;
        color: #2c3e50;
        margin-top: 0;
        margin-bottom: 5px;
    }

    .page-f168__step-description {
        font-size: 0.95em;
        color: #666;
    }

    /* FAQ Section */
    .page-f168__faq-section {
        padding: 40px 20px;
        background-color: #f0f2f5;
    }

    .page-f168__faq-list {
        max-width: 800px;
        margin: 30px auto 0;
    }

    .page-f168__faq-item {
        background-color: #fff;
        border-radius: 10px;
        margin-bottom: 15px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        overflow: hidden;
    }

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

    .page-f168__faq-question:hover {
        background-color: #f5f5f5;
    }

    .page-f168__faq-title {
        font-size: 1.1em;
        color: #2c3e50;
        margin: 0;
        flex-grow: 1;
        pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-f168__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: #e74c3c;
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent span from blocking click event */
    }

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

    .page-f168__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

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

    .page-f168__faq-answer p {
        margin: 0;
        color: #555;
        font-size: 0.95em;
    }

    /* CTA Section */
    .page-f168__cta-section {
        padding: 40px 20px;
        background-color: #2c3e50; /* Dark background for strong CTA */
        color: #fff;
        text-align: center;
    }

    .page-f168__cta-section .page-f168__section-title {
        color: #fff;
    }

    .page-f168__cta-section .page-f168__section-description {
        color: #eee;
    }

    .page-f168__cta-buttons {
        margin-top: 30px;
    }

    /* Floating Login Button */
    .page-f168__floating-login-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #28a745; /* Green for enticing offer */
        color: #fff;
        padding: 15px 25px;
        border-radius: 30px;
        font-size: 1.1em;
        font-weight: bold;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        cursor: pointer;
        z-index: 1000;
        animation: pulse 2s infinite;
        text-align: center;
        max-width: 250px;
        box-sizing: border-box;
    }

    .page-f168__floating-login-button:hover {
        background-color: #218838;
    }

    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-f168__hero-title {
            font-size: 1.8em;
        }

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

        .page-f168__section-title {
            font-size: 1.5em;
        }

        .page-f168__advantages-grid,
        .page-f168__games-grid {
            grid-template-columns: 1fr;
        }

        .page-f168__game-image {
            height: 150px;
        }

        .page-f168__login-step-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .page-f168__step-number {
            margin-right: 0;
            margin-bottom: 10px;
        }

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

        .page-f168__faq-title {
            font-size: 1em;
        }

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

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

        .page-f168__floating-login-button {
            bottom: 15px;
            right: 15px;
            font-size: 1em;
            padding: 12px 20px;
            max-width: 200px;
        }

        /* Image responsiveness for all images */
        .page-f168 img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        /* Image container responsiveness for all images */
        .page-f168__advantage-item,
        .page-f168__game-card {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }
    }

    /* General image responsiveness for all non-specific images, ensures no overflow */
    .page-f168 img {
        max-width: 100%;
        height: auto;
        box-sizing: border-box;
    }

    /* Keyword styling for emphasis */
    .page-f168__keyword {
        color: #e74c3c;
        font-weight: bold;
    }
  