{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js", "ssg:https://framerusercontent.com/modules/Uwf9twCr0awEZlxLfLYB/pFBnmERdQsy5xHYUm7oC/h38Fsjcdp.js", "ssg:https://framerusercontent.com/modules/offkLJuskEFg9BwiBCsI/GFVlmUw3MXLdZLsSTFvO/j3AserHhL.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedURL,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHTML,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHTML({html,style}){const ref=useRef();const onCanvas=useIsOnCanvas();const[iframeHeight,setIframeHeight]=useState(0);const hasAutoHeight=!style.height;const hasScript=html.includes(\"</script>\");useEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);if(hasScript){const srcDoc=`<html>\n    <head>\n        <style>body { margin: 0; }</style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>`;const currentStyle={...iframeStyle,...style};if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"600\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (12ecc5e)\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 SocialMediaIcon from\"https://framerusercontent.com/modules/8LdRolgA6TSVx52Q8svL/8NP01vIKAttzv3LHh5vZ/T6lyCm4_d.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/mDVYEQgWRO4Gb1yo6cyo/ukaHNFsDpjN4MXF28HvA/zbLr5nJOc.js\";const SocialMediaIconFonts=getFonts(SocialMediaIcon);const cycleOrder=[\"eJlMXC28b\",\"gVvkeO3yo\",\"e0ZJQOULU\"];const serializationHash=\"framer-Qiko7\";const variantClassNames={e0ZJQOULU:\"framer-v-1ya882q\",eJlMXC28b:\"framer-v-13uewzk\",gVvkeO3yo:\"framer-v-1u8stey\"};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 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={Desktop:\"eJlMXC28b\",Phone:\"e0ZJQOULU\",Tablet:\"gVvkeO3yo\"};const getProps=({height,id,image,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,GRkaX5wc4:(_ref=image!==null&&image!==void 0?image:props.GRkaX5wc4)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/RV39DjWKjTLYBdwQJAkwoBoB60.png\",srcSet:\"https://framerusercontent.com/images/RV39DjWKjTLYBdwQJAkwoBoB60.png?scale-down-to=512 512w,https://framerusercontent.com/images/RV39DjWKjTLYBdwQJAkwoBoB60.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RV39DjWKjTLYBdwQJAkwoBoB60.png 1414w\"},variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"eJlMXC28b\"};};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,GRkaX5wc4,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"eJlMXC28b\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.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__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-13uewzk\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"eJlMXC28b\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({e0ZJQOULU:{\"data-framer-name\":\"Phone\"},gVvkeO3yo:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w6gwg4\",\"data-framer-name\":\"Rows\",layoutDependency:layoutDependency,layoutId:\"WJrXgnO_O\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1twdkcu\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"ayukXW8Ut\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(42, 42, 42)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-65eo5s\",\"data-framer-name\":\"Social Media\",layoutDependency:layoutDependency,layoutId:\"HjfoSlg0A\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-mdpc5x-container\",layoutDependency:layoutDependency,layoutId:\"ppXYQecpC-container\",children:/*#__PURE__*/_jsx(SocialMediaIcon,{BvXPbvX4N:\"var(--token-d3c2bf5e-776e-48a3-853c-b56b8e265c21, rgb(255, 255, 255))\",height:\"100%\",id:\"ppXYQecpC\",JB3f2tPPt:\"https://www.facebook.com/people/PlayFi-Studios/61556413870715/?mibextid=ZbWKwL\",layoutId:\"ppXYQecpC\",pW0rMDIeO:\"facebook\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-p56nb1-container\",layoutDependency:layoutDependency,layoutId:\"lPlOSQThj-container\",children:/*#__PURE__*/_jsx(SocialMediaIcon,{BvXPbvX4N:\"var(--token-d3c2bf5e-776e-48a3-853c-b56b8e265c21, rgb(255, 255, 255))\",height:\"100%\",id:\"lPlOSQThj\",JB3f2tPPt:\"https://t.me/playfistudio\",layoutId:\"lPlOSQThj\",pW0rMDIeO:\"telegram\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-fmdwux-container\",layoutDependency:layoutDependency,layoutId:\"KpMAD2XkM-container\",children:/*#__PURE__*/_jsx(SocialMediaIcon,{BvXPbvX4N:\"var(--token-d3c2bf5e-776e-48a3-853c-b56b8e265c21, rgb(255, 255, 255))\",height:\"100%\",id:\"KpMAD2XkM\",JB3f2tPPt:\"x.com/playfistudios\",layoutId:\"KpMAD2XkM\",pW0rMDIeO:\"twitter\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-116wg61\",\"data-framer-name\":\"Company Info\",layoutDependency:layoutDependency,layoutId:\"kdpWwc5IN\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:22,intrinsicWidth:52,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(80+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-80-292)/2)+20+0+0+0+0),pixelHeight:22,pixelWidth:52,sizes:\"135px\",...toResponsiveImage(GRkaX5wc4),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-102j0zs framer-31ea2w\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"pBeww9AEc\",...addPropertyOverrides({e0ZJQOULU:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:22,intrinsicWidth:52,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(40+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-40-638.5)/2)+20+0+0+0+0+0),pixelHeight:22,pixelWidth:52,sizes:\"135px\",...toResponsiveImage(GRkaX5wc4),...{positionX:\"center\",positionY:\"center\"}}},gVvkeO3yo:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:22,intrinsicWidth:52,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(60+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-60-638.5)/2)+20+0+0+0+0+0),pixelHeight:22,pixelWidth:52,sizes:\"135px\",...toResponsiveImage(GRkaX5wc4),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.globalratings.com/ratingsguide.aspx#esrb\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:68,intrinsicWidth:68,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(80+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-80-292)/2)+20+0+0+0+51),pixelHeight:68,pixelWidth:68,src:\"https://framerusercontent.com/images/gYurz5d4wLwe021I37C3jM3l48.png\"},className:\"framer-4nd3bk framer-31ea2w\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"xAjsusuG5\",...addPropertyOverrides({e0ZJQOULU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:68,intrinsicWidth:68,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(40+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-40-638.5)/2)+20+0+0+0+0+51),pixelHeight:68,pixelWidth:68,src:\"https://framerusercontent.com/images/gYurz5d4wLwe021I37C3jM3l48.png\"}},gVvkeO3yo:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:68,intrinsicWidth:68,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(60+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-60-638.5)/2)+20+0+0+0+0+51),pixelHeight:68,pixelWidth:68,src:\"https://framerusercontent.com/images/gYurz5d4wLwe021I37C3jM3l48.png\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c8jqa2\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"fqwcmZg5b\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a785e7a8-cb8a-45b5-b67c-45aec4654626, rgb(255, 255, 255)))\"},children:\"Media Kit\"})}),className:\"framer-b7cho3\",fonts:[\"GF;Poppins-500\"],layoutDependency:layoutDependency,layoutId:\"xGzLCnfuo\",style:{\"--extracted-r6o4lv\":\"var(--token-a785e7a8-cb8a-45b5-b67c-45aec4654626, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"/privacy\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1vjcfwp\",\"data-styles-preset\":\"zbLr5nJOc\",children:\"Privacy Policy\"})})})}),className:\"framer-1d568wi\",fonts:[\"GF;Poppins-500\"],layoutDependency:layoutDependency,layoutId:\"knvSQEFNe\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://t.me/PlayFiLab\",openInNewTab:true,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1vjcfwp\",\"data-styles-preset\":\"zbLr5nJOc\",children:\"Submit Bug\"})})})}),className:\"framer-1uqy1w2\",fonts:[\"GF;Poppins-500\"],layoutDependency:layoutDependency,layoutId:\"O63MbdlCw\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15myzb2\",\"data-framer-name\":\"Copyright Wrapper\",layoutDependency:layoutDependency,layoutId:\"eM73YUcUq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a785e7a8-cb8a-45b5-b67c-45aec4654626, rgb(255, 255, 255)))\"},children:\"\\xa9 2024 CryptoBall. All rights reserved.\"})}),className:\"framer-1g0l7q8\",\"data-framer-name\":\"Copyright Notice\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"qPxpdEIgg\",style:{\"--extracted-r6o4lv\":\"var(--token-a785e7a8-cb8a-45b5-b67c-45aec4654626, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({e0ZJQOULU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a785e7a8-cb8a-45b5-b67c-45aec4654626, rgb(255, 255, 255)))\"},children:\"\\xa9 2024 CryptoBall. All rights reserved.\"})})},gVvkeO3yo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a785e7a8-cb8a-45b5-b67c-45aec4654626, rgb(255, 255, 255)))\"},children:\"\\xa9 2024 CryptoBall. All rights reserved.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDBpdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a785e7a8-cb8a-45b5-b67c-45aec4654626, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://playfi.studio\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1vjcfwp\",\"data-styles-preset\":\"zbLr5nJOc\",children:\"Powered by PlayFi\"})})})}),className:\"framer-108b2l5\",fonts:[\"GF;Poppins-600italic\"],layoutDependency:layoutDependency,layoutId:\"ABobfcRE_\",style:{\"--extracted-r6o4lv\":\"var(--token-a785e7a8-cb8a-45b5-b67c-45aec4654626, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({e0ZJQOULU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDBpdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a785e7a8-cb8a-45b5-b67c-45aec4654626, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://playfi.studio\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1vjcfwp\",\"data-styles-preset\":\"zbLr5nJOc\",children:\"Powered by PlayFi\"})})})})},gVvkeO3yo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDBpdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a785e7a8-cb8a-45b5-b67c-45aec4654626, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://playfi.studio\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1vjcfwp\",\"data-styles-preset\":\"zbLr5nJOc\",children:\"Powered by PlayFi\"})})})})}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Qiko7.framer-31ea2w, .framer-Qiko7 .framer-31ea2w { display: block; }\",\".framer-Qiko7.framer-13uewzk { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-Qiko7 .framer-1w6gwg4 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 20px; position: relative; width: 1px; }\",\".framer-Qiko7 .framer-1twdkcu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-Qiko7 .framer-65eo5s { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Qiko7 .framer-mdpc5x-container, .framer-Qiko7 .framer-p56nb1-container, .framer-Qiko7 .framer-fmdwux-container { flex: none; height: 38px; position: relative; width: 38px; }\",\".framer-Qiko7 .framer-116wg61 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Qiko7 .framer-102j0zs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 41px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 135px; }\",\".framer-Qiko7 .framer-4nd3bk { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 31px); overflow: visible; position: relative; text-decoration: none; width: 31px; }\",\".framer-Qiko7 .framer-1c8jqa2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Qiko7 .framer-b7cho3, .framer-Qiko7 .framer-1d568wi, .framer-Qiko7 .framer-1uqy1w2 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-Qiko7 .framer-15myzb2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Qiko7 .framer-1g0l7q8, .framer-Qiko7 .framer-108b2l5 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Qiko7.framer-13uewzk, .framer-Qiko7 .framer-1w6gwg4, .framer-Qiko7 .framer-1twdkcu, .framer-Qiko7 .framer-65eo5s, .framer-Qiko7 .framer-116wg61, .framer-Qiko7 .framer-102j0zs, .framer-Qiko7 .framer-1c8jqa2, .framer-Qiko7 .framer-15myzb2 { gap: 0px; } .framer-Qiko7.framer-13uewzk > *, .framer-Qiko7 .framer-1twdkcu > *, .framer-Qiko7 .framer-65eo5s > *, .framer-Qiko7 .framer-102j0zs > *, .framer-Qiko7 .framer-15myzb2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Qiko7.framer-13uewzk > :first-child, .framer-Qiko7 .framer-1twdkcu > :first-child, .framer-Qiko7 .framer-65eo5s > :first-child, .framer-Qiko7 .framer-102j0zs > :first-child, .framer-Qiko7 .framer-1c8jqa2 > :first-child, .framer-Qiko7 .framer-15myzb2 > :first-child { margin-left: 0px; } .framer-Qiko7.framer-13uewzk > :last-child, .framer-Qiko7 .framer-1twdkcu > :last-child, .framer-Qiko7 .framer-65eo5s > :last-child, .framer-Qiko7 .framer-102j0zs > :last-child, .framer-Qiko7 .framer-1c8jqa2 > :last-child, .framer-Qiko7 .framer-15myzb2 > :last-child { margin-right: 0px; } .framer-Qiko7 .framer-1w6gwg4 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Qiko7 .framer-1w6gwg4 > :first-child, .framer-Qiko7 .framer-116wg61 > :first-child { margin-top: 0px; } .framer-Qiko7 .framer-1w6gwg4 > :last-child, .framer-Qiko7 .framer-116wg61 > :last-child { margin-bottom: 0px; } .framer-Qiko7 .framer-116wg61 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Qiko7 .framer-1c8jqa2 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } }\",\".framer-Qiko7.framer-v-1u8stey.framer-13uewzk { padding: 60px 0px 0px 0px; width: 810px; }\",\".framer-Qiko7.framer-v-1u8stey .framer-1twdkcu, .framer-Qiko7.framer-v-1ya882q .framer-1twdkcu { flex-direction: column; gap: 40px; }\",\".framer-Qiko7.framer-v-1u8stey .framer-65eo5s, .framer-Qiko7.framer-v-1ya882q .framer-65eo5s { flex: none; justify-content: center; order: 2; width: 100%; }\",\".framer-Qiko7.framer-v-1u8stey .framer-116wg61, .framer-Qiko7.framer-v-1ya882q .framer-116wg61 { order: 0; }\",\".framer-Qiko7.framer-v-1u8stey .framer-1c8jqa2, .framer-Qiko7.framer-v-1ya882q .framer-1c8jqa2 { flex: none; flex-direction: column; gap: 20px; justify-content: center; order: 1; width: 100%; }\",\".framer-Qiko7.framer-v-1u8stey .framer-15myzb2, .framer-Qiko7.framer-v-1ya882q .framer-15myzb2 { flex-direction: column; }\",\".framer-Qiko7.framer-v-1u8stey .framer-1g0l7q8, .framer-Qiko7.framer-v-1u8stey .framer-108b2l5, .framer-Qiko7.framer-v-1ya882q .framer-1g0l7q8, .framer-Qiko7.framer-v-1ya882q .framer-108b2l5 { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Qiko7.framer-v-1u8stey .framer-1twdkcu, .framer-Qiko7.framer-v-1u8stey .framer-1c8jqa2, .framer-Qiko7.framer-v-1u8stey .framer-15myzb2 { gap: 0px; } .framer-Qiko7.framer-v-1u8stey .framer-1twdkcu > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Qiko7.framer-v-1u8stey .framer-1twdkcu > :first-child, .framer-Qiko7.framer-v-1u8stey .framer-1c8jqa2 > :first-child, .framer-Qiko7.framer-v-1u8stey .framer-15myzb2 > :first-child { margin-top: 0px; } .framer-Qiko7.framer-v-1u8stey .framer-1twdkcu > :last-child, .framer-Qiko7.framer-v-1u8stey .framer-1c8jqa2 > :last-child, .framer-Qiko7.framer-v-1u8stey .framer-15myzb2 > :last-child { margin-bottom: 0px; } .framer-Qiko7.framer-v-1u8stey .framer-1c8jqa2 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Qiko7.framer-v-1u8stey .framer-15myzb2 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-Qiko7.framer-v-1ya882q.framer-13uewzk { padding: 40px 0px 0px 0px; width: 390px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Qiko7.framer-v-1ya882q .framer-1twdkcu, .framer-Qiko7.framer-v-1ya882q .framer-1c8jqa2, .framer-Qiko7.framer-v-1ya882q .framer-15myzb2 { gap: 0px; } .framer-Qiko7.framer-v-1ya882q .framer-1twdkcu > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Qiko7.framer-v-1ya882q .framer-1twdkcu > :first-child, .framer-Qiko7.framer-v-1ya882q .framer-1c8jqa2 > :first-child, .framer-Qiko7.framer-v-1ya882q .framer-15myzb2 > :first-child { margin-top: 0px; } .framer-Qiko7.framer-v-1ya882q .framer-1twdkcu > :last-child, .framer-Qiko7.framer-v-1ya882q .framer-1c8jqa2 > :last-child, .framer-Qiko7.framer-v-1ya882q .framer-15myzb2 > :last-child { margin-bottom: 0px; } .framer-Qiko7.framer-v-1ya882q .framer-1c8jqa2 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Qiko7.framer-v-1ya882q .framer-15myzb2 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,'.framer-Qiko7[data-border=\"true\"]::after, .framer-Qiko7 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 276\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"gVvkeO3yo\":{\"layout\":[\"fixed\",\"auto\"]},\"e0ZJQOULU\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"GRkaX5wc4\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerh38Fsjcdp=withCSS(Component,css,\"framer-Qiko7\");export default Framerh38Fsjcdp;Framerh38Fsjcdp.displayName=\"Footer 4\";Framerh38Fsjcdp.defaultProps={height:276,width:1200};addPropertyControls(Framerh38Fsjcdp,{variant:{options:[\"eJlMXC28b\",\"gVvkeO3yo\",\"e0ZJQOULU\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},GRkaX5wc4:{__defaultAssetReference:\"data:framer/asset-reference,RV39DjWKjTLYBdwQJAkwoBoB60.png?originalFilename=LogoNew.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(Framerh38Fsjcdp,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiDyp8kv8JHgFVrJJLmr19lFd2PQEhcqw.woff2\",weight:\"600\"}]},...SocialMediaIconFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerh38Fsjcdp\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"GRkaX5wc4\\\":\\\"image\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gVvkeO3yo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"e0ZJQOULU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"276\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./h38Fsjcdp.map", "// Generated by Framer (2ca17d4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js\";import Footer4 from\"#framer/local/canvasComponent/h38Fsjcdp/h38Fsjcdp.js\";import Navigation2 from\"#framer/local/canvasComponent/Qxij2YWTL/Qxij2YWTL.js\";import metadataProvider from\"#framer/local/webPageMetadata/j3AserHhL/j3AserHhL.js\";const Navigation2Fonts=getFonts(Navigation2);const MotionDivWithFX=withFX(motion.div);const EmbedFonts=getFonts(Embed);const Footer4Fonts=getFonts(Footer4);const breakpoints={BPRQB_8PQ:\"(min-width: 1440px)\",sGOgoDttN:\"(max-width: 809px)\",ueJGOKyqM:\"(min-width: 810px) and (max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-bjG9u\";const variantClassNames={BPRQB_8PQ:\"framer-v-145gpbn\",sGOgoDttN:\"framer-v-qqj4sh\",ueJGOKyqM:\"framer-v-1qe1yh5\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition1={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:50};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"BPRQB_8PQ\",Mobile:\"sGOgoDttN\",Tablet:\"ueJGOKyqM\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"BPRQB_8PQ\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"ueJGOKyqM\",\"sGOgoDttN\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"ueJGOKyqM\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"sGOgoDttN\")return true;return false;};const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"BPRQB_8PQ\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(9, 9, 9); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-145gpbn\",className),ref:ref??ref1,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-fubd0q hidden-1qe1yh5 hidden-qqj4sh\",\"data-framer-name\":\"heroSection\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:810,intrinsicWidth:1900,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+10),pixelHeight:2e3,pixelWidth:3e3,sizes:`max(${componentViewport?.width||\"100vw\"} - 20px, 1px)`,src:\"https://framerusercontent.com/images/g1vJUyR5pzjfz9Js4FgKp03PEsE.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/g1vJUyR5pzjfz9Js4FgKp03PEsE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/g1vJUyR5pzjfz9Js4FgKp03PEsE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/g1vJUyR5pzjfz9Js4FgKp03PEsE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/g1vJUyR5pzjfz9Js4FgKp03PEsE.jpg 3000w\"},className:\"framer-1c8ib7\",\"data-border\":true,\"data-framer-name\":\"bg\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rkceo8\",\"data-framer-name\":\"1200_container\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:94,width:`min(max(${componentViewport?.width||\"100vw\"} - 20px, 1px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+0+10+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c81afa-container\",\"data-framer-name\":\"nav\",name:\"nav\",children:/*#__PURE__*/_jsx(Navigation2,{height:\"100%\",id:\"h2YZxkHq6\",layoutId:\"h2YZxkHq6\",name:\"nav\",style:{width:\"100%\"},variant:\"f2ukMU91E\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nwjbsn\",\"data-framer-name\":\"hero\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-y022v4\",\"data-framer-name\":\"textRows\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-zlxeut\",\"data-framer-name\":\"rows\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-xh2ief\",\"data-framer-name\":\"titleDescription\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggR3JvdGVzay1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Clash Grotesk\", \"Clash Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Leaderboards\"})}),className:\"framer-shoxmi\",\"data-framer-name\":\"headline\",fonts:[\"FS;Clash Grotesk-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})})})})})]})})}),/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:2e3},className:\"framer-vch78m\",\"data-framer-name\":\"Features\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v3627i\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2iu67o-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<!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>Leaderboard</title>\\n    <style>\\n        body {\\n            font-family: Arial, sans-serif;\\n            background-color: #f4f4f900;\\n            color: #888;\\n            display: flex;\\n            justify-content: center;\\n            align-items: center;\\n            height: 100vh;\\n            margin: 0;\\n        }\\n        .leaderboard {\\n            width: 80%;\\n            max-width: 1000px;\\n            background: black;\\n            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);\\n            border-radius: 8px;\\n            overflow: hidden;\\n        }\\n        .leaderboard h2 {\\n            background: #222;\\n            color: white;\\n            margin: 0;\\n            padding: 15px;\\n            text-align: center;\\n        }\\n        table {\\n            width: 100%;\\n            border-collapse: collapse;\\n        }\\n        th, td {\\n            padding: 12px;\\n            text-align: left;\\n            border-bottom: 1px solid #ddd;\\n        }\\n        th {\\n            background-color: #111111;\\n        }\\n        tr:nth-child(even) {\\n            background-color: #111;\\n        }\\n        tr:hover {\\n            background-color: #333;\\n        }\\n        .wallet {\\n            font-family: \\'Courier New\\', Courier, monospace;\\n        }\\n    </style>\\n</head>\\n<body>\\n\\n<div class=\"leaderboard\">\\n    <h2>PlayFi Leaderboard</h2>\\n    <table>\\n        <thead>\\n            <tr>\\n                <th>Rank</th>\\n                <th>Wallet Address</th>\\n                <th>Score</th>\\n            </tr>\\n        </thead>\\n        <tbody id=\"leaderboard-body\">\\n            <!-- Dynamic content will be inserted here -->\\n        </tbody>\\n    </table>\\n</div>\\n\\n<!-- Include PlayFab SDK -->\\n<script src=\"https://download.playfabapi.com/sdk/PlayFabClientApi.js\"></script>\\n<script>\\n    // Initialize PlayFab settings\\n    PlayFab.settings.titleId = \"E97A2\"; // Replace with your PlayFab Title ID\\n\\n    // Login to PlayFab\\n    PlayFabClientSDK.LoginWithCustomID({\\n        CustomId: \"GettingLeaderboard\",\\n        CreateAccount: true\\n    }, function (result, error) {\\n        if (result) {\\n            console.log(\"Logged in to PlayFab successfully.\");\\n            getLeaderboard();\\n        } else {\\n            console.error(\"Failed to log in to PlayFab:\", error);\\n        }\\n    });\\n\\n    // Fetch leaderboard data\\n    function getLeaderboard() {\\n        PlayFabClientSDK.GetLeaderboard({\\n            StatisticName: \"BDPLeaderboard\",\\n            StartPosition: 0,\\n            MaxResultsCount: 10\\n        }, function (result, error) {\\n            if (result) {\\n                console.log(\"Leaderboard data fetched successfully.\");\\n                updateLeaderboard(result.data.Leaderboard);\\n            } else {\\n                console.error(\"Failed to fetch leaderboard data:\", error);\\n            }\\n        });\\n    }\\n\\n    // Update the leaderboard table with fetched data\\n    function updateLeaderboard(leaderboard) {\\n        const tbody = document.getElementById(\"leaderboard-body\");\\n        tbody.innerHTML = \"\";\\n\\n        leaderboard.forEach((entry, index) => {\\n            const row = document.createElement(\"tr\");\\n            row.innerHTML = `\\n                <td>${index + 1}</td>\\n                <td class=\"wallet\">${entry.PlayFabId}</td>\\n                <td>${entry.StatValue}</td>\\n            `;\\n            tbody.appendChild(row);\\n        });\\n    }\\n</script>\\n\\n</body>\\n</html>\\n',id:\"lubWJ8lz4\",layoutId:\"lubWJ8lz4\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"https://codepen.io/alexerlandsson/pen/mPWgpO\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-x52qhd-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<!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>Leaderboard</title>\\n    <style>\\n        body {\\n            font-family: Arial, sans-serif;\\n            background-color: #f4f4f900;\\n            color: #888;\\n            display: flex;\\n            justify-content: center;\\n            align-items: center;\\n            height: 100vh;\\n            margin: 0;\\n        }\\n        .leaderboard {\\n            width: 80%;\\n            max-width: 1000px;\\n            background: black;\\n            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);\\n            border-radius: 8px;\\n            overflow: hidden;\\n        }\\n        .leaderboard h2 {\\n            background: #222;\\n            color: white;\\n            margin: 0;\\n            padding: 15px;\\n            text-align: center;\\n        }\\n        table {\\n            width: 100%;\\n            border-collapse: collapse;\\n        }\\n        th, td {\\n            padding: 12px;\\n            text-align: left;\\n            border-bottom: 1px solid #ddd;\\n        }\\n        th {\\n            background-color: #111111;\\n        }\\n        tr:nth-child(even) {\\n            background-color: #111;\\n        }\\n        tr:hover {\\n            background-color: #333;\\n        }\\n        .wallet {\\n            font-family: \\'Courier New\\', Courier, monospace;\\n        }\\n    </style>\\n</head>\\n<body>\\n\\n<div class=\"leaderboard\">\\n    <h2>BabyDoge Leaderboard</h2>\\n    <table>\\n        <thead>\\n            <tr>\\n                <th>Rank</th>\\n                <th>Wallet Address</th>\\n                <th>Score</th>\\n            </tr>\\n        </thead>\\n        <tbody id=\"leaderboard-body\">\\n            <!-- Dynamic content will be inserted here -->\\n        </tbody>\\n    </table>\\n</div>\\n\\n<!-- Include PlayFab SDK -->\\n<script src=\"https://download.playfabapi.com/sdk/PlayFabClientApi.js\"></script>\\n<script>\\n    // Initialize PlayFab settings\\n    PlayFab.settings.titleId = \"E97A2\"; // Replace with your PlayFab Title ID\\n\\n    // Login to PlayFab\\n    PlayFabClientSDK.LoginWithCustomID({\\n        CustomId: \"GettingLeaderboard\",\\n        CreateAccount: true\\n    }, function (result, error) {\\n        if (result) {\\n            console.log(\"Logged in to PlayFab successfully.\");\\n            getLeaderboard();\\n        } else {\\n            console.error(\"Failed to log in to PlayFab:\", error);\\n        }\\n    });\\n\\n    // Fetch leaderboard data\\n    function getLeaderboard() {\\n        PlayFabClientSDK.GetLeaderboard({\\n            StatisticName: \"BDPLeaderboard\",\\n            StartPosition: 0,\\n            MaxResultsCount: 10\\n        }, function (result, error) {\\n            if (result) {\\n                console.log(\"Leaderboard data fetched successfully.\");\\n                updateLeaderboard(result.data.Leaderboard);\\n            } else {\\n                console.error(\"Failed to fetch leaderboard data:\", error);\\n            }\\n        });\\n    }\\n\\n    // Update the leaderboard table with fetched data\\n    function updateLeaderboard(leaderboard) {\\n        const tbody = document.getElementById(\"leaderboard-body\");\\n        tbody.innerHTML = \"\";\\n\\n        leaderboard.forEach((entry, index) => {\\n            const row = document.createElement(\"tr\");\\n            row.innerHTML = `\\n                <td>${index + 1}</td>\\n                <td class=\"wallet\">${entry.PlayFabId}</td>\\n                <td>${entry.StatValue}</td>\\n            `;\\n            tbody.appendChild(row);\\n        });\\n    }\\n</script>\\n\\n</body>\\n</html>\\n',id:\"se7oc2m0s\",layoutId:\"se7oc2m0s\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"https://codepen.io/alexerlandsson/pen/mPWgpO\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jmkrqn-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<!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>Leaderboard</title>\\n    <style>\\n        body {\\n            font-family: Arial, sans-serif;\\n            background-color: #f4f4f900;\\n            color: #888;\\n            display: flex;\\n            justify-content: center;\\n            align-items: center;\\n            height: 100vh;\\n            margin: 0;\\n        }\\n        .leaderboard {\\n            width: 80%;\\n            max-width: 1000px;\\n            background: black;\\n            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);\\n            border-radius: 8px;\\n            overflow: hidden;\\n        }\\n        .leaderboard h2 {\\n            background: #222;\\n            color: white;\\n            margin: 0;\\n            padding: 15px;\\n            text-align: center;\\n        }\\n        table {\\n            width: 100%;\\n            border-collapse: collapse;\\n        }\\n        th, td {\\n            padding: 12px;\\n            text-align: left;\\n            border-bottom: 1px solid #ddd;\\n        }\\n        th {\\n            background-color: #111111;\\n        }\\n        tr:nth-child(even) {\\n            background-color: #111;\\n        }\\n        tr:hover {\\n            background-color: #333;\\n        }\\n        .wallet {\\n            font-family: \\'Courier New\\', Courier, monospace;\\n        }\\n    </style>\\n</head>\\n<body>\\n\\n<div class=\"leaderboard\">\\n    <h2>RocketFi Leaderboard</h2>\\n    <table>\\n        <thead>\\n            <tr>\\n                <th>Rank</th>\\n                <th>Wallet Address</th>\\n                <th>Score</th>\\n            </tr>\\n        </thead>\\n        <tbody id=\"leaderboard-body\">\\n            <!-- Dynamic content will be inserted here -->\\n        </tbody>\\n    </table>\\n</div>\\n\\n<!-- Include PlayFab SDK -->\\n<script src=\"https://download.playfabapi.com/sdk/PlayFabClientApi.js\"></script>\\n<script>\\n    // Initialize PlayFab settings\\n    PlayFab.settings.titleId = \"E97A2\"; // Replace with your PlayFab Title ID\\n\\n    // Login to PlayFab\\n    PlayFabClientSDK.LoginWithCustomID({\\n        CustomId: \"GettingLeaderboard\",\\n        CreateAccount: true\\n    }, function (result, error) {\\n        if (result) {\\n            console.log(\"Logged in to PlayFab successfully.\");\\n            getLeaderboard();\\n        } else {\\n            console.error(\"Failed to log in to PlayFab:\", error);\\n        }\\n    });\\n\\n    // Fetch leaderboard data\\n    function getLeaderboard() {\\n        PlayFabClientSDK.GetLeaderboard({\\n            StatisticName: \"BDPLeaderboard\",\\n            StartPosition: 0,\\n            MaxResultsCount: 10\\n        }, function (result, error) {\\n            if (result) {\\n                console.log(\"Leaderboard data fetched successfully.\");\\n                updateLeaderboard(result.data.Leaderboard);\\n            } else {\\n                console.error(\"Failed to fetch leaderboard data:\", error);\\n            }\\n        });\\n    }\\n\\n    // Update the leaderboard table with fetched data\\n    function updateLeaderboard(leaderboard) {\\n        const tbody = document.getElementById(\"leaderboard-body\");\\n        tbody.innerHTML = \"\";\\n\\n        leaderboard.forEach((entry, index) => {\\n            const row = document.createElement(\"tr\");\\n            row.innerHTML = `\\n                <td>${index + 1}</td>\\n                <td class=\"wallet\">${entry.PlayFabId}</td>\\n                <td>${entry.StatValue}</td>\\n            `;\\n            tbody.appendChild(row);\\n        });\\n    }\\n</script>\\n\\n</body>\\n</html>\\n',id:\"IfiHFuDAd\",layoutId:\"IfiHFuDAd\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"https://codepen.io/alexerlandsson/pen/mPWgpO\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-euhk0o-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<!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>Leaderboard</title>\\n    <style>\\n        body {\\n            font-family: Arial, sans-serif;\\n            background-color: #f4f4f900;\\n            color: #888;\\n            display: flex;\\n            justify-content: center;\\n            align-items: center;\\n            height: 100vh;\\n            margin: 0;\\n        }\\n        .leaderboard {\\n            width: 80%;\\n            max-width: 1000px;\\n            background: black;\\n            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);\\n            border-radius: 8px;\\n            overflow: hidden;\\n        }\\n        .leaderboard h2 {\\n            background: #222;\\n            color: white;\\n            margin: 0;\\n            padding: 15px;\\n            text-align: center;\\n        }\\n        table {\\n            width: 100%;\\n            border-collapse: collapse;\\n        }\\n        th, td {\\n            padding: 12px;\\n            text-align: left;\\n            border-bottom: 1px solid #ddd;\\n        }\\n        th {\\n            background-color: #111111;\\n        }\\n        tr:nth-child(even) {\\n            background-color: #111;\\n        }\\n        tr:hover {\\n            background-color: #333;\\n        }\\n        .wallet {\\n            font-family: \\'Courier New\\', Courier, monospace;\\n        }\\n    </style>\\n</head>\\n<body>\\n\\n<div class=\"leaderboard\">\\n    <h2>ReflectR Leaderboard</h2>\\n    <table>\\n        <thead>\\n            <tr>\\n                <th>Rank</th>\\n                <th>Wallet Address</th>\\n                <th>Score</th>\\n            </tr>\\n        </thead>\\n        <tbody id=\"leaderboard-body\">\\n            <!-- Dynamic content will be inserted here -->\\n        </tbody>\\n    </table>\\n</div>\\n\\n<!-- Include PlayFab SDK -->\\n<script src=\"https://download.playfabapi.com/sdk/PlayFabClientApi.js\"></script>\\n<script>\\n    // Initialize PlayFab settings\\n    PlayFab.settings.titleId = \"E97A2\"; // Replace with your PlayFab Title ID\\n\\n    // Login to PlayFab\\n    PlayFabClientSDK.LoginWithCustomID({\\n        CustomId: \"GettingLeaderboard\",\\n        CreateAccount: true\\n    }, function (result, error) {\\n        if (result) {\\n            console.log(\"Logged in to PlayFab successfully.\");\\n            getLeaderboard();\\n        } else {\\n            console.error(\"Failed to log in to PlayFab:\", error);\\n        }\\n    });\\n\\n    // Fetch leaderboard data\\n    function getLeaderboard() {\\n        PlayFabClientSDK.GetLeaderboard({\\n            StatisticName: \"BDPLeaderboard\",\\n            StartPosition: 0,\\n            MaxResultsCount: 10\\n        }, function (result, error) {\\n            if (result) {\\n                console.log(\"Leaderboard data fetched successfully.\");\\n                updateLeaderboard(result.data.Leaderboard);\\n            } else {\\n                console.error(\"Failed to fetch leaderboard data:\", error);\\n            }\\n        });\\n    }\\n\\n    // Update the leaderboard table with fetched data\\n    function updateLeaderboard(leaderboard) {\\n        const tbody = document.getElementById(\"leaderboard-body\");\\n        tbody.innerHTML = \"\";\\n\\n        leaderboard.forEach((entry, index) => {\\n            const row = document.createElement(\"tr\");\\n            row.innerHTML = `\\n                <td>${index + 1}</td>\\n                <td class=\"wallet\">${entry.PlayFabId}</td>\\n                <td>${entry.StatValue}</td>\\n            `;\\n            tbody.appendChild(row);\\n        });\\n    }\\n</script>\\n\\n</body>\\n</html>\\n',id:\"ArtYVvVwH\",layoutId:\"ArtYVvVwH\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"https://codepen.io/alexerlandsson/pen/mPWgpO\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kburzv-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<!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>Leaderboard</title>\\n    <style>\\n        body {\\n            font-family: Arial, sans-serif;\\n            background-color: #f4f4f900;\\n            color: #888;\\n            display: flex;\\n            justify-content: center;\\n            align-items: center;\\n            height: 100vh;\\n            margin: 0;\\n        }\\n        .leaderboard {\\n            width: 80%;\\n            max-width: 1000px;\\n            background: black;\\n            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);\\n            border-radius: 8px;\\n            overflow: hidden;\\n        }\\n        .leaderboard h2 {\\n            background: #222;\\n            color: white;\\n            margin: 0;\\n            padding: 15px;\\n            text-align: center;\\n        }\\n        table {\\n            width: 100%;\\n            border-collapse: collapse;\\n        }\\n        th, td {\\n            padding: 12px;\\n            text-align: left;\\n            border-bottom: 1px solid #ddd;\\n        }\\n        th {\\n            background-color: #111111;\\n        }\\n        tr:nth-child(even) {\\n            background-color: #111;\\n        }\\n        tr:hover {\\n            background-color: #333;\\n        }\\n        .wallet {\\n            font-family: \\'Courier New\\', Courier, monospace;\\n        }\\n    </style>\\n</head>\\n<body>\\n\\n<div class=\"leaderboard\">\\n    <h2>AutoBTC Leaderboard</h2>\\n    <table>\\n        <thead>\\n            <tr>\\n                <th>Rank</th>\\n                <th>Wallet Address</th>\\n                <th>Score</th>\\n            </tr>\\n        </thead>\\n        <tbody id=\"leaderboard-body\">\\n            <!-- Dynamic content will be inserted here -->\\n        </tbody>\\n    </table>\\n</div>\\n\\n<!-- Include PlayFab SDK -->\\n<script src=\"https://download.playfabapi.com/sdk/PlayFabClientApi.js\"></script>\\n<script>\\n    // Initialize PlayFab settings\\n    PlayFab.settings.titleId = \"E97A2\"; // Replace with your PlayFab Title ID\\n\\n    // Login to PlayFab\\n    PlayFabClientSDK.LoginWithCustomID({\\n        CustomId: \"GettingLeaderboard\",\\n        CreateAccount: true\\n    }, function (result, error) {\\n        if (result) {\\n            console.log(\"Logged in to PlayFab successfully.\");\\n            getLeaderboard();\\n        } else {\\n            console.error(\"Failed to log in to PlayFab:\", error);\\n        }\\n    });\\n\\n    // Fetch leaderboard data\\n    function getLeaderboard() {\\n        PlayFabClientSDK.GetLeaderboard({\\n            StatisticName: \"BDPLeaderboard\",\\n            StartPosition: 0,\\n            MaxResultsCount: 10\\n        }, function (result, error) {\\n            if (result) {\\n                console.log(\"Leaderboard data fetched successfully.\");\\n                updateLeaderboard(result.data.Leaderboard);\\n            } else {\\n                console.error(\"Failed to fetch leaderboard data:\", error);\\n            }\\n        });\\n    }\\n\\n    // Update the leaderboard table with fetched data\\n    function updateLeaderboard(leaderboard) {\\n        const tbody = document.getElementById(\"leaderboard-body\");\\n        tbody.innerHTML = \"\";\\n\\n        leaderboard.forEach((entry, index) => {\\n            const row = document.createElement(\"tr\");\\n            row.innerHTML = `\\n                <td>${index + 1}</td>\\n                <td class=\"wallet\">${entry.PlayFabId}</td>\\n                <td>${entry.StatValue}</td>\\n            `;\\n            tbody.appendChild(row);\\n        });\\n    }\\n</script>\\n\\n</body>\\n</html>\\n',id:\"wCTZKuTSX\",layoutId:\"wCTZKuTSX\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"https://codepen.io/alexerlandsson/pen/mPWgpO\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k53mf1-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<!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>Leaderboard</title>\\n    <style>\\n        body {\\n            font-family: Arial, sans-serif;\\n            background-color: #f4f4f900;\\n            color: #888;\\n            display: flex;\\n            justify-content: center;\\n            align-items: center;\\n            height: 100vh;\\n            margin: 0;\\n        }\\n        .leaderboard {\\n            width: 80%;\\n            max-width: 1000px;\\n            background: black;\\n            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);\\n            border-radius: 8px;\\n            overflow: hidden;\\n        }\\n        .leaderboard h2 {\\n            background: #222;\\n            color: white;\\n            margin: 0;\\n            padding: 15px;\\n            text-align: center;\\n        }\\n        table {\\n            width: 100%;\\n            border-collapse: collapse;\\n        }\\n        th, td {\\n            padding: 12px;\\n            text-align: left;\\n            border-bottom: 1px solid #ddd;\\n        }\\n        th {\\n            background-color: #111111;\\n        }\\n        tr:nth-child(even) {\\n            background-color: #111;\\n        }\\n        tr:hover {\\n            background-color: #333;\\n        }\\n        .wallet {\\n            font-family: \\'Courier New\\', Courier, monospace;\\n        }\\n    </style>\\n</head>\\n<body>\\n\\n<div class=\"leaderboard\">\\n    <h2>Interlink Leaderboard</h2>\\n    <table>\\n        <thead>\\n            <tr>\\n                <th>Rank</th>\\n                <th>Wallet Address</th>\\n                <th>Score</th>\\n            </tr>\\n        </thead>\\n        <tbody id=\"leaderboard-body\">\\n            <!-- Dynamic content will be inserted here -->\\n        </tbody>\\n    </table>\\n</div>\\n\\n<!-- Include PlayFab SDK -->\\n<script src=\"https://download.playfabapi.com/sdk/PlayFabClientApi.js\"></script>\\n<script>\\n    // Initialize PlayFab settings\\n    PlayFab.settings.titleId = \"E97A2\"; // Replace with your PlayFab Title ID\\n\\n    // Login to PlayFab\\n    PlayFabClientSDK.LoginWithCustomID({\\n        CustomId: \"GettingLeaderboard\",\\n        CreateAccount: true\\n    }, function (result, error) {\\n        if (result) {\\n            console.log(\"Logged in to PlayFab successfully.\");\\n            getLeaderboard();\\n        } else {\\n            console.error(\"Failed to log in to PlayFab:\", error);\\n        }\\n    });\\n\\n    // Fetch leaderboard data\\n    function getLeaderboard() {\\n        PlayFabClientSDK.GetLeaderboard({\\n            StatisticName: \"BDPLeaderboard\",\\n            StartPosition: 0,\\n            MaxResultsCount: 10\\n        }, function (result, error) {\\n            if (result) {\\n                console.log(\"Leaderboard data fetched successfully.\");\\n                updateLeaderboard(result.data.Leaderboard);\\n            } else {\\n                console.error(\"Failed to fetch leaderboard data:\", error);\\n            }\\n        });\\n    }\\n\\n    // Update the leaderboard table with fetched data\\n    function updateLeaderboard(leaderboard) {\\n        const tbody = document.getElementById(\"leaderboard-body\");\\n        tbody.innerHTML = \"\";\\n\\n        leaderboard.forEach((entry, index) => {\\n            const row = document.createElement(\"tr\");\\n            row.innerHTML = `\\n                <td>${index + 1}</td>\\n                <td class=\"wallet\">${entry.PlayFabId}</td>\\n                <td>${entry.StatValue}</td>\\n            `;\\n            tbody.appendChild(row);\\n        });\\n    }\\n</script>\\n\\n</body>\\n</html>\\n',id:\"AakjTuHLX\",layoutId:\"AakjTuHLX\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"https://codepen.io/alexerlandsson/pen/mPWgpO\",width:\"100%\"})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-7wqmp4 hidden-145gpbn hidden-qqj4sh\",\"data-framer-name\":\"heroSection\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ueJGOKyqM:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:810,intrinsicWidth:1900,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+10),pixelHeight:2e3,pixelWidth:3e3,sizes:`max(${componentViewport?.width||\"100vw\"} - 20px, 1px)`,src:\"https://framerusercontent.com/images/g1vJUyR5pzjfz9Js4FgKp03PEsE.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/g1vJUyR5pzjfz9Js4FgKp03PEsE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/g1vJUyR5pzjfz9Js4FgKp03PEsE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/g1vJUyR5pzjfz9Js4FgKp03PEsE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/g1vJUyR5pzjfz9Js4FgKp03PEsE.jpg 3000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:810,intrinsicWidth:1900,pixelHeight:2e3,pixelWidth:3e3,src:\"https://framerusercontent.com/images/g1vJUyR5pzjfz9Js4FgKp03PEsE.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/g1vJUyR5pzjfz9Js4FgKp03PEsE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/g1vJUyR5pzjfz9Js4FgKp03PEsE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/g1vJUyR5pzjfz9Js4FgKp03PEsE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/g1vJUyR5pzjfz9Js4FgKp03PEsE.jpg 3000w\"},className:\"framer-1uz5o75\",\"data-border\":true,\"data-framer-name\":\"bg\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1utq8o8\",\"data-framer-name\":\"1200_container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ueJGOKyqM:{width:`min(max(${componentViewport?.width||\"100vw\"} - 20px, 1px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+0+10+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:94,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v2jptr-container\",\"data-framer-name\":\"nav\",name:\"nav\",children:/*#__PURE__*/_jsx(Navigation2,{height:\"100%\",id:\"kHxz8zMD8\",layoutId:\"kHxz8zMD8\",name:\"nav\",style:{width:\"100%\"},variant:\"f2ukMU91E\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jciw7u\",\"data-framer-name\":\"hero\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vtk96v\",\"data-framer-name\":\"textRows\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-nv7uly\",\"data-framer-name\":\"rows\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-c15aud\",\"data-framer-name\":\"titleDescription\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggR3JvdGVzay1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Clash Grotesk\", \"Clash Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Leaderboards\"})}),className:\"framer-jla381\",\"data-framer-name\":\"headline\",fonts:[\"FS;Clash Grotesk-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})})})})})]})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-i664rn hidden-145gpbn hidden-1qe1yh5\",\"data-framer-name\":\"heroSection\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sGOgoDttN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:810,intrinsicWidth:1900,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+5+0),pixelHeight:2e3,pixelWidth:3e3,sizes:`calc(${componentViewport?.width||\"100vw\"} - 10px)`,src:\"https://framerusercontent.com/images/g1vJUyR5pzjfz9Js4FgKp03PEsE.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/g1vJUyR5pzjfz9Js4FgKp03PEsE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/g1vJUyR5pzjfz9Js4FgKp03PEsE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/g1vJUyR5pzjfz9Js4FgKp03PEsE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/g1vJUyR5pzjfz9Js4FgKp03PEsE.jpg 3000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:810,intrinsicWidth:1900,pixelHeight:2e3,pixelWidth:3e3,src:\"https://framerusercontent.com/images/g1vJUyR5pzjfz9Js4FgKp03PEsE.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/g1vJUyR5pzjfz9Js4FgKp03PEsE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/g1vJUyR5pzjfz9Js4FgKp03PEsE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/g1vJUyR5pzjfz9Js4FgKp03PEsE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/g1vJUyR5pzjfz9Js4FgKp03PEsE.jpg 3000w\"},className:\"framer-1jcl1ll\",\"data-border\":true,\"data-framer-name\":\"bg\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k5tjv5\",\"data-framer-name\":\"1200_container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sGOgoDttN:{width:`min(${componentViewport?.width||\"100vw\"} - 50px, 1200px)`,y:(componentViewport?.y||0)+0+0+5+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:94,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s0ywux-container\",\"data-framer-name\":\"nav\",name:\"nav\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sGOgoDttN:{variant:\"cSukEtpq8\"}},children:/*#__PURE__*/_jsx(Navigation2,{height:\"100%\",id:\"WmEMRsjTu\",layoutId:\"WmEMRsjTu\",name:\"nav\",style:{width:\"100%\"},variant:\"f2ukMU91E\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-junrb1\",\"data-framer-name\":\"hero\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-l60o20\",\"data-framer-name\":\"textRows\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-zf1ccb\",\"data-framer-name\":\"rows\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hyteu5\",\"data-framer-name\":\"titleDescription\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggR3JvdGVzay1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Clash Grotesk\", \"Clash Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Leaderboards\"})}),className:\"framer-1y8dqkk\",\"data-framer-name\":\"headline\",fonts:[\"FS;Clash Grotesk-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})})})})})]})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sGOgoDttN:{y:(componentViewport?.y||0)+0+1524},ueJGOKyqM:{y:(componentViewport?.y||0)+0+1346}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:276,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1514,children:/*#__PURE__*/_jsx(Container,{className:\"framer-uo32av-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sGOgoDttN:{variant:\"e0ZJQOULU\"},ueJGOKyqM:{variant:\"gVvkeO3yo\"}},children:/*#__PURE__*/_jsx(Footer4,{height:\"100%\",id:\"froWya0zq\",layoutId:\"froWya0zq\",style:{width:\"100%\"},variant:\"eJlMXC28b\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bjG9u.framer-53s9yy, .framer-bjG9u .framer-53s9yy { display: block; }\",\".framer-bjG9u.framer-145gpbn { align-content: center; align-items: center; background-color: #090909; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-bjG9u .framer-fubd0q, .framer-bjG9u .framer-7wqmp4, .framer-bjG9u .framer-i664rn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 100%; }\",\".framer-bjG9u .framer-1c8ib7, .framer-bjG9u .framer-1uz5o75, .framer-bjG9u .framer-1jcl1ll { --border-bottom-width: 1px; --border-color: #2a2a2a; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bjG9u .framer-rkceo8, .framer-bjG9u .framer-1utq8o8, .framer-bjG9u .framer-1k5tjv5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bjG9u .framer-1c81afa-container, .framer-bjG9u .framer-1v2jptr-container, .framer-bjG9u .framer-s0ywux-container, .framer-bjG9u .framer-uo32av-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-bjG9u .framer-nwjbsn, .framer-bjG9u .framer-1jciw7u, .framer-bjG9u .framer-junrb1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 33px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-bjG9u .framer-y022v4, .framer-bjG9u .framer-1vtk96v, .framer-bjG9u .framer-l60o20 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bjG9u .framer-zlxeut, .framer-bjG9u .framer-nv7uly, .framer-bjG9u .framer-zf1ccb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bjG9u .framer-xh2ief, .framer-bjG9u .framer-c15aud, .framer-bjG9u .framer-1hyteu5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bjG9u .framer-shoxmi, .framer-bjG9u .framer-jla381, .framer-bjG9u .framer-1y8dqkk { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-bjG9u .framer-vch78m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px; position: relative; width: 100%; }\",\".framer-bjG9u .framer-1v3627i { align-content: center; align-items: center; background: radial-gradient(125.89999999999999% 125.89999999999996% at -5.5% 111.7%, #090909 0%, rgb(20, 20, 20) 92.85566210746765%); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1920px; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-bjG9u .framer-2iu67o-container, .framer-bjG9u .framer-x52qhd-container, .framer-bjG9u .framer-1jmkrqn-container, .framer-bjG9u .framer-euhk0o-container, .framer-bjG9u .framer-1kburzv-container, .framer-bjG9u .framer-1k53mf1-container { flex: none; height: 165px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-bjG9u.framer-145gpbn, .framer-bjG9u .framer-fubd0q, .framer-bjG9u .framer-1c8ib7, .framer-bjG9u .framer-rkceo8, .framer-bjG9u .framer-nwjbsn, .framer-bjG9u .framer-y022v4, .framer-bjG9u .framer-zlxeut, .framer-bjG9u .framer-xh2ief, .framer-bjG9u .framer-vch78m, .framer-bjG9u .framer-1v3627i, .framer-bjG9u .framer-7wqmp4, .framer-bjG9u .framer-1uz5o75, .framer-bjG9u .framer-1utq8o8, .framer-bjG9u .framer-1jciw7u, .framer-bjG9u .framer-1vtk96v, .framer-bjG9u .framer-nv7uly, .framer-bjG9u .framer-c15aud, .framer-bjG9u .framer-i664rn, .framer-bjG9u .framer-1jcl1ll, .framer-bjG9u .framer-1k5tjv5, .framer-bjG9u .framer-junrb1, .framer-bjG9u .framer-l60o20, .framer-bjG9u .framer-zf1ccb, .framer-bjG9u .framer-1hyteu5 { gap: 0px; } .framer-bjG9u.framer-145gpbn > *, .framer-bjG9u .framer-1v3627i > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-bjG9u.framer-145gpbn > :first-child, .framer-bjG9u .framer-1c8ib7 > :first-child, .framer-bjG9u .framer-rkceo8 > :first-child, .framer-bjG9u .framer-nwjbsn > :first-child, .framer-bjG9u .framer-y022v4 > :first-child, .framer-bjG9u .framer-zlxeut > :first-child, .framer-bjG9u .framer-xh2ief > :first-child, .framer-bjG9u .framer-1v3627i > :first-child, .framer-bjG9u .framer-1uz5o75 > :first-child, .framer-bjG9u .framer-1utq8o8 > :first-child, .framer-bjG9u .framer-1jciw7u > :first-child, .framer-bjG9u .framer-1vtk96v > :first-child, .framer-bjG9u .framer-nv7uly > :first-child, .framer-bjG9u .framer-c15aud > :first-child, .framer-bjG9u .framer-1jcl1ll > :first-child, .framer-bjG9u .framer-1k5tjv5 > :first-child, .framer-bjG9u .framer-junrb1 > :first-child, .framer-bjG9u .framer-l60o20 > :first-child, .framer-bjG9u .framer-zf1ccb > :first-child, .framer-bjG9u .framer-1hyteu5 > :first-child { margin-top: 0px; } .framer-bjG9u.framer-145gpbn > :last-child, .framer-bjG9u .framer-1c8ib7 > :last-child, .framer-bjG9u .framer-rkceo8 > :last-child, .framer-bjG9u .framer-nwjbsn > :last-child, .framer-bjG9u .framer-y022v4 > :last-child, .framer-bjG9u .framer-zlxeut > :last-child, .framer-bjG9u .framer-xh2ief > :last-child, .framer-bjG9u .framer-1v3627i > :last-child, .framer-bjG9u .framer-1uz5o75 > :last-child, .framer-bjG9u .framer-1utq8o8 > :last-child, .framer-bjG9u .framer-1jciw7u > :last-child, .framer-bjG9u .framer-1vtk96v > :last-child, .framer-bjG9u .framer-nv7uly > :last-child, .framer-bjG9u .framer-c15aud > :last-child, .framer-bjG9u .framer-1jcl1ll > :last-child, .framer-bjG9u .framer-1k5tjv5 > :last-child, .framer-bjG9u .framer-junrb1 > :last-child, .framer-bjG9u .framer-l60o20 > :last-child, .framer-bjG9u .framer-zf1ccb > :last-child, .framer-bjG9u .framer-1hyteu5 > :last-child { margin-bottom: 0px; } .framer-bjG9u .framer-fubd0q > *, .framer-bjG9u .framer-vch78m > *, .framer-bjG9u .framer-7wqmp4 > *, .framer-bjG9u .framer-i664rn > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-bjG9u .framer-fubd0q > :first-child, .framer-bjG9u .framer-vch78m > :first-child, .framer-bjG9u .framer-7wqmp4 > :first-child, .framer-bjG9u .framer-i664rn > :first-child { margin-left: 0px; } .framer-bjG9u .framer-fubd0q > :last-child, .framer-bjG9u .framer-vch78m > :last-child, .framer-bjG9u .framer-7wqmp4 > :last-child, .framer-bjG9u .framer-i664rn > :last-child { margin-right: 0px; } .framer-bjG9u .framer-1c8ib7 > *, .framer-bjG9u .framer-rkceo8 > *, .framer-bjG9u .framer-1uz5o75 > *, .framer-bjG9u .framer-1utq8o8 > *, .framer-bjG9u .framer-1jcl1ll > *, .framer-bjG9u .framer-1k5tjv5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-bjG9u .framer-nwjbsn > *, .framer-bjG9u .framer-1jciw7u > *, .framer-bjG9u .framer-junrb1 > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-bjG9u .framer-y022v4 > *, .framer-bjG9u .framer-zlxeut > *, .framer-bjG9u .framer-1vtk96v > *, .framer-bjG9u .framer-nv7uly > *, .framer-bjG9u .framer-l60o20 > *, .framer-bjG9u .framer-zf1ccb > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-bjG9u .framer-xh2ief > *, .framer-bjG9u .framer-c15aud > *, .framer-bjG9u .framer-1hyteu5 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",'.framer-bjG9u[data-border=\"true\"]::after, .framer-bjG9u [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1439px) { .framer-bjG9u.framer-145gpbn { width: 810px; } .framer-bjG9u .framer-vch78m { order: 3; padding: 21px 50px 21px 50px; } .framer-bjG9u .framer-1v3627i { gap: 60px; } .framer-bjG9u .framer-2iu67o-container, .framer-bjG9u .framer-x52qhd-container, .framer-bjG9u .framer-1jmkrqn-container, .framer-bjG9u .framer-euhk0o-container, .framer-bjG9u .framer-1kburzv-container, .framer-bjG9u .framer-1k53mf1-container { height: 116px; } .framer-bjG9u .framer-7wqmp4 { order: 0; } .framer-bjG9u .framer-uo32av-container { order: 4; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-bjG9u .framer-1v3627i { gap: 0px; } .framer-bjG9u .framer-1v3627i > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-bjG9u .framer-1v3627i > :first-child { margin-top: 0px; } .framer-bjG9u .framer-1v3627i > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-bjG9u.framer-145gpbn { width: 390px; } .framer-bjG9u .framer-vch78m { gap: 0px; order: 3; padding: 0px 20px 0px 20px; } .framer-bjG9u .framer-2iu67o-container, .framer-bjG9u .framer-x52qhd-container, .framer-bjG9u .framer-1jmkrqn-container, .framer-bjG9u .framer-euhk0o-container, .framer-bjG9u .framer-1kburzv-container, .framer-bjG9u .framer-1k53mf1-container { height: 216px; } .framer-bjG9u .framer-i664rn { flex-direction: column; order: 0; padding: 5px; } .framer-bjG9u .framer-1jcl1ll { flex: none; width: 100%; } .framer-bjG9u .framer-junrb1 { gap: 26px; padding: 30px 0px 40px 0px; } .framer-bjG9u .framer-zf1ccb { gap: 30px; } .framer-bjG9u .framer-1hyteu5 { align-content: center; align-items: center; } .framer-bjG9u .framer-uo32av-container { order: 4; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-bjG9u .framer-vch78m, .framer-bjG9u .framer-i664rn, .framer-bjG9u .framer-junrb1, .framer-bjG9u .framer-zf1ccb { gap: 0px; } .framer-bjG9u .framer-vch78m > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-bjG9u .framer-vch78m > :first-child { margin-left: 0px; } .framer-bjG9u .framer-vch78m > :last-child { margin-right: 0px; } .framer-bjG9u .framer-i664rn > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-bjG9u .framer-i664rn > :first-child, .framer-bjG9u .framer-junrb1 > :first-child, .framer-bjG9u .framer-zf1ccb > :first-child { margin-top: 0px; } .framer-bjG9u .framer-i664rn > :last-child, .framer-bjG9u .framer-junrb1 > :last-child, .framer-bjG9u .framer-zf1ccb > :last-child { margin-bottom: 0px; } .framer-bjG9u .framer-junrb1 > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-bjG9u .framer-zf1ccb > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1790\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ueJGOKyqM\":{\"layout\":[\"fixed\",\"auto\"]},\"sGOgoDttN\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const Framerj3AserHhL=withCSS(Component,css,\"framer-bjG9u\");export default Framerj3AserHhL;Framerj3AserHhL.displayName=\"Play\";Framerj3AserHhL.defaultProps={height:1790,width:1440};addFonts(Framerj3AserHhL,[{explicitInter:true,fonts:[{family:\"Clash Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MKEEQN57GWBZOSYWCRODNJOOZNPLMAKN/5SPTSZGHEACWWLF34DQ4WAA4OGU6PQIF/KN7DX4F6PXB74R6L2K2Y4NH3CB7FC53Q.woff2\",weight:\"600\"}]},...Navigation2Fonts,...EmbedFonts,...Footer4Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerj3AserHhL\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"1790\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ueJGOKyqM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sGOgoDttN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "style", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "iframeHeight", "setIframeHeight", "hasScript", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "htmlStyle", "containerStyles", "SocialMediaIconFonts", "getFonts", "T6lyCm4_d_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "GRkaX5wc4", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "Link", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "Framerh38Fsjcdp", "withCSS", "h38Fsjcdp_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "Navigation2Fonts", "getFonts", "Qxij2YWTL_default", "MotionDivWithFX", "withFX", "motion", "EmbedFonts", "Embed", "Footer4Fonts", "h38Fsjcdp_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "Container", "RichText2", "x", "PropertyOverrides2", "css", "Framerj3AserHhL", "withCSS", "j3AserHhL_default", "addFonts", "__FramerMetadata__"]
}
