
        .page-32wim {
            font-family: 'Arial', sans-serif;
            color: #333333;
            line-height: 1.6;
            background-color: #f8f8f8;
        }

        .page-32wim__hero-section {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding-top: 10px; /* Minimal top padding */
            background: linear-gradient(135deg, #2563eb 0%, #64748b 100%);
            color: #ffffff;
            text-align: center;
        }

        .page-32wim__hero-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            max-height: 450px;
        }

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

        .page-32wim__hero-content h1 {
            font-size: 2.8em;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            max-width: 100%;
        }

        .page-32wim__hero-content p {
            font-size: 1.1em;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-32wim__btn-primary {
            display: inline-block;
            background-color: #ffc107; /* Highlight color for CTA */
            color: #2563eb;
            padding: 14px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1em;
            transition: background-color 0.3s ease, transform 0.2s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            border: none;
            cursor: pointer;
            white-space: normal;
            word-wrap: break-word;
            max-width: 100%;
            box-sizing: border-box;
        }

        .page-32wim__btn-primary:hover {
            background-color: #e0a800;
            transform: translateY(-2px);
        }

        .page-32wim__section {
            padding: 50px 20px;
            max-width: 1200px;
            margin: 0 auto;
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }

        .page-32wim__section h2 {
            font-size: 2.2em;
            color: #2563eb;
            text-align: center;
            margin-bottom: 40px;
            font-weight: 700;
        }

        .page-32wim__section h3 {
            font-size: 1.6em;
            color: #64748b;
            margin-top: 30px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .page-32wim__section p {
            font-size: 1em;
            margin-bottom: 15px;
            color: #333333;
        }

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

        .page-32wim__game-card {
            background-color: #f9f9f9;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            text-align: center;
            border: 1px solid #e0e0e0;
        }

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

        .page-32wim__game-card-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .page-32wim__game-card-content {
            padding: 20px;
        }

        .page-32wim__game-card-content h4 {
            font-size: 1.3em;
            color: #2563eb;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .page-32wim__game-card-content p {
            font-size: 0.95em;
            color: #555555;
            margin-bottom: 20px;
        }

        .page-32wim__list {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
        }

        .page-32wim__list-item {
            background-color: #f0f8ff;
            border-left: 5px solid #2563eb;
            padding: 12px 20px;
            margin-bottom: 10px;
            border-radius: 5px;
            font-size: 1em;
            color: #333333;
            box-sizing: border-box;
        }

        .page-32wim__cta-banner {
            background: linear-gradient(90deg, #2563eb 0%, #64748b 100%);
            color: #ffffff;
            text-align: center;
            padding: 40px 20px;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        .page-32wim__cta-banner h3 {
            font-size: 2em;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .page-32wim__cta-banner p {
            font-size: 1.1em;
            margin-bottom: 30px;
        }

        .page-32wim__cta-image {
            width: 100%;
            height: auto;
            display: block;
            margin: 20px auto;
            max-width: 600px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .page-32wim__floating-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            background-color: #ffc107;
            color: #2563eb;
            padding: 12px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1em;
            transition: transform 0.2s ease;
            white-space: nowrap;
            word-wrap: break-word;
            max-width: calc(100% - 40px); /* Adjust for padding on small screens */
            box-sizing: border-box;
        }

        .page-32wim__floating-button:hover {
            transform: translateY(-3px);
        }

        .page-32wim__floating-button span {
            margin-right: 8px;
        }

        .page-32wim__link-text {
            color: #2563eb;
            text-decoration: underline;
            font-weight: 500;
        }

        .page-32wim__link-text:hover {
            color: #1e40af;
        }

        /* Mobile Specific Styles */
        @media (max-width: 768px) {
            .page-32wim__hero-section {
                padding-top: 10px;
            }
            .page-32wim__hero-content h1 {
                font-size: 2em;
            }
            .page-32wim__hero-content p {
                font-size: 0.95em;
            }
            .page-32wim__btn-primary {
                padding: 12px 25px;
                font-size: 1em;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
            }
            .page-32wim__section {
                padding: 30px 15px;
                margin-bottom: 20px;
            }
            .page-32wim__section h2 {
                font-size: 1.8em;
                margin-bottom: 30px;
            }
            .page-32wim__section h3 {
                font-size: 1.4em;
            }
            .page-32wim__game-grid {
                grid-template-columns: 1fr;
            }
            .page-32wim__game-card-image {
                height: 180px;
            }
            .page-32wim__list-item {
                padding: 10px 15px;
                font-size: 0.95em;
                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;
            }
            .page-32wim__list {
                padding: 0;
                margin-left: 0 !important;
                margin-right: 0 !important;
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
            }
            .page-32wim__cta-banner {
                padding: 30px 15px;
            }
            .page-32wim__cta-banner h3 {
                font-size: 1.6em;
            }
            .page-32wim__cta-banner p {
                font-size: 1em;
            }
            .page-32wim__floating-button {
                bottom: 15px;
                right: 15px;
                padding: 10px 18px;
                font-size: 0.9em;
                max-width: calc(100% - 30px) !important;
                width: auto !important;
            }
            .page-32wim img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }
            .page-32wim__section,
            .page-32wim__hero-section,
            .page-32wim__cta-banner,
            .page-32wim__game-grid {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }
            .page-32wim__floating-button-container {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }
        }
    