{"id":2,"date":"2025-11-04T14:54:23","date_gmt":"2025-11-04T14:54:23","guid":{"rendered":"http:\/\/limittestgames.com\/?page_id=2"},"modified":"2025-11-08T22:36:44","modified_gmt":"2025-11-08T22:36:44","slug":"about","status":"publish","type":"page","link":"https:\/\/limittestgames.com\/index.php\/about\/","title":{"rendered":"About"},"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>About Us &#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 - Text changed to \"About Us\" -->\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            About Us\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=\"height:59px\" 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>Limit Test Games Co-founder Cards<\/title>\n    \n    <!-- Load Tailwind CSS --><script src=\"https:\/\/cdn.tailwindcss.com\"><\/script>\n    \n    <style>\n        @import url('https:\/\/fonts.googleapis.com\/css2?family=Inter:wght@100..900&display=swap');\n        html, body {\n            font-family: 'Inter', sans-serif;\n            background-color: transparent; \/* Set to transparent *\/\n        }\n\n        \/* --- GLOBAL CARD STYLES --- *\/\n        .card-glow {\n            box-shadow: \n                0 0 0 1px rgba(32, 201, 151, 0.8),    \/* Thin, sharp teal outline *\/\n                0 0 15px 5px rgba(32, 201, 151, 0.3); \/* Softer, wider teal glow *\/\n            background-color: transparent;\n        }\n\n        .slide-up-container {\n            position: absolute;\n            bottom: 0;\n            left: 0;\n            right: 0;\n            overflow: hidden;\n            height: 80px;\n            transition: height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); \n        }\n\n        .card-glow:hover .slide-up-container {\n            height: 160px;\n        }\n\n        .content-wrapper {\n            display: flex;\n            align-items: flex-end;\n            justify-content: space-between;\n            width: 100%;\n            padding: 8px;\n            position: absolute;\n            bottom: 0;\n            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);\n        }\n\n        .card-glow:hover .content-wrapper {\n             transform: translateY(-60px);\n        }\n\n        .contact-icons {\n            opacity: 0;\n            transform: translateY(10px);\n            transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);\n        }\n\n        .card-glow:hover .contact-icons {\n            opacity: 1;\n            transform: translateY(0);\n        }\n\n        \/* Image blur, grayscale, and scale on hover - Applied to the image or SVG *\/\n        .card-image-content { \n            filter: grayscale(100%);\n            transform: scale(1);\n            transition: filter 0.5s ease-out, transform 0.5s ease-out; \n        }\n\n        .card-glow:hover .card-image-content {\n            filter: grayscale(100%) blur(7px);\n            transform: scale(0.95);\n        }\n\n        .image-overlay {\n            position: absolute;\n            inset: 0;\n            background-color: rgba(0, 0, 0, 0.4);\n            opacity: 0;\n            transition: opacity 0.5s ease-out; \n        }\n\n        .card-glow:hover .image-overlay {\n            opacity: 1;\n        }\n    <\/style>\n<\/head>\n<body>\n\n    <!-- Removed min-h-screen to collapse vertical space -->\n    <div class=\"flex flex-col items-center justify-center pt-8 pb-8\"> \n        <!-- Main Container: Centers both cards and manages the spacing (gap-8) -->\n        <div class=\"flex flex-col items-center justify-center sm:flex-row sm:gap-8 w-full\">\n            \n            <!-- === CARD 1: PAOLO PELLEGRINO (Art Director) - FRENCH FLAG === -->\n            <div class=\"w-[280px] h-[300px] relative rounded-2xl overflow-hidden card-glow group mb-8 sm:mb-0\">\n                \n                <!-- Flag Icon (French Flag) -->\n                <div class=\"absolute top-0 right-0 z-20 pt-1.5 pr-1.5 pb-1 pl-2 bg-gray-900\/50 rounded-bl-lg backdrop-blur-md shadow-xl border-l border-b border-teal-500\/50\">\n                    <!-- France Flag SVG -->\n                    <svg width=\"20\" height=\"20\" viewBox=\"0 0 36 36\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"rounded-sm\">\n                        <path fill=\"#ED2939\" d=\"M36 27a4 4 0 0 1-4 4h-8V5h8a4 4 0 0 1 4 4v18z\"><\/path>\n                        <path fill=\"#002495\" d=\"M4 5a4 4 0 0 0-4 4v18a4 4 0 0 0 4 4h8V5H4z\"><\/path>\n                        <path fill=\"#EEE\" d=\"M12 5h12v26H12z\"><\/path>\n                    <\/svg>\n                <\/div>\n                \n                <!-- Image Wrapper -->\n                <div class=\"w-full h-full flex items-center justify-center relative backdrop-blur-lg rounded-2xl overflow-hidden\">\n                    \n                    <!-- Profile Image -->\n                    <img decoding=\"async\"\n                        src=\"https:\/\/raw.githubusercontent.com\/Baykenn\/site-assets\/fbbde65af7999c6068d490426c306150af5743df\/Paolo_ID.jpg\" \n                        alt=\"Paolo Pellegrino\"\n                        class=\"w-full h-full object-cover card-image-content transform-gpu scale-100\"\n                        onerror=\"this.onerror=null; this.src='https:\/\/placehold.co\/280x300\/1F2937\/FFFFFF?text=P.P.'\"\n                    \/>\n                    \n                    <div class=\"absolute inset-0 bg-black\/30\"><\/div> \n                    <div class=\"image-overlay\"><\/div>\n                    <div class=\"absolute inset-0 rounded-2xl\"\n                        style=\"background: radial-gradient(circle at center, transparent 40%, rgba(32, 201, 151, 0.3) 70%, rgba(64, 224, 208, 0.3) 100%);\"\n                    ><\/div>\n                <\/div>\n\n                <!-- Text Slide-Up Container -->\n                <div class=\"slide-up-container\">\n                    <div class=\"content-wrapper\">\n                        <div class=\"flex-1 p-2 pt-3 pb-1.5 flex flex-col rounded-xl backdrop-blur-lg bg-gray-50\/10 text-gray-200 font-medium font-mono mr-2 shadow-lg border border-teal-500\/30\">\n                            <span class=\"text-lg font-bold leading-tight text-white\">Paolo Pellegrino<\/span>\n                            <span class=\"text-xs text-teal-300\">Art Direction<\/span>\n                            <span class=\"text-[10px] text-gray-300\">Co-founder<\/span>\n                        <\/div>\n                        \n                        <!-- Contact Icons -->\n                        <div class=\"flex flex-col items-center gap-2 mb-1 contact-icons\">\n                            <!-- Email Icon (Lucide Mail) -->\n                            <a href=\"mailto:paolo@limittestgames.com\" class=\"w-8 h-8 flex items-center justify-center rounded-full backdrop-blur-lg bg-gray-50\/20 cursor-pointer transition-all duration-300 hover:bg-teal-400\/50 hover:shadow-xl hover:scale-105\">\n                              <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"text-white\/80\"><path d=\"M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z\"><\/path><polyline points=\"22,6 12,13 2,6\"><\/polyline><\/svg>\n                            <\/a>\n                            \n                            <!-- LinkedIn Icon -->\n                            <a href=\"https:\/\/www.linkedin.com\/in\/paolo-pellegrino-30963b67\/\" target=\"_blank\" class=\"w-8 h-8 flex items-center justify-center rounded-full backdrop-blur-lg bg-gray-50\/20 cursor-pointer transition-all duration-300 hover:bg-teal-400\/50 hover:shadow-xl hover:scale-105\">\n                              <svg fill=\"currentColor\" width=\"18\" height=\"18\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"-271 283.9 256 235.1\" class=\"text-white\/80\"><g><rect x=\"-264.4\" y=\"359.3\" width=\"49.9\" height=\"159.7\"\/><path d=\"M-240.5,283.9c-18.4,0-30.5,11.9-30.5,27.7c0,15.5,11.7,27.7,29.8,27.7h0.4c18.8,0,30.5-12.3,30.4-27.7 C-210.8,295.8-222.1,283.9-240.5,283.9z\"\/><path d=\"M-78.2,357.8c-28.6,0-46.5,15.6-49.8,26.6v-25.1h-56.1c0.7,13.3,0,159.7,0,159.7h56.1v-86.3c0-4.9-0.2-9.7,1.2-13.1 c3.8-9.6,12.1-19.6,27-19.6c19.5,0,28.3,14.8,28.3,36.4V519h56.6v-88.8C-14.9,380.8-42.7,357.8-78.2,357.8z\"\/><\/g><\/svg>\n                            <\/a>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n\n            <!-- === CARD 2: LUCAS SILVE (Programmer) - WITH IMAGE === -->\n            <div class=\"w-[280px] h-[300px] relative rounded-2xl overflow-hidden card-glow group\">\n            \n                <!-- Flag Icon -->\n                <div class=\"absolute top-0 right-0 z-20 pt-1.5 pr-1.5 pb-1 pl-2 bg-gray-900\/50 rounded-bl-lg backdrop-blur-md shadow-xl border-l border-b border-teal-500\/50\">\n                    <!-- French Flag SVG -->\n                    <svg width=\"20\" height=\"20\" viewBox=\"0 0 36 36\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"rounded-sm\">\n                        <path fill=\"#ED2939\" d=\"M36 27a4 4 0 0 1-4 4h-8V5h8a4 4 0 0 1 4 4v18z\"><\/path>\n                        <path fill=\"#002495\" d=\"M4 5a4 4 0 0 0-4 4v18a4 4 0 0 0 4 4h8V5H4z\"><\/path>\n                        <path fill=\"#EEE\" d=\"M12 5h12v26H12z\"><\/path>\n                    <\/svg>\n                <\/div>\n                \n                <!-- Image Wrapper -->\n                <div class=\"w-full h-full flex items-center justify-center relative backdrop-blur-lg rounded-2xl overflow-hidden\">\n                    \n                    <!-- Profile Image -->\n                    <img decoding=\"async\"\n                        src=\"https:\/\/raw.githubusercontent.com\/Baykenn\/site-assets\/46ae06845c8a5416614bbed9fe3aa61206fa14e6\/Lucas_ID-standard-scale-1_00x.jpg\" \n                        alt=\"Lucas Silve\"\n                        class=\"w-full h-full object-cover card-image-content transform-gpu scale-100\"\n                        onerror=\"this.onerror=null; this.src='https:\/\/placehold.co\/280x300\/1F2937\/FFFFFF?text=L.S.'\"\n                    \/>\n                    \n                    <div class=\"absolute inset-0 bg-black\/30\"><\/div> \n                    <div class=\"image-overlay\"><\/div>\n                    <div class=\"absolute inset-0 rounded-2xl\"\n                        style=\"background: radial-gradient(circle at center, transparent 40%, rgba(32, 201, 151, 0.3) 70%, rgba(64, 224, 208, 0.3) 100%);\"\n                    ><\/div>\n                <\/div>\n\n                <!-- Text Slide-Up Container -->\n                <div class=\"slide-up-container\">\n                    <div class=\"content-wrapper\">\n                        <div class=\"flex-1 p-2 pt-3 pb-1.5 flex flex-col rounded-xl backdrop-blur-lg bg-gray-50\/10 text-gray-200 font-medium font-mono mr-2 shadow-lg border border-teal-500\/30\">\n                            <span class=\"text-lg font-bold leading-tight text-white\">Lucas Silve<\/span>\n                            <span class=\"text-xs text-teal-300\">Programmer<\/span>\n                            <span class=\"text-[10px] text-gray-300\">Co-founder<\/span>\n                        <\/div>\n                        \n                        <!-- Contact Icons -->\n                        <div class=\"flex flex-col items-center gap-2 mb-1 contact-icons\">\n                            <!-- Email Icon (Updated href) -->\n                            <a href=\"mailto:lucas@limittestgames.com\" class=\"w-8 h-8 flex items-center justify-center rounded-full backdrop-blur-lg bg-gray-50\/20 cursor-pointer transition-all duration-300 hover:bg-teal-400\/50 hover:shadow-xl hover:scale-105\">\n                              <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"text-white\/80\"><path d=\"M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z\"><\/path><polyline points=\"22,6 12,13 2,6\"><\/polyline><\/svg>\n                            <\/a>\n                            \n                            <!-- LinkedIn Icon (Updated href) -->\n                            <a href=\"https:\/\/www.linkedin.com\/in\/lucas-silve-441425153\/\" target=\"_blank\" class=\"w-8 h-8 flex items-center justify-center rounded-full backdrop-blur-lg bg-gray-50\/20 cursor-pointer transition-all duration-300 hover:bg-teal-400\/50 hover:shadow-xl hover:scale-105\">\n                              <svg fill=\"currentColor\" width=\"18\" height=\"18\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"-271 283.9 256 235.1\" class=\"text-white\/80\"><g><rect x=\"-264.4\" y=\"359.3\" width=\"49.9\" height=\"159.7\"\/><path d=\"M-240.5,283.9c-18.4,0-30.5,11.9-30.5,27.7c0,15.5,11.7,27.7,29.8,27.7h0.4c18.8,0,30.5-12.3,30.4-27.7 C-210.8,295.8-222.1,283.9-240.5,283.9z\"\/><path d=\"M-78.2,357.8c-28.6,0-46.5,15.6-49.8,26.6v-25.1h-56.1c0.7,13.3,0,159.7,0,159.7h56.1v-86.3c0-4.9-0.2-9.7,1.2-13.1 c3.8-9.6,12.1-19.6,27-19.6c19.5,0,28.3,14.8,28.3,36.4V519h56.6v-88.8C-14.9,380.8-42.7,357.8-78.2,357.8z\"\/><\/g><\/svg>\n                            <\/a>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/body>\n<\/html>\n\n\n\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\">\n<p class=\"has-text-align-center has-medium-font-size\" style=\"letter-spacing:2px\">The genesis of <strong>Limit Test Games<\/strong> is rooted in a lifelong friendship. Founded by two friends, our studio thrives on complementary skills. As a mathematician, Lucas brings analytical precision and complex logic to our projects, while my background in art ensures a strong focus on creativity and visual design.<br><br>-Paolo<\/p>\n<\/div>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>About Us &#8211; Glowing Divider About Us Limit Test Games Co-founder Cards Paolo Pellegrino Art Direction Co-founder Lucas Silve Programmer [&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":"default","site-content-layout":"","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":"","footer-sml-layout":"","theme-transparent-header-meta":"","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-2","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>About - Limit Test Games<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/limittestgames.com\/index.php\/about\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"About - Limit Test Games\" \/>\n<meta property=\"og:description\" content=\"About Us &#8211; Glowing Divider About Us Limit Test Games Co-founder Cards Paolo Pellegrino Art Direction Co-founder Lucas Silve Programmer [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/limittestgames.com\/index.php\/about\/\" \/>\n<meta property=\"og:site_name\" content=\"Limit Test Games\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-08T22:36:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/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<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/limittestgames.com\/index.php\/about\/\",\"url\":\"https:\/\/limittestgames.com\/index.php\/about\/\",\"name\":\"About - Limit Test Games\",\"isPartOf\":{\"@id\":\"http:\/\/limittestgames.com\/#website\"},\"datePublished\":\"2025-11-04T14:54:23+00:00\",\"dateModified\":\"2025-11-08T22:36:44+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/limittestgames.com\/index.php\/about\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/limittestgames.com\/index.php\/about\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/limittestgames.com\/index.php\/about\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/limittestgames.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"About\"}]},{\"@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":"About - Limit Test Games","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":"https:\/\/limittestgames.com\/index.php\/about\/","og_locale":"en_US","og_type":"article","og_title":"About - Limit Test Games","og_description":"About Us &#8211; Glowing Divider About Us Limit Test Games Co-founder Cards Paolo Pellegrino Art Direction Co-founder Lucas Silve Programmer [&hellip;]","og_url":"https:\/\/limittestgames.com\/index.php\/about\/","og_site_name":"Limit Test Games","article_modified_time":"2025-11-08T22:36:44+00:00","og_image":[{"width":469,"height":357,"url":"https:\/\/limittestgames.com\/wp-content\/uploads\/2025\/11\/ltg_logo.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_site":"@Bayken77","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/limittestgames.com\/index.php\/about\/","url":"https:\/\/limittestgames.com\/index.php\/about\/","name":"About - Limit Test Games","isPartOf":{"@id":"http:\/\/limittestgames.com\/#website"},"datePublished":"2025-11-04T14:54:23+00:00","dateModified":"2025-11-08T22:36:44+00:00","breadcrumb":{"@id":"https:\/\/limittestgames.com\/index.php\/about\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/limittestgames.com\/index.php\/about\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/limittestgames.com\/index.php\/about\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/limittestgames.com\/"},{"@type":"ListItem","position":2,"name":"About"}]},{"@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\/2","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=2"}],"version-history":[{"count":27,"href":"https:\/\/limittestgames.com\/index.php\/wp-json\/wp\/v2\/pages\/2\/revisions"}],"predecessor-version":[{"id":261,"href":"https:\/\/limittestgames.com\/index.php\/wp-json\/wp\/v2\/pages\/2\/revisions\/261"}],"wp:attachment":[{"href":"https:\/\/limittestgames.com\/index.php\/wp-json\/wp\/v2\/media?parent=2"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}