
    :root {
        --page-ok789bit-primary-color: #e44d26; /* Orange-red for action */
        --page-ok789bit-secondary-color: #333;
        --page-ok789bit-accent-color: #ffcc00; /* Gold for highlights */
        --page-ok789bit-text-color: #333;
        --page-ok789bit-light-text-color: #fff;
        --page-ok789bit-background-light: #f8f8f8;
        --page-ok789bit-background-dark: #2a2a2a;
        --page-ok789bit-border-color: #ddd;
        --page-ok789bit-button-hover-color: #c23b1f;
    }

    .page-ok789bit {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: var(--page-ok789bit-text-color);
        background-color: var(--page-ok789bit-background-light);
        padding: 0;
        margin: 0;
    }

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

    /* Hero Section */
    .page-ok789bit__hero-section {
        position: relative;
        text-align: center;
        color: var(--page-ok789bit-light-text-color);
        padding: 10px 0 60px 0; /* Adjusted padding-top to clear fixed header */
        background-color: var(--page-ok789bit-background-dark);
        overflow: hidden;
    }

    .page-ok789bit__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        opacity: 0.7;
    }

    .page-ok789bit__hero-content {
        position: relative;
        z-index: 2;
        padding: 20px;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-ok789bit__hero-title {
        font-size: 2.8em;
        margin-bottom: 15px;
        color: var(--page-ok789bit-accent-color);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-ok789bit__hero-subtitle {
        font-size: 1.3em;
        margin-bottom: 30px;
        color: var(--page-ok789bit-light-text-color);
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-ok789bit__cta-button {
        display: inline-block;
        background-color: var(--page-ok789bit-primary-color);
        color: var(--page-ok789bit-light-text-color);
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        border: none; /* Ensure it's not an <a> with default border */
        cursor: pointer;
    }

    .page-ok789bit__cta-button:hover {
        background-color: var(--page-ok789bit-button-hover-color);
        transform: translateY(-2px);
    }

    /* Floating Login Button */
    .page-ok789bit__floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        background-color: var(--page-ok789bit-primary-color);
        color: var(--page-ok789bit-light-text-color);
        padding: 12px 25px;
        border-radius: 50px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        font-weight: bold;
        font-size: 1.05em;
        text-align: center;
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-decoration: none; /* For a tag */
        cursor: pointer;
    }

    .page-ok789bit__floating-button:hover {
        background-color: var(--page-ok789bit-button-hover-color);
        transform: translateY(-3px);
    }

    /* Section Styling */
    .page-ok789bit__section {
        padding: 60px 0;
        text-align: center;
        background-color: var(--page-ok789bit-background-light);
    }

    .page-ok789bit__section:nth-of-type(even) {
        background-color: #f0f0f0;
    }

    .page-ok789bit__section-title {
        font-size: 2.2em;
        color: var(--page-ok789bit-primary-color);
        margin-bottom: 40px;
        position: relative;
        display: inline-block;
    }

    .page-ok789bit__section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -10px;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background-color: var(--page-ok789bit-accent-color);
        border-radius: 2px;
    }

    .page-ok789bit__section-description {
        font-size: 1.1em;
        max-width: 800px;
        margin: 0 auto 50px auto;
        color: var(--page-ok789bit-secondary-color);
    }

    /* Game List */
    .page-ok789bit__game-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .page-ok789bit__game-list-item {
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: left;
        box-sizing: border-box; /* Ensure padding and border are included in width */
    }

    .page-ok789bit__game-list-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .page-ok789bit__game-image-wrapper {
        width: 100%;
        max-width: 100%;
        height: 200px; /* Fixed height for consistency */
        overflow: hidden;
        border-bottom: 1px solid var(--page-ok789bit-border-color);
        box-sizing: border-box;
    }

    .page-ok789bit__game-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }

    .page-ok789bit__game-list-item:hover .page-ok789bit__game-image {
        transform: scale(1.05);
    }

    .page-ok789bit__game-content {
        padding: 20px;
    }

    .page-ok789bit__game-title {
        font-size: 1.5em;
        color: var(--page-ok789bit-primary-color);
        margin-bottom: 10px;
    }

    .page-ok789bit__game-description {
        font-size: 0.95em;
        color: var(--page-ok789bit-secondary-color);
        margin-bottom: 15px;
    }

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

    .page-ok789bit__feature-item {
        background-color: #fff;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box;
    }

    .page-ok789bit__feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }

    .page-ok789bit__feature-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px auto;
        display: block;
        border-radius: 50%;
        background-color: var(--page-ok789bit-accent-color);
        padding: 10px;
        object-fit: contain; /* Ensure icon fits */
    }

    .page-ok789bit__feature-title {
        font-size: 1.4em;
        color: var(--page-ok789bit-primary-color);
        margin-bottom: 10px;
    }

    .page-ok789bit__feature-description {
        font-size: 0.95em;
        color: var(--page-ok789bit-secondary-color);
    }

    /* FAQ Section */
    .page-ok789bit__faq-list {
        max-width: 800px;
        margin: 0 auto;
        padding: 0;
        list-style: none;
    }

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

    .page-ok789bit__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: var(--page-ok789bit-primary-color);
        color: var(--page-ok789bit-light-text-color);
        font-weight: bold;
        font-size: 1.1em;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-ok789bit__faq-question:hover {
        background-color: var(--page-ok789bit-button-hover-color);
    }

    .page-ok789bit__faq-question h3 {
        margin: 0;
        flex-grow: 1;
        text-align: left;
        font-size: 1.1em; /* Adjust to match parent */
        color: inherit;
        pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-ok789bit__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        margin-left: 15px;
        pointer-events: none; /* Prevent toggle icon from blocking click on parent */
    }

    .page-ok789bit__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        color: var(--page-ok789bit-secondary-color);
        background-color: #fcfcfc;
        text-align: left;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-ok789bit__hero-section {
            padding-top: 10px; /* Ensure space for fixed header on mobile */
            padding-bottom: 40px;
        }

        .page-ok789bit__hero-title {
            font-size: 2em;
        }

        .page-ok789bit__hero-subtitle {
            font-size: 1em;
        }

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

        .page-ok789bit__floating-button {
            bottom: 15px;
            right: 15px;
            padding: 10px 20px;
            font-size: 0.95em;
        }

        .page-ok789bit__section {
            padding: 40px 0;
        }

        .page-ok789bit__section-title {
            font-size: 1.8em;
            margin-bottom: 30px;
        }

        .page-ok789bit__section-description {
            font-size: 1em;
            margin-bottom: 30px;
            padding: 0 15px;
        }

        .page-ok789bit__game-list {
            grid-template-columns: 1fr;
            gap: 20px;
            padding: 0 15px !important;
            margin: 0 !important;
        }
        .page-ok789bit__game-list-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 0 !important; /* Padding handled by internal elements */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-ok789bit__game-image-wrapper {
            height: 180px;
        }

        .page-ok789bit__game-content {
            padding: 15px;
        }

        .page-ok789bit__game-title {
            font-size: 1.3em;
        }

        .page-ok789bit__game-description {
            font-size: 0.9em;
        }

        .page-ok789bit__features-grid {
            grid-template-columns: 1fr;
            gap: 20px;
            padding: 0 15px !important;
            margin: 0 !important;
        }
        .page-ok789bit__feature-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px !important; /* Adjust padding for mobile */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-ok789bit__feature-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 15px;
        }

        .page-ok789bit__feature-title {
            font-size: 1.2em;
        }

        .page-ok789bit__faq-list {
            padding: 0 15px;
        }

        .page-ok789bit__faq-question {
            padding: 15px 20px;
            font-size: 1em;
        }

        .page-ok789bit__faq-question h3 {
            font-size: 1em;
        }

        .page-ok789bit__faq-toggle {
            font-size: 1.3em;
        }

        .page-ok789bit__faq-answer {
            padding: 0 20px;
        }

        .page-ok789bit__faq-item.active .page-ok789bit__faq-answer {
            padding: 15px 20px !important;
        }
    }
    @media (max-width: 480px) {
        .page-ok789bit__hero-title {
            font-size: 1.8em;
        }
        .page-ok789bit__hero-subtitle {
            font-size: 0.9em;
        }
    }
  