{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js", "ssg:https://framerusercontent.com/modules/9K4NRoOO7iCZcBzMF5BQ/p8aaneNq56YZPjT4hEdg/gEdpMXNCP.js", "ssg:https://framerusercontent.com/modules/aPy7Vv9Fgghbi9iJqapW/JuFFWMiDQAQNzEc3bAZp/T2U0cxvWw.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */ function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */ function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches);},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */ function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */ const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */ const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */ if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){const numItems=Children.count(slots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */ const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */ const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */ const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */ const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */ const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth,],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */ const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */ const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start:start1,end:end1}=itemSizes.current[i];if(end1<current||start1>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */ let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */ if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility1=progress(start,end,target);if(visibility1>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */ if(numItems===0){return /*#__PURE__*/ _jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/ _jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/ _jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/ _jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(slots,(child,index)=>{var ref;/*#__PURE__*/ return _jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/ cloneElement(child,{...child.props,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,...childStyle}})});})}),/*#__PURE__*/ _jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/ _jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/ _jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/ _jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/ _jsx(MouseStyles,{})]});};/* Default Properties */ Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */ addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var ref,ref1;if(!((ref=scrollInfo.current)===null||ref===void 0?void 0:ref.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((ref1=scrollInfo.current)===null||ref1===void 0?void 0:ref1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/ _jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/ _jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/ _jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */ const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */ const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (55cf326)\nimport{jsx as _jsx,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,PathVariablesContext,ResolveLinks,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useQueryData,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import Games from\"https://framerusercontent.com/modules/7S551AqFX3bmEqNXeSkD/BOJlOFazV3x6XubUqath/QbiN9T6xM.js\";import GameCardV5 from\"https://framerusercontent.com/modules/BxKfZ9rPShZnL0dADwSd/XJe8aHIddLvZLWIg2FmZ/EEgy4oLPL.js\";const GameCardV5Fonts=getFonts(GameCardV5);const CarouselFonts=getFonts(Carousel);const cycleOrder=[\"i9wOdRSo9\",\"m4UnB5_Lj\"];const serializationHash=\"framer-rcmdr\";const variantClassNames={i9wOdRSo9:\"framer-v-vrdne\",m4UnB5_Lj:\"framer-v-1rai3hq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const query=prequery=>prequery({from:{alias:\"G0rLRMBkL\",data:Games,type:\"Collection\"},select:[{collection:\"G0rLRMBkL\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"G0rLRMBkL\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"G0rLRMBkL\",name:\"cdW9XmGSy\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"uncle-profit\"},type:\"BinaryOperation\"}});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const query1=prequery=>prequery({from:{alias:\"R9xqDEN5G\",data:Games,type:\"Collection\"},select:[{collection:\"R9xqDEN5G\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"R9xqDEN5G\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"R9xqDEN5G\",name:\"cdW9XmGSy\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"chomplings\"},type:\"BinaryOperation\"}});const query2=prequery=>prequery({from:{alias:\"eU53PHb4u\",data:Games,type:\"Collection\"},select:[{collection:\"eU53PHb4u\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"eU53PHb4u\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"eU53PHb4u\",name:\"cdW9XmGSy\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"big-stack-lumberjack\"},type:\"BinaryOperation\"}});const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const query3=prequery=>prequery({from:{alias:\"FidVJ5XUh\",data:Games,type:\"Collection\"},select:[{collection:\"FidVJ5XUh\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"FidVJ5XUh\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"FidVJ5XUh\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"FidVJ5XUh\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"FidVJ5XUh\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"FidVJ5XUh\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"FidVJ5XUh\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"FidVJ5XUh\",name:\"cdW9XmGSy\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"pond-of-plinko\"},type:\"BinaryOperation\"}});const query4=prequery=>prequery({from:{alias:\"T8oIMhg_j\",data:Games,type:\"Collection\"},select:[{collection:\"T8oIMhg_j\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"T8oIMhg_j\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"T8oIMhg_j\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"T8oIMhg_j\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"T8oIMhg_j\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"T8oIMhg_j\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"T8oIMhg_j\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"T8oIMhg_j\",name:\"cdW9XmGSy\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"dreadworks\"},type:\"BinaryOperation\"}});const query5=prequery=>prequery({from:{alias:\"JXOSMvNOR\",data:Games,type:\"Collection\"},select:[{collection:\"JXOSMvNOR\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"JXOSMvNOR\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"JXOSMvNOR\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"JXOSMvNOR\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"JXOSMvNOR\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"JXOSMvNOR\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"JXOSMvNOR\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"JXOSMvNOR\",name:\"cdW9XmGSy\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"win-o-mart\"},type:\"BinaryOperation\"}});const query6=prequery=>prequery({from:{alias:\"e9SipKrp5\",data:Games,type:\"Collection\"},select:[{collection:\"e9SipKrp5\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"e9SipKrp5\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"e9SipKrp5\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"e9SipKrp5\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"e9SipKrp5\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"e9SipKrp5\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"e9SipKrp5\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"e9SipKrp5\",name:\"cdW9XmGSy\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"eldritch-dungeon\"},type:\"BinaryOperation\"}});const query7=prequery=>prequery({from:{alias:\"QUwHGq1xj\",data:Games,type:\"Collection\"},select:[{collection:\"QUwHGq1xj\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"QUwHGq1xj\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"QUwHGq1xj\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"QUwHGq1xj\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"QUwHGq1xj\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"QUwHGq1xj\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"QUwHGq1xj\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"QUwHGq1xj\",name:\"DIdQCCrMG\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Honey Hunters\"},type:\"BinaryOperation\"}});const query8=prequery=>prequery({from:{alias:\"VCZO_bsfF\",data:Games,type:\"Collection\"},select:[{collection:\"VCZO_bsfF\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"VCZO_bsfF\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"VCZO_bsfF\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"VCZO_bsfF\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"VCZO_bsfF\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"VCZO_bsfF\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"VCZO_bsfF\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"VCZO_bsfF\",name:\"DIdQCCrMG\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"tarasque\"},type:\"BinaryOperation\"}});const query9=prequery=>prequery({from:{alias:\"Y1G31bBBM\",data:Games,type:\"Collection\"},select:[{collection:\"Y1G31bBBM\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"Y1G31bBBM\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"Y1G31bBBM\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"Y1G31bBBM\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"Y1G31bBBM\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"Y1G31bBBM\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"Y1G31bBBM\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"Y1G31bBBM\",name:\"DIdQCCrMG\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Pine of Plinko 2\"},type:\"BinaryOperation\"}});const query10=prequery=>prequery({from:{alias:\"SDD0uGCbY\",data:Games,type:\"Collection\"},select:[{collection:\"SDD0uGCbY\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"SDD0uGCbY\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"SDD0uGCbY\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"SDD0uGCbY\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"SDD0uGCbY\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"SDD0uGCbY\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"SDD0uGCbY\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"SDD0uGCbY\",name:\"DIdQCCrMG\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Darkness\"},type:\"BinaryOperation\"}});const query11=prequery=>prequery({from:{alias:\"O3do1uXjo\",data:Games,type:\"Collection\"},select:[{collection:\"O3do1uXjo\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"O3do1uXjo\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"O3do1uXjo\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"O3do1uXjo\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"O3do1uXjo\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"O3do1uXjo\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"O3do1uXjo\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"O3do1uXjo\",name:\"DIdQCCrMG\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Royal Potato 2\"},type:\"BinaryOperation\"}});const query12=prequery=>prequery({from:{alias:\"kHrabLf5U\",data:Games,type:\"Collection\"},select:[{collection:\"kHrabLf5U\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"kHrabLf5U\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"kHrabLf5U\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"kHrabLf5U\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"kHrabLf5U\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"kHrabLf5U\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"kHrabLf5U\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"kHrabLf5U\",name:\"DIdQCCrMG\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Shinobi Spirit\"},type:\"BinaryOperation\"}});const query13=prequery=>prequery({from:{alias:\"uvwtyTEue\",data:Games,type:\"Collection\"},select:[{collection:\"uvwtyTEue\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"uvwtyTEue\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"uvwtyTEue\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"uvwtyTEue\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"uvwtyTEue\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"uvwtyTEue\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"uvwtyTEue\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"uvwtyTEue\",name:\"DIdQCCrMG\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Cash Defense\"},type:\"BinaryOperation\"}});const query14=prequery=>prequery({from:{alias:\"vOB_oamlg\",data:Games,type:\"Collection\"},select:[{collection:\"vOB_oamlg\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"vOB_oamlg\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"vOB_oamlg\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"vOB_oamlg\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"vOB_oamlg\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"vOB_oamlg\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"vOB_oamlg\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"vOB_oamlg\",name:\"DIdQCCrMG\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Holy Hand Grenade\"},type:\"BinaryOperation\"}});const query15=prequery=>prequery({from:{alias:\"vNAdsRE2h\",data:Games,type:\"Collection\"},select:[{collection:\"vNAdsRE2h\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"vNAdsRE2h\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"vNAdsRE2h\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"vNAdsRE2h\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"vNAdsRE2h\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"vNAdsRE2h\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"vNAdsRE2h\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"vNAdsRE2h\",name:\"DIdQCCrMG\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Pine of Plinko\"},type:\"BinaryOperation\"}});const query16=prequery=>prequery({from:{alias:\"dOsNDt3rE\",data:Games,type:\"Collection\"},select:[{collection:\"dOsNDt3rE\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"dOsNDt3rE\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"dOsNDt3rE\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"dOsNDt3rE\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"dOsNDt3rE\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"dOsNDt3rE\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"dOsNDt3rE\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"dOsNDt3rE\",name:\"DIdQCCrMG\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Reapers\"},type:\"BinaryOperation\"}});const query17=prequery=>prequery({from:{alias:\"AxxM7tGJR\",data:Games,type:\"Collection\"},select:[{collection:\"AxxM7tGJR\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"AxxM7tGJR\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"AxxM7tGJR\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"AxxM7tGJR\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"AxxM7tGJR\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"AxxM7tGJR\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"AxxM7tGJR\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"AxxM7tGJR\",name:\"DIdQCCrMG\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Huntress: Wild Vengeance\"},type:\"BinaryOperation\"}});const query18=prequery=>prequery({from:{alias:\"KiL5HQfew\",data:Games,type:\"Collection\"},select:[{collection:\"KiL5HQfew\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"KiL5HQfew\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"KiL5HQfew\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"KiL5HQfew\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"KiL5HQfew\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"KiL5HQfew\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"KiL5HQfew\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"KiL5HQfew\",name:\"DIdQCCrMG\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Out of the Ice\"},type:\"BinaryOperation\"}});const query19=prequery=>prequery({from:{alias:\"Vna3sMYz9\",data:Games,type:\"Collection\"},select:[{collection:\"Vna3sMYz9\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"Vna3sMYz9\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"Vna3sMYz9\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"Vna3sMYz9\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"Vna3sMYz9\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"Vna3sMYz9\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"Vna3sMYz9\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"Vna3sMYz9\",name:\"DIdQCCrMG\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Royal Potato\"},type:\"BinaryOperation\"}});const query20=prequery=>prequery({from:{alias:\"bv4bUw4MG\",data:Games,type:\"Collection\"},select:[{collection:\"bv4bUw4MG\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"bv4bUw4MG\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"bv4bUw4MG\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"bv4bUw4MG\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"bv4bUw4MG\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"bv4bUw4MG\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"bv4bUw4MG\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"bv4bUw4MG\",name:\"DIdQCCrMG\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Crystal Golem\"},type:\"BinaryOperation\"}});const query21=prequery=>prequery({from:{alias:\"QyHzq0vv4\",data:Games,type:\"Collection\"},select:[{collection:\"QyHzq0vv4\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"QyHzq0vv4\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"QyHzq0vv4\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"QyHzq0vv4\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"QyHzq0vv4\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"QyHzq0vv4\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"QyHzq0vv4\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"QyHzq0vv4\",name:\"DIdQCCrMG\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Book of Destiny\"},type:\"BinaryOperation\"}});const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=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={\"Game Carousel\":\"i9wOdRSo9\",\"Variant 2\":\"m4UnB5_Lj\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"i9wOdRSo9\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,cdW9XmGSyG0rLRMBkL,idG0rLRMBkL,cdW9XmGSyR9xqDEN5G,idR9xqDEN5G,cdW9XmGSyeU53PHb4u,ideU53PHb4u,ikl9VcrCQFidVJ5XUh,DIdQCCrMGFidVJ5XUh,znZ8GeW5tFidVJ5XUh,cdW9XmGSyFidVJ5XUh,SHo2EPTW_FidVJ5XUh,NkqxYPVOuFidVJ5XUh,idFidVJ5XUh,ikl9VcrCQT8oIMhg_j,DIdQCCrMGT8oIMhg_j,znZ8GeW5tT8oIMhg_j,cdW9XmGSyT8oIMhg_j,SHo2EPTW_T8oIMhg_j,NkqxYPVOuT8oIMhg_j,idT8oIMhg_j,ikl9VcrCQJXOSMvNOR,DIdQCCrMGJXOSMvNOR,znZ8GeW5tJXOSMvNOR,cdW9XmGSyJXOSMvNOR,SHo2EPTW_JXOSMvNOR,NkqxYPVOuJXOSMvNOR,idJXOSMvNOR,ikl9VcrCQe9SipKrp5,DIdQCCrMGe9SipKrp5,znZ8GeW5te9SipKrp5,cdW9XmGSye9SipKrp5,SHo2EPTW_e9SipKrp5,NkqxYPVOue9SipKrp5,ide9SipKrp5,ikl9VcrCQQUwHGq1xj,DIdQCCrMGQUwHGq1xj,znZ8GeW5tQUwHGq1xj,cdW9XmGSyQUwHGq1xj,SHo2EPTW_QUwHGq1xj,NkqxYPVOuQUwHGq1xj,idQUwHGq1xj,ikl9VcrCQVCZO_bsfF,DIdQCCrMGVCZO_bsfF,znZ8GeW5tVCZO_bsfF,cdW9XmGSyVCZO_bsfF,SHo2EPTW_VCZO_bsfF,NkqxYPVOuVCZO_bsfF,idVCZO_bsfF,ikl9VcrCQY1G31bBBM,DIdQCCrMGY1G31bBBM,znZ8GeW5tY1G31bBBM,cdW9XmGSyY1G31bBBM,SHo2EPTW_Y1G31bBBM,NkqxYPVOuY1G31bBBM,idY1G31bBBM,ikl9VcrCQSDD0uGCbY,DIdQCCrMGSDD0uGCbY,znZ8GeW5tSDD0uGCbY,cdW9XmGSySDD0uGCbY,SHo2EPTW_SDD0uGCbY,NkqxYPVOuSDD0uGCbY,idSDD0uGCbY,ikl9VcrCQO3do1uXjo,DIdQCCrMGO3do1uXjo,znZ8GeW5tO3do1uXjo,cdW9XmGSyO3do1uXjo,SHo2EPTW_O3do1uXjo,NkqxYPVOuO3do1uXjo,idO3do1uXjo,ikl9VcrCQkHrabLf5U,DIdQCCrMGkHrabLf5U,znZ8GeW5tkHrabLf5U,cdW9XmGSykHrabLf5U,SHo2EPTW_kHrabLf5U,NkqxYPVOukHrabLf5U,idkHrabLf5U,ikl9VcrCQuvwtyTEue,DIdQCCrMGuvwtyTEue,znZ8GeW5tuvwtyTEue,cdW9XmGSyuvwtyTEue,SHo2EPTW_uvwtyTEue,NkqxYPVOuuvwtyTEue,iduvwtyTEue,ikl9VcrCQvOB_oamlg,DIdQCCrMGvOB_oamlg,znZ8GeW5tvOB_oamlg,cdW9XmGSyvOB_oamlg,SHo2EPTW_vOB_oamlg,NkqxYPVOuvOB_oamlg,idvOB_oamlg,ikl9VcrCQvNAdsRE2h,DIdQCCrMGvNAdsRE2h,znZ8GeW5tvNAdsRE2h,cdW9XmGSyvNAdsRE2h,SHo2EPTW_vNAdsRE2h,NkqxYPVOuvNAdsRE2h,idvNAdsRE2h,ikl9VcrCQdOsNDt3rE,DIdQCCrMGdOsNDt3rE,znZ8GeW5tdOsNDt3rE,cdW9XmGSydOsNDt3rE,SHo2EPTW_dOsNDt3rE,NkqxYPVOudOsNDt3rE,iddOsNDt3rE,ikl9VcrCQAxxM7tGJR,DIdQCCrMGAxxM7tGJR,znZ8GeW5tAxxM7tGJR,cdW9XmGSyAxxM7tGJR,SHo2EPTW_AxxM7tGJR,NkqxYPVOuAxxM7tGJR,idAxxM7tGJR,ikl9VcrCQKiL5HQfew,DIdQCCrMGKiL5HQfew,znZ8GeW5tKiL5HQfew,cdW9XmGSyKiL5HQfew,SHo2EPTW_KiL5HQfew,NkqxYPVOuKiL5HQfew,idKiL5HQfew,ikl9VcrCQVna3sMYz9,DIdQCCrMGVna3sMYz9,znZ8GeW5tVna3sMYz9,cdW9XmGSyVna3sMYz9,SHo2EPTW_Vna3sMYz9,NkqxYPVOuVna3sMYz9,idVna3sMYz9,ikl9VcrCQbv4bUw4MG,DIdQCCrMGbv4bUw4MG,znZ8GeW5tbv4bUw4MG,cdW9XmGSybv4bUw4MG,SHo2EPTW_bv4bUw4MG,NkqxYPVOubv4bUw4MG,idbv4bUw4MG,ikl9VcrCQQyHzq0vv4,DIdQCCrMGQyHzq0vv4,znZ8GeW5tQyHzq0vv4,cdW9XmGSyQyHzq0vv4,SHo2EPTW_QyHzq0vv4,NkqxYPVOuQyHzq0vv4,idQyHzq0vv4,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"i9wOdRSo9\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id: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(scopingClassNames,\"framer-vrdne\",className,classNames),\"data-framer-name\":\"Game Carousel\",layoutDependency:layoutDependency,layoutId:\"i9wOdRSo9\",ref:refBinding,style:{backgroundColor:\"var(--token-2f61e909-41ca-4864-8eb7-3e2bf8b88786, rgb(24, 43, 47))\",...style},...addPropertyOverrides({m4UnB5_Lj:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-j8epvj-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"OpoRs8fcw-container\",nodeId:\"OpoRs8fcw\",rendersWithMotion:true,scopeId:\"gEdpMXNCP\",children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"Explore our games\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:0,arrowRadius:40,arrowSize:48,leftArrow:\"https://framerusercontent.com/images/OSyDM0902YUWCW3BhKlXRzDEDM.svg\",rightArrow:\"https://framerusercontent.com/images/wj3FKZyGQXUUzW1VoePSlN6W8.svg\",showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:24,height:\"100%\",id:\"OpoRs8fcw\",layoutId:\"OpoRs8fcw\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"stretch\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12dnle\",\"data-framer-name\":\"Uncle Profit\",layoutDependency:layoutDependency,layoutId:\"G0rLRMBkL\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"G0rLRMBkL\",data:Games,type:\"Collection\"},select:[{collection:\"G0rLRMBkL\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"G0rLRMBkL\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"G0rLRMBkL\",name:\"cdW9XmGSy\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"uncle-profit\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({cdW9XmGSy:cdW9XmGSyG0rLRMBkL,id:idG0rLRMBkL},index)=>{cdW9XmGSyG0rLRMBkL??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`G0rLRMBkL-${idG0rLRMBkL}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{cdW9XmGSy:cdW9XmGSyG0rLRMBkL},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16py2is\",layoutDependency:layoutDependency,layoutId:\"st8dnUTPI\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyG0rLRMBkL},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined},{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyG0rLRMBkL},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:463,width:\"260px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1n036e-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"C28ox5IOK-container\",nodeId:\"C28ox5IOK\",rendersWithMotion:true,scopeId:\"gEdpMXNCP\",children:/*#__PURE__*/_jsx(GameCardV5,{bVCdliR2a:\"https://d2drhksbtcqozo.cloudfront.net/casino/apex/layer/?gameid=uncleprofit&partnerid=1&channel=web&moneymode=fun&jurisdiction=MT&lang=en_GB&currency=EUR&&apex=1&gameurl=https%3A%2F%2Fd2drhksbtcqozo.cloudfront.net%2Fcasino%2Flauncher.html\",height:\"100%\",id:\"C28ox5IOK\",iKk0Mv4dI:true,KPi4iPrkd:\"A Chaotic Neighbourhood\",layoutId:\"C28ox5IOK\",Q2gmuz59P:resolvedLinks[1],rGhU11Toz:resolvedLinks[0],style:{width:\"100%\"},variant:\"F9M1IJBDw\",width:\"100%\",X6yObN9qj:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/fWkWbNxoOzocpJjAoiplQy16Zog.png\",srcSet:\"https://framerusercontent.com/images/fWkWbNxoOzocpJjAoiplQy16Zog.png?scale-down-to=512 512w,https://framerusercontent.com/images/fWkWbNxoOzocpJjAoiplQy16Zog.png 800w\"},\"\"),zq5AwmT6K:\"Uncle Profit\"})})})})})})},idG0rLRMBkL);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-b9igr9\",\"data-framer-name\":\"Chomplings\",layoutDependency:layoutDependency,layoutId:\"R9xqDEN5G\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"R9xqDEN5G\",data:Games,type:\"Collection\"},select:[{collection:\"R9xqDEN5G\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"R9xqDEN5G\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"R9xqDEN5G\",name:\"cdW9XmGSy\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"chomplings\"},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({cdW9XmGSy:cdW9XmGSyR9xqDEN5G,id:idR9xqDEN5G},index1)=>{cdW9XmGSyR9xqDEN5G??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`R9xqDEN5G-${idR9xqDEN5G}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{cdW9XmGSy:cdW9XmGSyR9xqDEN5G},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1twmjhb\",layoutDependency:layoutDependency,layoutId:\"WDyoYC4ik\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyR9xqDEN5G},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined},{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyR9xqDEN5G},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:463,width:\"260px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ajhce5-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"ZNTds61WX-container\",nodeId:\"ZNTds61WX\",rendersWithMotion:true,scopeId:\"gEdpMXNCP\",children:/*#__PURE__*/_jsx(GameCardV5,{bVCdliR2a:\"https://d2drhksbtcqozo.cloudfront.net/casino/apex/layer/?gameid=chomplings&partnerid=1&channel=web&moneymode=fun&jurisdiction=MT&lang=en_GB&currency=EUR&&apex=1&gameurl=https%3A%2F%2Fd2drhksbtcqozo.cloudfront.net%2Fcasino%2Flauncher.html\",height:\"100%\",id:\"ZNTds61WX\",iKk0Mv4dI:false,KPi4iPrkd:\"Eat More, Win More...\",layoutId:\"ZNTds61WX\",Q2gmuz59P:resolvedLinks1[1],rGhU11Toz:resolvedLinks1[0],style:{width:\"100%\"},variant:\"F9M1IJBDw\",width:\"100%\",X6yObN9qj:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/Wbftm5SqK2TJGWb9XwOwKZ27zcI.jpg\",srcSet:\"https://framerusercontent.com/images/Wbftm5SqK2TJGWb9XwOwKZ27zcI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Wbftm5SqK2TJGWb9XwOwKZ27zcI.jpg 800w\"},\"\"),zq5AwmT6K:\"Chomplings\"})})})})})})},idR9xqDEN5G);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18wm5xg\",\"data-framer-name\":\"Big Stack Lumberjack\",layoutDependency:layoutDependency,layoutId:\"eU53PHb4u\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"eU53PHb4u\",data:Games,type:\"Collection\"},select:[{collection:\"eU53PHb4u\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"eU53PHb4u\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"eU53PHb4u\",name:\"cdW9XmGSy\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"big-stack-lumberjack\"},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({cdW9XmGSy:cdW9XmGSyeU53PHb4u,id:ideU53PHb4u},index2)=>{cdW9XmGSyeU53PHb4u??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`eU53PHb4u-${ideU53PHb4u}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{cdW9XmGSy:cdW9XmGSyeU53PHb4u},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15k5hsn\",layoutDependency:layoutDependency,layoutId:\"pVC5mSNW1\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyeU53PHb4u},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined},{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyeU53PHb4u},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:463,width:\"260px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1pz7cov-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"yHyjptyIk-container\",nodeId:\"yHyjptyIk\",rendersWithMotion:true,scopeId:\"gEdpMXNCP\",children:/*#__PURE__*/_jsx(GameCardV5,{bVCdliR2a:\"https://d2drhksbtcqozo.cloudfront.net/casino/apex/layer/?gameid=bigstacklumberjack&partnerid=1&channel=web&moneymode=fun&jurisdiction=MT&lang=en_GB&currency=EUR&&apex=1&gameurl=https%3A%2F%2Fd2drhksbtcqozo.cloudfront.net%2Fcasino%2Flauncher.html\",height:\"100%\",id:\"yHyjptyIk\",iKk0Mv4dI:false,KPi4iPrkd:\"Unleash the Lumberjack's Luck\",layoutId:\"yHyjptyIk\",Q2gmuz59P:resolvedLinks2[1],rGhU11Toz:resolvedLinks2[0],style:{width:\"100%\"},variant:\"F9M1IJBDw\",width:\"100%\",X6yObN9qj:addImageAlt({pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/uSJAhqodgRmm1NgpL2qE1wkHw.png\"},\"\"),zq5AwmT6K:\"Big Stack Lumberjack\"})})})})})})},ideU53PHb4u);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zyi4t0\",\"data-framer-name\":\"Pond Of Plinko\",layoutDependency:layoutDependency,layoutId:\"FidVJ5XUh\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"FidVJ5XUh\",data:Games,type:\"Collection\"},select:[{collection:\"FidVJ5XUh\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"FidVJ5XUh\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"FidVJ5XUh\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"FidVJ5XUh\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"FidVJ5XUh\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"FidVJ5XUh\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"FidVJ5XUh\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"FidVJ5XUh\",name:\"cdW9XmGSy\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"pond-of-plinko\"},type:\"BinaryOperation\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({cdW9XmGSy:cdW9XmGSyFidVJ5XUh,DIdQCCrMG:DIdQCCrMGFidVJ5XUh,id:idFidVJ5XUh,ikl9VcrCQ:ikl9VcrCQFidVJ5XUh,NkqxYPVOu:NkqxYPVOuFidVJ5XUh,SHo2EPTW_:SHo2EPTW_FidVJ5XUh,znZ8GeW5t:znZ8GeW5tFidVJ5XUh},index3)=>{DIdQCCrMGFidVJ5XUh??=\"\";znZ8GeW5tFidVJ5XUh??=\"\";cdW9XmGSyFidVJ5XUh??=\"\";SHo2EPTW_FidVJ5XUh??=\"\";NkqxYPVOuFidVJ5XUh??=true;return /*#__PURE__*/_jsx(LayoutGroup,{id:`FidVJ5XUh-${idFidVJ5XUh}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{cdW9XmGSy:cdW9XmGSyFidVJ5XUh},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fzeime\",layoutDependency:layoutDependency,layoutId:\"j1HryFOWX\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyFidVJ5XUh},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined},{href:SHo2EPTW_FidVJ5XUh,implicitPathVariables:{cdW9XmGSy:cdW9XmGSyFidVJ5XUh}},{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyFidVJ5XUh},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:463,width:\"260px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-v27rqg-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"QWusYLXNl-container\",nodeId:\"QWusYLXNl\",rendersWithMotion:true,scopeId:\"gEdpMXNCP\",children:/*#__PURE__*/_jsx(GameCardV5,{bVCdliR2a:resolvedLinks3[1],height:\"100%\",id:\"QWusYLXNl\",iKk0Mv4dI:NkqxYPVOuFidVJ5XUh,KPi4iPrkd:znZ8GeW5tFidVJ5XUh,layoutId:\"QWusYLXNl\",Q2gmuz59P:resolvedLinks3[2],rGhU11Toz:resolvedLinks3[0],style:{width:\"100%\"},variant:\"F9M1IJBDw\",width:\"100%\",X6yObN9qj:toResponsiveImage(ikl9VcrCQFidVJ5XUh),zq5AwmT6K:DIdQCCrMGFidVJ5XUh})})})})})})},idFidVJ5XUh);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-x9gos3\",\"data-framer-name\":\"Dreadworks\",layoutDependency:layoutDependency,layoutId:\"T8oIMhg_j\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"T8oIMhg_j\",data:Games,type:\"Collection\"},select:[{collection:\"T8oIMhg_j\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"T8oIMhg_j\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"T8oIMhg_j\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"T8oIMhg_j\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"T8oIMhg_j\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"T8oIMhg_j\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"T8oIMhg_j\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"T8oIMhg_j\",name:\"cdW9XmGSy\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"dreadworks\"},type:\"BinaryOperation\"}},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4?.map(({cdW9XmGSy:cdW9XmGSyT8oIMhg_j,DIdQCCrMG:DIdQCCrMGT8oIMhg_j,id:idT8oIMhg_j,ikl9VcrCQ:ikl9VcrCQT8oIMhg_j,NkqxYPVOu:NkqxYPVOuT8oIMhg_j,SHo2EPTW_:SHo2EPTW_T8oIMhg_j,znZ8GeW5t:znZ8GeW5tT8oIMhg_j},index4)=>{DIdQCCrMGT8oIMhg_j??=\"\";znZ8GeW5tT8oIMhg_j??=\"\";cdW9XmGSyT8oIMhg_j??=\"\";SHo2EPTW_T8oIMhg_j??=\"\";NkqxYPVOuT8oIMhg_j??=true;return /*#__PURE__*/_jsx(LayoutGroup,{id:`T8oIMhg_j-${idT8oIMhg_j}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{cdW9XmGSy:cdW9XmGSyT8oIMhg_j},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-k8qel1\",layoutDependency:layoutDependency,layoutId:\"C3VXmEDSZ\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyT8oIMhg_j},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined},{href:SHo2EPTW_T8oIMhg_j,implicitPathVariables:{cdW9XmGSy:cdW9XmGSyT8oIMhg_j}},{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyT8oIMhg_j},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:463,width:\"260px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-yp2mcy-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"vp7zFH0IP-container\",nodeId:\"vp7zFH0IP\",rendersWithMotion:true,scopeId:\"gEdpMXNCP\",children:/*#__PURE__*/_jsx(GameCardV5,{bVCdliR2a:resolvedLinks4[1],height:\"100%\",id:\"vp7zFH0IP\",iKk0Mv4dI:NkqxYPVOuT8oIMhg_j,KPi4iPrkd:znZ8GeW5tT8oIMhg_j,layoutId:\"vp7zFH0IP\",Q2gmuz59P:resolvedLinks4[2],rGhU11Toz:resolvedLinks4[0],style:{width:\"100%\"},variant:\"F9M1IJBDw\",width:\"100%\",X6yObN9qj:toResponsiveImage(ikl9VcrCQT8oIMhg_j),zq5AwmT6K:DIdQCCrMGT8oIMhg_j})})})})})})},idT8oIMhg_j);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fb0kvw\",\"data-framer-name\":\"Win-O_Mart\",layoutDependency:layoutDependency,layoutId:\"JXOSMvNOR\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"JXOSMvNOR\",data:Games,type:\"Collection\"},select:[{collection:\"JXOSMvNOR\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"JXOSMvNOR\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"JXOSMvNOR\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"JXOSMvNOR\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"JXOSMvNOR\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"JXOSMvNOR\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"JXOSMvNOR\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"JXOSMvNOR\",name:\"cdW9XmGSy\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"win-o-mart\"},type:\"BinaryOperation\"}},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5?.map(({cdW9XmGSy:cdW9XmGSyJXOSMvNOR,DIdQCCrMG:DIdQCCrMGJXOSMvNOR,id:idJXOSMvNOR,ikl9VcrCQ:ikl9VcrCQJXOSMvNOR,NkqxYPVOu:NkqxYPVOuJXOSMvNOR,SHo2EPTW_:SHo2EPTW_JXOSMvNOR,znZ8GeW5t:znZ8GeW5tJXOSMvNOR},index5)=>{DIdQCCrMGJXOSMvNOR??=\"\";znZ8GeW5tJXOSMvNOR??=\"\";cdW9XmGSyJXOSMvNOR??=\"\";SHo2EPTW_JXOSMvNOR??=\"\";NkqxYPVOuJXOSMvNOR??=true;return /*#__PURE__*/_jsx(LayoutGroup,{id:`JXOSMvNOR-${idJXOSMvNOR}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{cdW9XmGSy:cdW9XmGSyJXOSMvNOR},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-pzusmq\",layoutDependency:layoutDependency,layoutId:\"uX2LVFjSn\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyJXOSMvNOR},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined},{href:SHo2EPTW_JXOSMvNOR,implicitPathVariables:{cdW9XmGSy:cdW9XmGSyJXOSMvNOR}},{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyJXOSMvNOR},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:463,width:\"260px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jyzjcy-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"ep6ctIVwU-container\",nodeId:\"ep6ctIVwU\",rendersWithMotion:true,scopeId:\"gEdpMXNCP\",children:/*#__PURE__*/_jsx(GameCardV5,{bVCdliR2a:resolvedLinks5[1],height:\"100%\",id:\"ep6ctIVwU\",iKk0Mv4dI:NkqxYPVOuJXOSMvNOR,KPi4iPrkd:znZ8GeW5tJXOSMvNOR,layoutId:\"ep6ctIVwU\",Q2gmuz59P:resolvedLinks5[2],rGhU11Toz:resolvedLinks5[0],style:{width:\"100%\"},variant:\"F9M1IJBDw\",width:\"100%\",X6yObN9qj:toResponsiveImage(ikl9VcrCQJXOSMvNOR),zq5AwmT6K:DIdQCCrMGJXOSMvNOR})})})})})})},idJXOSMvNOR);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-35inir\",\"data-framer-name\":\"Eldritch Dungeon\",layoutDependency:layoutDependency,layoutId:\"e9SipKrp5\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"e9SipKrp5\",data:Games,type:\"Collection\"},select:[{collection:\"e9SipKrp5\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"e9SipKrp5\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"e9SipKrp5\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"e9SipKrp5\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"e9SipKrp5\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"e9SipKrp5\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"e9SipKrp5\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"e9SipKrp5\",name:\"cdW9XmGSy\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"eldritch-dungeon\"},type:\"BinaryOperation\"}},children:(collection6,paginationInfo6,loadMore6)=>/*#__PURE__*/_jsx(_Fragment,{children:collection6?.map(({cdW9XmGSy:cdW9XmGSye9SipKrp5,DIdQCCrMG:DIdQCCrMGe9SipKrp5,id:ide9SipKrp5,ikl9VcrCQ:ikl9VcrCQe9SipKrp5,NkqxYPVOu:NkqxYPVOue9SipKrp5,SHo2EPTW_:SHo2EPTW_e9SipKrp5,znZ8GeW5t:znZ8GeW5te9SipKrp5},index6)=>{DIdQCCrMGe9SipKrp5??=\"\";znZ8GeW5te9SipKrp5??=\"\";cdW9XmGSye9SipKrp5??=\"\";SHo2EPTW_e9SipKrp5??=\"\";NkqxYPVOue9SipKrp5??=true;return /*#__PURE__*/_jsx(LayoutGroup,{id:`e9SipKrp5-${ide9SipKrp5}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{cdW9XmGSy:cdW9XmGSye9SipKrp5},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a8rl54\",layoutDependency:layoutDependency,layoutId:\"hkLs6gVFB\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{cdW9XmGSy:cdW9XmGSye9SipKrp5},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined},{href:SHo2EPTW_e9SipKrp5,implicitPathVariables:{cdW9XmGSy:cdW9XmGSye9SipKrp5}},{href:{pathVariables:{cdW9XmGSy:cdW9XmGSye9SipKrp5},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:463,width:\"260px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pnczy6-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"lQG2a_3P5-container\",nodeId:\"lQG2a_3P5\",rendersWithMotion:true,scopeId:\"gEdpMXNCP\",children:/*#__PURE__*/_jsx(GameCardV5,{bVCdliR2a:resolvedLinks6[1],height:\"100%\",id:\"lQG2a_3P5\",iKk0Mv4dI:NkqxYPVOue9SipKrp5,KPi4iPrkd:znZ8GeW5te9SipKrp5,layoutId:\"lQG2a_3P5\",Q2gmuz59P:resolvedLinks6[2],rGhU11Toz:resolvedLinks6[0],style:{width:\"100%\"},variant:\"F9M1IJBDw\",width:\"100%\",X6yObN9qj:toResponsiveImage(ikl9VcrCQe9SipKrp5),zq5AwmT6K:DIdQCCrMGe9SipKrp5})})})})})})},ide9SipKrp5);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18i2jsp\",\"data-framer-name\":\"Honey Hunters\",layoutDependency:layoutDependency,layoutId:\"QUwHGq1xj\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"QUwHGq1xj\",data:Games,type:\"Collection\"},select:[{collection:\"QUwHGq1xj\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"QUwHGq1xj\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"QUwHGq1xj\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"QUwHGq1xj\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"QUwHGq1xj\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"QUwHGq1xj\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"QUwHGq1xj\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"QUwHGq1xj\",name:\"DIdQCCrMG\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Honey Hunters\"},type:\"BinaryOperation\"}},children:(collection7,paginationInfo7,loadMore7)=>/*#__PURE__*/_jsx(_Fragment,{children:collection7?.map(({cdW9XmGSy:cdW9XmGSyQUwHGq1xj,DIdQCCrMG:DIdQCCrMGQUwHGq1xj,id:idQUwHGq1xj,ikl9VcrCQ:ikl9VcrCQQUwHGq1xj,NkqxYPVOu:NkqxYPVOuQUwHGq1xj,SHo2EPTW_:SHo2EPTW_QUwHGq1xj,znZ8GeW5t:znZ8GeW5tQUwHGq1xj},index7)=>{DIdQCCrMGQUwHGq1xj??=\"\";znZ8GeW5tQUwHGq1xj??=\"\";cdW9XmGSyQUwHGq1xj??=\"\";SHo2EPTW_QUwHGq1xj??=\"\";NkqxYPVOuQUwHGq1xj??=true;return /*#__PURE__*/_jsx(LayoutGroup,{id:`QUwHGq1xj-${idQUwHGq1xj}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{cdW9XmGSy:cdW9XmGSyQUwHGq1xj},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gvpqp5\",layoutDependency:layoutDependency,layoutId:\"w0U8yksrY\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyQUwHGq1xj},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined},{href:SHo2EPTW_QUwHGq1xj,implicitPathVariables:{cdW9XmGSy:cdW9XmGSyQUwHGq1xj}},{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyQUwHGq1xj},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:463,width:\"260px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dsvy3x-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Tv5LMslCv-container\",nodeId:\"Tv5LMslCv\",rendersWithMotion:true,scopeId:\"gEdpMXNCP\",children:/*#__PURE__*/_jsx(GameCardV5,{bVCdliR2a:resolvedLinks7[1],height:\"100%\",id:\"Tv5LMslCv\",iKk0Mv4dI:NkqxYPVOuQUwHGq1xj,KPi4iPrkd:znZ8GeW5tQUwHGq1xj,layoutId:\"Tv5LMslCv\",Q2gmuz59P:resolvedLinks7[2],rGhU11Toz:resolvedLinks7[0],style:{width:\"100%\"},variant:\"F9M1IJBDw\",width:\"100%\",X6yObN9qj:toResponsiveImage(ikl9VcrCQQUwHGq1xj),zq5AwmT6K:DIdQCCrMGQUwHGq1xj})})})})})})},idQUwHGq1xj);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18z4gih\",\"data-framer-name\":\"Tarasque\",layoutDependency:layoutDependency,layoutId:\"VCZO_bsfF\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"VCZO_bsfF\",data:Games,type:\"Collection\"},select:[{collection:\"VCZO_bsfF\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"VCZO_bsfF\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"VCZO_bsfF\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"VCZO_bsfF\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"VCZO_bsfF\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"VCZO_bsfF\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"VCZO_bsfF\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"VCZO_bsfF\",name:\"DIdQCCrMG\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"tarasque\"},type:\"BinaryOperation\"}},children:(collection8,paginationInfo8,loadMore8)=>/*#__PURE__*/_jsx(_Fragment,{children:collection8?.map(({cdW9XmGSy:cdW9XmGSyVCZO_bsfF,DIdQCCrMG:DIdQCCrMGVCZO_bsfF,id:idVCZO_bsfF,ikl9VcrCQ:ikl9VcrCQVCZO_bsfF,NkqxYPVOu:NkqxYPVOuVCZO_bsfF,SHo2EPTW_:SHo2EPTW_VCZO_bsfF,znZ8GeW5t:znZ8GeW5tVCZO_bsfF},index8)=>{DIdQCCrMGVCZO_bsfF??=\"\";znZ8GeW5tVCZO_bsfF??=\"\";cdW9XmGSyVCZO_bsfF??=\"\";SHo2EPTW_VCZO_bsfF??=\"\";NkqxYPVOuVCZO_bsfF??=true;return /*#__PURE__*/_jsx(LayoutGroup,{id:`VCZO_bsfF-${idVCZO_bsfF}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{cdW9XmGSy:cdW9XmGSyVCZO_bsfF},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3x91b9\",layoutDependency:layoutDependency,layoutId:\"HHXxlL6Jp\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyVCZO_bsfF},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined},{href:SHo2EPTW_VCZO_bsfF,implicitPathVariables:{cdW9XmGSy:cdW9XmGSyVCZO_bsfF}},{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyVCZO_bsfF},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:463,width:\"260px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1l3cdjc-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"DIE1odxqi-container\",nodeId:\"DIE1odxqi\",rendersWithMotion:true,scopeId:\"gEdpMXNCP\",children:/*#__PURE__*/_jsx(GameCardV5,{bVCdliR2a:resolvedLinks8[1],height:\"100%\",id:\"DIE1odxqi\",iKk0Mv4dI:NkqxYPVOuVCZO_bsfF,KPi4iPrkd:znZ8GeW5tVCZO_bsfF,layoutId:\"DIE1odxqi\",Q2gmuz59P:resolvedLinks8[2],rGhU11Toz:resolvedLinks8[0],style:{width:\"100%\"},variant:\"F9M1IJBDw\",width:\"100%\",X6yObN9qj:toResponsiveImage(ikl9VcrCQVCZO_bsfF),zq5AwmT6K:DIdQCCrMGVCZO_bsfF})})})})})})},idVCZO_bsfF);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-pmcfc3\",\"data-framer-name\":\"Pine of Plinko 2\",layoutDependency:layoutDependency,layoutId:\"Y1G31bBBM\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Y1G31bBBM\",data:Games,type:\"Collection\"},select:[{collection:\"Y1G31bBBM\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"Y1G31bBBM\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"Y1G31bBBM\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"Y1G31bBBM\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"Y1G31bBBM\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"Y1G31bBBM\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"Y1G31bBBM\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"Y1G31bBBM\",name:\"DIdQCCrMG\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Pine of Plinko 2\"},type:\"BinaryOperation\"}},children:(collection9,paginationInfo9,loadMore9)=>/*#__PURE__*/_jsx(_Fragment,{children:collection9?.map(({cdW9XmGSy:cdW9XmGSyY1G31bBBM,DIdQCCrMG:DIdQCCrMGY1G31bBBM,id:idY1G31bBBM,ikl9VcrCQ:ikl9VcrCQY1G31bBBM,NkqxYPVOu:NkqxYPVOuY1G31bBBM,SHo2EPTW_:SHo2EPTW_Y1G31bBBM,znZ8GeW5t:znZ8GeW5tY1G31bBBM},index9)=>{DIdQCCrMGY1G31bBBM??=\"\";znZ8GeW5tY1G31bBBM??=\"\";cdW9XmGSyY1G31bBBM??=\"\";SHo2EPTW_Y1G31bBBM??=\"\";NkqxYPVOuY1G31bBBM??=true;return /*#__PURE__*/_jsx(LayoutGroup,{id:`Y1G31bBBM-${idY1G31bBBM}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{cdW9XmGSy:cdW9XmGSyY1G31bBBM},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-p1gtfp\",layoutDependency:layoutDependency,layoutId:\"dsuFft2UG\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyY1G31bBBM},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined},{href:SHo2EPTW_Y1G31bBBM,implicitPathVariables:{cdW9XmGSy:cdW9XmGSyY1G31bBBM}},{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyY1G31bBBM},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:463,width:\"260px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mv97l0-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Iq7IcOSuN-container\",nodeId:\"Iq7IcOSuN\",rendersWithMotion:true,scopeId:\"gEdpMXNCP\",children:/*#__PURE__*/_jsx(GameCardV5,{bVCdliR2a:resolvedLinks9[1],height:\"100%\",id:\"Iq7IcOSuN\",iKk0Mv4dI:NkqxYPVOuY1G31bBBM,KPi4iPrkd:znZ8GeW5tY1G31bBBM,layoutId:\"Iq7IcOSuN\",Q2gmuz59P:resolvedLinks9[2],rGhU11Toz:resolvedLinks9[0],style:{width:\"100%\"},variant:\"F9M1IJBDw\",width:\"100%\",X6yObN9qj:toResponsiveImage(ikl9VcrCQY1G31bBBM),zq5AwmT6K:DIdQCCrMGY1G31bBBM})})})})})})},idY1G31bBBM);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j51wtt\",\"data-framer-name\":\"Darkness\",layoutDependency:layoutDependency,layoutId:\"SDD0uGCbY\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"SDD0uGCbY\",data:Games,type:\"Collection\"},select:[{collection:\"SDD0uGCbY\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"SDD0uGCbY\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"SDD0uGCbY\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"SDD0uGCbY\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"SDD0uGCbY\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"SDD0uGCbY\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"SDD0uGCbY\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"SDD0uGCbY\",name:\"DIdQCCrMG\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Darkness\"},type:\"BinaryOperation\"}},children:(collection10,paginationInfo10,loadMore10)=>/*#__PURE__*/_jsx(_Fragment,{children:collection10?.map(({cdW9XmGSy:cdW9XmGSySDD0uGCbY,DIdQCCrMG:DIdQCCrMGSDD0uGCbY,id:idSDD0uGCbY,ikl9VcrCQ:ikl9VcrCQSDD0uGCbY,NkqxYPVOu:NkqxYPVOuSDD0uGCbY,SHo2EPTW_:SHo2EPTW_SDD0uGCbY,znZ8GeW5t:znZ8GeW5tSDD0uGCbY},index10)=>{DIdQCCrMGSDD0uGCbY??=\"\";znZ8GeW5tSDD0uGCbY??=\"\";cdW9XmGSySDD0uGCbY??=\"\";SHo2EPTW_SDD0uGCbY??=\"\";NkqxYPVOuSDD0uGCbY??=true;return /*#__PURE__*/_jsx(LayoutGroup,{id:`SDD0uGCbY-${idSDD0uGCbY}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{cdW9XmGSy:cdW9XmGSySDD0uGCbY},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k5f7pt\",layoutDependency:layoutDependency,layoutId:\"jHnuq6DA7\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{cdW9XmGSy:cdW9XmGSySDD0uGCbY},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined},{href:SHo2EPTW_SDD0uGCbY,implicitPathVariables:{cdW9XmGSy:cdW9XmGSySDD0uGCbY}},{href:{pathVariables:{cdW9XmGSy:cdW9XmGSySDD0uGCbY},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:463,width:\"260px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-vtya0a-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"BThs2HYDr-container\",nodeId:\"BThs2HYDr\",rendersWithMotion:true,scopeId:\"gEdpMXNCP\",children:/*#__PURE__*/_jsx(GameCardV5,{bVCdliR2a:resolvedLinks10[1],height:\"100%\",id:\"BThs2HYDr\",iKk0Mv4dI:NkqxYPVOuSDD0uGCbY,KPi4iPrkd:znZ8GeW5tSDD0uGCbY,layoutId:\"BThs2HYDr\",Q2gmuz59P:resolvedLinks10[2],rGhU11Toz:resolvedLinks10[0],style:{width:\"100%\"},variant:\"F9M1IJBDw\",width:\"100%\",X6yObN9qj:toResponsiveImage(ikl9VcrCQSDD0uGCbY),zq5AwmT6K:DIdQCCrMGSDD0uGCbY})})})})})})},idSDD0uGCbY);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ihdusd\",\"data-framer-name\":\"Royal Potato 2\",layoutDependency:layoutDependency,layoutId:\"O3do1uXjo\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"O3do1uXjo\",data:Games,type:\"Collection\"},select:[{collection:\"O3do1uXjo\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"O3do1uXjo\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"O3do1uXjo\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"O3do1uXjo\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"O3do1uXjo\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"O3do1uXjo\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"O3do1uXjo\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"O3do1uXjo\",name:\"DIdQCCrMG\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Royal Potato 2\"},type:\"BinaryOperation\"}},children:(collection11,paginationInfo11,loadMore11)=>/*#__PURE__*/_jsx(_Fragment,{children:collection11?.map(({cdW9XmGSy:cdW9XmGSyO3do1uXjo,DIdQCCrMG:DIdQCCrMGO3do1uXjo,id:idO3do1uXjo,ikl9VcrCQ:ikl9VcrCQO3do1uXjo,NkqxYPVOu:NkqxYPVOuO3do1uXjo,SHo2EPTW_:SHo2EPTW_O3do1uXjo,znZ8GeW5t:znZ8GeW5tO3do1uXjo},index11)=>{DIdQCCrMGO3do1uXjo??=\"\";znZ8GeW5tO3do1uXjo??=\"\";cdW9XmGSyO3do1uXjo??=\"\";SHo2EPTW_O3do1uXjo??=\"\";NkqxYPVOuO3do1uXjo??=true;return /*#__PURE__*/_jsx(LayoutGroup,{id:`O3do1uXjo-${idO3do1uXjo}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{cdW9XmGSy:cdW9XmGSyO3do1uXjo},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-m8apk\",layoutDependency:layoutDependency,layoutId:\"cIYgU6Z3E\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyO3do1uXjo},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined},{href:SHo2EPTW_O3do1uXjo,implicitPathVariables:{cdW9XmGSy:cdW9XmGSyO3do1uXjo}},{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyO3do1uXjo},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:463,width:\"260px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1e2fr3x-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"EWSawQ0Vw-container\",nodeId:\"EWSawQ0Vw\",rendersWithMotion:true,scopeId:\"gEdpMXNCP\",children:/*#__PURE__*/_jsx(GameCardV5,{bVCdliR2a:resolvedLinks11[1],height:\"100%\",id:\"EWSawQ0Vw\",iKk0Mv4dI:NkqxYPVOuO3do1uXjo,KPi4iPrkd:znZ8GeW5tO3do1uXjo,layoutId:\"EWSawQ0Vw\",Q2gmuz59P:resolvedLinks11[2],rGhU11Toz:resolvedLinks11[0],style:{width:\"100%\"},variant:\"F9M1IJBDw\",width:\"100%\",X6yObN9qj:toResponsiveImage(ikl9VcrCQO3do1uXjo),zq5AwmT6K:DIdQCCrMGO3do1uXjo})})})})})})},idO3do1uXjo);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-js37y6\",\"data-framer-name\":\"Shinobi Spirit\",layoutDependency:layoutDependency,layoutId:\"kHrabLf5U\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"kHrabLf5U\",data:Games,type:\"Collection\"},select:[{collection:\"kHrabLf5U\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"kHrabLf5U\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"kHrabLf5U\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"kHrabLf5U\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"kHrabLf5U\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"kHrabLf5U\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"kHrabLf5U\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"kHrabLf5U\",name:\"DIdQCCrMG\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Shinobi Spirit\"},type:\"BinaryOperation\"}},children:(collection12,paginationInfo12,loadMore12)=>/*#__PURE__*/_jsx(_Fragment,{children:collection12?.map(({cdW9XmGSy:cdW9XmGSykHrabLf5U,DIdQCCrMG:DIdQCCrMGkHrabLf5U,id:idkHrabLf5U,ikl9VcrCQ:ikl9VcrCQkHrabLf5U,NkqxYPVOu:NkqxYPVOukHrabLf5U,SHo2EPTW_:SHo2EPTW_kHrabLf5U,znZ8GeW5t:znZ8GeW5tkHrabLf5U},index12)=>{DIdQCCrMGkHrabLf5U??=\"\";znZ8GeW5tkHrabLf5U??=\"\";cdW9XmGSykHrabLf5U??=\"\";SHo2EPTW_kHrabLf5U??=\"\";NkqxYPVOukHrabLf5U??=true;return /*#__PURE__*/_jsx(LayoutGroup,{id:`kHrabLf5U-${idkHrabLf5U}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{cdW9XmGSy:cdW9XmGSykHrabLf5U},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-or4cpk\",layoutDependency:layoutDependency,layoutId:\"lgPV50ihJ\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{cdW9XmGSy:cdW9XmGSykHrabLf5U},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined},{href:SHo2EPTW_kHrabLf5U,implicitPathVariables:{cdW9XmGSy:cdW9XmGSykHrabLf5U}},{href:{pathVariables:{cdW9XmGSy:cdW9XmGSykHrabLf5U},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:463,width:\"260px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vgompk-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"DW2jZU8SJ-container\",nodeId:\"DW2jZU8SJ\",rendersWithMotion:true,scopeId:\"gEdpMXNCP\",children:/*#__PURE__*/_jsx(GameCardV5,{bVCdliR2a:resolvedLinks12[1],height:\"100%\",id:\"DW2jZU8SJ\",iKk0Mv4dI:NkqxYPVOukHrabLf5U,KPi4iPrkd:znZ8GeW5tkHrabLf5U,layoutId:\"DW2jZU8SJ\",Q2gmuz59P:resolvedLinks12[2],rGhU11Toz:resolvedLinks12[0],style:{width:\"100%\"},variant:\"F9M1IJBDw\",width:\"100%\",X6yObN9qj:toResponsiveImage(ikl9VcrCQkHrabLf5U),zq5AwmT6K:DIdQCCrMGkHrabLf5U})})})})})})},idkHrabLf5U);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gflq6n\",\"data-framer-name\":\"Cash Defense\",layoutDependency:layoutDependency,layoutId:\"uvwtyTEue\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"uvwtyTEue\",data:Games,type:\"Collection\"},select:[{collection:\"uvwtyTEue\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"uvwtyTEue\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"uvwtyTEue\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"uvwtyTEue\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"uvwtyTEue\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"uvwtyTEue\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"uvwtyTEue\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"uvwtyTEue\",name:\"DIdQCCrMG\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Cash Defense\"},type:\"BinaryOperation\"}},children:(collection13,paginationInfo13,loadMore13)=>/*#__PURE__*/_jsx(_Fragment,{children:collection13?.map(({cdW9XmGSy:cdW9XmGSyuvwtyTEue,DIdQCCrMG:DIdQCCrMGuvwtyTEue,id:iduvwtyTEue,ikl9VcrCQ:ikl9VcrCQuvwtyTEue,NkqxYPVOu:NkqxYPVOuuvwtyTEue,SHo2EPTW_:SHo2EPTW_uvwtyTEue,znZ8GeW5t:znZ8GeW5tuvwtyTEue},index13)=>{DIdQCCrMGuvwtyTEue??=\"\";znZ8GeW5tuvwtyTEue??=\"\";cdW9XmGSyuvwtyTEue??=\"\";SHo2EPTW_uvwtyTEue??=\"\";NkqxYPVOuuvwtyTEue??=true;return /*#__PURE__*/_jsx(LayoutGroup,{id:`uvwtyTEue-${iduvwtyTEue}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{cdW9XmGSy:cdW9XmGSyuvwtyTEue},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wngx69\",layoutDependency:layoutDependency,layoutId:\"bamKIyJBT\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyuvwtyTEue},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined},{href:SHo2EPTW_uvwtyTEue,implicitPathVariables:{cdW9XmGSy:cdW9XmGSyuvwtyTEue}},{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyuvwtyTEue},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined}],children:resolvedLinks13=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:463,width:\"260px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12rpv47-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"o571W7CXm-container\",nodeId:\"o571W7CXm\",rendersWithMotion:true,scopeId:\"gEdpMXNCP\",children:/*#__PURE__*/_jsx(GameCardV5,{bVCdliR2a:resolvedLinks13[1],height:\"100%\",id:\"o571W7CXm\",iKk0Mv4dI:NkqxYPVOuuvwtyTEue,KPi4iPrkd:znZ8GeW5tuvwtyTEue,layoutId:\"o571W7CXm\",Q2gmuz59P:resolvedLinks13[2],rGhU11Toz:resolvedLinks13[0],style:{width:\"100%\"},variant:\"F9M1IJBDw\",width:\"100%\",X6yObN9qj:toResponsiveImage(ikl9VcrCQuvwtyTEue),zq5AwmT6K:DIdQCCrMGuvwtyTEue})})})})})})},iduvwtyTEue);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18s7w3q\",\"data-framer-name\":\"Holy Hand Grenade\",layoutDependency:layoutDependency,layoutId:\"vOB_oamlg\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"vOB_oamlg\",data:Games,type:\"Collection\"},select:[{collection:\"vOB_oamlg\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"vOB_oamlg\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"vOB_oamlg\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"vOB_oamlg\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"vOB_oamlg\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"vOB_oamlg\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"vOB_oamlg\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"vOB_oamlg\",name:\"DIdQCCrMG\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Holy Hand Grenade\"},type:\"BinaryOperation\"}},children:(collection14,paginationInfo14,loadMore14)=>/*#__PURE__*/_jsx(_Fragment,{children:collection14?.map(({cdW9XmGSy:cdW9XmGSyvOB_oamlg,DIdQCCrMG:DIdQCCrMGvOB_oamlg,id:idvOB_oamlg,ikl9VcrCQ:ikl9VcrCQvOB_oamlg,NkqxYPVOu:NkqxYPVOuvOB_oamlg,SHo2EPTW_:SHo2EPTW_vOB_oamlg,znZ8GeW5t:znZ8GeW5tvOB_oamlg},index14)=>{DIdQCCrMGvOB_oamlg??=\"\";znZ8GeW5tvOB_oamlg??=\"\";cdW9XmGSyvOB_oamlg??=\"\";SHo2EPTW_vOB_oamlg??=\"\";NkqxYPVOuvOB_oamlg??=true;return /*#__PURE__*/_jsx(LayoutGroup,{id:`vOB_oamlg-${idvOB_oamlg}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{cdW9XmGSy:cdW9XmGSyvOB_oamlg},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-w15e4h\",layoutDependency:layoutDependency,layoutId:\"GD6NKeODf\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyvOB_oamlg},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined},{href:SHo2EPTW_vOB_oamlg,implicitPathVariables:{cdW9XmGSy:cdW9XmGSyvOB_oamlg}},{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyvOB_oamlg},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined}],children:resolvedLinks14=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:463,width:\"260px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-prd8c8-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"jRLwBOmGo-container\",nodeId:\"jRLwBOmGo\",rendersWithMotion:true,scopeId:\"gEdpMXNCP\",children:/*#__PURE__*/_jsx(GameCardV5,{bVCdliR2a:resolvedLinks14[1],height:\"100%\",id:\"jRLwBOmGo\",iKk0Mv4dI:NkqxYPVOuvOB_oamlg,KPi4iPrkd:znZ8GeW5tvOB_oamlg,layoutId:\"jRLwBOmGo\",Q2gmuz59P:resolvedLinks14[2],rGhU11Toz:resolvedLinks14[0],style:{width:\"100%\"},variant:\"F9M1IJBDw\",width:\"100%\",X6yObN9qj:toResponsiveImage(ikl9VcrCQvOB_oamlg),zq5AwmT6K:DIdQCCrMGvOB_oamlg})})})})})})},idvOB_oamlg);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gj251d\",\"data-framer-name\":\"Pine of Plinko\",layoutDependency:layoutDependency,layoutId:\"vNAdsRE2h\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"vNAdsRE2h\",data:Games,type:\"Collection\"},select:[{collection:\"vNAdsRE2h\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"vNAdsRE2h\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"vNAdsRE2h\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"vNAdsRE2h\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"vNAdsRE2h\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"vNAdsRE2h\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"vNAdsRE2h\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"vNAdsRE2h\",name:\"DIdQCCrMG\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Pine of Plinko\"},type:\"BinaryOperation\"}},children:(collection15,paginationInfo15,loadMore15)=>/*#__PURE__*/_jsx(_Fragment,{children:collection15?.map(({cdW9XmGSy:cdW9XmGSyvNAdsRE2h,DIdQCCrMG:DIdQCCrMGvNAdsRE2h,id:idvNAdsRE2h,ikl9VcrCQ:ikl9VcrCQvNAdsRE2h,NkqxYPVOu:NkqxYPVOuvNAdsRE2h,SHo2EPTW_:SHo2EPTW_vNAdsRE2h,znZ8GeW5t:znZ8GeW5tvNAdsRE2h},index15)=>{DIdQCCrMGvNAdsRE2h??=\"\";znZ8GeW5tvNAdsRE2h??=\"\";cdW9XmGSyvNAdsRE2h??=\"\";SHo2EPTW_vNAdsRE2h??=\"\";NkqxYPVOuvNAdsRE2h??=true;return /*#__PURE__*/_jsx(LayoutGroup,{id:`vNAdsRE2h-${idvNAdsRE2h}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{cdW9XmGSy:cdW9XmGSyvNAdsRE2h},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-oayeee\",layoutDependency:layoutDependency,layoutId:\"jRo0FGLFn\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyvNAdsRE2h},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined},{href:SHo2EPTW_vNAdsRE2h,implicitPathVariables:{cdW9XmGSy:cdW9XmGSyvNAdsRE2h}},{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyvNAdsRE2h},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined}],children:resolvedLinks15=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:463,width:\"260px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-uo4sjn-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"snCOp5jR6-container\",nodeId:\"snCOp5jR6\",rendersWithMotion:true,scopeId:\"gEdpMXNCP\",children:/*#__PURE__*/_jsx(GameCardV5,{bVCdliR2a:resolvedLinks15[1],height:\"100%\",id:\"snCOp5jR6\",iKk0Mv4dI:NkqxYPVOuvNAdsRE2h,KPi4iPrkd:znZ8GeW5tvNAdsRE2h,layoutId:\"snCOp5jR6\",Q2gmuz59P:resolvedLinks15[2],rGhU11Toz:resolvedLinks15[0],style:{width:\"100%\"},variant:\"F9M1IJBDw\",width:\"100%\",X6yObN9qj:toResponsiveImage(ikl9VcrCQvNAdsRE2h),zq5AwmT6K:DIdQCCrMGvNAdsRE2h})})})})})})},idvNAdsRE2h);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zmz8qt\",\"data-framer-name\":\"Reapers\",layoutDependency:layoutDependency,layoutId:\"dOsNDt3rE\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"dOsNDt3rE\",data:Games,type:\"Collection\"},select:[{collection:\"dOsNDt3rE\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"dOsNDt3rE\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"dOsNDt3rE\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"dOsNDt3rE\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"dOsNDt3rE\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"dOsNDt3rE\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"dOsNDt3rE\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"dOsNDt3rE\",name:\"DIdQCCrMG\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Reapers\"},type:\"BinaryOperation\"}},children:(collection16,paginationInfo16,loadMore16)=>/*#__PURE__*/_jsx(_Fragment,{children:collection16?.map(({cdW9XmGSy:cdW9XmGSydOsNDt3rE,DIdQCCrMG:DIdQCCrMGdOsNDt3rE,id:iddOsNDt3rE,ikl9VcrCQ:ikl9VcrCQdOsNDt3rE,NkqxYPVOu:NkqxYPVOudOsNDt3rE,SHo2EPTW_:SHo2EPTW_dOsNDt3rE,znZ8GeW5t:znZ8GeW5tdOsNDt3rE},index16)=>{DIdQCCrMGdOsNDt3rE??=\"\";znZ8GeW5tdOsNDt3rE??=\"\";cdW9XmGSydOsNDt3rE??=\"\";SHo2EPTW_dOsNDt3rE??=\"\";NkqxYPVOudOsNDt3rE??=true;return /*#__PURE__*/_jsx(LayoutGroup,{id:`dOsNDt3rE-${iddOsNDt3rE}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{cdW9XmGSy:cdW9XmGSydOsNDt3rE},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wbrphd\",layoutDependency:layoutDependency,layoutId:\"WaM2wsdQY\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{cdW9XmGSy:cdW9XmGSydOsNDt3rE},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined},{href:SHo2EPTW_dOsNDt3rE,implicitPathVariables:{cdW9XmGSy:cdW9XmGSydOsNDt3rE}},{href:{pathVariables:{cdW9XmGSy:cdW9XmGSydOsNDt3rE},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined}],children:resolvedLinks16=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:463,width:\"260px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1d5n812-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"YSJTBsezn-container\",nodeId:\"YSJTBsezn\",rendersWithMotion:true,scopeId:\"gEdpMXNCP\",children:/*#__PURE__*/_jsx(GameCardV5,{bVCdliR2a:resolvedLinks16[1],height:\"100%\",id:\"YSJTBsezn\",iKk0Mv4dI:NkqxYPVOudOsNDt3rE,KPi4iPrkd:znZ8GeW5tdOsNDt3rE,layoutId:\"YSJTBsezn\",Q2gmuz59P:resolvedLinks16[2],rGhU11Toz:resolvedLinks16[0],style:{width:\"100%\"},variant:\"F9M1IJBDw\",width:\"100%\",X6yObN9qj:toResponsiveImage(ikl9VcrCQdOsNDt3rE),zq5AwmT6K:DIdQCCrMGdOsNDt3rE})})})})})})},iddOsNDt3rE);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2mea6m\",\"data-framer-name\":\"Huntress\",layoutDependency:layoutDependency,layoutId:\"AxxM7tGJR\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"AxxM7tGJR\",data:Games,type:\"Collection\"},select:[{collection:\"AxxM7tGJR\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"AxxM7tGJR\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"AxxM7tGJR\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"AxxM7tGJR\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"AxxM7tGJR\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"AxxM7tGJR\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"AxxM7tGJR\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"AxxM7tGJR\",name:\"DIdQCCrMG\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Huntress: Wild Vengeance\"},type:\"BinaryOperation\"}},children:(collection17,paginationInfo17,loadMore17)=>/*#__PURE__*/_jsx(_Fragment,{children:collection17?.map(({cdW9XmGSy:cdW9XmGSyAxxM7tGJR,DIdQCCrMG:DIdQCCrMGAxxM7tGJR,id:idAxxM7tGJR,ikl9VcrCQ:ikl9VcrCQAxxM7tGJR,NkqxYPVOu:NkqxYPVOuAxxM7tGJR,SHo2EPTW_:SHo2EPTW_AxxM7tGJR,znZ8GeW5t:znZ8GeW5tAxxM7tGJR},index17)=>{DIdQCCrMGAxxM7tGJR??=\"\";znZ8GeW5tAxxM7tGJR??=\"\";cdW9XmGSyAxxM7tGJR??=\"\";SHo2EPTW_AxxM7tGJR??=\"\";NkqxYPVOuAxxM7tGJR??=true;return /*#__PURE__*/_jsx(LayoutGroup,{id:`AxxM7tGJR-${idAxxM7tGJR}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{cdW9XmGSy:cdW9XmGSyAxxM7tGJR},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3qy3dj\",layoutDependency:layoutDependency,layoutId:\"AeVrLw84_\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyAxxM7tGJR},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined},{href:SHo2EPTW_AxxM7tGJR,implicitPathVariables:{cdW9XmGSy:cdW9XmGSyAxxM7tGJR}},{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyAxxM7tGJR},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined}],children:resolvedLinks17=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:463,width:\"260px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9gh3k8-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"muMY6koHy-container\",nodeId:\"muMY6koHy\",rendersWithMotion:true,scopeId:\"gEdpMXNCP\",children:/*#__PURE__*/_jsx(GameCardV5,{bVCdliR2a:resolvedLinks17[1],height:\"100%\",id:\"muMY6koHy\",iKk0Mv4dI:NkqxYPVOuAxxM7tGJR,KPi4iPrkd:znZ8GeW5tAxxM7tGJR,layoutId:\"muMY6koHy\",Q2gmuz59P:resolvedLinks17[2],rGhU11Toz:resolvedLinks17[0],style:{width:\"100%\"},variant:\"F9M1IJBDw\",width:\"100%\",X6yObN9qj:toResponsiveImage(ikl9VcrCQAxxM7tGJR),zq5AwmT6K:DIdQCCrMGAxxM7tGJR})})})})})})},idAxxM7tGJR);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19o6ghg\",\"data-framer-name\":\"Out of ice\",layoutDependency:layoutDependency,layoutId:\"KiL5HQfew\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"KiL5HQfew\",data:Games,type:\"Collection\"},select:[{collection:\"KiL5HQfew\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"KiL5HQfew\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"KiL5HQfew\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"KiL5HQfew\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"KiL5HQfew\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"KiL5HQfew\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"KiL5HQfew\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"KiL5HQfew\",name:\"DIdQCCrMG\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Out of the Ice\"},type:\"BinaryOperation\"}},children:(collection18,paginationInfo18,loadMore18)=>/*#__PURE__*/_jsx(_Fragment,{children:collection18?.map(({cdW9XmGSy:cdW9XmGSyKiL5HQfew,DIdQCCrMG:DIdQCCrMGKiL5HQfew,id:idKiL5HQfew,ikl9VcrCQ:ikl9VcrCQKiL5HQfew,NkqxYPVOu:NkqxYPVOuKiL5HQfew,SHo2EPTW_:SHo2EPTW_KiL5HQfew,znZ8GeW5t:znZ8GeW5tKiL5HQfew},index18)=>{DIdQCCrMGKiL5HQfew??=\"\";znZ8GeW5tKiL5HQfew??=\"\";cdW9XmGSyKiL5HQfew??=\"\";SHo2EPTW_KiL5HQfew??=\"\";NkqxYPVOuKiL5HQfew??=true;return /*#__PURE__*/_jsx(LayoutGroup,{id:`KiL5HQfew-${idKiL5HQfew}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{cdW9XmGSy:cdW9XmGSyKiL5HQfew},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-al9o2\",layoutDependency:layoutDependency,layoutId:\"Y80dWjIuf\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyKiL5HQfew},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined},{href:SHo2EPTW_KiL5HQfew,implicitPathVariables:{cdW9XmGSy:cdW9XmGSyKiL5HQfew}},{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyKiL5HQfew},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined}],children:resolvedLinks18=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:463,width:\"260px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-i7pfsi-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"cvimmzr8x-container\",nodeId:\"cvimmzr8x\",rendersWithMotion:true,scopeId:\"gEdpMXNCP\",children:/*#__PURE__*/_jsx(GameCardV5,{bVCdliR2a:resolvedLinks18[1],height:\"100%\",id:\"cvimmzr8x\",iKk0Mv4dI:NkqxYPVOuKiL5HQfew,KPi4iPrkd:znZ8GeW5tKiL5HQfew,layoutId:\"cvimmzr8x\",Q2gmuz59P:resolvedLinks18[2],rGhU11Toz:resolvedLinks18[0],style:{width:\"100%\"},variant:\"F9M1IJBDw\",width:\"100%\",X6yObN9qj:toResponsiveImage(ikl9VcrCQKiL5HQfew),zq5AwmT6K:DIdQCCrMGKiL5HQfew})})})})})})},idKiL5HQfew);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8qb8cr\",\"data-framer-name\":\"Royal Potato\",layoutDependency:layoutDependency,layoutId:\"Vna3sMYz9\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Vna3sMYz9\",data:Games,type:\"Collection\"},select:[{collection:\"Vna3sMYz9\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"Vna3sMYz9\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"Vna3sMYz9\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"Vna3sMYz9\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"Vna3sMYz9\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"Vna3sMYz9\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"Vna3sMYz9\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"Vna3sMYz9\",name:\"DIdQCCrMG\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Royal Potato\"},type:\"BinaryOperation\"}},children:(collection19,paginationInfo19,loadMore19)=>/*#__PURE__*/_jsx(_Fragment,{children:collection19?.map(({cdW9XmGSy:cdW9XmGSyVna3sMYz9,DIdQCCrMG:DIdQCCrMGVna3sMYz9,id:idVna3sMYz9,ikl9VcrCQ:ikl9VcrCQVna3sMYz9,NkqxYPVOu:NkqxYPVOuVna3sMYz9,SHo2EPTW_:SHo2EPTW_Vna3sMYz9,znZ8GeW5t:znZ8GeW5tVna3sMYz9},index19)=>{DIdQCCrMGVna3sMYz9??=\"\";znZ8GeW5tVna3sMYz9??=\"\";cdW9XmGSyVna3sMYz9??=\"\";SHo2EPTW_Vna3sMYz9??=\"\";NkqxYPVOuVna3sMYz9??=true;return /*#__PURE__*/_jsx(LayoutGroup,{id:`Vna3sMYz9-${idVna3sMYz9}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{cdW9XmGSy:cdW9XmGSyVna3sMYz9},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-epkpcl\",layoutDependency:layoutDependency,layoutId:\"waRYFKdAi\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyVna3sMYz9},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined},{href:SHo2EPTW_Vna3sMYz9,implicitPathVariables:{cdW9XmGSy:cdW9XmGSyVna3sMYz9}},{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyVna3sMYz9},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined}],children:resolvedLinks19=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:463,width:\"260px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ba2p9m-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"hVubmwYs4-container\",nodeId:\"hVubmwYs4\",rendersWithMotion:true,scopeId:\"gEdpMXNCP\",children:/*#__PURE__*/_jsx(GameCardV5,{bVCdliR2a:resolvedLinks19[1],height:\"100%\",id:\"hVubmwYs4\",iKk0Mv4dI:NkqxYPVOuVna3sMYz9,KPi4iPrkd:znZ8GeW5tVna3sMYz9,layoutId:\"hVubmwYs4\",Q2gmuz59P:resolvedLinks19[2],rGhU11Toz:resolvedLinks19[0],style:{width:\"100%\"},variant:\"F9M1IJBDw\",width:\"100%\",X6yObN9qj:toResponsiveImage(ikl9VcrCQVna3sMYz9),zq5AwmT6K:DIdQCCrMGVna3sMYz9})})})})})})},idVna3sMYz9);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3gm8lf\",\"data-framer-name\":\"Crystal Golem\",layoutDependency:layoutDependency,layoutId:\"bv4bUw4MG\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"bv4bUw4MG\",data:Games,type:\"Collection\"},select:[{collection:\"bv4bUw4MG\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"bv4bUw4MG\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"bv4bUw4MG\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"bv4bUw4MG\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"bv4bUw4MG\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"bv4bUw4MG\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"bv4bUw4MG\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"bv4bUw4MG\",name:\"DIdQCCrMG\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Crystal Golem\"},type:\"BinaryOperation\"}},children:(collection20,paginationInfo20,loadMore20)=>/*#__PURE__*/_jsx(_Fragment,{children:collection20?.map(({cdW9XmGSy:cdW9XmGSybv4bUw4MG,DIdQCCrMG:DIdQCCrMGbv4bUw4MG,id:idbv4bUw4MG,ikl9VcrCQ:ikl9VcrCQbv4bUw4MG,NkqxYPVOu:NkqxYPVOubv4bUw4MG,SHo2EPTW_:SHo2EPTW_bv4bUw4MG,znZ8GeW5t:znZ8GeW5tbv4bUw4MG},index20)=>{DIdQCCrMGbv4bUw4MG??=\"\";znZ8GeW5tbv4bUw4MG??=\"\";cdW9XmGSybv4bUw4MG??=\"\";SHo2EPTW_bv4bUw4MG??=\"\";NkqxYPVOubv4bUw4MG??=true;return /*#__PURE__*/_jsx(LayoutGroup,{id:`bv4bUw4MG-${idbv4bUw4MG}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{cdW9XmGSy:cdW9XmGSybv4bUw4MG},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15i6fwv\",layoutDependency:layoutDependency,layoutId:\"floGsABUA\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{cdW9XmGSy:cdW9XmGSybv4bUw4MG},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined},{href:SHo2EPTW_bv4bUw4MG,implicitPathVariables:{cdW9XmGSy:cdW9XmGSybv4bUw4MG}},{href:{pathVariables:{cdW9XmGSy:cdW9XmGSybv4bUw4MG},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined}],children:resolvedLinks20=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:463,width:\"260px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8ir729-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"j5si4hg4b-container\",nodeId:\"j5si4hg4b\",rendersWithMotion:true,scopeId:\"gEdpMXNCP\",children:/*#__PURE__*/_jsx(GameCardV5,{bVCdliR2a:resolvedLinks20[1],height:\"100%\",id:\"j5si4hg4b\",iKk0Mv4dI:NkqxYPVOubv4bUw4MG,KPi4iPrkd:znZ8GeW5tbv4bUw4MG,layoutId:\"j5si4hg4b\",Q2gmuz59P:resolvedLinks20[2],rGhU11Toz:resolvedLinks20[0],style:{width:\"100%\"},variant:\"F9M1IJBDw\",width:\"100%\",X6yObN9qj:toResponsiveImage(ikl9VcrCQbv4bUw4MG),zq5AwmT6K:DIdQCCrMGbv4bUw4MG})})})})})})},idbv4bUw4MG);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-lgvb7g\",\"data-framer-name\":\"Book of Destiny\",layoutDependency:layoutDependency,layoutId:\"QyHzq0vv4\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"QyHzq0vv4\",data:Games,type:\"Collection\"},select:[{collection:\"QyHzq0vv4\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"QyHzq0vv4\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"QyHzq0vv4\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"QyHzq0vv4\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"QyHzq0vv4\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"QyHzq0vv4\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"QyHzq0vv4\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"QyHzq0vv4\",name:\"DIdQCCrMG\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Book of Destiny\"},type:\"BinaryOperation\"}},children:(collection21,paginationInfo21,loadMore21)=>/*#__PURE__*/_jsx(_Fragment,{children:collection21?.map(({cdW9XmGSy:cdW9XmGSyQyHzq0vv4,DIdQCCrMG:DIdQCCrMGQyHzq0vv4,id:idQyHzq0vv4,ikl9VcrCQ:ikl9VcrCQQyHzq0vv4,NkqxYPVOu:NkqxYPVOuQyHzq0vv4,SHo2EPTW_:SHo2EPTW_QyHzq0vv4,znZ8GeW5t:znZ8GeW5tQyHzq0vv4},index21)=>{DIdQCCrMGQyHzq0vv4??=\"\";znZ8GeW5tQyHzq0vv4??=\"\";cdW9XmGSyQyHzq0vv4??=\"\";SHo2EPTW_QyHzq0vv4??=\"\";NkqxYPVOuQyHzq0vv4??=true;return /*#__PURE__*/_jsx(LayoutGroup,{id:`QyHzq0vv4-${idQyHzq0vv4}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{cdW9XmGSy:cdW9XmGSyQyHzq0vv4},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mrt3ep\",layoutDependency:layoutDependency,layoutId:\"eAtd3BVer\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyQyHzq0vv4},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined},{href:SHo2EPTW_QyHzq0vv4,implicitPathVariables:{cdW9XmGSy:cdW9XmGSyQyHzq0vv4}},{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyQyHzq0vv4},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined}],children:resolvedLinks21=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:463,width:\"260px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1thzjpv-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"gQ7NcARSn-container\",nodeId:\"gQ7NcARSn\",rendersWithMotion:true,scopeId:\"gEdpMXNCP\",children:/*#__PURE__*/_jsx(GameCardV5,{bVCdliR2a:resolvedLinks21[1],height:\"100%\",id:\"gQ7NcARSn\",iKk0Mv4dI:NkqxYPVOuQyHzq0vv4,KPi4iPrkd:znZ8GeW5tQyHzq0vv4,layoutId:\"gQ7NcARSn\",Q2gmuz59P:resolvedLinks21[2],rGhU11Toz:resolvedLinks21[0],style:{width:\"100%\"},variant:\"F9M1IJBDw\",width:\"100%\",X6yObN9qj:toResponsiveImage(ikl9VcrCQQyHzq0vv4),zq5AwmT6K:DIdQCCrMGQyHzq0vv4})})})})})})},idQyHzq0vv4);})})})})})],snapObject:{fluid:true,snap:true,snapEdge:\"start\"},style:{width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rcmdr.framer-5wt9pl, .framer-rcmdr .framer-5wt9pl { display: block; }\",\".framer-rcmdr.framer-vrdne { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 723px; }\",\".framer-rcmdr .framer-j8epvj-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-rcmdr .framer-12dnle, .framer-rcmdr .framer-b9igr9, .framer-rcmdr .framer-18wm5xg, .framer-rcmdr .framer-zyi4t0, .framer-rcmdr .framer-x9gos3, .framer-rcmdr .framer-1fb0kvw, .framer-rcmdr .framer-35inir, .framer-rcmdr .framer-18i2jsp { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 425px; justify-content: flex-start; padding: 0px; position: relative; width: 260px; }\",\".framer-rcmdr .framer-16py2is, .framer-rcmdr .framer-1twmjhb, .framer-rcmdr .framer-15k5hsn, .framer-rcmdr .framer-1fzeime, .framer-rcmdr .framer-k8qel1, .framer-rcmdr .framer-pzusmq, .framer-rcmdr .framer-1a8rl54, .framer-rcmdr .framer-1gvpqp5, .framer-rcmdr .framer-3x91b9, .framer-rcmdr .framer-p1gtfp, .framer-rcmdr .framer-1k5f7pt, .framer-rcmdr .framer-m8apk, .framer-rcmdr .framer-or4cpk, .framer-rcmdr .framer-1wngx69, .framer-rcmdr .framer-w15e4h, .framer-rcmdr .framer-oayeee, .framer-rcmdr .framer-wbrphd, .framer-rcmdr .framer-3qy3dj, .framer-rcmdr .framer-al9o2, .framer-rcmdr .framer-epkpcl, .framer-rcmdr .framer-15i6fwv, .framer-rcmdr .framer-1mrt3ep { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 24px 0px 24px 0px; position: relative; width: min-content; }\",\".framer-rcmdr .framer-1n036e-container, .framer-rcmdr .framer-ajhce5-container, .framer-rcmdr .framer-1pz7cov-container, .framer-rcmdr .framer-v27rqg-container, .framer-rcmdr .framer-yp2mcy-container, .framer-rcmdr .framer-1jyzjcy-container, .framer-rcmdr .framer-pnczy6-container, .framer-rcmdr .framer-dsvy3x-container, .framer-rcmdr .framer-1l3cdjc-container, .framer-rcmdr .framer-mv97l0-container, .framer-rcmdr .framer-vtya0a-container, .framer-rcmdr .framer-1e2fr3x-container, .framer-rcmdr .framer-1vgompk-container, .framer-rcmdr .framer-12rpv47-container, .framer-rcmdr .framer-prd8c8-container, .framer-rcmdr .framer-uo4sjn-container, .framer-rcmdr .framer-1d5n812-container, .framer-rcmdr .framer-9gh3k8-container, .framer-rcmdr .framer-i7pfsi-container, .framer-rcmdr .framer-ba2p9m-container, .framer-rcmdr .framer-8ir729-container, .framer-rcmdr .framer-1thzjpv-container { flex: none; height: auto; position: relative; width: 260px; }\",\".framer-rcmdr .framer-18z4gih, .framer-rcmdr .framer-pmcfc3, .framer-rcmdr .framer-1j51wtt, .framer-rcmdr .framer-1ihdusd, .framer-rcmdr .framer-js37y6, .framer-rcmdr .framer-gflq6n, .framer-rcmdr .framer-18s7w3q, .framer-rcmdr .framer-1gj251d, .framer-rcmdr .framer-zmz8qt, .framer-rcmdr .framer-2mea6m, .framer-rcmdr .framer-19o6ghg, .framer-rcmdr .framer-8qb8cr, .framer-rcmdr .framer-3gm8lf, .framer-rcmdr .framer-lgvb7g { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 425\n * @framerIntrinsicWidth 723\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"m4UnB5_Lj\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramergEdpMXNCP=withCSS(Component,css,\"framer-rcmdr\");export default FramergEdpMXNCP;FramergEdpMXNCP.displayName=\"Game Carousel\";FramergEdpMXNCP.defaultProps={height:425,width:723};addPropertyControls(FramergEdpMXNCP,{variant:{options:[\"i9wOdRSo9\",\"m4UnB5_Lj\"],optionTitles:[\"Game Carousel\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramergEdpMXNCP,[{explicitInter:true,fonts:[]},...GameCardV5Fonts,...CarouselFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramergEdpMXNCP\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"425\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"723\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"m4UnB5_Lj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f76946f)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import GameCardV5 from\"#framer/local/canvasComponent/EEgy4oLPL/EEgy4oLPL.js\";import GameCarousel from\"#framer/local/canvasComponent/gEdpMXNCP/gEdpMXNCP.js\";import Footer from\"#framer/local/canvasComponent/jcuwG3843/jcuwG3843.js\";import Button from\"#framer/local/canvasComponent/pCu_Mu4eJ/pCu_Mu4eJ.js\";import AgeGateOverlay from\"#framer/local/canvasComponent/R8Fzm5Mrg/R8Fzm5Mrg.js\";import Navigation from\"#framer/local/canvasComponent/Z_1znDgF3/Z_1znDgF3.js\";import{showOnlyOnce}from\"#framer/local/codeFile/BYnWRIe/showOnlyOnce.js\";import Highlights from\"#framer/local/collection/kTXyfbuym/kTXyfbuym.js\";import Games from\"#framer/local/collection/QbiN9T6xM/QbiN9T6xM.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle2 from\"#framer/local/css/A4HWlZEOZ/A4HWlZEOZ.js\";import*as sharedStyle3 from\"#framer/local/css/bjtTuNQSH/bjtTuNQSH.js\";import*as sharedStyle from\"#framer/local/css/OCDKv9RZG/OCDKv9RZG.js\";import*as sharedStyle4 from\"#framer/local/css/PZapmGdK1/PZapmGdK1.js\";import*as sharedStyle7 from\"#framer/local/css/QvHR_jCw3/QvHR_jCw3.js\";import*as sharedStyle1 from\"#framer/local/css/ROnXVXuyX/ROnXVXuyX.js\";import*as sharedStyle6 from\"#framer/local/css/sILdcu8Pl/sILdcu8Pl.js\";import*as sharedStyle5 from\"#framer/local/css/yz30X2kkj/yz30X2kkj.js\";import metadataProvider from\"#framer/local/webPageMetadata/T2U0cxvWw/T2U0cxvWw.js\";const ImageWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Image));const ButtonFonts=getFonts(Button);const PhosphorFonts=getFonts(Phosphor);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const YouTubeFonts=getFonts(YouTube);const MotionDivWithFX=withFX(motion.div);const NavigationFonts=getFonts(Navigation);const GameCarouselFonts=getFonts(GameCarousel);const GameCardV5Fonts=getFonts(GameCardV5);const FooterFonts=getFonts(Footer);const AgeGateOverlayFonts=getFonts(AgeGateOverlay);const MotionDivShowOnlyOnce1m2j5ss=withCodeBoundaryForOverrides(motion.div,{nodeId:\"NlPgR8OZX\",override:showOnlyOnce,scopeId:\"T2U0cxvWw\"});const breakpoints={G6wBmgCVd:\"(min-width: 1200px)\",jFBgyByUa:\"(max-width: 809px)\",MCCW1RPPY:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-C1xmP\";const variantClassNames={G6wBmgCVd:\"framer-v-10p59zs\",jFBgyByUa:\"framer-v-1ttyoa9\",MCCW1RPPY:\"framer-v-x41912\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-150};const sharedDateFormatter=(value,formatOptions,locale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const fallbackLocale=\"en-US\";try{return date.toLocaleString(locale||fallbackLocale,formatOptions);}catch{return date.toLocaleString(fallbackLocale,formatOptions);}};const dateOptions={dateStyle:\"medium\",timeZone:\"UTC\"};const toDateString=(value,activeLocale)=>{return sharedDateFormatter(value,dateOptions,activeLocale);};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={damping:30,delay:.3,mass:1,stiffness:400,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const transition3={damping:30,delay:.6,mass:1,stiffness:400,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const transition4={damping:30,delay:.9,mass:1,stiffness:400,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition1,y:-5};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const contains=(a,b)=>{if(typeof a===\"string\"&&typeof b===\"string\"){return a.toLowerCase().includes(b.toLowerCase());}if(Array.isArray(a)&&typeof b===\"string\"){return a.includes(b);}return false;};const negate=value=>{return!value;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"G6wBmgCVd\",Phone:\"jFBgyByUa\",Tablet:\"MCCW1RPPY\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"G6wBmgCVd\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"T2U0cxvWw\",data:Games,type:\"Collection\"},select:[{collection:\"T2U0cxvWw\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"T2U0cxvWw\",name:\"iAfvgHJPG\",type:\"Identifier\"},{collection:\"T2U0cxvWw\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"T2U0cxvWw\",name:\"kUzZgrWUE\",type:\"Identifier\"},{collection:\"T2U0cxvWw\",name:\"HO2p6f0rV\",type:\"Identifier\"},{collection:\"T2U0cxvWw\",name:\"Qe6U9AmII\",type:\"Identifier\"},{collection:\"T2U0cxvWw\",name:\"ylRVED6jZ\",type:\"Identifier\"},{collection:\"T2U0cxvWw\",name:\"fwfc6tUj_\",type:\"Identifier\"},{collection:\"T2U0cxvWw\",name:\"YvNNHsVyo\",type:\"Identifier\"},{collection:\"T2U0cxvWw\",name:\"W9weUtoqj\",type:\"Identifier\"},{collection:\"T2U0cxvWw\",name:\"EmOaReR8W\",type:\"Identifier\"},{collection:\"T2U0cxvWw\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"T2U0cxvWw\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"T2U0cxvWw\",name:\"XBUWMWdd7\",type:\"Identifier\"},{collection:\"T2U0cxvWw\",name:\"YItFVNun7\",type:\"Identifier\"},{collection:\"T2U0cxvWw\",name:\"mVeZbi0m7\",type:\"Identifier\"},{collection:\"T2U0cxvWw\",name:\"vj95LFH0V\",type:\"Identifier\"},{collection:\"T2U0cxvWw\",name:\"T4UkULn_r\",type:\"Identifier\"},{collection:\"T2U0cxvWw\",name:\"pGS_naBGj\",type:\"Identifier\"},{collection:\"T2U0cxvWw\",name:\"guvBtMjHy\",type:\"Identifier\"},{collection:\"T2U0cxvWw\",name:\"z9y3hP6Ks\",type:\"Identifier\"},{collection:\"T2U0cxvWw\",name:\"uzUe0fhg2\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"T2U0cxvWw\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,XBUWMWdd7=getFromCurrentRouteData(\"XBUWMWdd7\"),DIdQCCrMG=getFromCurrentRouteData(\"DIdQCCrMG\")??\"\",iAfvgHJPG=getFromCurrentRouteData(\"iAfvgHJPG\"),znZ8GeW5t=getFromCurrentRouteData(\"znZ8GeW5t\")??\"\",kUzZgrWUE=getFromCurrentRouteData(\"kUzZgrWUE\")??\"\",SHo2EPTW_=getFromCurrentRouteData(\"SHo2EPTW_\")??\"\",W9weUtoqj=getFromCurrentRouteData(\"W9weUtoqj\")??\"\",EmOaReR8W=getFromCurrentRouteData(\"EmOaReR8W\")??\"\",Qe6U9AmII=getFromCurrentRouteData(\"Qe6U9AmII\")??\"\",ylRVED6jZ=getFromCurrentRouteData(\"ylRVED6jZ\")??\"\",fwfc6tUj_=getFromCurrentRouteData(\"fwfc6tUj_\")??\"\",YvNNHsVyo=getFromCurrentRouteData(\"YvNNHsVyo\")??\"\",HO2p6f0rV=getFromCurrentRouteData(\"HO2p6f0rV\")??\"\",YItFVNun7=getFromCurrentRouteData(\"YItFVNun7\"),vj95LFH0V=getFromCurrentRouteData(\"vj95LFH0V\"),mVeZbi0m7=getFromCurrentRouteData(\"mVeZbi0m7\"),T4UkULn_r=getFromCurrentRouteData(\"T4UkULn_r\"),pGS_naBGj=getFromCurrentRouteData(\"pGS_naBGj\"),guvBtMjHy=getFromCurrentRouteData(\"guvBtMjHy\")??\"\",z9y3hP6Ks=getFromCurrentRouteData(\"z9y3hP6Ks\")??\"\",uzUe0fhg2=getFromCurrentRouteData(\"uzUe0fhg2\")??true,brKFUow3amizhMjg69,CHIfHgHjtmizhMjg69,idmizhMjg69,ikl9VcrCQ=getFromCurrentRouteData(\"ikl9VcrCQ\"),ikl9VcrCQQiG9q_8IS,DIdQCCrMGQiG9q_8IS,znZ8GeW5tQiG9q_8IS,cdW9XmGSyQiG9q_8IS,SHo2EPTW_QiG9q_8IS,NkqxYPVOuQiG9q_8IS,idQiG9q_8IS,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,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);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"QdTXVdBff\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"FNbuGOsg_\");const ref2=React.useRef(null);const activeLocaleCode=useLocaleCode();const textContent=toDateString(iAfvgHJPG,activeLocaleCode);const visible=isSet(SHo2EPTW_);const router=useRouter();const visible1=isSet(W9weUtoqj);const visible2=isSet(EmOaReR8W);const visible3=isSet(ylRVED6jZ);const visible4=isSet(YItFVNun7);const visible5=isSet(vj95LFH0V);const visible6=isSet(mVeZbi0m7);const visible7=isSet(T4UkULn_r);const visible8=isSet(pGS_naBGj);const visible9=isSet(guvBtMjHy);const visible10=contains(guvBtMjHy,\"\");const elementId2=useRouteElementId(\"nnIUEgJiV\");const ref3=React.useRef(null);const visible11=negate(isSet(guvBtMjHy));const elementId3=useRouteElementId(\"F8gk7peo2\");const ref4=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"jFBgyByUa\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"jFBgyByUa\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"G6wBmgCVd\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-2f61e909-41ca-4864-8eb7-3e2bf8b88786, rgb(24, 43, 47)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-10p59zs\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-yvxae3\",\"data-framer-name\":\"Scroll header transform\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})}),className:\"framer-1fovpt5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFBgyByUa:{background:{alt:\"\",fit:\"fill\",sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(XBUWMWdd7)}}},children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:600}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+48+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(XBUWMWdd7)},className:\"framer-1hm31d1\",\"data-framer-appear-id\":\"1hm31d1\",\"data-framer-name\":\"Game Banner\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i77za\"})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-30}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-30}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-t9vl8t\",\"data-framer-name\":\"Game Wrapper\",id:elementId1,ref:ref2,style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t51c3d\",\"data-border\":true,\"data-framer-name\":\"Game Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m6xqe\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-182kc0v\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mg03cg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-95ek5o\",\"data-styles-preset\":\"OCDKv9RZG\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6f870157-14a3-4374-9f30-9ca82c54c3d0, rgb(138, 202, 190))\"},children:\"Shinobi Spirit\"})}),className:\"framer-qsq74b\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:DIdQCCrMG,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p5kipv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-15541fv\",\"data-styles-preset\":\"ROnXVXuyX\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cb163dc-2ad9-45c0-af09-af41a83342d9, rgb(180, 188, 189))\"},children:\"RELEASE:\"})}),className:\"framer-8fmrm\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-15541fv\",\"data-styles-preset\":\"ROnXVXuyX\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-191b7f6e-323d-425b-839d-7bc4c88fa871, rgb(228, 203, 129))\"},children:\"Content\"})}),className:\"framer-16ss0n7\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wbwgni\",\"data-styles-preset\":\"A4HWlZEOZ\",style:{\"--framer-text-color\":\"var(--token-ec031ba8-8107-4398-a49b-f91e8c7a6652, rgb(212, 216, 217))\"},children:\"Unleash the Lumberjack's Luck\"})}),className:\"framer-jvshlr\",\"data-framer-name\":\"Game tagline\",fonts:[\"Inter\"],text:znZ8GeW5t,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-31vupi\",\"data-styles-preset\":\"bjtTuNQSH\",style:{\"--framer-text-color\":\"var(--token-7b86171e-456f-4029-8a01-d9098dbf4329, rgb(233, 235, 235))\"},children:'\"I just love the divine smell of gunpowder in the morning.\" - The Bishop.'})}),className:\"framer-gfbnf8\",\"data-framer-name\":\"Game tagline\",fonts:[\"Inter\"],text:kUzZgrWUE,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e5bflm\",\"data-framer-name\":\"Game assets\",children:[visible&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:SHo2EPTW_,implicitPathVariables:undefined},{href:SHo2EPTW_,implicitPathVariables:undefined},{href:SHo2EPTW_,implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1afkt26-container\",nodeId:\"jECCo0BYy\",scopeId:\"T2U0cxvWw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFBgyByUa:{Vp3RrpAeB:resolvedLinks[2]},MCCW1RPPY:{Vp3RrpAeB:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{gWWd67m62:true,height:\"100%\",id:\"jECCo0BYy\",layoutId:\"jECCo0BYy\",M5PGWJ8hZ:\"Play Demo\",pNWyFWMQG:true,quB26ajQp:\"Play\",style:{width:\"100%\"},UhepVQ5xC:true,variant:\"DTPt0aP4K\",Vp3RrpAeB:resolvedLinks[0],width:\"100%\"})})})})}),visible1&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:W9weUtoqj,implicitPathVariables:undefined},{href:W9weUtoqj,implicitPathVariables:undefined},{href:W9weUtoqj,implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-s3w0wp-container\",nodeId:\"Jic8QlOyR\",scopeId:\"T2U0cxvWw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFBgyByUa:{Vp3RrpAeB:resolvedLinks1[2]},MCCW1RPPY:{Vp3RrpAeB:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Button,{gWWd67m62:true,height:\"100%\",id:\"Jic8QlOyR\",layoutId:\"Jic8QlOyR\",M5PGWJ8hZ:\"Gamesheet\",pNWyFWMQG:true,quB26ajQp:\"FileArrowDown\",style:{width:\"100%\"},UhepVQ5xC:true,variant:\"czKzPrPY8\",Vp3RrpAeB:resolvedLinks1[0],width:\"100%\"})})})})}),visible2&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:EmOaReR8W,implicitPathVariables:undefined},{href:EmOaReR8W,implicitPathVariables:undefined},{href:EmOaReR8W,implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g5k1lj-container\",nodeId:\"biFnDR4d_\",scopeId:\"T2U0cxvWw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFBgyByUa:{Vp3RrpAeB:resolvedLinks2[2]},MCCW1RPPY:{Vp3RrpAeB:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(Button,{gWWd67m62:true,height:\"100%\",id:\"biFnDR4d_\",layoutId:\"biFnDR4d_\",M5PGWJ8hZ:\"Marketing assets\",pNWyFWMQG:false,quB26ajQp:\"FileArrowDown\",style:{width:\"100%\"},UhepVQ5xC:true,variant:\"czKzPrPY8\",Vp3RrpAeB:resolvedLinks2[0],width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f8bph6\",\"data-framer-name\":\"Game Data\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1dl8krd\",\"data-framer-appear-id\":\"1dl8krd\",\"data-framer-name\":\"RTP\",initial:animation2,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8ptkd7-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"VHP_arkbk\",scopeId:\"T2U0cxvWw\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-191b7f6e-323d-425b-839d-7bc4c88fa871, rgb(228, 203, 129))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"UserSwitch\",id:\"VHP_arkbk\",layoutId:\"VHP_arkbk\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o44g3g\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFBgyByUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgMy02MDA=\",\"--framer-font-family\":'\"Source Sans 3\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-7cb163dc-2ad9-45c0-af09-af41a83342d9, rgb(180, 188, 189))\"},children:\"RTP\"})}),fonts:[\"GF;Source Sans 3-600\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1t549vh\",\"data-styles-preset\":\"PZapmGdK1\",style:{\"--framer-text-color\":\"var(--token-7cb163dc-2ad9-45c0-af09-af41a83342d9, rgb(180, 188, 189))\"},children:\"RTP\"})}),className:\"framer-k4pczg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFBgyByUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-15541fv\",\"data-styles-preset\":\"ROnXVXuyX\",style:{\"--framer-text-color\":\"var(--token-7b86171e-456f-4029-8a01-d9098dbf4329, rgb(233, 235, 235))\"},children:\"96.26%\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wbwgni\",\"data-styles-preset\":\"A4HWlZEOZ\",style:{\"--framer-text-color\":\"var(--token-7b86171e-456f-4029-8a01-d9098dbf4329, rgb(233, 235, 235))\"},children:\"96.26%\"})}),className:\"framer-x1zum9\",fonts:[\"Inter\"],text:Qe6U9AmII,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),visible3&&/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-m0j5tc\",\"data-framer-appear-id\":\"m0j5tc\",\"data-framer-name\":\"RTP w Bonus Buy\",initial:animation2,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xbb70f-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"dFIJMQeCB\",scopeId:\"T2U0cxvWw\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-191b7f6e-323d-425b-839d-7bc4c88fa871, rgb(228, 203, 129))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"UserSwitch\",id:\"dFIJMQeCB\",layoutId:\"dFIJMQeCB\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14e8cvr\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFBgyByUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgMy02MDA=\",\"--framer-font-family\":'\"Source Sans 3\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-7cb163dc-2ad9-45c0-af09-af41a83342d9, rgb(180, 188, 189))\"},children:\"RTP w. Bonus Buy\"})}),fonts:[\"GF;Source Sans 3-600\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1t549vh\",\"data-styles-preset\":\"PZapmGdK1\",style:{\"--framer-text-color\":\"var(--token-7cb163dc-2ad9-45c0-af09-af41a83342d9, rgb(180, 188, 189))\"},children:\"RTP w. Bonus Buy\"})}),className:\"framer-ldj72m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFBgyByUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-15541fv\",\"data-styles-preset\":\"ROnXVXuyX\",style:{\"--framer-text-color\":\"var(--token-7b86171e-456f-4029-8a01-d9098dbf4329, rgb(233, 235, 235))\"},children:\"96.72%\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wbwgni\",\"data-styles-preset\":\"A4HWlZEOZ\",style:{\"--framer-text-color\":\"var(--token-7b86171e-456f-4029-8a01-d9098dbf4329, rgb(233, 235, 235))\"},children:\"97.48%\"})}),className:\"framer-1hp865u\",fonts:[\"Inter\"],text:ylRVED6jZ,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-13sg0tr\",\"data-framer-appear-id\":\"13sg0tr\",\"data-framer-name\":\"Volatility\",initial:animation2,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e4meuf-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ki4sdb_vm\",scopeId:\"T2U0cxvWw\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-191b7f6e-323d-425b-839d-7bc4c88fa871, rgb(228, 203, 129))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ChartScatter\",id:\"ki4sdb_vm\",layoutId:\"ki4sdb_vm\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cgvkas\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFBgyByUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgMy02MDA=\",\"--framer-font-family\":'\"Source Sans 3\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-7cb163dc-2ad9-45c0-af09-af41a83342d9, rgb(180, 188, 189))\"},children:\"Volatility\"})}),fonts:[\"GF;Source Sans 3-600\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1t549vh\",\"data-styles-preset\":\"PZapmGdK1\",style:{\"--framer-text-color\":\"var(--token-7cb163dc-2ad9-45c0-af09-af41a83342d9, rgb(180, 188, 189))\"},children:\"Volatility\"})}),className:\"framer-17eu1st\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFBgyByUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-15541fv\",\"data-styles-preset\":\"ROnXVXuyX\",style:{\"--framer-text-color\":\"var(--token-7b86171e-456f-4029-8a01-d9098dbf4329, rgb(233, 235, 235))\"},children:\"5 / 5\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wbwgni\",\"data-styles-preset\":\"A4HWlZEOZ\",style:{\"--framer-text-color\":\"var(--token-7b86171e-456f-4029-8a01-d9098dbf4329, rgb(233, 235, 235))\"},children:\"5 / 5\"})}),className:\"framer-wz66wb\",fonts:[\"Inter\"],text:fwfc6tUj_,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1l759y4\",\"data-framer-appear-id\":\"1l759y4\",\"data-framer-name\":\"Max win\",initial:animation2,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ct3k83-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"lxs2_wDEY\",scopeId:\"T2U0cxvWw\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-191b7f6e-323d-425b-839d-7bc4c88fa871, rgb(228, 203, 129))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Trophy\",id:\"lxs2_wDEY\",layoutId:\"lxs2_wDEY\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v9ijv3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFBgyByUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgMy02MDA=\",\"--framer-font-family\":'\"Source Sans 3\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-7cb163dc-2ad9-45c0-af09-af41a83342d9, rgb(180, 188, 189))\"},children:\"Max win\"})}),fonts:[\"GF;Source Sans 3-600\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1t549vh\",\"data-styles-preset\":\"PZapmGdK1\",style:{\"--framer-text-color\":\"var(--token-7cb163dc-2ad9-45c0-af09-af41a83342d9, rgb(180, 188, 189))\"},children:\"Max win\"})}),className:\"framer-qqbhp3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFBgyByUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-15541fv\",\"data-styles-preset\":\"ROnXVXuyX\",style:{\"--framer-text-color\":\"var(--token-7b86171e-456f-4029-8a01-d9098dbf4329, rgb(233, 235, 235))\"},children:\"40 000x\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wbwgni\",\"data-styles-preset\":\"A4HWlZEOZ\",style:{\"--framer-text-color\":\"var(--token-7b86171e-456f-4029-8a01-d9098dbf4329, rgb(233, 235, 235))\"},children:\"40 000x\"})}),className:\"framer-1pa55fg\",fonts:[\"Inter\"],text:YvNNHsVyo,verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pmj6u2\",\"data-framer-name\":\"Description and buttons\",children:[/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"odL59P0gT\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"xD0noWb5A\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:HO2p6f0rV,className:\"framer-raj57n\",\"data-framer-name\":\"Game Description\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-9fci7g\",h1:\"framer-styles-preset-95ek5o\",h2:\"framer-styles-preset-1wbwgni\",h3:\"framer-styles-preset-15541fv\",h4:\"framer-styles-preset-1of3aiw\",h5:\"framer-styles-preset-1t549vh\",h6:\"framer-styles-preset-lyzqx2\",p:\"framer-styles-preset-31vupi\"},verticalAlignment:\"top\",withExternalLayout:true})}),visible4&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3ikf0j\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1wbwgni\",\"data-styles-preset\":\"A4HWlZEOZ\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6f870157-14a3-4374-9f30-9ca82c54c3d0, rgb(138, 202, 190))\"},children:\"SCREENSHOTS\"})}),className:\"framer-19fpncz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12aq71u\",children:[visible4&&/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFBgyByUa:{background:{alt:\"\",fit:\"fill\",sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px, 1440px)`,...toResponsiveImage(YItFVNun7)}},MCCW1RPPY:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+48+562+0+0+0+588.9+64+0+67.2+0+0),sizes:`min(max((min(${componentViewport?.width||\"100vw\"} - 96px, 1440px) - 96px) * 0.7, 1px), 1440px)`,...toResponsiveImage(YItFVNun7)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+48+562+0+0+0+479.7+64+0+67.2+0+0),sizes:`min(max((min(${componentViewport?.width||\"100vw\"} - 96px, 1440px) - 96px) * 0.7, 1px), 1440px)`,...toResponsiveImage(YItFVNun7)},className:\"framer-6q5zg9\",\"data-border\":true,\"data-framer-name\":\"Screenshot 1 - Landscape/Desktop\",id:\"6q5zg9\",onTap:onTap3bnx0g({overlay}),whileHover:animation6,children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1fj54ev\"),\"data-framer-portal-id\":\"6q5zg9\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"wGtXmr1q7\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFBgyByUa:{background:{alt:\"\",fit:\"fill\",sizes:\"calc(100vw - 40px)\",...toResponsiveImage(YItFVNun7)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"calc(100vw - 48px)\",...toResponsiveImage(YItFVNun7)},className:cx(scopingClassNames,\"framer-15cex6w\"),\"data-framer-name\":\"Screenshot 1 - Landscape/Desktop\",\"data-framer-portal-id\":\"6q5zg9\",onTap:onTap1wnntms({overlay})})}),/*#__PURE__*/_jsx(motion.div,{className:cx(scopingClassNames,\"framer-1fr46mg\"),\"data-framer-name\":\"Close button\",\"data-framer-portal-id\":\"6q5zg9\",onTap:onTap1wnntms({overlay}),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2je4wp-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Zok5_vOPc\",scopeId:\"T2U0cxvWw\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2f61e909-41ca-4864-8eb7-3e2bf8b88786, rgb(24, 43, 47))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"X\",id:\"Zok5_vOPc\",layoutId:\"Zok5_vOPc\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]}),getContainer())})})})})})}),visible5&&/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFBgyByUa:{background:{alt:\"\",fit:\"fill\",sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px, 1440px)`,...toResponsiveImage(vj95LFH0V)}},MCCW1RPPY:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+48+562+0+0+0+588.9+64+0+67.2+0+246.5),sizes:`min(max((min(${componentViewport?.width||\"100vw\"} - 96px, 1440px) - 96px) * 0.7, 1px), 1440px)`,...toResponsiveImage(vj95LFH0V)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+48+562+0+0+0+479.7+64+0+67.2+0+246.5),sizes:`min(max((min(${componentViewport?.width||\"100vw\"} - 96px, 1440px) - 96px) * 0.7, 1px), 1440px)`,...toResponsiveImage(vj95LFH0V)},className:\"framer-1m68fqa\",\"data-border\":true,\"data-framer-name\":\"Screenshot 1 - Landscape/Desktop\",id:\"1m68fqa\",onTap:onTap3bnx0g({overlay:overlay1}),whileHover:animation6,children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-9aabsn\"),\"data-framer-portal-id\":\"1m68fqa\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"n36rygn5B\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFBgyByUa:{background:{alt:\"\",fit:\"fill\",sizes:\"calc(100vw - 40px)\",...toResponsiveImage(vj95LFH0V)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"calc(100vw - 48px)\",...toResponsiveImage(vj95LFH0V)},className:cx(scopingClassNames,\"framer-bbt06y\"),\"data-framer-name\":\"Screenshot 1 - Landscape/Desktop\",\"data-framer-portal-id\":\"1m68fqa\",onTap:onTap1wnntms({overlay:overlay1})})}),/*#__PURE__*/_jsx(motion.div,{className:cx(scopingClassNames,\"framer-5j1fkv\"),\"data-framer-name\":\"Close button\",\"data-framer-portal-id\":\"1m68fqa\",onTap:onTap1wnntms({overlay:overlay1}),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pkya1k-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"W4l8xwI20\",scopeId:\"T2U0cxvWw\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2f61e909-41ca-4864-8eb7-3e2bf8b88786, rgb(24, 43, 47))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"X\",id:\"W4l8xwI20\",layoutId:\"W4l8xwI20\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]}),getContainer())})})})})})}),visible6&&/*#__PURE__*/_jsx(Overlay,{children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFBgyByUa:{background:{alt:\"\",fit:\"fill\",sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px, 1440px)`,...toResponsiveImage(mVeZbi0m7)}},MCCW1RPPY:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+48+562+0+0+0+588.9+64+0+67.2+0+574.5),sizes:`min(max((min(${componentViewport?.width||\"100vw\"} - 96px, 1440px) - 96px) * 0.7, 1px), 1440px)`,...toResponsiveImage(mVeZbi0m7)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+48+562+0+0+0+479.7+64+0+67.2+0+574.5),sizes:`min(max((min(${componentViewport?.width||\"100vw\"} - 96px, 1440px) - 96px) * 0.7, 1px), 1440px)`,...toResponsiveImage(mVeZbi0m7)},className:\"framer-18a9eyo\",\"data-border\":true,\"data-framer-name\":\"Screenshot 1 - Landscape/Desktop\",id:\"18a9eyo\",onTap:onTap3bnx0g({overlay:overlay2}),whileHover:animation6,children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1xq9w87\"),\"data-framer-portal-id\":\"18a9eyo\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay2.hide()},\"DXPJEDptH\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFBgyByUa:{background:{alt:\"\",fit:\"fill\",sizes:\"calc(100vw - 40px)\",...toResponsiveImage(mVeZbi0m7)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"calc(100vw - 48px)\",...toResponsiveImage(mVeZbi0m7)},className:cx(scopingClassNames,\"framer-zip64l\"),\"data-framer-name\":\"Screenshot 1 - Landscape/Desktop\",\"data-framer-portal-id\":\"18a9eyo\",onTap:onTap1wnntms({overlay:overlay2})})}),/*#__PURE__*/_jsx(motion.div,{className:cx(scopingClassNames,\"framer-wa3a03\"),\"data-framer-name\":\"Close button\",\"data-framer-portal-id\":\"18a9eyo\",onTap:onTap1wnntms({overlay:overlay2}),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u3ipep-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"lbXuF9fge\",scopeId:\"T2U0cxvWw\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2f61e909-41ca-4864-8eb7-3e2bf8b88786, rgb(24, 43, 47))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"X\",id:\"lbXuF9fge\",layoutId:\"lbXuF9fge\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]}),getContainer())})})})})})}),visible7&&/*#__PURE__*/_jsx(Overlay,{children:overlay3=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFBgyByUa:{background:{alt:\"\",fit:\"fill\",sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px, 1440px)`,...toResponsiveImage(T4UkULn_r)}},MCCW1RPPY:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+48+562+0+0+0+588.9+64+0+67.2+0+821),sizes:`min(max((min(${componentViewport?.width||\"100vw\"} - 96px, 1440px) - 96px) * 0.7, 1px), 1440px)`,...toResponsiveImage(T4UkULn_r)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+48+562+0+0+0+479.7+64+0+67.2+0+821),sizes:`min(max((min(${componentViewport?.width||\"100vw\"} - 96px, 1440px) - 96px) * 0.7, 1px), 1440px)`,...toResponsiveImage(T4UkULn_r)},className:\"framer-1dld8bu\",\"data-border\":true,\"data-framer-name\":\"Screenshot 1 - Landscape/Desktop\",id:\"1dld8bu\",onTap:onTap3bnx0g({overlay:overlay3}),whileHover:animation6,children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay3.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-yxzvxt\"),\"data-framer-portal-id\":\"1dld8bu\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay3.hide()},\"S5mecmHTd\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFBgyByUa:{background:{alt:\"\",fit:\"fill\",sizes:\"calc(100vw - 40px)\",...toResponsiveImage(T4UkULn_r)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"calc(100vw - 48px)\",...toResponsiveImage(T4UkULn_r)},className:cx(scopingClassNames,\"framer-4sowv8\"),\"data-framer-name\":\"Screenshot 1 - Landscape/Desktop\",\"data-framer-portal-id\":\"1dld8bu\",onTap:onTap1wnntms({overlay:overlay3})})}),/*#__PURE__*/_jsx(motion.div,{className:cx(scopingClassNames,\"framer-1m8fptc\"),\"data-framer-name\":\"Close button\",\"data-framer-portal-id\":\"1dld8bu\",onTap:onTap1wnntms({overlay:overlay3}),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2zguoy-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"UAaiPoS8y\",scopeId:\"T2U0cxvWw\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2f61e909-41ca-4864-8eb7-3e2bf8b88786, rgb(24, 43, 47))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"X\",id:\"UAaiPoS8y\",layoutId:\"UAaiPoS8y\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]}),getContainer())})})})})})}),visible8&&/*#__PURE__*/_jsx(Overlay,{children:overlay4=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFBgyByUa:{background:{alt:\"\",fit:\"fill\",sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px, 1440px)`,...toResponsiveImage(pGS_naBGj)}},MCCW1RPPY:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+48+562+0+0+0+588.9+64+0+67.2+0+1149.5),sizes:`min(max((min(${componentViewport?.width||\"100vw\"} - 96px, 1440px) - 96px) * 0.7, 1px), 1440px)`,...toResponsiveImage(pGS_naBGj)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+48+562+0+0+0+479.7+64+0+67.2+0+1149.5),sizes:`min(max((min(${componentViewport?.width||\"100vw\"} - 96px, 1440px) - 96px) * 0.7, 1px), 1440px)`,...toResponsiveImage(pGS_naBGj)},className:\"framer-19cstij\",\"data-border\":true,\"data-framer-name\":\"Screenshot 1 - Landscape/Desktop\",id:\"19cstij\",onTap:onTap3bnx0g({overlay:overlay4}),whileHover:animation6,children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay4.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-70f013\"),\"data-framer-portal-id\":\"19cstij\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay4.hide()},\"Nwr6xTGLl\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFBgyByUa:{background:{alt:\"\",fit:\"fill\",sizes:\"calc(100vw - 40px)\",...toResponsiveImage(pGS_naBGj)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"calc(100vw - 48px)\",...toResponsiveImage(pGS_naBGj)},className:cx(scopingClassNames,\"framer-n0koi2\"),\"data-framer-name\":\"Screenshot 1 - Landscape/Desktop\",\"data-framer-portal-id\":\"19cstij\",onTap:onTap1wnntms({overlay:overlay4})})}),/*#__PURE__*/_jsx(motion.div,{className:cx(scopingClassNames,\"framer-8b2d9\"),\"data-framer-name\":\"Close button\",\"data-framer-portal-id\":\"19cstij\",onTap:onTap1wnntms({overlay:overlay4}),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1slihkp-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Is7lP5tQC\",scopeId:\"T2U0cxvWw\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2f61e909-41ca-4864-8eb7-3e2bf8b88786, rgb(24, 43, 47))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"X\",id:\"Is7lP5tQC\",layoutId:\"Is7lP5tQC\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]}),getContainer())})})})})})})]})]})]}),visible9&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aze3lh\",\"data-framer-name\":\"Gameplay Video\",children:[visible10&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bj4jmt\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cqjdlf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wbwgni\",\"data-styles-preset\":\"A4HWlZEOZ\",children:\"Gameplay video\"})}),className:\"framer-4gcoly\",fonts:[\"Inter\"],id:elementId2,ref:ref3,text:z9y3hP6Ks,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14izmdf\",\"data-border\":true,children:visible9&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17n8o8w-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"V3d4t_83h\",scopeId:\"T2U0cxvWw\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,height:\"100%\",id:\"V3d4t_83h\",isMixedBorderRadius:false,isRed:true,layoutId:\"V3d4t_83h\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Off\",topLeftRadius:16,topRightRadius:16,url:guvBtMjHy,width:\"100%\"})})})})]})]}),uzUe0fhg2&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wf441u\",\"data-framer-name\":\"Streamers section\",children:[visible11&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wgbyed\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fkv7zt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1wbwgni\",\"data-styles-preset\":\"A4HWlZEOZ\",children:\"Highlights\"})}),className:\"framer-1klddsx\",fonts:[\"Inter\"],id:elementId3,ref:ref4,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b337l6\",\"data-hide-scrollbars\":true,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"mizhMjg69\",data:Highlights,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"mizhMjg69\",name:\"brKFUow3a\",type:\"Identifier\"},{collection:\"mizhMjg69\",name:\"CHIfHgHjt\",type:\"Identifier\"},{collection:\"mizhMjg69\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"mizhMjg69\",name:\"LgYbrp4Pp\",type:\"Identifier\"},{type:\"LiteralValue\",value:DIdQCCrMG}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({brKFUow3a:brKFUow3amizhMjg69,CHIfHgHjt:CHIfHgHjtmizhMjg69,id:idmizhMjg69},index)=>{brKFUow3amizhMjg69??=\"\";CHIfHgHjtmizhMjg69??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`mizhMjg69-${idmizhMjg69}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{brKFUow3a:brKFUow3amizhMjg69},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{brKFUow3a:brKFUow3amizhMjg69},webPageId:\"KYbEgIQQc\"},motionChild:true,nodeId:\"TpUbjIGu1\",scopeId:\"T2U0cxvWw\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1vkwdfm framer-maqro8\",\"data-border\":true,\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ysb539\",\"data-framer-name\":\"Link Overlay\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vic8uo-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"AIa4SCpjh\",scopeId:\"T2U0cxvWw\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,height:\"100%\",id:\"AIa4SCpjh\",isMixedBorderRadius:false,isRed:true,layoutId:\"AIa4SCpjh\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Off\",topLeftRadius:8,topRightRadius:8,url:CHIfHgHjtmizhMjg69,width:\"100%\"})})})]})})})},idmizhMjg69);})})})})})]})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFBgyByUa:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:190}}]},MCCW1RPPY:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:132}}]}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:131}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5cxu9k\",\"data-border\":true,\"data-framer-name\":\"Scroll header\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4x78tc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFBgyByUa:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(-120),sizes:\"32px\",...toResponsiveImage(ikl9VcrCQ)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(-63),sizes:\"48px\",...toResponsiveImage(ikl9VcrCQ)},className:\"framer-17uyylk\",\"data-border\":true,\"data-framer-name\":\"Game thumbnail\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-l25a0p\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFBgyByUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1of3aiw\",\"data-styles-preset\":\"yz30X2kkj\",style:{\"--framer-text-color\":\"var(--token-6f870157-14a3-4374-9f30-9ca82c54c3d0, rgb(138, 202, 190))\"},children:\"Shinobi Spirit\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-15541fv\",\"data-styles-preset\":\"ROnXVXuyX\",style:{\"--framer-text-color\":\"var(--token-6f870157-14a3-4374-9f30-9ca82c54c3d0, rgb(138, 202, 190))\"},children:\"Shinobi Spirit\"})}),className:\"framer-15ztn0b\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:DIdQCCrMG,verticalAlignment:\"top\",withExternalLayout:true})})}),visible&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:SHo2EPTW_,implicitPathVariables:undefined},{href:SHo2EPTW_,implicitPathVariables:undefined},{href:SHo2EPTW_,implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cni2h8-container\",nodeId:\"U3jmTdiAW\",scopeId:\"T2U0cxvWw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFBgyByUa:{Vp3RrpAeB:resolvedLinks3[2]},MCCW1RPPY:{Vp3RrpAeB:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(Button,{gWWd67m62:true,height:\"100%\",id:\"U3jmTdiAW\",layoutId:\"U3jmTdiAW\",M5PGWJ8hZ:\"Play Demo\",pNWyFWMQG:true,quB26ajQp:\"Play\",UhepVQ5xC:true,variant:\"DTPt0aP4K\",Vp3RrpAeB:resolvedLinks3[0],width:\"100%\"})})})})})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gpjst7-container\",layoutScroll:true,nodeId:\"jUa71JMFq\",scopeId:\"T2U0cxvWw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFBgyByUa:{variant:\"uhen0CG5Y\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"jUa71JMFq\",layoutId:\"jUa71JMFq\",style:{width:\"100%\"},variant:\"ZTq6huNq3\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9ju99z hidden-1ttyoa9\",\"data-border\":true,\"data-framer-name\":\"Explore Games Desktop\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-191emkj\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1wbwgni\",\"data-styles-preset\":\"A4HWlZEOZ\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6f870157-14a3-4374-9f30-9ca82c54c3d0, rgb(138, 202, 190))\"},children:\"Explore all our games:\"})}),className:\"framer-gfs6jr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mqqhs5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MCCW1RPPY:{y:(componentViewport?.y||0)+48+3058.4+48+43.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:425,width:`max(${componentViewport?.width||\"100vw\"} - 96px, 1px)`,y:(componentViewport?.y||0)+48+2949.2+48+43.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-j7tel1-container\",nodeId:\"RxeoRAZGg\",scopeId:\"T2U0cxvWw\",children:/*#__PURE__*/_jsx(GameCarousel,{height:\"100%\",id:\"RxeoRAZGg\",layoutId:\"RxeoRAZGg\",style:{width:\"100%\"},variant:\"i9wOdRSo9\",width:\"100%\"})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d1bbrh hidden-10p59zs hidden-x41912\",\"data-border\":true,\"data-framer-name\":\"Explore games Mobile\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ihb4cc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wbwgni\",\"data-styles-preset\":\"A4HWlZEOZ\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6f870157-14a3-4374-9f30-9ca82c54c3d0, rgb(138, 202, 190))\"},children:\"Explore all our games:\"})}),className:\"framer-cw73us\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5tr1w\",\"data-framer-name\":\"Games list\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"QiG9q_8IS\",data:Games,type:\"Collection\"},select:[{collection:\"QiG9q_8IS\",name:\"ikl9VcrCQ\",type:\"Identifier\"},{collection:\"QiG9q_8IS\",name:\"DIdQCCrMG\",type:\"Identifier\"},{collection:\"QiG9q_8IS\",name:\"znZ8GeW5t\",type:\"Identifier\"},{collection:\"QiG9q_8IS\",name:\"cdW9XmGSy\",type:\"Identifier\"},{collection:\"QiG9q_8IS\",name:\"SHo2EPTW_\",type:\"Identifier\"},{collection:\"QiG9q_8IS\",name:\"NkqxYPVOu\",type:\"Identifier\"},{collection:\"QiG9q_8IS\",name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"QiG9q_8IS\",name:\"Q1o4_2Ml1\",type:\"Identifier\"}}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({cdW9XmGSy:cdW9XmGSyQiG9q_8IS,DIdQCCrMG:DIdQCCrMGQiG9q_8IS,id:idQiG9q_8IS,ikl9VcrCQ:ikl9VcrCQQiG9q_8IS,NkqxYPVOu:NkqxYPVOuQiG9q_8IS,SHo2EPTW_:SHo2EPTW_QiG9q_8IS,znZ8GeW5t:znZ8GeW5tQiG9q_8IS},index1)=>{DIdQCCrMGQiG9q_8IS??=\"\";znZ8GeW5tQiG9q_8IS??=\"\";cdW9XmGSyQiG9q_8IS??=\"\";SHo2EPTW_QiG9q_8IS??=\"\";NkqxYPVOuQiG9q_8IS??=true;return /*#__PURE__*/_jsx(LayoutGroup,{id:`QiG9q_8IS-${idQiG9q_8IS}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{cdW9XmGSy:cdW9XmGSyQiG9q_8IS},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-4cg5n4\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyQiG9q_8IS},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined},{href:SHo2EPTW_QiG9q_8IS,implicitPathVariables:{cdW9XmGSy:cdW9XmGSyQiG9q_8IS}},{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyQiG9q_8IS},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined},{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyQiG9q_8IS},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined},{href:SHo2EPTW_QiG9q_8IS,implicitPathVariables:{cdW9XmGSy:cdW9XmGSyQiG9q_8IS}},{href:{pathVariables:{cdW9XmGSy:cdW9XmGSyQiG9q_8IS},webPageId:\"T2U0cxvWw\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:463,width:\"295px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-jbxyq9-container\",nodeId:\"wnngohP_D\",scopeId:\"T2U0cxvWw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFBgyByUa:{bVCdliR2a:resolvedLinks4[4],Q2gmuz59P:resolvedLinks4[5],rGhU11Toz:resolvedLinks4[3],variant:\"ombbiLkYT\"}},children:/*#__PURE__*/_jsx(GameCardV5,{bVCdliR2a:resolvedLinks4[1],height:\"100%\",id:\"wnngohP_D\",iKk0Mv4dI:NkqxYPVOuQiG9q_8IS,KPi4iPrkd:znZ8GeW5tQiG9q_8IS,layoutId:\"wnngohP_D\",Q2gmuz59P:resolvedLinks4[2],rGhU11Toz:resolvedLinks4[0],style:{width:\"100%\"},variant:\"JGbe8E6w7\",width:\"100%\",X6yObN9qj:toResponsiveImage(ikl9VcrCQQiG9q_8IS),zq5AwmT6K:DIdQCCrMGQiG9q_8IS})})})})})})})},idQiG9q_8IS);})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFBgyByUa:{y:undefined},MCCW1RPPY:{y:(componentViewport?.y||0)+48+3598.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:469,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+48+3489.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1evmvyl-container\",nodeId:\"qx81fFLPO\",scopeId:\"T2U0cxvWw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFBgyByUa:{variant:\"WS3nEVNhi\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"qx81fFLPO\",layoutId:\"qx81fFLPO\",style:{width:\"100%\"},variant:\"XLji4Uh9d\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(MotionDivShowOnlyOnce1m2j5ss,{\"aria-label\":\"ageGateOverlay\",className:\"framer-1m2j5ss\",\"data-framer-name\":\"Game Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFBgyByUa:{height:undefined,y:undefined},MCCW1RPPY:{height:4115.6,y:(componentViewport?.y||0)+0+-.3864}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:4006.3999,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+-.3762,children:/*#__PURE__*/_jsx(Container,{className:\"framer-x6d5m3-container\",nodeId:\"Ih4mLpam9\",rendersWithMotion:true,scopeId:\"T2U0cxvWw\",children:/*#__PURE__*/_jsx(AgeGateOverlay,{height:\"100%\",id:\"Ih4mLpam9\",layoutId:\"Ih4mLpam9\",style:{height:\"100%\",width:\"100%\"},variant:\"Kdolnyrn4\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-C1xmP.framer-maqro8, .framer-C1xmP .framer-maqro8 { display: block; }\",\".framer-C1xmP.framer-10p59zs { align-content: center; align-items: center; background-color: var(--token-2f61e909-41ca-4864-8eb7-3e2bf8b88786, #182b2f); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 48px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-C1xmP .framer-yvxae3 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 14px; justify-content: center; left: 0px; opacity: 0; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 702px; z-index: 10; }\",\".framer-C1xmP .framer-1fovpt5, .framer-C1xmP .framer-8fmrm { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-C1xmP .framer-1hm31d1 { aspect-ratio: 2.1352313167259784 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 562px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-C1xmP .framer-1i77za { background: linear-gradient(180deg, rgba(24, 43, 47, 0) 0%, rgb(24, 43, 47) 100%); bottom: 0px; flex: none; height: 69px; left: 0px; overflow: hidden; position: absolute; right: 0px; }\",\".framer-C1xmP .framer-t9vl8t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 48px 64px 48px; position: relative; scroll-margin-top: 100px; width: 100%; z-index: 4; }\",\".framer-C1xmP .framer-t51c3d { --border-bottom-width: 1px; --border-color: var(--token-0bcaf400-e88b-408d-bfbb-ddea3a060097, rgba(228, 203, 129, 0.3)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-65cf93b6-18f7-4414-94fe-092648907e47, #17292e); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 0px 24px 0px var(--token-a6cd96a4-45cd-4ae7-8426-ffdda9717145, #091317); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-C1xmP .framer-1m6xqe { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 48px; position: relative; width: 100%; }\",\".framer-C1xmP .framer-182kc0v { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-C1xmP .framer-1mg03cg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-C1xmP .framer-qsq74b, .framer-C1xmP .framer-jvshlr, .framer-C1xmP .framer-gfbnf8, .framer-C1xmP .framer-15ztn0b { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-C1xmP .framer-p5kipv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-C1xmP .framer-16ss0n7 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-C1xmP .framer-e5bflm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 300px; z-index: 1; }\",\".framer-C1xmP .framer-1afkt26-container, .framer-C1xmP .framer-s3w0wp-container, .framer-C1xmP .framer-1g5k1lj-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-C1xmP .framer-1f8bph6 { align-content: center; align-items: center; background: linear-gradient(180deg, #39897a 0%, rgb(8, 63, 53) 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 48px; position: relative; width: 100%; }\",\".framer-C1xmP .framer-1dl8krd, .framer-C1xmP .framer-m0j5tc, .framer-C1xmP .framer-13sg0tr, .framer-C1xmP .framer-1l759y4 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-C1xmP .framer-8ptkd7-container, .framer-C1xmP .framer-1xbb70f-container, .framer-C1xmP .framer-1e4meuf-container, .framer-C1xmP .framer-1ct3k83-container { flex: none; height: 60px; position: relative; width: 60px; }\",\".framer-C1xmP .framer-o44g3g, .framer-C1xmP .framer-14e8cvr, .framer-C1xmP .framer-1cgvkas, .framer-C1xmP .framer-1v9ijv3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-C1xmP .framer-k4pczg, .framer-C1xmP .framer-x1zum9, .framer-C1xmP .framer-ldj72m, .framer-C1xmP .framer-1hp865u, .framer-C1xmP .framer-17eu1st, .framer-C1xmP .framer-wz66wb, .framer-C1xmP .framer-qqbhp3, .framer-C1xmP .framer-1pa55fg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-C1xmP .framer-1pmj6u2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 64px 48px 48px 48px; position: relative; width: 100%; }\",\".framer-C1xmP .framer-raj57n { --framer-paragraph-spacing: 32px; flex: 1 0 0px; height: auto; max-width: 640px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-C1xmP .framer-3ikf0j { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.7 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-C1xmP .framer-19fpncz, .framer-C1xmP .framer-gfs6jr, .framer-C1xmP .framer-cw73us { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 1440px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-C1xmP .framer-12aq71u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-C1xmP .framer-6q5zg9, .framer-C1xmP .framer-1m68fqa, .framer-C1xmP .framer-18a9eyo, .framer-C1xmP .framer-1dld8bu { --border-bottom-width: 1px; --border-color: var(--token-0bcaf400-e88b-408d-bfbb-ddea3a060097, rgba(228, 203, 129, 0.3)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.775 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 0px 24px 0px rgba(228, 203, 129, 0.2); cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 223px); position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-C1xmP.framer-1fj54ev, .framer-C1xmP.framer-9aabsn, .framer-C1xmP.framer-1xq9w87, .framer-C1xmP.framer-yxzvxt, .framer-C1xmP.framer-70f013 { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-C1xmP.framer-15cex6w, .framer-C1xmP.framer-bbt06y, .framer-C1xmP.framer-zip64l, .framer-C1xmP.framer-4sowv8, .framer-C1xmP.framer-n0koi2 { aspect-ratio: 1.7766666666666666 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 635px); left: 24px; position: fixed; right: 24px; top: 24px; z-index: 10; }\",\".framer-C1xmP.framer-1fr46mg, .framer-C1xmP.framer-5j1fkv, .framer-C1xmP.framer-wa3a03, .framer-C1xmP.framer-1m8fptc, .framer-C1xmP.framer-8b2d9 { align-content: center; align-items: center; background-color: var(--token-191b7f6e-323d-425b-839d-7bc4c88fa871, #e4cb81); cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 24px; overflow: hidden; padding: 8px; position: fixed; top: 24px; width: min-content; z-index: 10; }\",\".framer-C1xmP .framer-2je4wp-container, .framer-C1xmP .framer-1pkya1k-container, .framer-C1xmP .framer-1u3ipep-container, .framer-C1xmP .framer-2zguoy-container, .framer-C1xmP .framer-1slihkp-container { flex: none; height: 30px; position: relative; width: 30px; }\",\".framer-C1xmP .framer-19cstij { --border-bottom-width: 1px; --border-color: var(--token-0bcaf400-e88b-408d-bfbb-ddea3a060097, rgba(228, 203, 129, 0.3)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.775 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 0px 24px 0px rgba(228, 203, 129, 0.2); cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 113px); position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-C1xmP .framer-aze3lh, .framer-C1xmP .framer-wf441u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-C1xmP .framer-1bj4jmt, .framer-C1xmP .framer-1wgbyed { background-color: var(--token-0bcaf400-e88b-408d-bfbb-ddea3a060097, rgba(228, 203, 129, 0.3)); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-C1xmP .framer-1cqjdlf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 48px; position: relative; width: 100%; }\",\".framer-C1xmP .framer-4gcoly, .framer-C1xmP .framer-1klddsx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; scroll-margin-top: 170px; white-space: pre; width: auto; }\",\".framer-C1xmP .framer-14izmdf { --border-bottom-width: 1px; --border-color: var(--token-0bcaf400-e88b-408d-bfbb-ddea3a060097, rgba(228, 203, 129, 0.3)); --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: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 0px 24px 0px rgba(228, 203, 129, 0.2); 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%; will-change: var(--framer-will-change-override, transform); }\",\".framer-C1xmP .framer-17n8o8w-container { aspect-ratio: 1.7777777777777777 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 113px); position: relative; width: 1px; }\",\".framer-C1xmP .framer-fkv7zt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 48px; position: relative; width: 100%; }\",\".framer-C1xmP .framer-b337l6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-C1xmP .framer-1vkwdfm { --border-bottom-width: 1px; --border-color: var(--token-0bcaf400-e88b-408d-bfbb-ddea3a060097, rgba(228, 203, 129, 0.5)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-ef6970b4-7fd9-4c81-93ad-36074417c74e, #0e1d21); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 1px 24px 0px rgba(228, 203, 129, 0.2); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-width: 200px; overflow: hidden; padding: 16px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-C1xmP .framer-1ysb539 { background-color: #ff0000; bottom: -830px; flex: none; height: 293px; left: 0px; opacity: 0; overflow: hidden; position: absolute; width: 492px; z-index: 1; }\",\".framer-C1xmP .framer-vic8uo-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 553px); position: relative; width: 100%; }\",\".framer-C1xmP .framer-5cxu9k { --border-bottom-width: 1px; --border-color: var(--token-191b7f6e-323d-425b-839d-7bc4c88fa871, #e4cb81); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; -webkit-backdrop-filter: blur(8px); align-content: center; align-items: center; backdrop-filter: blur(8px); background-color: rgba(24, 43, 47, 0.8); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 16px 24px 16px 24px; position: fixed; right: 0px; top: -79px; z-index: 9; }\",\".framer-C1xmP .framer-4x78tc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-C1xmP .framer-17uyylk { --border-bottom-width: 1px; --border-color: #e4cb81; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0px 48px 0px var(--token-2f61e909-41ca-4864-8eb7-3e2bf8b88786, #2a4349); flex: none; height: var(--framer-aspect-ratio-supported, 48px); position: relative; width: 48px; }\",\".framer-C1xmP .framer-l25a0p { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-C1xmP .framer-1cni2h8-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-C1xmP .framer-gpjst7-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-C1xmP .framer-9ju99z, .framer-C1xmP .framer-d1bbrh { --border-bottom-width: 0px; --border-color: var(--token-0bcaf400-e88b-408d-bfbb-ddea3a060097, rgba(228, 203, 129, 0.5)); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-2f61e909-41ca-4864-8eb7-3e2bf8b88786, #182b2f); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 48px 0px 0px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-C1xmP .framer-191emkj, .framer-C1xmP .framer-1ihb4cc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 0px 48px 0px 48px; position: relative; width: 100%; }\",\".framer-C1xmP .framer-1mqqhs5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 48px 24px 48px; position: relative; width: 100%; }\",\".framer-C1xmP .framer-j7tel1-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-C1xmP .framer-5tr1w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; overflow-x: auto; padding: 24px 48px 48px 48px; position: relative; width: 100%; }\",\".framer-C1xmP .framer-4cg5n4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-C1xmP .framer-jbxyq9-container { flex: none; height: auto; position: relative; width: 295px; }\",\".framer-C1xmP .framer-1evmvyl-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\".framer-C1xmP .framer-1m2j5ss { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-C1xmP .framer-x6d5m3-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(49.98561151079139% - 99.98561151079137% / 2); width: 100%; z-index: 9; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-C1xmP[data-border=\"true\"]::after, .framer-C1xmP [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; }','.framer-C1xmP[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-C1xmP [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-C1xmP[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-C1xmP [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-C1xmP[data-hide-scrollbars=\"true\"], .framer-C1xmP [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-C1xmP.framer-10p59zs { width: 810px; } .framer-C1xmP .framer-1hm31d1 { height: var(--framer-aspect-ratio-supported, 380px); } .framer-C1xmP .framer-e5bflm { width: 240px; } .framer-C1xmP .framer-1f8bph6 { align-content: unset; align-items: unset; display: grid; gap: 48px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: center; } .framer-C1xmP .framer-1dl8krd, .framer-C1xmP .framer-m0j5tc, .framer-C1xmP .framer-13sg0tr, .framer-C1xmP .framer-1l759y4 { align-self: start; flex: none; height: 100%; justify-self: start; width: 100%; } .framer-C1xmP .framer-6q5zg9, .framer-C1xmP .framer-18a9eyo, .framer-C1xmP .framer-1dld8bu { height: var(--framer-aspect-ratio-supported, 132px); } .framer-C1xmP .framer-1m68fqa { height: var(--framer-aspect-ratio-supported, 133px); } .framer-C1xmP .framer-vic8uo-container { height: var(--framer-aspect-ratio-supported, 332px); }}\",\"@media (max-width: 809px) { .framer-C1xmP.framer-10p59zs { overflow: hidden; width: 390px; } .framer-C1xmP .framer-yvxae3 { top: 582px; } .framer-C1xmP .framer-1hm31d1 { height: var(--framer-aspect-ratio-supported, 183px); } .framer-C1xmP .framer-t9vl8t { padding: 0px 0px 24px 0px; } .framer-C1xmP .framer-t51c3d { --border-bottom-width: 0px; --border-left-width: 0px; --border-right-width: 0px; } .framer-C1xmP .framer-1m6xqe { flex-direction: column; gap: 24px; padding: 20px 20px 48px 20px; } .framer-C1xmP .framer-182kc0v, .framer-C1xmP .framer-17n8o8w-container, .framer-C1xmP .framer-1vkwdfm { flex: none; width: 100%; } .framer-C1xmP .framer-e5bflm { width: 100%; } .framer-C1xmP .framer-1f8bph6 { align-content: unset; align-items: unset; display: grid; gap: 8px; grid-auto-rows: min-content; grid-template-columns: repeat(auto-fill, minmax(137px, 1fr)); justify-content: center; padding: 16px; } .framer-C1xmP .framer-1dl8krd, .framer-C1xmP .framer-m0j5tc, .framer-C1xmP .framer-13sg0tr, .framer-C1xmP .framer-1l759y4 { align-self: start; flex: none; gap: 8px; height: auto; justify-self: start; width: 100%; } .framer-C1xmP .framer-8ptkd7-container, .framer-C1xmP .framer-1xbb70f-container, .framer-C1xmP .framer-1e4meuf-container, .framer-C1xmP .framer-1ct3k83-container { aspect-ratio: 0.96 / 1; height: var(--framer-aspect-ratio-supported, 43px); width: 38px; } .framer-C1xmP .framer-o44g3g, .framer-C1xmP .framer-14e8cvr, .framer-C1xmP .framer-1cgvkas, .framer-C1xmP .framer-1v9ijv3 { flex: 1 0 0px; width: 1px; } .framer-C1xmP .framer-k4pczg, .framer-C1xmP .framer-ldj72m, .framer-C1xmP .framer-17eu1st, .framer-C1xmP .framer-qqbhp3 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-C1xmP .framer-1pmj6u2 { flex-direction: column; padding: 64px 20px 20px 20px; } .framer-C1xmP .framer-raj57n { flex: none; order: 0; width: 100%; } .framer-C1xmP .framer-3ikf0j { flex: none; order: 1; width: 100%; } .framer-C1xmP .framer-6q5zg9, .framer-C1xmP .framer-1dld8bu { height: var(--framer-aspect-ratio-supported, 198px); } .framer-C1xmP.framer-15cex6w, .framer-C1xmP.framer-bbt06y, .framer-C1xmP.framer-zip64l, .framer-C1xmP.framer-4sowv8, .framer-C1xmP.framer-n0koi2 { height: var(--framer-aspect-ratio-supported, 197px); left: 20px; right: 20px; top: 20px; } .framer-C1xmP.framer-1fr46mg, .framer-C1xmP.framer-5j1fkv, .framer-C1xmP.framer-wa3a03, .framer-C1xmP.framer-1m8fptc, .framer-C1xmP.framer-8b2d9 { left: 20px; top: 20px; } .framer-C1xmP .framer-1m68fqa, .framer-C1xmP .framer-18a9eyo { height: var(--framer-aspect-ratio-supported, 197px); } .framer-C1xmP .framer-1cqjdlf, .framer-C1xmP .framer-fkv7zt { padding: 20px; } .framer-C1xmP .framer-14izmdf, .framer-C1xmP .framer-b337l6 { flex-direction: column; } .framer-C1xmP .framer-vic8uo-container { height: var(--framer-aspect-ratio-supported, 142px); width: 250px; } .framer-C1xmP .framer-5cxu9k { gap: 16px; padding: 16px; top: -138px; } .framer-C1xmP .framer-4x78tc { gap: 8px; } .framer-C1xmP .framer-17uyylk { height: var(--framer-aspect-ratio-supported, 32px); width: 32px; } .framer-C1xmP .framer-1ihb4cc { padding: 0px 20px 0px 20px; } .framer-C1xmP .framer-5tr1w { padding: 24px 20px 24px 20px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4134.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"MCCW1RPPY\":{\"layout\":[\"fixed\",\"auto\"]},\"jFBgyByUa\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"QdTXVdBff\":{\"pattern\":\":QdTXVdBff\",\"name\":\"scroll-header-transform\"},\"FNbuGOsg_\":{\"pattern\":\":FNbuGOsg_\",\"name\":\"game-data-desc\"},\"nnIUEgJiV\":{\"pattern\":\":nnIUEgJiV\",\"name\":\"gameplay-video\"},\"F8gk7peo2\":{\"pattern\":\":F8gk7peo2\",\"name\":\"gameplay-video\"}}\n * @framerResponsiveScreen\n */const FramerT2U0cxvWw=withCSS(Component,css,\"framer-C1xmP\");export default FramerT2U0cxvWw;FramerT2U0cxvWw.displayName=\"Page\";FramerT2U0cxvWw.defaultProps={height:4134.5,width:1200};addFonts(FramerT2U0cxvWw,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Source Sans 3\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sourcesans3/v18/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxm7FEI_io6npfB.woff2\",weight:\"600\"}]},...ButtonFonts,...PhosphorFonts,...YouTubeFonts,...NavigationFonts,...GameCarouselFonts,...GameCardV5Fonts,...FooterFonts,...AgeGateOverlayFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...componentPresets.fonts?.[\"xD0noWb5A\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"xD0noWb5A\"]):[],...componentPresets.fonts?.[\"odL59P0gT\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"odL59P0gT\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerT2U0cxvWw\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"4134.5\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MCCW1RPPY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jFBgyByUa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"QdTXVdBff\\\":{\\\"pattern\\\":\\\":QdTXVdBff\\\",\\\"name\\\":\\\"scroll-header-transform\\\"},\\\"FNbuGOsg_\\\":{\\\"pattern\\\":\\\":FNbuGOsg_\\\",\\\"name\\\":\\\"game-data-desc\\\"},\\\"nnIUEgJiV\\\":{\\\"pattern\\\":\\\":nnIUEgJiV\\\",\\\"name\\\":\\\"gameplay-video\\\"},\\\"F8gk7peo2\\\":{\\\"pattern\\\":\\\":F8gk7peo2\\\",\\\"name\\\":\\\"gameplay-video\\\"}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,EAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,EAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,GAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,YAAAC,EAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAA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",
  "names": ["clamp", "e", "n", "progress", "e", "n", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "v", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "start1", "end1", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "ref", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "ref1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "GameCardV5Fonts", "getFonts", "EEgy4oLPL_default", "CarouselFonts", "Carousel", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "toResponsiveImage", "value", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "cdW9XmGSyG0rLRMBkL", "idG0rLRMBkL", "cdW9XmGSyR9xqDEN5G", "idR9xqDEN5G", "cdW9XmGSyeU53PHb4u", "ideU53PHb4u", "ikl9VcrCQFidVJ5XUh", "DIdQCCrMGFidVJ5XUh", "znZ8GeW5tFidVJ5XUh", "cdW9XmGSyFidVJ5XUh", "SHo2EPTW_FidVJ5XUh", "NkqxYPVOuFidVJ5XUh", "idFidVJ5XUh", "ikl9VcrCQT8oIMhg_j", "DIdQCCrMGT8oIMhg_j", "znZ8GeW5tT8oIMhg_j", "cdW9XmGSyT8oIMhg_j", "SHo2EPTW_T8oIMhg_j", "NkqxYPVOuT8oIMhg_j", "idT8oIMhg_j", "ikl9VcrCQJXOSMvNOR", "DIdQCCrMGJXOSMvNOR", "znZ8GeW5tJXOSMvNOR", "cdW9XmGSyJXOSMvNOR", "SHo2EPTW_JXOSMvNOR", "NkqxYPVOuJXOSMvNOR", "idJXOSMvNOR", "ikl9VcrCQe9SipKrp5", "DIdQCCrMGe9SipKrp5", "znZ8GeW5te9SipKrp5", "cdW9XmGSye9SipKrp5", "SHo2EPTW_e9SipKrp5", "NkqxYPVOue9SipKrp5", "ide9SipKrp5", "ikl9VcrCQQUwHGq1xj", "DIdQCCrMGQUwHGq1xj", "znZ8GeW5tQUwHGq1xj", "cdW9XmGSyQUwHGq1xj", "SHo2EPTW_QUwHGq1xj", "NkqxYPVOuQUwHGq1xj", "idQUwHGq1xj", "ikl9VcrCQVCZO_bsfF", "DIdQCCrMGVCZO_bsfF", "znZ8GeW5tVCZO_bsfF", "cdW9XmGSyVCZO_bsfF", "SHo2EPTW_VCZO_bsfF", "NkqxYPVOuVCZO_bsfF", "idVCZO_bsfF", "ikl9VcrCQY1G31bBBM", "DIdQCCrMGY1G31bBBM", "znZ8GeW5tY1G31bBBM", "cdW9XmGSyY1G31bBBM", "SHo2EPTW_Y1G31bBBM", "NkqxYPVOuY1G31bBBM", "idY1G31bBBM", "ikl9VcrCQSDD0uGCbY", "DIdQCCrMGSDD0uGCbY", "znZ8GeW5tSDD0uGCbY", "cdW9XmGSySDD0uGCbY", "SHo2EPTW_SDD0uGCbY", "NkqxYPVOuSDD0uGCbY", "idSDD0uGCbY", "ikl9VcrCQO3do1uXjo", "DIdQCCrMGO3do1uXjo", "znZ8GeW5tO3do1uXjo", "cdW9XmGSyO3do1uXjo", "SHo2EPTW_O3do1uXjo", "NkqxYPVOuO3do1uXjo", "idO3do1uXjo", "ikl9VcrCQkHrabLf5U", "DIdQCCrMGkHrabLf5U", "znZ8GeW5tkHrabLf5U", "cdW9XmGSykHrabLf5U", "SHo2EPTW_kHrabLf5U", "NkqxYPVOukHrabLf5U", "idkHrabLf5U", "ikl9VcrCQuvwtyTEue", "DIdQCCrMGuvwtyTEue", "znZ8GeW5tuvwtyTEue", "cdW9XmGSyuvwtyTEue", "SHo2EPTW_uvwtyTEue", "NkqxYPVOuuvwtyTEue", "iduvwtyTEue", "ikl9VcrCQvOB_oamlg", "DIdQCCrMGvOB_oamlg", "znZ8GeW5tvOB_oamlg", "cdW9XmGSyvOB_oamlg", "SHo2EPTW_vOB_oamlg", "NkqxYPVOuvOB_oamlg", "idvOB_oamlg", "ikl9VcrCQvNAdsRE2h", "DIdQCCrMGvNAdsRE2h", "znZ8GeW5tvNAdsRE2h", "cdW9XmGSyvNAdsRE2h", "SHo2EPTW_vNAdsRE2h", "NkqxYPVOuvNAdsRE2h", "idvNAdsRE2h", "ikl9VcrCQdOsNDt3rE", "DIdQCCrMGdOsNDt3rE", "znZ8GeW5tdOsNDt3rE", "cdW9XmGSydOsNDt3rE", "SHo2EPTW_dOsNDt3rE", "NkqxYPVOudOsNDt3rE", "iddOsNDt3rE", "ikl9VcrCQAxxM7tGJR", "DIdQCCrMGAxxM7tGJR", "znZ8GeW5tAxxM7tGJR", "cdW9XmGSyAxxM7tGJR", "SHo2EPTW_AxxM7tGJR", "NkqxYPVOuAxxM7tGJR", "idAxxM7tGJR", "ikl9VcrCQKiL5HQfew", "DIdQCCrMGKiL5HQfew", "znZ8GeW5tKiL5HQfew", "cdW9XmGSyKiL5HQfew", "SHo2EPTW_KiL5HQfew", "NkqxYPVOuKiL5HQfew", "idKiL5HQfew", "ikl9VcrCQVna3sMYz9", "DIdQCCrMGVna3sMYz9", "znZ8GeW5tVna3sMYz9", "cdW9XmGSyVna3sMYz9", "SHo2EPTW_Vna3sMYz9", "NkqxYPVOuVna3sMYz9", "idVna3sMYz9", "ikl9VcrCQbv4bUw4MG", "DIdQCCrMGbv4bUw4MG", "znZ8GeW5tbv4bUw4MG", "cdW9XmGSybv4bUw4MG", "SHo2EPTW_bv4bUw4MG", "NkqxYPVOubv4bUw4MG", "idbv4bUw4MG", "ikl9VcrCQQyHzq0vv4", "DIdQCCrMGQyHzq0vv4", "znZ8GeW5tQyHzq0vv4", "cdW9XmGSyQyHzq0vv4", "SHo2EPTW_QyHzq0vv4", "NkqxYPVOuQyHzq0vv4", "idQyHzq0vv4", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "router", "useRouter", "LayoutGroup", "transition1", "addPropertyOverrides", "ComponentViewportProvider", "SmartComponentScopedContainer", "Carousel", "ChildrenCanSuspend", "QueryData", "QbiN9T6xM_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "EEgy4oLPL_default", "addImageAlt", "collection1", "paginationInfo1", "loadMore1", "index1", "resolvedLinks1", "collection2", "paginationInfo2", "loadMore2", "index2", "resolvedLinks2", "collection3", "paginationInfo3", "loadMore3", "index3", "resolvedLinks3", "toResponsiveImage", "collection4", "paginationInfo4", "loadMore4", "index4", "resolvedLinks4", "collection5", "paginationInfo5", "loadMore5", "index5", "resolvedLinks5", "collection6", "paginationInfo6", "loadMore6", "index6", "resolvedLinks6", "collection7", "paginationInfo7", "loadMore7", "index7", "resolvedLinks7", "collection8", "paginationInfo8", "loadMore8", "index8", "resolvedLinks8", "collection9", "paginationInfo9", "loadMore9", "index9", "resolvedLinks9", "collection10", "paginationInfo10", "loadMore10", "index10", "resolvedLinks10", "collection11", "paginationInfo11", "loadMore11", "index11", "resolvedLinks11", "collection12", "paginationInfo12", "loadMore12", "index12", "resolvedLinks12", "collection13", "paginationInfo13", "loadMore13", "index13", "resolvedLinks13", "collection14", "paginationInfo14", "loadMore14", "index14", "resolvedLinks14", "collection15", "paginationInfo15", "loadMore15", "index15", "resolvedLinks15", "collection16", "paginationInfo16", "loadMore16", "index16", "resolvedLinks16", "collection17", "paginationInfo17", "loadMore17", "index17", "resolvedLinks17", "collection18", "paginationInfo18", "loadMore18", "index18", "resolvedLinks18", "collection19", "paginationInfo19", "loadMore19", "index19", "resolvedLinks19", "collection20", "paginationInfo20", "loadMore20", "index20", "resolvedLinks20", "collection21", "paginationInfo21", "loadMore21", "index21", "resolvedLinks21", "css", "FramergEdpMXNCP", "withCSS", "gEdpMXNCP_default", "addPropertyControls", "ControlType", "addFonts", "GameCardV5Fonts", "CarouselFonts", "ImageWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "Image2", "ButtonFonts", "getFonts", "pCu_Mu4eJ_default", "PhosphorFonts", "Icon", "MotionDivWithOptimizedAppearEffect", "motion", "YouTubeFonts", "Youtube", "MotionDivWithFX", "NavigationFonts", "Z_1znDgF3_default", "GameCarouselFonts", "gEdpMXNCP_default", "GameCardV5Fonts", "EEgy4oLPL_default", "FooterFonts", "jcuwG3843_default", "AgeGateOverlayFonts", "R8Fzm5Mrg_default", "MotionDivShowOnlyOnce1m2j5ss", "withCodeBoundaryForOverrides", "showOnlyOnce", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "transition1", "animation", "animation1", "sharedDateFormatter", "formatOptions", "locale", "date", "fallbackLocale", "dateOptions", "toDateString", "activeLocale", "isSet", "animation2", "transition2", "animation3", "transition3", "animation4", "transition4", "animation5", "animation6", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "contains", "a", "b", "negate", "QueryData", "query", "pageSize", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "QbiN9T6xM_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "XBUWMWdd7", "DIdQCCrMG", "iAfvgHJPG", "znZ8GeW5t", "kUzZgrWUE", "SHo2EPTW_", "W9weUtoqj", "EmOaReR8W", "Qe6U9AmII", "ylRVED6jZ", "fwfc6tUj_", "YvNNHsVyo", "HO2p6f0rV", "YItFVNun7", "vj95LFH0V", "mVeZbi0m7", "T4UkULn_r", "pGS_naBGj", "guvBtMjHy", "z9y3hP6Ks", "uzUe0fhg2", "brKFUow3amizhMjg69", "CHIfHgHjtmizhMjg69", "idmizhMjg69", "ikl9VcrCQ", "ikl9VcrCQQiG9q_8IS", "DIdQCCrMGQiG9q_8IS", "znZ8GeW5tQiG9q_8IS", "cdW9XmGSyQiG9q_8IS", "SHo2EPTW_QiG9q_8IS", "NkqxYPVOuQiG9q_8IS", "idQiG9q_8IS", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3bnx0g", "overlay", "loadMore", "args", "onTap1wnntms", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "activeLocaleCode", "useLocaleCode", "textContent", "router", "useRouter", "visible1", "visible2", "visible3", "visible4", "visible5", "visible6", "visible7", "visible8", "visible9", "visible10", "elementId2", "ref3", "visible11", "elementId3", "ref4", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "RichText2", "x", "PropertyOverrides2", "getLoadingLazyAtYPosition", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "Container", "resolvedLinks1", "resolvedLinks2", "ComponentPresetsProvider", "l", "AnimatePresence", "Ga", "overlay1", "overlay2", "overlay3", "overlay4", "ChildrenCanSuspend", "kTXyfbuym_default", "collection", "paginationInfo", "index", "PathVariablesContext", "Link", "resolvedLinks3", "collection1", "paginationInfo1", "loadMore1", "index1", "resolvedLinks4", "css", "FramerT2U0cxvWw", "withCSS", "T2U0cxvWw_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
