
        /* CSS content will be injected here from 'css' field */
        .page-13winlink {
            font-family: 'Arial', sans-serif;
            color: #333333;
            line-height: 1.6;
            background-color: #f8f9fa;
        }

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

        .page-13winlink__hero-section {
            padding-top: 10px; /* Small top padding, body handles header offset */
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            background-color: #ffffff;
            border-bottom: 1px solid #e0e0e0;
        }

        .page-13winlink__hero-image-container {
            width: 100%;
            max-width: 1200px;
            margin-bottom: 20px;
        }

        .page-13winlink__hero-image {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            object-fit: cover;
        }

        .page-13winlink__hero-content {
            max-width: 800px;
            margin-top: 20px;
            padding: 0 15px;
        }

        .page-13winlink__hero-title {
            font-size: clamp(2.2rem, 5vw, 3.2rem);
            color: #2563eb;
            margin-bottom: 15px;
            font-weight: 700;
            line-height: 1.2;
        }

        .page-13winlink__hero-description {
            font-size: 1.1rem;
            color: #64748b;
            margin-bottom: 30px;
        }

        .page-13winlink__cta-button {
            display: inline-block;
            background-color: #2563eb;
            color: #ffffff;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: background-color 0.3s ease, transform 0.2s ease;
            margin: 10px;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-13winlink__cta-button:hover {
            background-color: #1a4fbf;
            transform: translateY(-2px);
        }

        .page-13winlink__secondary-button {
            background-color: #ffffff;
            color: #2563eb;
            border: 2px solid #2563eb;
        }

        .page-13winlink__secondary-button:hover {
            background-color: #e0e7ff;
            transform: translateY(-2px);
        }

        .page-13winlink__game-categories {
            background-color: #f0f2f5;
            text-align: center;
        }

        .page-13winlink__section-title {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            color: #2563eb;
            margin-bottom: 40px;
            font-weight: 700;
            text-align: center;
        }

        .page-13winlink__game-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .page-13winlink__game-card {
            background-color: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            text-align: left;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .page-13winlink__game-card:hover {
            transform: translateY(-8px);
        }

        .page-13winlink__game-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

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

        .page-13winlink__game-title {
            font-size: 1.4rem;
            color: #2563eb;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .page-13winlink__game-description {
            font-size: 0.95rem;
            color: #64748b;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .page-13winlink__cta-small {
            display: inline-block;
            background-color: #64748b;
            color: #ffffff;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: background-color 0.3s ease;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-13winlink__cta-small:hover {
            background-color: #4a5568;
        }

        .page-13winlink__features-section {
            background-color: #ffffff;
        }

        .page-13winlink__feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }

        .page-13winlink__feature-icon-wrapper {
            flex-shrink: 0;
            margin-right: 20px;
            background-color: #e0e7ff;
            padding: 15px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .page-13winlink__feature-icon {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }

        .page-13winlink__feature-content {
            flex-grow: 1;
        }

        .page-13winlink__feature-title {
            font-size: 1.3rem;
            color: #2563eb;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .page-13winlink__feature-description {
            font-size: 1rem;
            color: #64748b;
        }

        .page-13winlink__app-section {
            background-color: #f0f2f5;
            text-align: center;
        }

        .page-13winlink__app-grid {
            display: flex;
            flex-direction: column;
            gap: 30px;
            align-items: center;
        }

        .page-13winlink__app-image {
            width: 100%;
            max-width: 400px;
            height: auto;
            display: block;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .page-13winlink__app-download-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            width: 100%;
            max-width: 600px;
        }

        .page-13winlink__app-button {
            display: flex;
            align-items: center;
            background-color: #2563eb;
            color: #ffffff;
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: background-color 0.3s ease, transform 0.2s ease;
            border: none;
            cursor: pointer;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-13winlink__app-button:hover {
            background-color: #1a4fbf;
            transform: translateY(-2px);
        }

        .page-13winlink__app-icon {
            width: 24px;
            height: 24px;
            margin-right: 10px;
            object-fit: contain;
        }

        .page-13winlink__faq-section {
            background-color: #ffffff;
        }

        .page-13winlink__faq-item {
            background-color: #f8f9fa;
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            transition: background-color 0.3s ease;
        }

        .page-13winlink__faq-item.active {
            background-color: #e0e7ff;
        }

        .page-13winlink__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
            font-size: 1.15rem;
            font-weight: 600;
            color: #2563eb;
            cursor: pointer;
            user-select: none;
            transition: color 0.3s ease;
        }

        .page-13winlink__faq-question:hover {
            color: #1a4fbf;
        }

        .page-13winlink__faq-question h3 {
            margin: 0;
            pointer-events: none;
            flex-grow: 1;
        }

        .page-13winlink__faq-toggle {
            font-size: 1.8rem;
            line-height: 1;
            margin-left: 15px;
            pointer-events: none;
            color: #64748b;
            transition: transform 0.3s ease;
        }

        .page-13winlink__faq-item.active .page-13winlink__faq-toggle {
            transform: rotate(45deg);
            color: #2563eb;
        }

        .page-13winlink__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: #64748b;
            font-size: 1rem;
            line-height: 1.7;
        }

        .page-13winlink__faq-item.active .page-13winlink__faq-answer {
            max-height: 2000px !important; /* Sufficiently large to show all content */
            padding: 20px 25px !important;
            opacity: 1;
        }

        .page-13winlink__contact-section {
            background-color: #2563eb;
            color: #ffffff;
            text-align: center;
        }

        .page-13winlink__contact-text {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .page-13winlink__floating-promo-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #ff0000; /* Eye-catching red */
            color: #ffffff;
            padding: 15px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            animation: pulse 1.5s infinite;
            display: none; /* Hidden by default, shown on mobile via JS/media query if needed, or always visible */
            max-width: calc(100% - 40px);
            box-sizing: border-box;
            text-align: center;
            white-space: normal;
            word-wrap: break-word;
        }

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

        .page-13winlink__list-item {
            list-style: none;
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
            color: #333333;
        }

        .page-13winlink__list-item::before {
            content: '✔️';
            position: absolute;
            left: 0;
            color: #2563eb;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .page-13winlink__section {
                padding: 40px 15px;
            }

            .page-13winlink__hero-title {
                font-size: 2rem;
            }

            .page-13winlink__hero-description {
                font-size: 1rem;
            }

            .page-13winlink__cta-button {
                padding: 12px 20px;
                font-size: 0.95rem;
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                margin: 8px 0;
            }

            .page-13winlink__app-download-buttons {
                flex-direction: column;
                gap: 15px;
                padding: 0 15px;
            }

            .page-13winlink__app-button {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                justify-content: center;
            }

            .page-13winlink__game-grid {
                grid-template-columns: 1fr;
            }

            .page-13winlink__game-image {
                height: 180px;
            }

            .page-13winlink__feature-item {
                flex-direction: column;
                text-align: center;
            }

            .page-13winlink__feature-icon-wrapper {
                margin: 0 auto 15px auto;
            }

            .page-13winlink__faq-question {
                font-size: 1rem;
                padding: 15px 20px;
            }

            .page-13winlink__faq-answer {
                padding: 15px 20px !important;
                font-size: 0.95rem;
            }

            .page-13winlink__floating-promo-btn {
                display: block; /* Show on mobile */
                left: 50%;
                transform: translateX(-50%);
                width: calc(100% - 40px);
            }

            /* Mobile specific image handling */
            .page-13winlink img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                display: block !important;
            }

            .page-13winlink__hero-image-container,
            .page-13winlink__game-card,
            .page-13winlink__app-image,
            .page-13winlink__feature-icon-wrapper,
            .page-13winlink__section {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
                overflow: hidden !important;
            }

            .page-13winlink__list-item {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                word-wrap: break-word !important;
                overflow-wrap: break-word !important;
                word-break: break-word !important;
                padding-left: 25px; /* Adjust for bullet */
            }

            .page-13winlink ul,
            .page-13winlink ol {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                padding: 0 !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }
        }
    