
    /* CSS Styles for page-888blink */
    :root {
        --page-888blink-primary-color: #e44d26; /* A vibrant orange/red for accents */
        --page-888blink-secondary-color: #ff9800; /* Gold/yellow for highlights */
        --page-888blink-background-dark: #1a1a1a; /* Dark background */
        --page-888blink-text-light: #f0f0f0; /* Light text for dark background */
        --page-888blink-text-dark: #333333; /* Dark text for light background */
        --page-888blink-card-bg: #2a2a2a; /* Slightly lighter dark for cards */
        --page-888blink-border-color: #444;
        --page-888blink-hover-color: #ffb74d;
        --page-888blink-font-family: 'Arial', sans-serif;
        --page-888blink-cta-green: #4CAF50; /* Green for floating CTA */
        --page-888blink-cta-green-hover: #45a049;
    }

    .page-content.page-888blink {
        font-family: var(--page-888blink-font-family);
        color: var(--page-888blink-text-light);
        background-color: var(--page-888blink-background-dark);
        line-height: 1.6;
    }

    .page-888blink-hero {
        position: relative;
        text-align: center;
        overflow: hidden;
        margin-bottom: 20px;
    }

    .page-888blink-banner-container {
        position: relative;
        width: 100%;
        max-height: 400px; /* Limit banner height */
        overflow: hidden;
    }

    .page-888blink-banner-img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        object-position: center;
    }

    .page-888blink-banner-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
        padding: 20px;
        color: var(--page-888blink-text-light);
    }

    .page-888blink-title {
        font-size: 1.8em;
        color: var(--page-888blink-secondary-color);
        margin-bottom: 10px;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    }

    .page-888blink-slogan {
        font-size: 1.1em;
        margin-bottom: 20px;
    }

    .page-888blink-btn {
        display: inline-block;
        background-color: var(--page-888blink-primary-color);
        color: var(--page-888blink-text-light);
        padding: 12px 25px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        font-size: 1.1em;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .page-888blink-btn:hover {
        background-color: var(--page-888blink-hover-color);
        transform: translateY(-2px);
    }

    .page-888blink-btn-icon {
        margin-right: 8px;
    }

    .page-888blink-intro,
    .page-888blink-games,
    .page-888blink-promotions,
    .page-888blink-guide,
    .page-888blink-faq {
        padding: 20px 15px;
        max-width: 960px;
        margin: 0 auto;
    }

    .page-888blink-subtitle {
        font-size: 1.6em;
        color: var(--page-888blink-primary-color);
        margin-bottom: 15px;
        text-align: center;
        border-bottom: 2px solid var(--page-888blink-border-color);
        padding-bottom: 10px;
    }

    .page-888blink-intro p,
    .page-888blink-promotions p,
    .page-888blink-guide p,
    .page-888blink-more-games {
        margin-bottom: 15px;
        text-align: justify;
    }

    .page-888blink-link {
        color: var(--page-888blink-secondary-color);
        text-decoration: none;
        font-weight: bold;
        transition: color 0.3s ease;
    }

    .page-888blink-link:hover {
        color: var(--page-888blink-hover-color);
        text-decoration: underline;
    }

    .page-888blink-game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
        margin-top: 20px;
    }

    .page-888blink-game-card {
        background-color: var(--page-888blink-card-bg);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
        text-align: center;
        padding-bottom: 15px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-888blink-game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
    }

    .page-888blink-game-img {
        width: 100%;
        height: 120px;
        object-fit: cover;
        border-bottom: 1px solid var(--page-888blink-border-color);
    }

    .page-888blink-game-title {
        font-size: 1.2em;
        color: var(--page-888blink-secondary-color);
        margin: 15px 10px 10px;
    }

    .page-888blink-game-title a {
        color: inherit;
        text-decoration: none;
    }

    .page-888blink-game-title a:hover {
        text-decoration: underline;
    }

    .page-888blink-game-card p {
        font-size: 0.9em;
        color: #ccc;
        padding: 0 10px;
        text-align: center;
    }

    .page-888blink-promo-list,
    .page-888blink-guide-list {
        list-style: none;
        padding: 0;
        margin-left: 20px;
    }

    .page-888blink-promo-list li,
    .page-888blink-guide-list li {
        margin-bottom: 10px;
        position: relative;
        padding-left: 25px;
    }

    .page-888blink-promo-list li::before {
        content: '✓';
        color: var(--page-888blink-primary-color);
        font-weight: bold;
        position: absolute;
        left: 0;
    }
    .page-888blink-guide-list {
        counter-reset: item;
    }
    .page-888blink-guide-list li::before {
        content: counter(item) ".";
        counter-increment: item;
        color: var(--page-888blink-secondary-color);
        font-weight: bold;
        position: absolute;
        left: 0;
    }

    .page-888blink-faq-item {
        background-color: var(--page-888blink-card-bg);
        border-radius: 8px;
        margin-bottom: 15px;
        padding: 15px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-888blink-faq-question {
        font-size: 1.1em;
        color: var(--page-888blink-secondary-color);
        margin-bottom: 10px;
        cursor: pointer;
    }

    .page-888blink-faq-question a {
        color: inherit;
        text-decoration: none;
    }

    .page-888blink-faq-question a:hover {
        text-decoration: underline;
    }

    .page-888blink-faq-answer {
        font-size: 0.95em;
        color: #ccc;
        display: block; /* Ensure it's block for proper spacing */
    }

    .page-888blink-floating-btn {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--page-888blink-cta-green); /* Green for action */
        color: white;
        padding: 12px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s ease, transform 0.2s ease;
        white-space: nowrap;
    }

    .page-888blink-floating-btn:hover {
        background-color: var(--page-888blink-cta-green-hover);
        transform: translateX(-50%) translateY(-3px);
    }

    .page-888blink-floating-btn-text {
        margin: 0;
    }

    /* Responsive adjustments */
    @media (min-width: 768px) {
        .page-888blink-title {
            font-size: 2.5em;
        }

        .page-888blink-slogan {
            font-size: 1.3em;
        }

        .page-888blink-subtitle {
            font-size: 2em;
        }

        .page-888blink-game-grid {
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }
        .page-888blink-game-img {
            height: 150px;
        }

        .page-888blink-intro,
        .page-888blink-games,
        .page-888blink-promotions,
        .page-888blink-guide,
        .page-888blink-faq {
            padding: 30px 20px;
        }
    }

    @media (min-width: 1024px) {
        .page-888blink-banner-overlay {
            padding: 40px;
        }
        .page-888blink-title {
            font-size: 3em;
        }
        .page-888blink-floating-btn {
            bottom: 30px;
        }
    }
  