{"id":13,"date":"2025-11-05T19:51:26","date_gmt":"2025-11-05T19:51:26","guid":{"rendered":"https:\/\/limittestgames.com\/?page_id=13"},"modified":"2025-11-12T08:49:24","modified_gmt":"2025-11-12T08:49:24","slug":"home","status":"publish","type":"page","link":"https:\/\/limittestgames.com\/","title":{"rendered":"Our Games"},"content":{"rendered":"\n<div style=\"height:185px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Our Games &#8211; Glowing Divider<\/title>\n    <!-- Load Tailwind CSS -->\n    <script src=\"https:\/\/cdn.tailwindcss.com\"><\/script>\n    <!-- Loading Oswald font with Extra Light (200) and Bold (700) weights -->\n    <link href=\"https:\/\/fonts.googleapis.com\/css2?family=Oswald:wght@200;700&#038;display=swap\" rel=\"stylesheet\">\n    <style>\n        \/* Define a custom class for the glowing, fading divider *\/\n        .glowing-divider {\n            height: 2px; \/* Thinner line *\/\n            width: 80%;\n            max-width: 600px;\n            \/* Create the fading edges using a gradient: transparent -> teal -> transparent *\/\n            background: linear-gradient(to right, transparent 5%, #00CED1, transparent 95%);\n            \n            \/* Use filter: drop-shadow to make the glow fade with the line *\/\n            filter: drop-shadow(0 0 10px #00CED1) drop-shadow(0 0 5px rgba(0, 206, 209, 0.8));\n            \n            margin: 0 auto; \/* Center the line *\/\n            border-radius: 9999px; \/* Give it rounded edges *\/\n        }\n        \n        \/* Apply the Inter font globally for general text. *\/\n        body {\n            font-family: 'Inter', sans-serif;\n        }\n\n        \/* Custom class to specifically apply the Oswald font to the title *\/\n        .title-font {\n            font-family: 'Oswald', sans-serif;\n        }\n\n        \/* Specific styling for the title glow *\/\n        .glowing-title {\n            text-shadow: 0 0 10px rgba(0, 206, 209, 0.8), 0 0 20px rgba(0, 206, 209, 0.4);\n        }\n\n        \/* --- Animation Setup --- *\/\n\n        \/* Keyframes for the slide up and fade in effect *\/\n        @keyframes slideUpAndFadeIn {\n            from {\n                transform: translateY(20px); \/* Start 20px below final position *\/\n                opacity: 0;\n            }\n            to {\n                transform: translateY(0);\n                opacity: 1;\n            }\n        }\n        \n        \/* Class to apply the animation *\/\n        .animate-slide-up {\n            \/* Run the animation over 1.2s, smooth easing, and stay at the final state (forwards) *\/\n            animation: slideUpAndFadeIn 1.2s ease-out forwards;\n            animation-delay: 0.3s; \/* Delay slightly after load *\/\n            opacity: 0; \/* Start hidden until animation begins *\/\n        }\n    <\/style>\n<\/head>\n<body class=\"flex items-center justify-center min-h-screen p-4\">\n\n    <!-- Main Container for Centering Content -->\n    <div class=\"text-center w-full\">\n\n        <!-- Glowing Title \n             The 'animate-slide-up' class is now applied here -->\n        <h1 class=\"text-2xl sm:text-3xl font-extralight title-font text-teal-400 mb-8 glowing-title tracking-widest uppercase animate-slide-up\">\n            Our Games\n        <\/h1>\n\n        <!-- The Glowing and Fading Line Divider -->\n        <div class=\"glowing-divider\"><\/div>\n\n    <\/div>\n\n<\/body>\n<\/html>\n\n\n\n<div style=\"margin-top:0;margin-bottom:0;height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<!DOCTYPE html>\n<html lang=\"fr\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Game Showcase Mosaic<\/title>\n    \n<link href=\"https:\/\/fonts.googleapis.com\/css2?family=Oswald:wght@200;400;700&#038;family=Inter:wght@400;600;700;800&#038;display=swap\" rel=\"stylesheet\">\n    <script src=\"https:\/\/cdn.tailwindcss.com\"><\/script>\n    <style>\n        \/*\n        --- GLOBAL PAGE & CONTAINER STYLING ---\n        *\/\n        body {\n            background-color: transparent; \n            margin: 0;\n            width: 100vw;\n            min-height: 100vh;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            padding: 20px; \/* Padding for mobile safety *\/\n            font-family: 'Inter', sans-serif;\n        }\n\n        \/* The main wrapper for the two cards *\/\n        .card-mosaic-wrapper {\n            display: flex;\n            flex-direction: column; \/* Stack vertically on small screens *\/\n            gap: 20px;\n            max-width: 1100px;\n            width: 100%;\n        }\n\n        \/* Ensures both card containers fill their space, and uses flex-grow *\/\n        .card-wrapper {\n            flex: 1 1 50%; \/* Ensures they take up equal halves of the container on desktop *\/\n            display: flex;\n            justify-content: center;\n            align-items: flex-start; \n            width: 100%; \/* Default to 100% of parent width *\/\n        }\n        \n        \/* === Ajustement de la taille pour les mobiles (moins de 768px) === *\/\n        @media (max-width: 767px) {\n            .card-wrapper {\n                \/* Retrait de max-width pour qu'elle prenne la largeur de son parent 100% *\/\n                width: 100%;\n                flex-shrink: 0; \n                flex-basis: auto; \n            }\n            \/* CORRECTION: On retire le min-height pour s'assurer que la taille est g\u00e9r\u00e9e par le ratio *\/\n            .working-card {\n                min-height: auto; \n            }\n        }\n\n        \/* Media query for tablet\/desktop layout *\/\n        @media (min-width: 768px) {\n            .card-mosaic-wrapper {\n                flex-direction: row; \/* Display horizontally on desktop *\/\n                gap: 30px;\n                \/* Emp\u00eache la carte 2 de s'\u00e9tirer lorsque la carte 1 s'agrandit au survol *\/\n                align-items: flex-start; \n            }\n            \n            \/* S'assure que le wrapper de la carte prend la hauteur compl\u00e8te et aligne son contenu *\/\n            .card-wrapper {\n                align-items: flex-start; \n            }\n            \n            \/* La carte 1 et la carte 2 doivent utiliser flex-direction: column pour g\u00e9rer le contenu et les bandeaux *\/\n            .game-card, .working-card {\n                display: flex;\n                flex-direction: column;\n                height: auto; \n            }\n            \n             \/* La carte 1 doit rester flexible pour prendre toute la hauteur sur hover *\/\n             .game-card {\n                height: auto; \n                min-height: 100%; \n            }\n        }\n        \n        \/*\n        ========================================\n        --- CARD 1: MAZE IT OUT (3D SHOWCASE) ---\n        ========================================\n        *\/\n        \n        @keyframes rotating-glow {\n            0% { background-position: 0% 50%; }\n            50% { background-position: 100% 50%; }\n            100% { background-position: 0% 50%; }\n        }\n\n        .game-card-container {\n            font-family: 'Inter', sans-serif;\n            perspective: 1000px; \/* For 3D effect *\/\n            width: 100%; \/* IMPORTANT: Makes it take the full width of its 50% parent *\/\n        }\n\n        .game-card {\n            width: 100%;\n            position: relative;\n            background-color: #1A1A1A;\n            overflow: hidden;\n            color: white;\n            border: 2px solid #2dd4bf;\n            box-shadow: 0 0 10px 3px rgba(45, 212, 191, 0.7), 0 10px 30px rgba(0, 0, 0, 0.5);\n            transition: transform 0.4s ease-out, box-shadow 0.4s ease-out; \n            cursor: pointer;\n            transform-style: preserve-3d;\n            border-radius: 12px;\n            flex-shrink: 0; \n        }\n\n        .game-card::before {\n            content: '';\n            position: absolute;\n            top: -8px; bottom: -8px; left: -8px; right: -8px; \n            background: linear-gradient(45deg, #00ffaa, #00c0ff, #aa00ff, #ff0077);\n            background-size: 300% 300%;\n            filter: blur(10px);\n            opacity: 0.2;\n            animation: rotating-glow 15s ease infinite; \n            z-index: -1;\n            border-radius: 15px;\n        }\n\n        .game-card:hover {\n            \/* Lift effect on hover *\/\n            transform: translateY(-8px) scale(1.02) rotateX(2deg) rotateY(2deg) translateZ(20px); \n        }\n\n        \/* NEW: Aspect Ratio Container for Video\/Thumbnail *\/\n        .thumbnail-area {\n            position: relative;\n            width: 100%;\n            \/* Garde l'aspect ratio 16:9 *\/\n            padding-top: 56.25%; \/* 16:9 Aspect Ratio (9 \/ 16 * 100 = 56.25) *\/\n            border-bottom: 2px solid #555;\n            border-radius: 10px 10px 0 0; \n            transform: translateZ(10px); \n            overflow: hidden;\n            flex-shrink: 0; \n        }\n\n        .thumbnail-video {\n            position: absolute;\n            top: 0;\n            left: 0;\n            width: 100%;\n            height: 100%; \n            object-fit: cover;\n            display: block;\n        }\n        \n        \/* CORRECTION: On r\u00e9tablit la fonctionnalit\u00e9 \"collapsible\" pour masquer le texte *\/\n        .text-collapsible {\n            max-height: 0; \/* Masqu\u00e9 par d\u00e9faut *\/\n            opacity: 0; \n            overflow: hidden;\n            \/* Animation plus douce (0.8s) *\/\n            transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1), \n                        opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), \n                        margin-bottom 0.8s cubic-bezier(0.4, 0, 0.2, 1); \n            margin-bottom: 0px; \n        }\n        \n        \/* \u00c9tat de survol : r\u00e9v\u00e8le le contenu *\/\n        .game-card:hover .text-collapsible {\n            max-height: 600px; \/* Grande valeur pour r\u00e9v\u00e9ler tout le contenu *\/\n            opacity: 1;\n            margin-bottom: 20px; \/* Ajoute l'espace sous la description *\/\n        }\n        \n        \/* MODIFICATION DEMAND\u00c9E : Changement du padding vertical \u00e0 12.5px pour une r\u00e9duction de 15px par rapport \u00e0 l'original *\/\n        .content {\n            padding: 12.5px; \n            transform: translateZ(5px); \n            flex-grow: 1; \n            display: flex;\n            flex-direction: column;\n            justify-content: space-between; \n        }\n\n        \/* NOUVEAU: Wrapper pour le contenu sup\u00e9rieur (texte) *\/\n        .content-top {\n            \/* Garantit que tout le contenu textuel (y compris la zone escamotable) est regroup\u00e9 en haut *\/\n            display: flex;\n            flex-direction: column;\n        }\n        \n        .content h2 {\n            font-family: 'Oswald', sans-serif;\n            text-transform: uppercase;\n            font-weight: 200;\n            letter-spacing: 0.3em;\n        }\n\n        .content p {\n            font-family: 'Oswald', sans-serif;\n            font-weight: 200;\n            letter-spacing: normal;\n            font-style: italic;\n            margin-bottom: 0 !important; \n        }\n\n        .button-base {\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            flex-grow: 1; \n            \/* Boutons d\u00e9j\u00e0 l\u00e9g\u00e8rement r\u00e9duits *\/\n            padding: 10px 10px; \n            font-weight: 700; \n            text-transform: uppercase;\n            letter-spacing: 1.2px; \n            transition: background-color 0.3s, color 0.3s, border-color 0.3s, transform 0.2s;\n            font-size: 0.9rem; \n            line-height: 1.25rem;\n            border: 2px solid transparent;\n            border-radius: 8px; \n            transform: translateZ(12px); \n            text-decoration: none !important; \n        }\n        \n        .steam-button {\n            background-color: #1b2838;\n            color: white;\n            border-color: #1b2838;\n            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); \n        }\n\n        .steam-button:hover {\n            background-color: #2a475e;\n            border-color: #2a475e;\n            transform: scale(1.03) translateZ(15px); \n        }\n\n        .press-kit-button {\n            background-color: transparent; \n            color: #2dd4bf;\n            border-color: #2dd4bf;\n            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);\n        }\n\n        .press-kit-button:hover {\n            background-color: #2dd4bf;\n            color: #1A1A1A;\n            transform: scale(1.03) translateZ(15px);\n        }\n\n        .steam-icon, .download-icon {\n            margin-right: 8px;\n            \/* La taille de l'ic\u00f4ne reste \u00e0 22px pour une bonne visibilit\u00e9 *\/\n            width: 22px; \n            height: 22px;\n        }\n        .download-icon {\n            width: 20px;\n            height: 20px;\n        }\n\n        \/*\n        ========================================\n        --- CARD 2: NEXT GAME (HAMSTER CARD) ---\n        ========================================\n        *\/\n        \n        \/* AJOUT: Pour forcer l'aspect ratio 16:9 au corps principal de la Carte 2 *\/\n        .card-2-body-16-9 {\n            position: relative;\n            width: 100%;\n            \/* Padding-top pour forcer l'aspect ratio 16:9 (9 \/ 16 * 100 = 56.25%) *\/\n            padding-top: 56.25%; \n            flex-shrink: 0; \n            overflow: hidden;\n        }\n\n        .content-absolute {\n            position: absolute;\n            top: 0;\n            left: 0;\n            width: 100%;\n            height: 100%;\n            \/* Utilisation de Flexbox pour centrer le contenu (hamster + texte) *\/\n            display: flex;\n            flex-direction: column;\n            justify-content: center;\n            align-items: center;\n        }\n\n        @keyframes dot-fade {\n            0%, 20% { opacity: 0; }\n            40% { opacity: 1; }\n            80%, 100% { opacity: 0; }\n        }\n        \n        \/* Le working-card doit \u00eatre en flex-column pour g\u00e9rer l'ancrage du footer *\/\n        .working-card {\n            background: #1A1A1A; \n            border: 2px solid #2dd4bf; \n            box-shadow: 0 0 15px rgba(45, 212, 191, 0.5); \n            position: relative;\n            z-index: 10; \n            overflow: hidden; \n            color: #ecf0f1; \n            width: 100%; \n            border-radius: 0.75rem; \n            text-align: center;\n            \n            display: flex;\n            flex-direction: column; \n        }\n        \n        \/* Wrapper pour le contenu du hamster qui doit \u00eatre centr\u00e9 ET prendre l'espace restant *\/\n        .hamster-content-centered {\n            \/* flex-grow: 1; *\/\n            padding: 4rem 2rem; \n            display: flex;\n            flex-direction: column;\n            justify-content: center; \n            align-items: center; \n            position: relative; \n            z-index: 20;\n            \/* Fait en sorte que le contenu s'\u00e9tende dans content-absolute *\/\n            width: 100%;\n            height: 100%;\n            padding: 0; \/* padding g\u00e9r\u00e9 par le wrapper .content-absolute *\/\n        }\n        \n        .wide-text {\n            letter-spacing: 0.3em;\n        }\n\n        .working-card .dot-1,\n        .working-card .dot-2,\n        .working-card .dot-3 {\n            display: inline-block;\n            animation: dot-fade 1.5s infinite;\n        }\n\n        .working-card .dot-2 { animation-delay: 0.25s; }\n        .working-card .dot-3 { animation-delay: 0.5s; }\n        \n        \/* --- Style de la Banderole pour la Carte 2 --- *\/\n        .banderole-2 {\n            background-color: #2dd4bf; \n            color: #1A1A1A; \n            \/* CORRECTION MOBILE: R\u00e9duction du padding vertical sur mobile pour compacter le footer *\/\n            padding-top: 15px; \n            padding-bottom: 15px; \n            padding-left: 1.5rem; \n            padding-right: 1.5rem;\n            \n            border-top: 2px solid #2dd4bf;\n            border-radius: 0 0 0.75rem 0.75rem; \n            \n            display: flex;\n            flex-direction: column;\n            justify-content: center; \n            align-items: center;\n            gap: 1rem; \n            \n            z-index: 30; \n            position: relative; \n            flex-shrink: 0; \n            \n            font-weight: 700;\n            text-transform: uppercase;\n            font-size: 1rem;\n        }\n        \n        @media (min-width: 640px) {\n             \/* R\u00e9tablissement du padding original sur les \u00e9crans plus larges *\/\n            .banderole-2 {\n                padding-top: 22px; \n                padding-bottom: 22px; \n                flex-direction: row;\n                gap: 1.5rem;\n            }\n        }\n        \n        \/* Hamster Wheel Setup - Styles mis \u00e0 jour *\/\n        .wheel-and-hamster {\n          --dur: 1s;\n          position: relative;\n          width: 12em;\n          height: 12em;\n          font-size: 14px; \/* Taille de base pour desktop *\/\n        }\n\n        \/* CORRECTION MOBILE: R\u00e9duction de la taille de la roue sur mobile *\/\n        @media (max-width: 767px) {\n             .wheel-and-hamster {\n                font-size: 10px; \/* R\u00e9duit la taille de base sur mobile (10em x 10em) *\/\n                \/* Enl\u00e8ve la marge n\u00e9gative qui peut causer des probl\u00e8mes de centrage vertical *\/\n                \/* margin-top: -1em; *\/ \n            }\n            .hamster-content-centered .wide-text {\n                font-size: 0.7rem; \/* R\u00e9duit la taille du texte \"WORKING ON IT\" *\/\n                \/* CORRECTION CL\u00c9: R\u00e9duction drastique de la marge pour le rapprocher de la roue *\/\n                margin-top: 1em; \/* Changement de mt-10 \u00e0 mt-1 (\u00e9quivalent \u00e0 1em) *\/\n                \n                \/* AJOUT CRITIQUE: Assurer que le texte est en haut pour ne pas \u00eatre coup\u00e9 *\/\n                padding-top: 0.5em; \/* Un petit padding pour l'alignement *\/\n            }\n            \n            \/* S'assurer que le texte est correctement align\u00e9 et compact sur les mobiles *\/\n            .hamster-content-centered p {\n                margin-top: 1em; \/* Applique la correction de marge ici aussi si la classe Tailwind est \u00e9cras\u00e9e *\/\n            }\n            \n            \/* Centrer le contenu du Hamster *\/\n            .hamster-content-centered {\n                 \/* AJOUT : S'assurer que la colonne est bien centr\u00e9e sur mobile *\/\n                 justify-content: center; \n            }\n        }\n        \n        .wheel,\n        .hamster,\n        .hamster div,\n        .spoke {\n          position: absolute;\n        }\n\n        .wheel,\n        .spoke {\n          border-radius: 50%;\n          top: 0;\n          left: 0;\n          width: 100%;\n          height: 100%;\n        }\n\n        .wheel {\n          background: radial-gradient(100% 100% at center,hsla(0,0%,60%,0) 47.8%,hsl(0,0%,60%) 48%);\n          z-index: 2;\n        }\n\n        .hamster {\n          animation: hamster var(--dur) ease-in-out infinite;\n          top: 50%;\n          left: calc(50% - 3.5em);\n          width: 7em;\n          height: 3.75em;\n          transform: rotate(4deg) translate(-0.8em,1.85em);\n          transform-origin: 50% 0;\n          z-index: 1;\n        }\n\n        .hamster__head {\n          animation: hamsterHead var(--dur) ease-in-out infinite;\n          background: hsl(30,90%,55%);\n          border-radius: 70% 30% 0 100% \/ 40% 25% 25% 60%;\n          box-shadow: 0 -0.25em 0 hsl(30,90%,80%) inset,\n                0.75em -1.55em 0 hsl(30,90%,90%) inset;\n          top: 0;\n          left: -2em;\n          width: 2.75em;\n          height: 2.5em;\n          transform-origin: 100% 50%;\n        }\n\n        .hamster__ear {\n          animation: hamsterEar var(--dur) ease-in-out infinite;\n          background: hsl(0,90%,85%);\n          border-radius: 50%;\n          box-shadow: -0.25em 0 hsl(30,90%,55%) inset;\n          top: -0.25em;\n          right: -0.25em;\n          width: 0.75em;\n          height: 0.75em;\n          transform-origin: 50% 75%;\n        }\n\n        .hamster__eye {\n          animation: hamsterEye var(--dur) linear infinite;\n          background-color: hsl(0,0%,0%);\n          border-radius: 50%;\n          top: 0.375em;\n          left: 1.25em;\n          width: 0.5em;\n          height: 0.5em;\n        }\n\n        .hamster__nose {\n          background: hsl(0,90%,75%);\n          border-radius: 35% 65% 85% 15% \/ 70% 50% 50% 30%;\n          top: 0.75em;\n          left: 0;\n          width: 0.2em;\n          height: 0.25em;\n        }\n\n        .hamster__body {\n          animation: hamsterBody var(--dur) ease-in-out infinite;\n          background: hsl(30,90%,90%);\n          border-radius: 50% 30% 50% 30% \/ 15% 60% 40% 40%;\n          box-shadow: 0.1em 0.75em 0 hsl(30,90%,55%) inset,\n                0.15em -0.5em 0 hsl(30,90%,80%) inset;\n          top: 0.25em;\n          left: 2em;\n          width: 4.5em;\n          height: 3em;\n          transform-origin: 17% 50%;\n          transform-style: preserve-3d;\n        }\n\n        .hamster__limb--fr,\n        .hamster__limb--fl {\n          clip-path: polygon(0 0,100% 0,70% 80%,60% 100%,0% 100%,40% 80%);\n          top: 2em;\n          left: 0.5em;\n          width: 1em;\n          height: 1.5em;\n          transform-origin: 50% 0;\n        }\n\n        .hamster__limb--fr {\n          animation: hamsterFRLimb var(--dur) linear infinite;\n          background: linear-gradient(hsl(30,90%,80%) 80%,hsl(0,90%,75%) 80%);\n          transform: rotate(15deg) translateZ(-1px);\n        }\n\n        .hamster__limb--fl {\n          animation: hamsterFLLimb var(--dur) linear infinite;\n          background: linear-gradient(hsl(30,90%,90%) 80%,hsl(0,90%,85%) 80%);\n          transform: rotate(15deg);\n        }\n\n        .hamster__limb--br,\n        .hamster__limb--bl {\n          border-radius: 0.75em 0.75em 0 0;\n          clip-path: polygon(0 0,100% 0,100% 30%,70% 90%,70% 100%,30% 100%,40% 90%,0% 30%);\n          top: 1em;\n          left: 2.8em;\n          width: 1.5em;\n          height: 2.5em;\n          transform-origin: 50% 30%;\n        }\n\n        .hamster__limb--br {\n          animation: hamsterBRLimb var(--dur) linear infinite;\n          background: linear-gradient(hsl(30,90%,80%) 90%,hsl(0,90%,75%) 90%);\n          transform: rotate(-25deg) translateZ(-1px);\n        }\n\n        .hamster__limb--bl {\n          animation: hamsterBLLimb var(--dur) linear infinite;\n          background: linear-gradient(hsl(30,90%,90%) 90%,hsl(0,90%,85%) 90%);\n          transform: rotate(-25deg);\n        }\n\n        .hamster__tail {\n          animation: hamsterTail var(--dur) linear infinite;\n          background: hsl(0,90%,85%);\n          border-radius: 0.25em 50% 50% 0.25em;\n          box-shadow: 0 -0.2em 0 hsl(0,90%,75%) inset;\n          top: 1.5em;\n          right: -0.5em;\n          width: 1em;\n          height: 0.5em;\n          transform: rotate(30deg) translateZ(-1px);\n          transform-origin: 0.25em 0.25em;\n        }\n\n        .spoke {\n          animation: spoke var(--dur) linear infinite;\n          background: radial-gradient(100% 100% at center,hsl(0,0%,60%) 4.8%,hsla(0,0%,60%,0) 5%),\n                linear-gradient(hsla(0,0%,55%,0) 46.9%,hsl(0,0%,65%) 47% 52.9%,hsla(0,0%,65%,0) 53%) 50% 50% \/ 99% 99% no-repeat;\n        }\n\n        \/* Animations *\/\n        @keyframes hamster {\n          from, to {\n            transform: rotate(4deg) translate(-0.8em,1.85em);\n          }\n\n          50% {\n            transform: rotate(0) translate(-0.8em,1.85em);\n          }\n        }\n\n        @keyframes hamsterHead {\n          from, 25%, 50%, 75%, to {\n            transform: rotate(0);\n          }\n\n          12.5%, 37.5%, 62.5%, 87.5% {\n            transform: rotate(8deg);\n          }\n        }\n\n        @keyframes hamsterEye {\n          from, 90%, to {\n            transform: scaleY(1);\n          }\n\n          95% {\n            transform: scaleY(0);\n          }\n        }\n\n        @keyframes hamsterEar {\n          from, 25%, 50%, 75%, to {\n            transform: rotate(0);\n          }\n\n          12.5%, 37.5%, 62.5%, 87.5% {\n            transform: rotate(12deg);\n          }\n        }\n\n        @keyframes hamsterBody {\n          from, 25%, 50%, 75%, to {\n            transform: rotate(0);\n          }\n\n          12.5%, 37.5%, 62.5%, 87.5% {\n            transform: rotate(-2deg);\n          }\n        }\n\n        @keyframes hamsterFRLimb {\n          from, 25%, 50%, 75%, to {\n            transform: rotate(50deg) translateZ(-1px);\n          }\n\n          12.5%, 37.5%, 62.5%, 87.5% {\n            transform: rotate(-30deg) translateZ(-1px);\n          }\n        }\n\n        @keyframes hamsterFLLimb {\n          from, 25%, 50%, 75%, to {\n            transform: rotate(-30deg);\n          }\n\n          12.5%, 37.5%, 62.5%, 87.5% {\n            transform: rotate(50deg);\n          }\n        }\n\n        @keyframes hamsterBRLimb {\n          from, 25%, 50%, 75%, to {\n            transform: rotate(-60deg) translateZ(-1px);\n          }\n\n          12.5%, 37.5%, 62.5%, 87.5% {\n            transform: rotate(20deg) translateZ(-1px);\n          }\n        }\n\n        @keyframes hamsterBLLimb {\n          from, 25%, 50%, 75%, to {\n            transform: rotate(20deg);\n          }\n\n          12.5%, 37.5%, 62.5%, 87.5% {\n            transform: rotate(-60deg);\n          }\n        }\n\n        @keyframes hamsterTail {\n          from, 25%, 50%, 75%, to {\n            transform: rotate(30deg) translateZ(-1px);\n          }\n\n          12.5%, 37.5%, 62.5%, 87.5% {\n            transform: rotate(10deg) translateZ(-1px);\n          }\n        }\n\n        @keyframes spoke {\n          from {\n            transform: rotate(0);\n          }\n\n          to {\n            transform: rotate(-1turn);\n          }\n        }\n        \n        \/* Gear Background Styles *\/\n        @keyframes clockwise { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }\n        @keyframes counter-clockwise { 0% { transform: rotate(0deg); } 100% { transform: rotate(-360deg); } }\n        \/* Ajustement du radius du gearbox pour le nouveau wrapper 16:9 *\/\n        .gearbox { background: #111; position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; overflow: hidden; border-radius: 0.75rem 0.75rem 0 0; box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.1); z-index: 1; }\n        .gear-system-wrapper { position: absolute; width: 200px; height: 150px; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(3.5); transform-origin: center center; filter: blur(2px); -webkit-filter: blur(2px); opacity: 0.2; }\n        .gearbox .overlay { border-radius: 0.75rem 0.75rem 0 0; content: \"\"; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 10; box-shadow: inset 0px 0px 20px black; background: transparent; }\n        .gear { position: absolute; height: 60px; width: 60px; box-shadow: 0px -1px 0px 0px #888888, 0px 1px 0px 0px black; border-radius: 30px; z-index: 2; }\n        .gear.large { height: 120px; width: 120px; border-radius: 60px; }\n        .gear.large:after { height: 96px; width: 96px; border-radius: 48px; margin-left: -48px; margin-top: -48px; }\n        .gear.one { top: 12px; left: 10px; }\n        .gear.two { top: 61px; left: 60px; }\n        .gear.three { top: 110px; left: 10px; }\n        .gear.four { top: 13px; left: 128px; }\n        .gear:after { content: \"\"; position: absolute; height: 36px; width: 36px; border-radius: 36px; background: #111; top: 50%; left: 50%; margin-left: -18px; margin-top: -18px; z-index: 3; box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.1), inset 0px 0px 10px rgba(0, 0, 0, 0.1), inset 0px 2px 0px 0px #090909, inset 0px -1px 0px 0px #888888; }\n        .gear-inner { position: relative; height: 100%; width: 100%; background: #555; border-radius: 30px; border: 1px solid rgba(255, 255, 255, 0.1); }\n        .large .gear-inner { border-radius: 60px; }\n        .gear.one .gear-inner { animation: counter-clockwise 10s infinite linear; }\n        .gear.two .gear-inner { animation: clockwise 10s infinite linear; }\n        .gear.three .gear-inner { animation: counter-clockwise 10s infinite linear; }\n        .gear.four .gear-inner { animation: counter-clockwise 15s infinite linear; }\n        .gear-inner .bar { background: #555; height: 16px; width: 76px; position: absolute; left: 50%; margin-left: -38px; top: 50%; margin-top: -8px; border-radius: 2px; border-left: 1px solid rgba(255, 255, 255, 0.1); border-right: 1px solid rgba(255, 255, 255, 0.1); }\n        .large .gear-inner .bar { margin-left: -68px; width: 136px; }\n        .gear-inner .bar:nth-child(2) { transform: rotate(60deg); }\n        .gear-inner .bar:nth-child(3) { transform: rotate(120deg); }\n        .gear-inner .bar:nth-child(4) { transform: rotate(90deg); }\n        .gear-inner .bar:nth-child(5) { transform: rotate(30deg); }\n        .gear-inner .bar:nth-child(6) { transform: rotate(150deg); }\n        \n    <\/style>\n<\/head>\n<body>\n    <div class=\"card-mosaic-wrapper\">\n\n        \n<div class=\"card-wrapper\">\n            <div class=\"game-card-container\">\n                \n<div class=\"game-card shadow-xl\">\n\n                    \n<div class=\"thumbnail-area\">\n                        \n<video \n                            id=\"gameVideo\"\n                            src=\"https:\/\/raw.githubusercontent.com\/Baykenn\/site-assets\/1c0e0dbad210dd0bace246d9b9218ca4afbfe889\/maze%20it%20out\/MazeItOut_trailer_30s_01_steam_outnow_1920x1080_mixed_eng.mp4\" \n                            poster=\"https:\/\/i.imgur.com\/zST32AA.png\" \n                            alt=\"Bande-annonce du jeu 'Maze It Out'\" \n                            class=\"thumbnail-video\"\n                            loop\n                            muted\n                            playsinline\n                            preload=\"auto\"\n                            tabindex=\"-1\"\n                        >\n                            Votre navigateur ne supporte pas l&#8217;\u00e9l\u00e9ment vid\u00e9o.\n                        <\/video>\n                    <\/div>\n\n                    \n<div class=\"content\">\n                        \n                        \n<div class=\"content-top\"> \n                            \n<div class=\"text-collapsible\">\n                                \n<h2 class=\"text-3xl text-white mb-1\">Maze It Out<\/h2>\n                                \n                                \n<p class=\"text-gray-300 mb-6 text-lg italic\">\n                                    A unique maze-based puzzle game inspired by old school tower defense, set it a relaxing atmosphere with charming music and hand drawn graphics.\n                                <\/p>\n                            <\/div>\n                        <\/div>\n                        \n                        \n<div class=\"flex flex-col space-y-3 md:flex-row md:space-y-0 md:space-x-3\">\n                            \n                            \n<a href=\"https:\/\/store.steampowered.com\/app\/3899320\/Maze_It_Out\/\" target=\"_blank\" rel=\"noopener noreferrer\" class=\"button-base steam-button\">\n                                \n<svg class=\"steam-icon\" fill=\"currentColor\" viewBox=\"0 0 32 32\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n                                    <title>steam<\/title>\n                                    <path d=\"M18.102 12.129c0-0 0-0 0-0.001 0-1.564 1.268-2.831 2.831-2.831s2.831 1.268 2.831 2.831c0 1.564-1.267 2.831-2.831 2.831-0 0-0 0-0.001 0h0c-0 0-0 0-0.001 0-1.563 0-2.83-1.267-2.83-2.83 0-0 0-0 0-0.001v0zM24.691 12.135c0-2.081-1.687-3.768-3.768-3.768s-3.768 1.687-3.768 3.768c0 2.081 1.687 3.768 3.768 3.768v0c2.080-0.003 3.765-1.688 3.768-3.767v-0zM10.427 23.76l-1.841-0.762c0.524 1.078 1.611 1.808 2.868 1.808 1.317 0 2.448-0.801 2.93-1.943l0.008-0.021c0.155-0.362 0.246-0.784 0.246-1.226 0-1.757-1.424-3.181-3.181-3.181-0.405 0-0.792 0.076-1.148 0.213l0.022-0.007 1.903 0.787c0.852 0.364 1.439 1.196 1.439 2.164 0 1.296-1.051 2.347-2.347 2.347-0.324 0-0.632-0.066-0.913-0.184l0.015 0.006zM15.974 1.004c-7.857 0.001-14.301 6.046-14.938 13.738l-0.004 0.054 8.038 3.322c0.668-0.462 1.495-0.737 2.387-0.737 0.001 0 0.002 0 0.002 0h-0c0.079 0 0.156 0.005 0.235 0.008l3.575-5.176v-0.074c0.003-3.12 2.533-5.648 5.653-5.648 3.122 0 5.653 2.531 5.653 5.653s-2.531 5.653-5.653 5.653h-0.131l-5.094 3.638c0 0.065 0.005 0.131 0.005 0.199 0 0.001 0 0.002 0 0.003 0 2.342-1.899 4.241-4.241 4.241-2.047 0-3.756-1.451-4.153-3.38l-0.005-0.027-5.755-2.383c1.841 6.345 7.601 10.905 14.425 10.905 8.281 0 14.994-6.713 14.994-14.994s-6.713-14.994-14.994-14.994c-0 0-0.001 0-0.001 0h0z\"><\/path>\n                                <\/svg>\n                                Steam\n                            <\/a>\n\n                            \n<a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\" class=\"button-base press-kit-button\">\n                                \n<svg class=\"download-icon\" fill=\"none\" viewBox=\"0 0 24 24\" id=\"download-alt\" data-name=\"Flat Line\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n                                    <polyline id=\"primary\" points=\"8 12 12 16 16 12\" style=\"fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2;\"><\/polyline>\n                                    <path id=\"primary-2\" data-name=\"primary\" d=\"M5,21H19M12,3V16\" style=\"fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2;\"><\/path>\n                                <\/svg>\n                                Press Kit\n                            <\/a>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n        \n        \n<div class=\"card-wrapper\">\n            \n<div class=\"working-card\">\n                \n                <!-- NOUVEAU CONTENEUR 16:9 POUR LE CORPS DE LA CARTE 2 -->\n                <div class=\"card-2-body-16-9\">\n                    <div class=\"content-absolute\">\n                        \n                        \n                        <div class=\"gearbox\">\n                            <div class=\"gear-system-wrapper\">\n                                <div class=\"gear one\"><div class=\"gear-inner\"><div class=\"bar\"><\/div><div class=\"bar\"><\/div><div class=\"bar\"><\/div><div class=\"bar\"><\/div><div class=\"bar\"><\/div><div class=\"bar\"><\/div><\/div><\/div>\n                                <div class=\"gear two large\"><div class=\"gear-inner\"><div class=\"bar\"><\/div><div class=\"bar\"><\/div><div class=\"bar\"><\/div><div class=\"bar\"><\/div><div class=\"bar\"><\/div><div class=\"bar\"><\/div><\/div><\/div>\n                                <div class=\"gear three\"><div class=\"gear-inner\"><div class=\"bar\"><\/div><div class=\"bar\"><\/div><div class=\"bar\"><\/div><div class=\"bar\"><\/div><div class=\"bar\"><\/div><div class=\"bar\"><\/div><\/div><\/div>\n                                <div class=\"gear four\"><div class=\"gear-inner\"><div class=\"bar\"><\/div><div class=\"bar\"><\/div><div class=\"bar\"><\/div><div class=\"bar\"><\/div><div class=\"bar\"><\/div><div class=\"bar\"><\/div><\/div><\/div>\n                            <\/div>\n                            <div class=\"overlay\"><\/div>\n                        <\/div>\n                        \n                        \n                        <div class=\"hamster-content-centered\">\n\n                            \n                            <div class=\"wheel-and-hamster\">\n                                <div class=\"wheel\"><\/div>\n                                <div class=\"hamster\">\n                                    <div class=\"hamster__body\">\n                                        <div class=\"hamster__head\">\n                                            <div class=\"hamster__ear\"><\/div>\n                                            <div class=\"hamster__eye\"><\/div>\n                                            <div class=\"hamster__nose\"><\/div>\n                                        <\/div>\n                                        <div class=\"hamster__limb--fr\"><\/div>\n                                        <div class=\"hamster__limb--fl\"><\/div>\n                                        <div class=\"hamster__limb--br\"><\/div>\n                                        <div class=\"hamster__limb--bl\"><\/div>\n                                        <div class=\"hamster__tail\"><\/div>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"spoke\"><\/div>\n                            <\/div>\n                            \n                            \n                            <!-- CORRECTION TAILWIND: mt-10 est r\u00e9duit sur mobile via le CSS -->\n                            <p class=\"mt-10 text-sm font-extralight uppercase text-white\/90 wide-text\">\n                                WORKING ON IT<span class=\"dot-1\">.<\/span><span class=\"dot-2\">.<\/span><span class=\"dot-3\">.<\/span>\n                            <\/p>\n                        <\/div>\n                    <\/div>\n                <\/div>\n\n                \n                \n<div class=\"banderole-2\">\n                    \n<span class=\"text-center font-bold tracking-wider\">NEXT GAME<\/span>\n                <\/div>\n            <\/div>\n        <\/div>\n\n    <\/div>\n\n    <script>\n    document.addEventListener('DOMContentLoaded', () => {\n        \/\/ --- Logic for Card 1 (Maze It Out Video Playback) ---\n        const card1 = document.querySelector('.game-card');\n        const video = document.getElementById('gameVideo');\n\n        if (card1 && video) {\n            video.muted = true;\n            video.load();\n\n            \/\/ Handle video play\/pause on hover (for desktop)\n            card1.addEventListener('mouseenter', () => {\n                video.currentTime = 0;\n                video.play().catch(error => {\n                    \/\/ Suppress autoplay errors on some browsers\n                    console.warn(\"Video playback failed on hover:\", error);\n                });\n            });\n\n            card1.addEventListener('mouseleave', () => {\n                video.pause();\n                video.currentTime = 0; \n                video.load(); \n            });\n            \n            \/\/ --- Touch\/Tap interaction fallback for mobile (optional for video) ---\n            card1.addEventListener('click', (event) => {\n                \/\/ Prevent click if clicking a button inside the card\n                if (event.target.closest('a') || event.target.closest('button')) {\n                    return;\n                }\n\n                \/\/ If the video is paused, play it and set a temporary state (optional for visual feedback)\n                if (video.paused) {\n                    video.play().catch(error => console.warn(\"Video playback failed on tap:\", error));\n                } else {\n                    video.pause();\n                    video.currentTime = 0; \n                }\n            });\n        }\n    });\n    <\/script>\n<\/body>\n<\/html>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Our Games &#8211; Glowing Divider Our Games Game Showcase Mosaic Votre navigateur ne supporte pas l&#8217;\u00e9l\u00e9ment vid\u00e9o. Maze It Out [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"site-sidebar-layout":"no-sidebar","site-content-layout":"plain-container","ast-site-content-layout":"normal-width-container","site-content-style":"boxed","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"disabled","ast-breadcrumbs-content":"","ast-featured-img":"disabled","footer-sml-layout":"","theme-transparent-header-meta":"enabled","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"class_list":["post-13","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Limit Test Games<\/title>\n<meta name=\"description\" content=\"We are a small indie games studio. Welcome, welcome : )\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/limittestgames.com\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Limit Test Games\" \/>\n<meta property=\"og:description\" content=\"Small indie game studio just limit testing.\" \/>\n<meta property=\"og:url\" content=\"http:\/\/limittestgames.com\/\" \/>\n<meta property=\"og:site_name\" content=\"Limit Test Games\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-12T08:49:24+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/limittestgames.com\/wp-content\/uploads\/2025\/11\/ltg_logo.png\" \/>\n\t<meta property=\"og:image:width\" content=\"469\" \/>\n\t<meta property=\"og:image:height\" content=\"357\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@Bayken77\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"http:\/\/limittestgames.com\/\",\"url\":\"http:\/\/limittestgames.com\/\",\"name\":\"Limit Test Games\",\"isPartOf\":{\"@id\":\"http:\/\/limittestgames.com\/#website\"},\"datePublished\":\"2025-11-05T19:51:26+00:00\",\"dateModified\":\"2025-11-12T08:49:24+00:00\",\"description\":\"We are a small indie games studio. Welcome, welcome : )\",\"breadcrumb\":{\"@id\":\"http:\/\/limittestgames.com\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/limittestgames.com\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/limittestgames.com\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/limittestgames.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Our Games\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/limittestgames.com\/#website\",\"url\":\"http:\/\/limittestgames.com\/\",\"name\":\"Limit Test Games\",\"description\":\"We are a small indie game studio like many other.\",\"publisher\":{\"@id\":\"http:\/\/limittestgames.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/limittestgames.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/limittestgames.com\/#organization\",\"name\":\"Limit Test Games\",\"url\":\"http:\/\/limittestgames.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/limittestgames.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/limittestgames.com\/wp-content\/uploads\/2025\/11\/ltg_logo.png\",\"contentUrl\":\"https:\/\/limittestgames.com\/wp-content\/uploads\/2025\/11\/ltg_logo.png\",\"width\":469,\"height\":357,\"caption\":\"Limit Test Games\"},\"image\":{\"@id\":\"http:\/\/limittestgames.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/Bayken77\",\"https:\/\/discord.gg\/5FeWPpzAQ3\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Limit Test Games","description":"We are a small indie games studio. Welcome, welcome : )","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"http:\/\/limittestgames.com\/","og_locale":"en_US","og_type":"article","og_title":"Limit Test Games","og_description":"Small indie game studio just limit testing.","og_url":"http:\/\/limittestgames.com\/","og_site_name":"Limit Test Games","article_modified_time":"2025-11-12T08:49:24+00:00","og_image":[{"width":469,"height":357,"url":"http:\/\/limittestgames.com\/wp-content\/uploads\/2025\/11\/ltg_logo.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_site":"@Bayken77","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"http:\/\/limittestgames.com\/","url":"http:\/\/limittestgames.com\/","name":"Limit Test Games","isPartOf":{"@id":"http:\/\/limittestgames.com\/#website"},"datePublished":"2025-11-05T19:51:26+00:00","dateModified":"2025-11-12T08:49:24+00:00","description":"We are a small indie games studio. Welcome, welcome : )","breadcrumb":{"@id":"http:\/\/limittestgames.com\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/limittestgames.com\/"]}]},{"@type":"BreadcrumbList","@id":"http:\/\/limittestgames.com\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/limittestgames.com\/"},{"@type":"ListItem","position":2,"name":"Our Games"}]},{"@type":"WebSite","@id":"http:\/\/limittestgames.com\/#website","url":"http:\/\/limittestgames.com\/","name":"Limit Test Games","description":"We are a small indie game studio like many other.","publisher":{"@id":"http:\/\/limittestgames.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/limittestgames.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/limittestgames.com\/#organization","name":"Limit Test Games","url":"http:\/\/limittestgames.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/limittestgames.com\/#\/schema\/logo\/image\/","url":"https:\/\/limittestgames.com\/wp-content\/uploads\/2025\/11\/ltg_logo.png","contentUrl":"https:\/\/limittestgames.com\/wp-content\/uploads\/2025\/11\/ltg_logo.png","width":469,"height":357,"caption":"Limit Test Games"},"image":{"@id":"http:\/\/limittestgames.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/Bayken77","https:\/\/discord.gg\/5FeWPpzAQ3"]}]}},"_links":{"self":[{"href":"https:\/\/limittestgames.com\/index.php\/wp-json\/wp\/v2\/pages\/13","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/limittestgames.com\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/limittestgames.com\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/limittestgames.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/limittestgames.com\/index.php\/wp-json\/wp\/v2\/comments?post=13"}],"version-history":[{"count":105,"href":"https:\/\/limittestgames.com\/index.php\/wp-json\/wp\/v2\/pages\/13\/revisions"}],"predecessor-version":[{"id":332,"href":"https:\/\/limittestgames.com\/index.php\/wp-json\/wp\/v2\/pages\/13\/revisions\/332"}],"wp:attachment":[{"href":"https:\/\/limittestgames.com\/index.php\/wp-json\/wp\/v2\/media?parent=13"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}