{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/9rhBPUZttCbLCWqJEL42/YouTube.js", "ssg:https://framerusercontent.com/modules/sif07krKn2p9OjwTRgil/WsxkEp7krCwvi3rXEwp7/NDw9Ajvkk.js", "ssg:https://framerusercontent.com/modules/bwLkENeYdtNELJ7GXIWI/LfGrU3TNZCIBVMPuDEBI/r0exjf4UH.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState,useSyncExternalStore}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));let _isBot=null;function isBot(){if(_isBot===null)_isBot=/bot|-Google|Google-|yandex|ia_archiver/iu.test(navigator.userAgent);return _isBot;}const emptySubscribe=()=>()=>{};/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);// https://tkdodo.eu/blog/avoiding-hydration-mismatches-with-use-sync-external-store#usesyncexternalstore\nconst iframeIsDefaultVisible=useSyncExternalStore(emptySubscribe,// bots should not have display:none on the iframe\n()=>isBot(),()=>false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\");// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(// bots shouldn't autoplay the video but see the iframe in the DOM\n!iframeIsDefaultVisible&&(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo)){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${thumbnailURL}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{title:title||\"Youtube Video\",style:{...videoStyle,display:showVideo||iframeIsDefaultVisible?undefined:\"none\"},src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp,loading:\"lazy\"}):null,showVideo||iframeIsDefaultVisible?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicWidth\":\"560\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (be619af)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/9rhBPUZttCbLCWqJEL42/YouTube.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/GxQAa4gsKaracFfevVLz/tAZJzrDnmrciu7RiXcdH/FS8B9kqbx.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/4DyvRapPZJxl1sO1f4Bf/q7xNq3xL945YdJBiuRQN/naMC_BC5J.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/BUHhF8CXM9jkCihVy9EH/ac2Mj3bEVd4AcHFEwdp4/rvF9BOSmm.js\";const YouTubeFonts=getFonts(YouTube);const cycleOrder=[\"Q5fzKvfWB\",\"cToArucvP\"];const serializationHash=\"framer-i8jv4\";const variantClassNames={cToArucvP:\"framer-v-1lakdwv\",Q5fzKvfWB:\"framer-v-1a7wgul\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition2};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"Q5fzKvfWB\",\"Variant 2\":\"cToArucvP\"};const getProps=({description,gameLink,genre,height,id,image,title,width,yTLink,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4;return{...props,D7swcebve:(_ref=genre!==null&&genre!==void 0?genre:props.D7swcebve)!==null&&_ref!==void 0?_ref:\"3D Idle City Building Clicker\",I9kRfKt6k:(_ref1=yTLink!==null&&yTLink!==void 0?yTLink:props.I9kRfKt6k)!==null&&_ref1!==void 0?_ref1:\"https://www.youtube.com/embed/HLTmMou8mlM?si=Wxl2ILQ01_jyrw3X&amp;controls=0\",nIkRL53tz:gameLink!==null&&gameLink!==void 0?gameLink:props.nIkRL53tz,Om94drfM5:(_ref2=title!==null&&title!==void 0?title:props.Om94drfM5)!==null&&_ref2!==void 0?_ref2:\"Chill City\",s8s6wAjJs:(_ref3=description!==null&&description!==void 0?description:props.s8s6wAjJs)!==null&&_ref3!==void 0?_ref3:\"This game was made in a span of two weeks to test a concept as an MVP\",variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"Q5fzKvfWB\",xvm6tGzRF:image!==null&&image!==void 0?image:props.xvm6tGzRF};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,I9kRfKt6k,xvm6tGzRF,Om94drfM5,D7swcebve,s8s6wAjJs,nIkRL53tz,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Q5fzKvfWB\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"cToArucvP\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"cToArucvP\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1a7wgul\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Q5fzKvfWB\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({cToArucvP:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",...toResponsiveImage(xvm6tGzRF),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-c2vjii\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ixvU1TEKh\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({cToArucvP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||425)-0-569)/2+0+0)),sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(xvm6tGzRF),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-i49t8j-container\",layoutDependency:layoutDependency,layoutId:\"aSN8PlINl-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:20,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"aSN8PlINl\",isMixedBorderRadius:false,isRed:true,layoutId:\"aSN8PlINl\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:I9kRfKt6k,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1j5v3ik\",\"data-styles-preset\":\"rvF9BOSmm\",children:\"Chill City\"})}),className:\"framer-ijiggr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MWkMUwrTI\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:Om94drfM5,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ehvwke\",\"data-styles-preset\":\"naMC_BC5J\",children:\"3D Idle City Building Clicker\"})}),className:\"framer-1wgykuw\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GoxUnI3g1\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:D7swcebve,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17iafp\",\"data-styles-preset\":\"FS8B9kqbx\",children:\"This game was made in a span of two weeks to test a concept as an MVP\"})}),className:\"framer-vsbryd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iDgbavXFV\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:s8s6wAjJs,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xtdqyh\",layoutDependency:layoutDependency,layoutId:\"ieKRVCCfo\",children:/*#__PURE__*/_jsx(Link,{href:nIkRL53tz,nodeId:\"hJc9xDv5h\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1412y66 framer-cwlbrh\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"hJc9xDv5h\",style:{backgroundColor:\"var(--token-37a77ec9-1d85-4aac-aea9-a8ff3a7574cc, rgb(94, 129, 172))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.14764), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14398), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.13793), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.12711), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.10451), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05)\"},whileHover:animation,whileTap:animation1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Read More\"})}),className:\"framer-rfwage\",fonts:[\"GF;Inter-700\"],layoutDependency:layoutDependency,layoutId:\"AhKJ4ajR_\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-i8jv4.framer-cwlbrh, .framer-i8jv4 .framer-cwlbrh { display: block; }\",\".framer-i8jv4.framer-1a7wgul { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: 425px; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: min-content; }\",\".framer-i8jv4 .framer-c2vjii, .framer-i8jv4 .framer-i49t8j-container { align-self: stretch; flex: none; height: 235px; position: relative; width: auto; }\",\".framer-i8jv4 .framer-ijiggr, .framer-i8jv4 .framer-vsbryd { align-self: stretch; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-i8jv4 .framer-1wgykuw { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 400px; word-break: break-word; word-wrap: break-word; }\",\".framer-i8jv4 .framer-xtdqyh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-i8jv4 .framer-1412y66 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: min-content; }\",\".framer-i8jv4 .framer-rfwage { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-i8jv4.framer-1a7wgul, .framer-i8jv4 .framer-xtdqyh, .framer-i8jv4 .framer-1412y66 { gap: 0px; } .framer-i8jv4.framer-1a7wgul > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-i8jv4.framer-1a7wgul > :first-child { margin-top: 0px; } .framer-i8jv4.framer-1a7wgul > :last-child { margin-bottom: 0px; } .framer-i8jv4 .framer-xtdqyh > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-i8jv4 .framer-xtdqyh > :first-child, .framer-i8jv4 .framer-1412y66 > :first-child { margin-left: 0px; } .framer-i8jv4 .framer-xtdqyh > :last-child, .framer-i8jv4 .framer-1412y66 > :last-child { margin-right: 0px; } .framer-i8jv4 .framer-1412y66 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 425\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"],\"constraints\":[null,\"2018px\",null,null]},\"cToArucvP\":{\"layout\":[\"auto\",\"fixed\"],\"constraints\":[null,\"2018px\",null,null]}}}\n * @framerVariables {\"I9kRfKt6k\":\"yTLink\",\"xvm6tGzRF\":\"image\",\"Om94drfM5\":\"title\",\"D7swcebve\":\"genre\",\"s8s6wAjJs\":\"description\",\"nIkRL53tz\":\"gameLink\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerNDw9Ajvkk=withCSS(Component,css,\"framer-i8jv4\");export default FramerNDw9Ajvkk;FramerNDw9Ajvkk.displayName=\"Game Card\";FramerNDw9Ajvkk.defaultProps={height:425,width:400};addPropertyControls(FramerNDw9Ajvkk,{variant:{options:[\"Q5fzKvfWB\",\"cToArucvP\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},I9kRfKt6k:{defaultValue:\"https://www.youtube.com/embed/HLTmMou8mlM?si=Wxl2ILQ01_jyrw3X&amp;controls=0\",placeholder:\"https://www.youtube.com/embed/HLTmMou8mlM?si=Wxl2ILQ01_jyrw3X&amp;controls=0\",title:\"YT Link\",type:ControlType.String},xvm6tGzRF:{title:\"Image\",type:ControlType.ResponsiveImage},Om94drfM5:{defaultValue:\"Chill City\",displayTextArea:false,title:\"Title\",type:ControlType.String},D7swcebve:{defaultValue:\"3D Idle City Building Clicker\",displayTextArea:false,title:\"Genre\",type:ControlType.String},s8s6wAjJs:{defaultValue:\"This game was made in a span of two weeks to test a concept as an MVP\",displayTextArea:true,title:\"Description\",type:ControlType.String},nIkRL53tz:{title:\"Game Link\",type:ControlType.Link}});addFonts(FramerNDw9Ajvkk,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"}]},...YouTubeFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNDw9Ajvkk\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"I9kRfKt6k\\\":\\\"yTLink\\\",\\\"xvm6tGzRF\\\":\\\"image\\\",\\\"Om94drfM5\\\":\\\"title\\\",\\\"D7swcebve\\\":\\\"genre\\\",\\\"s8s6wAjJs\\\":\\\"description\\\",\\\"nIkRL53tz\\\":\\\"gameLink\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"425\",\"framerIntrinsicWidth\":\"400\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"2018px\\\",null,null]},\\\"cToArucvP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"2018px\\\",null,null]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NDw9Ajvkk.map", "// Generated by Framer (be619af)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,PropertyOverrides,ResolveLinks,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,useRouter,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Team from\"#framer/local/canvasComponent/AqAeIVRkm/AqAeIVRkm.js\";import Navigation from\"#framer/local/canvasComponent/i9f3MWADm/i9f3MWADm.js\";import ContactUs from\"#framer/local/canvasComponent/JYSpcmWU5/JYSpcmWU5.js\";import GameCard from\"#framer/local/canvasComponent/NDw9Ajvkk/NDw9Ajvkk.js\";import Footer from\"#framer/local/canvasComponent/QWxnjfC2X/QWxnjfC2X.js\";import metadataProvider from\"#framer/local/webPageMetadata/r0exjf4UH/r0exjf4UH.js\";const NavigationFonts=getFonts(Navigation);const GameCardFonts=getFonts(GameCard);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const TeamFonts=getFonts(Team);const ContactUsFonts=getFonts(ContactUs);const FooterFonts=getFonts(Footer);const breakpoints={hh17CI2we:\"(min-width: 810px) and (max-width: 1199px)\",O6VYYaMpr:\"(min-width: 1200px)\",VJ8ssNVZx:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-FVgYH\";const variantClassNames={hh17CI2we:\"framer-v-i6imat\",O6VYYaMpr:\"framer-v-eq6byk\",VJ8ssNVZx:\"framer-v-q5ro6p\"};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"O6VYYaMpr\",Phone:\"VJ8ssNVZx\",Tablet:\"hh17CI2we\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"O6VYYaMpr\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-FVgYH`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-FVgYH`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const router=useRouter();const elementId=useRouteElementId(\"XCPcivfnn\");const ref2=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"O6VYYaMpr\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-eq6byk\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8c3oxt-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VJ8ssNVZx:{variant:\"x7X7lYyHD\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"nmHuwEDzF\",layoutId:\"nmHuwEDzF\",style:{width:\"100%\"},variant:\"yqB70yxqE\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8tr4he\",\"data-framer-name\":\"2 Columns Text Image\",name:\"2 Columns Text Image\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1y6j3ni\",\"data-framer-appear-id\":\"1y6j3ni\",\"data-framer-name\":\"Stack of 2\",initial:animation1,name:\"Stack of 2\",optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hh17CI2we:{height:287.5,width:\"max((100vw - 115px) / 2, 1px)\",y:164},VJ8ssNVZx:{width:\"calc(100vw - 72px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:425,width:\"400px\",y:114,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qxgvl-container\",children:/*#__PURE__*/_jsx(GameCard,{D7swcebve:\"10M+ Hypercasual | Word Puzzle\",height:\"100%\",I9kRfKt6k:\"https://youtu.be/Hj2WIBN1zd0\",id:\"jh9zeIaLy\",layoutId:\"jh9zeIaLy\",nIkRL53tz:\"https://play.google.com/store/apps/details?id=com.peoplefun.wordsearch\",Om94drfM5:\"Wordscapes Search: Word Games\",s8s6wAjJs:\"All rights are reserved by PeopleFun\",style:{height:\"100%\",width:\"100%\"},variant:\"Q5fzKvfWB\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hh17CI2we:{height:287.5,width:\"max((100vw - 115px) / 2, 1px)\",y:164},VJ8ssNVZx:{width:\"calc(100vw - 72px)\",y:549}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:425,width:\"400px\",y:114,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dq616m-container\",children:/*#__PURE__*/_jsx(GameCard,{D7swcebve:\"5M+ Hypercasual | Puzzle-Game\",height:\"100%\",I9kRfKt6k:\"https://www.youtube.com/watch?v=3X-tw6maXZY\",id:\"dNlplBDoG\",layoutId:\"dNlplBDoG\",nIkRL53tz:\"https://play.google.com/store/apps/details?id=com.murka.braindoku.sudoku.block.puzzle\",Om94drfM5:\"Braindoku: Sudoku Block Puzzle\",s8s6wAjJs:\"All rights are reserved by Murka Games Limited\",style:{height:\"100%\",width:\"100%\"},variant:\"Q5fzKvfWB\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-59rjnn\",\"data-framer-appear-id\":\"59rjnn\",\"data-framer-name\":\"Stack of 2\",initial:animation1,name:\"Stack of 2\",optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hh17CI2we:{height:287.5,width:\"max((100vw - 115px) / 2, 1px)\",y:576.5},VJ8ssNVZx:{width:\"calc(100vw - 72px)\",y:999}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:425,width:\"400px\",y:564,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vdv9lm-container\",children:/*#__PURE__*/_jsx(GameCard,{D7swcebve:\"1M+ Hypercasual | Word Puzzle\",height:\"100%\",I9kRfKt6k:\"https://youtu.be/P1Pmk-JOeFY\",id:\"oORZBsvqk\",layoutId:\"oORZBsvqk\",nIkRL53tz:\"https://play.google.com/store/apps/details?id=com.murka.word.wordelicious.crossword\",Om94drfM5:\"Wordelicious - Fun Word Puzzle\",s8s6wAjJs:\"All rights are reserved by Murka Games Limited\",style:{height:\"100%\",width:\"100%\"},variant:\"Q5fzKvfWB\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hh17CI2we:{height:287.5,width:\"max((100vw - 115px) / 2, 1px)\",y:576.5},VJ8ssNVZx:{width:\"calc(100vw - 72px)\",y:1434}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:425,width:\"400px\",y:564,children:/*#__PURE__*/_jsx(Container,{className:\"framer-m2u9d7-container\",children:/*#__PURE__*/_jsx(GameCard,{D7swcebve:\"100K+ Farming Simulator\",height:\"100%\",I9kRfKt6k:\"https://www.youtube.com/watch?v=IBkH5FIMvt4\",id:\"Vkiu8OvaR\",layoutId:\"Vkiu8OvaR\",nIkRL53tz:\"https://play.google.com/store/apps/details?id=com.enixan.yukon.family.adventure&hl=en_CA&gl=US\",Om94drfM5:\"Yukon: Family Adventure\",s8s6wAjJs:\"All rights are reserved by Enixian Games\",style:{height:\"100%\",width:\"100%\"},variant:\"Q5fzKvfWB\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-7h9hfu\",\"data-framer-appear-id\":\"7h9hfu\",\"data-framer-name\":\"Stack of 2\",initial:animation1,name:\"Stack of 2\",optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hh17CI2we:{height:287.5,width:\"max((100vw - 115px) / 2, 1px)\",y:989},VJ8ssNVZx:{width:\"calc(100vw - 72px)\",y:1884}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:425,width:\"400px\",y:1014,children:/*#__PURE__*/_jsx(Container,{className:\"framer-r3pt26-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hh17CI2we:{s8s6wAjJs:\"4 weeks turned into success\"}},children:/*#__PURE__*/_jsx(GameCard,{D7swcebve:\"500K+ Blackjack\",height:\"100%\",I9kRfKt6k:\"https://youtu.be/tFXAnPRSUPk\",id:\"XiTEvxuMO\",layoutId:\"XiTEvxuMO\",nIkRL53tz:\"https://play.google.com/store/apps/details?id=com.murka.blackjack.cards21\",Om94drfM5:\"BlackJack by Murka: 21 Classic\",s8s6wAjJs:\"All rights are reserved by Murka Games Limited\",style:{height:\"100%\",width:\"100%\"},variant:\"Q5fzKvfWB\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hh17CI2we:{height:287.5,width:\"max((100vw - 115px) / 2, 1px)\",y:989},VJ8ssNVZx:{width:\"calc(100vw - 72px)\",y:2319}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:425,width:\"400px\",y:1014,children:/*#__PURE__*/_jsx(Container,{className:\"framer-oowln3-container\",children:/*#__PURE__*/_jsx(GameCard,{D7swcebve:\"100K+ Mobile 2D Fighting Action\",height:\"100%\",I9kRfKt6k:\"https://www.youtube.com/watch?v=_Sh6RH6vxqY\",id:\"ntbZKk5i0\",layoutId:\"ntbZKk5i0\",nIkRL53tz:\"https://www.youtube.com/watch?v=_Sh6RH6vxqY\",Om94drfM5:\"Automotive VR Training\",s8s6wAjJs:\"All rights are reserved by Transfr Inc.\",style:{height:\"100%\",width:\"100%\"},variant:\"Q5fzKvfWB\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-ti38us\",\"data-framer-appear-id\":\"ti38us\",\"data-framer-name\":\"Stack of 2\",initial:animation1,name:\"Stack of 2\",optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hh17CI2we:{height:287.5,width:\"max((100vw - 115px) / 2, 1px)\",y:1401.5},VJ8ssNVZx:{width:\"calc(100vw - 72px)\",y:2769}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:425,width:\"400px\",y:1464,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2ey282-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hh17CI2we:{s8s6wAjJs:\"4 weeks turned into success\"}},children:/*#__PURE__*/_jsx(GameCard,{D7swcebve:\"100K+ 3D Match3 Hyper Casual\",height:\"100%\",I9kRfKt6k:\"https://youtu.be/QzZGMkE9s5o?list=TLGGYWB53Hw0PqgxNTA3MjAyNA;controls=0\",id:\"Y9VIXW8J1\",layoutId:\"Y9VIXW8J1\",nIkRL53tz:\"https://play.google.com/store/apps/details?id=com.Moonee.Matchmania3d&hl=en&gl=US\",Om94drfM5:\"Matchmania 3D\",s8s6wAjJs:\"All rights reserved by MOONEE PUBLISHING LTD\",style:{height:\"100%\",width:\"100%\"},variant:\"Q5fzKvfWB\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hh17CI2we:{height:287.5,width:\"max((100vw - 115px) / 2, 1px)\",y:1401.5},VJ8ssNVZx:{width:\"calc(100vw - 72px)\",y:3204}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:425,width:\"400px\",y:1464,children:/*#__PURE__*/_jsx(Container,{className:\"framer-merkjf-container\",children:/*#__PURE__*/_jsx(GameCard,{D7swcebve:\"100K+ Mobile 2D Fighting Action\",height:\"100%\",I9kRfKt6k:\" https://youtu.be/YOPeecn8K2s?list=TLGG-LLyOYUEgMoxNTA3MjAyNA;controls=0\",id:\"Qb4qWuqCk\",layoutId:\"Qb4qWuqCk\",nIkRL53tz:\"https://apps.apple.com/us/app/celeb-u-brawl/id1593011809\",Om94drfM5:\"CelebUBrawl\",s8s6wAjJs:\"All rights are reserved by CECT Global\",style:{height:\"100%\",width:\"100%\"},variant:\"Q5fzKvfWB\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-gd4id3\",\"data-framer-appear-id\":\"gd4id3\",\"data-framer-name\":\"Stack of 2\",initial:animation1,name:\"Stack of 2\",optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hh17CI2we:{width:\"max((100vw - 115px) / 2, 1px)\",y:1814},VJ8ssNVZx:{width:\"calc(100vw - 72px)\",y:3654}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:425,width:\"400px\",y:1914,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uh640s-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hh17CI2we:{s8s6wAjJs:\"Took 2 Weeks to builid and release as MVP\"}},children:/*#__PURE__*/_jsx(GameCard,{D7swcebve:\"400K+ Telegram Clicker\",height:\"100%\",I9kRfKt6k:\"https://www.youtube.com/embed/iNndUJkocjc\",id:\"x7L3jdXOE\",layoutId:\"x7L3jdXOE\",nIkRL53tz:\"https://t.me/monstagameclub\",Om94drfM5:\"Monsta\",s8s6wAjJs:\"This game was made in a span of 4 weeks to test a concept as an MVP. The game has over 400K players.\",style:{height:\"100%\",width:\"100%\"},variant:\"Q5fzKvfWB\",width:\"100%\",xvm6tGzRF:addImageAlt({src:\"https://framerusercontent.com/images/1rhAj1yK3TywAaBllWuVOicfaYE.png\",srcSet:\"https://framerusercontent.com/images/1rhAj1yK3TywAaBllWuVOicfaYE.png?scale-down-to=512 512w,https://framerusercontent.com/images/1rhAj1yK3TywAaBllWuVOicfaYE.png 1024w\"},\"\")})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hh17CI2we:{width:\"max((100vw - 115px) / 2, 1px)\",y:1814},VJ8ssNVZx:{width:\"calc(100vw - 72px)\",y:4089}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:425,width:\"400px\",y:1914,children:/*#__PURE__*/_jsx(Container,{className:\"framer-d0bt87-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hh17CI2we:{s8s6wAjJs:\"Took 3 weeks to build and release as MVP\"}},children:/*#__PURE__*/_jsx(GameCard,{D7swcebve:\"MVP 2D Telegram Clicker\",height:\"100%\",I9kRfKt6k:\"\",id:\"F_yqm_0xF\",layoutId:\"F_yqm_0xF\",nIkRL53tz:\"https://t.me/VoidverseTheBot/Bubble_Game\",Om94drfM5:\"BubblePop\",s8s6wAjJs:\"This game took 3 weeks to build and release. It was developed as MVP\",style:{height:\"100%\",width:\"100%\"},variant:\"cToArucvP\",width:\"100%\",xvm6tGzRF:addImageAlt({src:\"https://framerusercontent.com/images/8sYNMsPQr6KHTMv3ZwGhvNj4Yw4.png\"},\"\")})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-xejrre\",\"data-framer-appear-id\":\"xejrre\",\"data-framer-name\":\"Stack of 2\",initial:animation1,name:\"Stack of 2\",optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hh17CI2we:{height:287.5,width:\"max((100vw - 115px) / 2, 1px)\"},VJ8ssNVZx:{width:\"calc(100vw - 72px)\",y:4539}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:425,width:\"400px\",y:2364,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2hpvld-container\",children:/*#__PURE__*/_jsx(GameCard,{D7swcebve:\"3D Idle City Building Clicker\",height:\"100%\",I9kRfKt6k:\"https://www.youtube.com/embed/HLTmMou8mlM?si=Wxl2ILQ01_jyrw3X&amp;controls=0\",id:\"s8asmrsmn\",layoutId:\"s8asmrsmn\",nIkRL53tz:\"https://nek0pi.itch.io/chill-city\",Om94drfM5:\"Chill City\",s8s6wAjJs:\"\",style:{height:\"100%\",width:\"100%\"},variant:\"Q5fzKvfWB\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hh17CI2we:{height:287.5,width:\"max((100vw - 115px) / 2, 1px)\"},VJ8ssNVZx:{width:\"calc(100vw - 72px)\",y:4974}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:425,width:\"400px\",y:2364,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dabxfr-container\",children:/*#__PURE__*/_jsx(GameCard,{D7swcebve:\"2D Reverse Bullet Hell\",height:\"100%\",I9kRfKt6k:\"https://www.youtube.com/embed/KyRSzyTeERs?si=UDTweSflYYIGtcB2&amp;controls=0\",id:\"C8CDiDljy\",layoutId:\"C8CDiDljy\",nIkRL53tz:\"https://www.youtube.com/watch?v=KyRSzyTeERs\",Om94drfM5:\"Survivors Kit\",s8s6wAjJs:\"This asset is created to help Unity developers build Reverse Bullet Hell games faster \",style:{height:\"100%\",width:\"100%\"},variant:\"Q5fzKvfWB\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1ofixcx\",\"data-framer-appear-id\":\"1ofixcx\",\"data-framer-name\":\"Stack of 2\",initial:animation1,name:\"Stack of 2\",optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hh17CI2we:{height:287.5,width:\"max((100vw - 115px) / 2, 1px)\",y:2776.5},VJ8ssNVZx:{width:\"calc(100vw - 72px)\",y:5424}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:425,width:\"400px\",y:2814,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j70cqk-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hh17CI2we:{s8s6wAjJs:\"4 weeks turned into success\"}},children:/*#__PURE__*/_jsx(GameCard,{D7swcebve:\"Desktop 2D Roguelike Turn-Based RPG\",height:\"100%\",I9kRfKt6k:\"https://youtu.be/WjV5KNRdJYI\",id:\"oOBJqV0Bv\",layoutId:\"oOBJqV0Bv\",Om94drfM5:\"Savage Tale\",s8s6wAjJs:\"This game was made in a span of 3 weeks to build a playable prototype\",style:{height:\"100%\",width:\"100%\"},variant:\"Q5fzKvfWB\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"BDukTi_Jk\"},implicitPathVariables:undefined},{href:{webPageId:\"BDukTi_Jk\"},implicitPathVariables:undefined},{href:{webPageId:\"BDukTi_Jk\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hh17CI2we:{height:287.5,width:\"max((100vw - 115px) / 2, 1px)\",y:2776.5},VJ8ssNVZx:{width:\"calc(100vw - 72px)\",y:5859}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:425,width:\"400px\",y:2814,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vcsasp-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hh17CI2we:{nIkRL53tz:resolvedLinks[1],s8s6wAjJs:\"4 weeks turned into success\"},VJ8ssNVZx:{nIkRL53tz:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(GameCard,{D7swcebve:\"Educational 2D Roguelike CCG\",height:\"100%\",I9kRfKt6k:\"\",id:\"hw6WaNOtS\",layoutId:\"hw6WaNOtS\",nIkRL53tz:resolvedLinks[0],Om94drfM5:\"Edu CCG\",s8s6wAjJs:\"This game was made for York University in 2024 in a span of a couple months\",style:{height:\"100%\",width:\"100%\"},variant:\"cToArucvP\",width:\"100%\",xvm6tGzRF:addImageAlt({src:\"https://framerusercontent.com/images/HbH5KbIKKqga1QhNps1Q9z1edk.png\",srcSet:\"https://framerusercontent.com/images/HbH5KbIKKqga1QhNps1Q9z1edk.png?scale-down-to=512 512w,https://framerusercontent.com/images/HbH5KbIKKqga1QhNps1Q9z1edk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HbH5KbIKKqga1QhNps1Q9z1edk.png 1698w\"},\"\")})})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1kgn0gw\",\"data-framer-appear-id\":\"1kgn0gw\",\"data-framer-name\":\"Stack of 2\",initial:animation1,name:\"Stack of 2\",optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hh17CI2we:{height:287.5,width:\"max((100vw - 115px) / 2, 1px)\",y:3189},VJ8ssNVZx:{width:\"calc(100vw - 72px)\",y:6309}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:425,width:\"400px\",y:3264,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fi2xmx-container\",children:/*#__PURE__*/_jsx(GameCard,{D7swcebve:\"2D Puzzle Hyper Casual \",height:\"100%\",I9kRfKt6k:\"\",id:\"GwGqsv6PJ\",layoutId:\"GwGqsv6PJ\",nIkRL53tz:\"https://apps.apple.com/us/app/block-puzzle-hidden-pic/id1557202867\",Om94drfM5:\"Block Puzzle\",s8s6wAjJs:\"Took 2 Weeks to build and release as MVP\",style:{height:\"100%\",width:\"100%\"},variant:\"cToArucvP\",width:\"100%\",xvm6tGzRF:addImageAlt({src:\"https://framerusercontent.com/images/B0iwGuIbNJVevJjqqRdWoLtBiaI.webp\"},\"\")})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hh17CI2we:{height:287.5,width:\"max((100vw - 115px) / 2, 1px)\",y:3189},VJ8ssNVZx:{width:\"calc(100vw - 72px)\",y:6744}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:425,width:\"400px\",y:3264,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pmtdff-container\",children:/*#__PURE__*/_jsx(GameCard,{D7swcebve:\"2D Roguelike Vertically Scrolling Shooter\",height:\"100%\",I9kRfKt6k:\"https://youtu.be/FHMkmMw_Xj8?list=TLGGaWGo1KwSYuoxNTA3MjAyNA;controls=0\",id:\"LLekpJH9X\",layoutId:\"LLekpJH9X\",nIkRL53tz:\"https://ldjam.com/events/ludum-dare/48/afterlife\",Om94drfM5:\"Afterlife\",s8s6wAjJs:\"Took 2 Weeks to build and release as MVP\",style:{height:\"100%\",width:\"100%\"},variant:\"Q5fzKvfWB\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1wrsyvb\",\"data-framer-appear-id\":\"1wrsyvb\",\"data-framer-name\":\"Stack of 2\",initial:animation1,name:\"Stack of 2\",optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hh17CI2we:{width:\"max((100vw - 115px) / 2, 1px)\",y:3601.5},VJ8ssNVZx:{width:\"calc(100vw - 72px)\",y:7194}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:425,width:\"400px\",y:3714,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xp0mji-container\",children:/*#__PURE__*/_jsx(GameCard,{D7swcebve:\"2D Tinder Swipe RPG\",height:\"100%\",I9kRfKt6k:\"https://youtu.be/FHMkmMw_Xj8?list=TLGGaWGo1KwSYuoxNTA3MjAyNA;controls=0\",id:\"m959a4iGX\",layoutId:\"m959a4iGX\",nIkRL53tz:\"https://play.google.com/store/apps/details?id=com.royalpath.voidverse\",Om94drfM5:\"Royal Path\",s8s6wAjJs:\"Took 2 Weeks to builid and release as MVP\",style:{height:\"100%\",width:\"100%\"},variant:\"cToArucvP\",width:\"100%\",xvm6tGzRF:addImageAlt({src:\"https://framerusercontent.com/images/1rhAj1yK3TywAaBllWuVOicfaYE.png\",srcSet:\"https://framerusercontent.com/images/1rhAj1yK3TywAaBllWuVOicfaYE.png?scale-down-to=512 512w,https://framerusercontent.com/images/1rhAj1yK3TywAaBllWuVOicfaYE.png 1024w\"},\"\")})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hh17CI2we:{width:\"max((100vw - 115px) / 2, 1px)\",y:3601.5},VJ8ssNVZx:{width:\"calc(100vw - 72px)\",y:7629}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:425,width:\"400px\",y:3714,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10gliwc-container\",children:/*#__PURE__*/_jsx(GameCard,{D7swcebve:\"Camera utility app\",height:\"100%\",I9kRfKt6k:\" https://youtu.be/YOPeecn8K2s?list=TLGG-LLyOYUEgMoxNTA3MjAyNA;controls=0\",id:\"B2skpMbN8\",layoutId:\"B2skpMbN8\",Om94drfM5:\"OpaciTool\",s8s6wAjJs:\"Created an MVP within 3 weeks. Purpose of the app is to measure smoke transparency through camera lens.\",style:{height:\"100%\",width:\"100%\"},variant:\"cToArucvP\",width:\"100%\",xvm6tGzRF:addImageAlt({src:\"https://framerusercontent.com/images/QZC7scT6svX3BnuBLsbQ2wttAnQ.png\"},\"\")})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hh17CI2we:{width:\"100vw\",y:4051.5},VJ8ssNVZx:{width:\"100vw\",y:8079}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:874,width:\"1200px\",y:4164,children:/*#__PURE__*/_jsx(Container,{className:\"framer-id2blu-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hh17CI2we:{variant:\"og2Vklnxb\"},VJ8ssNVZx:{variant:\"pybDgAWF9\"}},children:/*#__PURE__*/_jsx(Team,{height:\"100%\",id:\"b8o6wL7GY\",layoutId:\"b8o6wL7GY\",style:{width:\"100%\"},variant:\"wMRQ2QGFm\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hh17CI2we:{y:4925.5},VJ8ssNVZx:{y:8953}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:960,width:\"100vw\",y:5038,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rkzs61-container\",id:elementId,ref:ref2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hh17CI2we:{variant:\"oiINGxfyF\"},VJ8ssNVZx:{variant:\"PZ29FI0_v\"}},children:/*#__PURE__*/_jsx(ContactUs,{height:\"100%\",id:\"XCPcivfnn\",layoutId:\"XCPcivfnn\",style:{width:\"100%\"},variant:\"CoNgGbQmv\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hh17CI2we:{y:5885.5},VJ8ssNVZx:{y:9913}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:281,width:\"100vw\",y:5998,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y01mkh-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hh17CI2we:{variant:\"lufnnFLE9\"},VJ8ssNVZx:{variant:\"Q_VNQ49nH\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"oBTbqp7wl\",layoutId:\"oBTbqp7wl\",style:{width:\"100%\"},variant:\"cDlQK6StT\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-FVgYH { background: rgb(236, 239, 244); }`,\".framer-FVgYH.framer-dyxgmw, .framer-FVgYH .framer-dyxgmw { display: block; }\",\".framer-FVgYH.framer-eq6byk { align-content: center; align-items: center; background-color: #eceff4; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-FVgYH .framer-8c3oxt-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-FVgYH .framer-8tr4he { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 25px 25px 25px; position: relative; width: 100%; }\",\".framer-FVgYH .framer-1y6j3ni, .framer-FVgYH .framer-59rjnn, .framer-FVgYH .framer-7h9hfu, .framer-FVgYH .framer-ti38us, .framer-FVgYH .framer-gd4id3, .framer-FVgYH .framer-xejrre, .framer-FVgYH .framer-1ofixcx, .framer-FVgYH .framer-1kgn0gw, .framer-FVgYH .framer-1wrsyvb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-evenly; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FVgYH .framer-qxgvl-container, .framer-FVgYH .framer-1dq616m-container, .framer-FVgYH .framer-vdv9lm-container, .framer-FVgYH .framer-m2u9d7-container, .framer-FVgYH .framer-r3pt26-container, .framer-FVgYH .framer-oowln3-container, .framer-FVgYH .framer-2ey282-container, .framer-FVgYH .framer-merkjf-container, .framer-FVgYH .framer-1uh640s-container, .framer-FVgYH .framer-d0bt87-container, .framer-FVgYH .framer-2hpvld-container, .framer-FVgYH .framer-dabxfr-container, .framer-FVgYH .framer-1j70cqk-container, .framer-FVgYH .framer-vcsasp-container, .framer-FVgYH .framer-1fi2xmx-container, .framer-FVgYH .framer-1pmtdff-container, .framer-FVgYH .framer-1xp0mji-container, .framer-FVgYH .framer-10gliwc-container { flex: none; height: 425px; position: relative; width: 400px; }\",\".framer-FVgYH .framer-id2blu-container { flex: none; height: auto; position: relative; width: 1200px; }\",\".framer-FVgYH .framer-rkzs61-container, .framer-FVgYH .framer-1y01mkh-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-FVgYH.framer-eq6byk, .framer-FVgYH .framer-8tr4he { gap: 0px; } .framer-FVgYH.framer-eq6byk > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-FVgYH.framer-eq6byk > :first-child, .framer-FVgYH .framer-8tr4he > :first-child { margin-top: 0px; } .framer-FVgYH.framer-eq6byk > :last-child, .framer-FVgYH .framer-8tr4he > :last-child { margin-bottom: 0px; } .framer-FVgYH .framer-8tr4he > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-FVgYH { background: rgb(236, 239, 244); } .framer-FVgYH.framer-eq6byk { width: 810px; } .framer-FVgYH .framer-8tr4he { gap: 125px; padding: 100px 25px 25px 25px; } .framer-FVgYH .framer-1y6j3ni, .framer-FVgYH .framer-59rjnn, .framer-FVgYH .framer-7h9hfu, .framer-FVgYH .framer-ti38us, .framer-FVgYH .framer-xejrre, .framer-FVgYH .framer-1ofixcx, .framer-FVgYH .framer-1kgn0gw { gap: 65px; height: 288px; justify-content: center; } .framer-FVgYH .framer-qxgvl-container, .framer-FVgYH .framer-1dq616m-container, .framer-FVgYH .framer-vdv9lm-container, .framer-FVgYH .framer-m2u9d7-container, .framer-FVgYH .framer-r3pt26-container, .framer-FVgYH .framer-oowln3-container, .framer-FVgYH .framer-2ey282-container, .framer-FVgYH .framer-merkjf-container, .framer-FVgYH .framer-1uh640s-container, .framer-FVgYH .framer-d0bt87-container, .framer-FVgYH .framer-2hpvld-container, .framer-FVgYH .framer-dabxfr-container, .framer-FVgYH .framer-1j70cqk-container, .framer-FVgYH .framer-vcsasp-container, .framer-FVgYH .framer-1fi2xmx-container, .framer-FVgYH .framer-1pmtdff-container, .framer-FVgYH .framer-1xp0mji-container, .framer-FVgYH .framer-10gliwc-container { flex: 1 0 0px; height: 100%; width: 1px; } .framer-FVgYH .framer-gd4id3, .framer-FVgYH .framer-1wrsyvb { gap: 65px; height: 425px; justify-content: center; } .framer-FVgYH .framer-id2blu-container { width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-FVgYH .framer-8tr4he, .framer-FVgYH .framer-1y6j3ni, .framer-FVgYH .framer-59rjnn, .framer-FVgYH .framer-7h9hfu, .framer-FVgYH .framer-ti38us, .framer-FVgYH .framer-gd4id3, .framer-FVgYH .framer-xejrre, .framer-FVgYH .framer-1ofixcx, .framer-FVgYH .framer-1kgn0gw, .framer-FVgYH .framer-1wrsyvb { gap: 0px; } .framer-FVgYH .framer-8tr4he > * { margin: 0px; margin-bottom: calc(125px / 2); margin-top: calc(125px / 2); } .framer-FVgYH .framer-8tr4he > :first-child { margin-top: 0px; } .framer-FVgYH .framer-8tr4he > :last-child { margin-bottom: 0px; } .framer-FVgYH .framer-1y6j3ni > *, .framer-FVgYH .framer-59rjnn > *, .framer-FVgYH .framer-7h9hfu > *, .framer-FVgYH .framer-ti38us > *, .framer-FVgYH .framer-gd4id3 > *, .framer-FVgYH .framer-xejrre > *, .framer-FVgYH .framer-1ofixcx > *, .framer-FVgYH .framer-1kgn0gw > *, .framer-FVgYH .framer-1wrsyvb > * { margin: 0px; margin-left: calc(65px / 2); margin-right: calc(65px / 2); } .framer-FVgYH .framer-1y6j3ni > :first-child, .framer-FVgYH .framer-59rjnn > :first-child, .framer-FVgYH .framer-7h9hfu > :first-child, .framer-FVgYH .framer-ti38us > :first-child, .framer-FVgYH .framer-gd4id3 > :first-child, .framer-FVgYH .framer-xejrre > :first-child, .framer-FVgYH .framer-1ofixcx > :first-child, .framer-FVgYH .framer-1kgn0gw > :first-child, .framer-FVgYH .framer-1wrsyvb > :first-child { margin-left: 0px; } .framer-FVgYH .framer-1y6j3ni > :last-child, .framer-FVgYH .framer-59rjnn > :last-child, .framer-FVgYH .framer-7h9hfu > :last-child, .framer-FVgYH .framer-ti38us > :last-child, .framer-FVgYH .framer-gd4id3 > :last-child, .framer-FVgYH .framer-xejrre > :last-child, .framer-FVgYH .framer-1ofixcx > :last-child, .framer-FVgYH .framer-1kgn0gw > :last-child, .framer-FVgYH .framer-1wrsyvb > :last-child { margin-right: 0px; } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-FVgYH { background: rgb(236, 239, 244); } .framer-FVgYH.framer-eq6byk { width: 390px; } .framer-FVgYH .framer-8tr4he { padding: 50px 11px 25px 11px; } .framer-FVgYH .framer-1y6j3ni, .framer-FVgYH .framer-59rjnn, .framer-FVgYH .framer-7h9hfu, .framer-FVgYH .framer-ti38us, .framer-FVgYH .framer-gd4id3, .framer-FVgYH .framer-xejrre, .framer-FVgYH .framer-1ofixcx, .framer-FVgYH .framer-1kgn0gw, .framer-FVgYH .framer-1wrsyvb { flex-direction: column; gap: 10px; height: 860px; justify-content: center; padding: 0px 25px 0px 25px; } .framer-FVgYH .framer-qxgvl-container, .framer-FVgYH .framer-1dq616m-container, .framer-FVgYH .framer-vdv9lm-container, .framer-FVgYH .framer-m2u9d7-container, .framer-FVgYH .framer-r3pt26-container, .framer-FVgYH .framer-oowln3-container, .framer-FVgYH .framer-2ey282-container, .framer-FVgYH .framer-merkjf-container, .framer-FVgYH .framer-1uh640s-container, .framer-FVgYH .framer-d0bt87-container, .framer-FVgYH .framer-2hpvld-container, .framer-FVgYH .framer-dabxfr-container, .framer-FVgYH .framer-1j70cqk-container, .framer-FVgYH .framer-vcsasp-container, .framer-FVgYH .framer-1fi2xmx-container, .framer-FVgYH .framer-1pmtdff-container, .framer-FVgYH .framer-1xp0mji-container, .framer-FVgYH .framer-10gliwc-container { flex: 1 0 0px; height: 1px; width: 100%; } .framer-FVgYH .framer-id2blu-container { width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-FVgYH .framer-1y6j3ni, .framer-FVgYH .framer-59rjnn, .framer-FVgYH .framer-7h9hfu, .framer-FVgYH .framer-ti38us, .framer-FVgYH .framer-gd4id3, .framer-FVgYH .framer-xejrre, .framer-FVgYH .framer-1ofixcx, .framer-FVgYH .framer-1kgn0gw, .framer-FVgYH .framer-1wrsyvb { gap: 0px; } .framer-FVgYH .framer-1y6j3ni > *, .framer-FVgYH .framer-59rjnn > *, .framer-FVgYH .framer-7h9hfu > *, .framer-FVgYH .framer-ti38us > *, .framer-FVgYH .framer-gd4id3 > *, .framer-FVgYH .framer-xejrre > *, .framer-FVgYH .framer-1ofixcx > *, .framer-FVgYH .framer-1kgn0gw > *, .framer-FVgYH .framer-1wrsyvb > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-FVgYH .framer-1y6j3ni > :first-child, .framer-FVgYH .framer-59rjnn > :first-child, .framer-FVgYH .framer-7h9hfu > :first-child, .framer-FVgYH .framer-ti38us > :first-child, .framer-FVgYH .framer-gd4id3 > :first-child, .framer-FVgYH .framer-xejrre > :first-child, .framer-FVgYH .framer-1ofixcx > :first-child, .framer-FVgYH .framer-1kgn0gw > :first-child, .framer-FVgYH .framer-1wrsyvb > :first-child { margin-top: 0px; } .framer-FVgYH .framer-1y6j3ni > :last-child, .framer-FVgYH .framer-59rjnn > :last-child, .framer-FVgYH .framer-7h9hfu > :last-child, .framer-FVgYH .framer-ti38us > :last-child, .framer-FVgYH .framer-gd4id3 > :last-child, .framer-FVgYH .framer-xejrre > :last-child, .framer-FVgYH .framer-1ofixcx > :last-child, .framer-FVgYH .framer-1kgn0gw > :last-child, .framer-FVgYH .framer-1wrsyvb > :last-child { margin-bottom: 0px; } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6280\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hh17CI2we\":{\"layout\":[\"fixed\",\"auto\"]},\"VJ8ssNVZx\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const Framerr0exjf4UH=withCSS(Component,css,\"framer-FVgYH\");export default Framerr0exjf4UH;Framerr0exjf4UH.displayName=\"Page\";Framerr0exjf4UH.defaultProps={height:6280,width:1200};addFonts(Framerr0exjf4UH,[{explicitInter:true,fonts:[]},...NavigationFonts,...GameCardFonts,...TeamFonts,...ContactUsFonts,...FooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerr0exjf4UH\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"6280\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hh17CI2we\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VJ8ssNVZx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "_isBot", "isBot", "navigator", "emptySubscribe", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "iframeIsDefaultVisible", "de", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "YouTubeFonts", "getFonts", "Youtube", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transition2", "animation", "animation1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "description", "gameLink", "genre", "height", "id", "image", "title", "width", "yTLink", "props", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "I9kRfKt6k", "xvm6tGzRF", "Om94drfM5", "D7swcebve", "s8s6wAjJs", "nIkRL53tz", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "RichText2", "Link", "css", "FramerNDw9Ajvkk", "withCSS", "NDw9Ajvkk_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavigationFonts", "getFonts", "i9f3MWADm_default", "GameCardFonts", "NDw9Ajvkk_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "TeamFonts", "AqAeIVRkm_default", "ContactUsFonts", "JYSpcmWU5_default", "FooterFonts", "QWxnjfC2X_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "addImageAlt", "image", "alt", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "router", "useRouter", "elementId", "useRouteElementId", "ref2", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "i9f3MWADm_default", "MotionDivWithOptimizedAppearEffect", "NDw9Ajvkk_default", "ResolveLinks", "resolvedLinks", "AqAeIVRkm_default", "JYSpcmWU5_default", "QWxnjfC2X_default", "css", "Framerr0exjf4UH", "withCSS", "r0exjf4UH_default", "addFonts", "NavigationFonts", "GameCardFonts", "TeamFonts", "ContactUsFonts", "FooterFonts", "__FramerMetadata__"]
}
