February 22, 2020 at 10:11:53 PM UTC
VERIFY
Websites
Websites
Runtime: 6.3s
Share on Facebook or Twitter
On February 22, 2020 at 10:11:53 PM UTC, http://www.gamespot.com/ was accessible when tested on AS37229 in Togo.

Failures

HTTP Experiment
null
DNS Experiment
null
Control
null

DNS Queries

Resolver:
74.125.73.77
Query:
IN A www.gamespot.com
Engine:
system
Name
Class
TTL
Type
DATA
Answer IP Info
@
IN
CNAME
cmg.cbsi.map.fastly.net
Unknown AS
@
IN
A
151.101.121.188
Unknown AS

TCP Connections

151.101.121.188:80: succeeded

HTTP Requests

URL
GET https://www.gamespot.com/
Response Headers
transfer-encoding:
chunked
Set-Cookie:
sat=ec9b07d204a7688e464bae38797b7380; path=/; domain=.gamespot.com; httponly
Accept-Ranges:
bytes
Strict-Transport-Security:
max-age=300
Vary:
Accept-Encoding
Server:
nginx
Connection:
keep-alive
Cache-Control:
public, s-maxage=300
Date:
Sat, 22 Feb 2020 23:11:56 GMT
Content-Type:
text/html; charset=UTF-8
Age:
149
Response Body
<!doctype html>
<html lang="en"  class="no-js no-touch ">

<head>
      

      	    <script src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js"  type="text/javascript" charset="UTF-8" data-domain-script="b69acdf9-a259-4c31-aefd-5dc32f96a0bc"></script>
    <script src="https://production-cmp.isgprivacy.cbsi.com/dist/optanon.js" type="text/javascript" async></script>
      <script type="application/javascript">
      (function(a){
          var w=window,b='cbsoptanon',q='cmd',r='config';
          w[b] = w[b] ? w[b] : {};
          w[b][q] = w[b][q] ? w[b][q] : [];
          w[b][r] = w[b][r] ? w[b][r] : [];

          a.forEach(function(z){
              w[b][z] = w[b][z] || function(){
                  var c=arguments;
                  w[b][q].push(function(){
                      w[b][z].apply(w[b],c);
                  })
              }
          });
      })(["onIframesReady","onFormsReady","onScriptsReady","onAdsReady"]);

      // Add configs
      window.cbsoptanon.config.push({
          enableServices: false,
          euMaxAttempts: 25,
          countryCodeMaxAttempts: 25,
          oneTrustTimeout: 700
      });

      // Load iframes as soon as ready
      // applies data-src to the src attribute when consent
      // is given to the proper category
      window.cbsoptanon.cmd.push(function(_cbsoptanon) {
          console.log('Loading iframes');
          _cbsoptanon.tags.load('IFRAME');
      });
  </script>
<script type="text/javascript">
  (function () {
    "use strict";

    /**
     * Include a script in the head of the doc. This is a private function called from the load third party function and callback only
     * @param  {string}  scriptId ID of the script element
     * @param  {string}  url      URL to the script
     * @param  {boolean} async    Whether or not to load the script async
     */
    function includeScript(scriptId, url, async) {
      var doc = document,
        tagname = 'script',
        lastScript = doc.getElementsByTagName(tagname)[0];
      if (!lastScript) {
        lastScript = doc.head;
      }
      var script = doc.createElement(tagname);
      script.async = async ? true : false;
      script.id = scriptId;
      script.src = url;

      // set a data attribute of data-error if the script failed to load
      script.addEventListener('error', function (err) {
        if (err) {
          script.setAttribute('data-error', 'true');
        }
      });

      lastScript.parentNode.insertBefore(script, lastScript);
    }

    var PhoenixLoader = window.PhoenixLoader = {
      consent: false,
      scripts: [],
      scriptFailed: false,
      thirdPartyFeatureList: true,
      trackingInitialized: false,
      loadScriptIds: [],

      /**
       * Load a third party consent when GDPR consent is received
       * @param  {string}  scriptId ID of the script element
       * @param  {string}  url      URL to the script
       * @param  {boolean} async    Whether or not to load the script async
       * @param {function} disableCallback that is called if this scriptId is disabled
       */
      loadThirdParty: function (scriptId, url, async, disableCallback) {
        // do not include script if not enabled
        if (scriptId !== true && this.thirdPartyFeatureList !== true && !this.thirdPartyFeatureList.includes(scriptId)) {
          console.warn(':: FEATURE ' + scriptId + ' DISABLED!');
          if (disableCallback !== undefined && typeof disableCallback === "function") {
            disableCallback();
          }
          return;
        }
        if (this.consent) {
          includeScript(scriptId, url, async);
        }
        else {
          this.scripts[scriptId] = {'url': url, 'async': async};
        }
      },

      /**
       * Run a callback when third party consent is received from the GDPR script (Gate by OneTrust)
       * @param  {string}  id ID of the script element, if equal true, means in house customize scripts.
       * @param  {function} callback Callback function to call when consent is received
       * @param  {string}  category OptAnon Category
       * @param  {string}  onReady helper parameters, ex: "onIframesReady","onScriptsReady","onAdsReady" those condition
       *                   default value is "Scripts"
       * @param {function} disableCallback that is called if this scriptId is disabled
       */
      gdprConsentCallback: function (id, callback, category, onReady, disableCallback) {
        var scriptId = id;
        var self = this;
        if (scriptId !== true && this.thirdPartyFeatureList !== true && !this.thirdPartyFeatureList.includes(scriptId)) {
          console.warn(':: FEATURE ' + scriptId + ' DISABLED!');
          if (disableCallback !== undefined && typeof disableCallback === "function") {
            disableCallback();
          }
          return;
        }

        // No OneTrust, don't gate
        if (typeof window.cbsoptanon === 'undefined') {
          callback();
          return;
        }

        // One trust is enabled setup the functions
        onReady = onReady || 'Scripts';

        var opt = window.cbsoptanon['on' + onReady + 'Ready'];

        opt(function (_cbsoptanon, options) {

          // If we have categories we need to check if they are allowed
          if (category != null) {
            // Gets the current state of all categories
            var checkState = function () {
              _cbsoptanon.ot.getState(function (targeting, performance, functional, social) {
                var obj = {
                  targeting: targeting,
                  performance: performance,
                  functional: functional,
                  social: social
                };

                if (obj[category]) {
                  self.loadScriptIds[id] = true;
                  callback.apply(this, [_cbsoptanon, options]);
                } else {
                  self.loadScriptIds[id] = false;
                  // call disableCallback() if available
                  if (disableCallback !== undefined && typeof disableCallback === "function") {
                    disableCallback();
                  }
                }
              });
            };

            checkState();

            // consent has changed and we're allowed to fire off
            _cbsoptanon.ot.addOnConsentChangedHandler(function() {
              if (self.loadScriptIds[id] != true) {
                checkState();
              }
            });

            // when category is null, don't gated by above code, some 3rd party Ads already integrated with Optanton
            // for example: bidbarrel version above v2.8, GPT stuff(google tag)
          } else {
            // Just waiting for on ready fire callback
            self.loadScriptIds[id] = true;
            callback.apply(this, [_cbsoptanon, options]);
          }
        });

        // Only few pages that are not asking for consent fire the load event immediately
        if (this.consent) {
          callback();
        }
        else {
          document.addEventListener('loadThirdParty', function (e) {
            callback();
          });
        }
      },

      /**
       * Trigger the consent event so the rest of the scripts can load
       * This should only be called after GDPR script has run and the user has given consent
       */
      triggerConsent: function () {
        this.consent = true;
        var event = null;
        if (typeof(Event) === 'function') {
          var event = new Event('loadThirdParty');
        }
        // IE 11 and below doesn't support the Event constructor, use the old deprecated way of creating events
        else {
          var event = document.createEvent('Event');
          event.initEvent('loadThirdParty', true, true);
        }

        document.dispatchEvent(event);
      },

      /**
       * Monitor a script tag for failure to load. If it fails to load mark failed
       * @param  {Element} script Script element to monitor
       */
      monitorKeyScript: function (script) {
        var self = this;
        script.addEventListener('error', function (err) {
          if (err) {
            self.scriptFailed = true;
          }
        });
      },

      /**
       * Have key scripts failed to load
       * @return {boolean} Returns true if any of the key scripts we monitor have failed to load
       */
      keyScriptsFailed: function () {
        return this.scriptFailed;
      }
    };
    /**
     * When third party consent is received run all the scripts we've queued up
     */
    PhoenixLoader.gdprConsentCallback(true, function () {
      var scripts = PhoenixLoader.scripts;
      Object.keys(scripts).forEach(function (key) {
        includeScript(key, scripts[key].url, scripts[key].async);
        delete scripts[key];
      });
    });
  })();
</script>
    
      <script type="text/javascript">
  var performance = window.performance || {};
  if (performance.mark && performance.measure) {
    performance.mark('nr_pageStart');
      }
</script>
        <title>Video Games Reviews & News - GameSpot</title>

        <meta name="description" content="GameSpot delivers the best and most comprehensive video game and entertainment coverage, including news, reviews, trailers, walkthroughs, and guides for PS4, Xbox One, Nintendo Switch, PC, and Google Stadia.">
        <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">

        <meta name="application-name" content="GameSpot"/>
    <meta name="msapplication-TileColor" content="#26292B"/>
    <meta name="msapplication-TileImage" content="https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/win8pin.png"/>

    
        <meta name="userAuthState" content="noUser"/>

    
    <meta id="cdnHost" itemprop="cdnHost" content="gamespot1.cbsistatic.com">

    
            <meta id="view-guid-meta" name="view-guid-meta" itemprop="view-guid" content="">

                      <meta name="viewport" content="width=device-width, initial-scale=1.0">
          
        
          <meta name="twitter:card" content="summary">
      <meta name="twitter:site" content="@GameSpot">
      <meta name="twitter:creator" content="@GameSpot">
    
      <meta property="og:url" content="http://www.gamespot.com"/>
  <meta property="og:title" content="Video Games Reviews & News - GameSpot"/>
  <meta property="og:image" content="https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/logo.png"/>
  <meta property="og:type" content="website"/>
  <meta property="og:description" content="GameSpot is the world's leading source for PS4, Xbox One, PS3, Xbox 360, Wii U, PS Vita, Wii, PC, 3DS, and DS video game news, reviews, previews, trailers, walkthroughs, and more."/>
  <meta property="og:site_name" content="GameSpot"/>

    
                      <meta name="modal-cdn-url" content="/js/modals.json">
          
          <meta name='js-sort-filter-text' content='yes'>

                              <meta id="tracking-dw"
                    class="js-post-render-tracking-consumer tracking-settings"
              data-tracking-service="dw"
        itemprop="tracking-dw"
        data-settings="{&quot;pageParams&quot;:{&quot;siteid&quot;:&quot;6&quot;,&quot;ptid&quot;:&quot;2000&quot;,&quot;onid&quot;:null,&quot;ednm&quot;:&quot;{edition}&quot;,&quot;ursuid&quot;:&quot;{ursuid}&quot;,&quot;regSilo&quot;:&quot;2&quot;,&quot;rsid&quot;:&quot;cbsigamespotsite&quot;,&quot;prodtypid&quot;:&quot;8&quot;,&quot;pagetype&quot;:&quot;front_door&quot;,&quot;topicbrcrm&quot;:&quot;Home&quot;},&quot;cleargifSrc&quot;:&quot;https:\/\/dw.cbsi.com\/clear\/c.gif?ptid=2000&amp;ednm=%7Bedition%7D&amp;ursuid=%7Bursuid%7D&amp;regSilo=2&amp;rsid=cbsigamespotsite&amp;prodtypid=8&amp;pagetype=front_door&amp;topicbrcrm=Home&amp;sid=6&amp;ts=1582412966&quot;}"
        >
                  <meta id="tracking-ga"
                    class="js-post-render-tracking-consumer tracking-settings"
              data-tracking-service="ga"
        itemprop="tracking-ga"
        data-settings="{&quot;custom&quot;:{&quot;PageType&quot;:{&quot;index&quot;:&quot;1&quot;,&quot;name&quot;:&quot;PageType&quot;,&quot;value&quot;:&quot;2000&quot;,&quot;scope&quot;:&quot;3&quot;},&quot;UserType&quot;:{&quot;index&quot;:&quot;2&quot;,&quot;name&quot;:&quot;UserType&quot;,&quot;value&quot;:&quot;{gaUserType}&quot;,&quot;scope&quot;:&quot;1&quot;}},&quot;account&quot;:&quot;UA-22577913-1&quot;}"
        >
                  <meta id="tracking-om"
                    class="js-post-render-tracking-consumer tracking-settings"
              data-tracking-service="om"
        itemprop="tracking-om"
        data-settings="{&quot;brand&quot;:&quot;GameSpot&quot;,&quot;sid&quot;:&quot;gamespot&quot;,&quot;rsids&quot;:&quot;cbsigamespotsite&quot;,&quot;user_status&quot;:&quot;{userStatus}&quot;,&quot;urs_id&quot;:&quot;{ursuid}&quot;,&quot;edition&quot;:&quot;{edition}&quot;,&quot;site_type&quot;:&quot;{siteType}&quot;,&quot;anon_id&quot;:&quot;{xclgfbrowser}&quot;,&quot;url&quot;:&quot;D=g&quot;,&quot;user_agent&quot;:&quot;D=User-Agent&quot;,&quot;page_type_id&quot;:&quot;2000&quot;,&quot;page_name&quot;:&quot;gs:\/&quot;,&quot;ab_test&quot;:&quot;{abTestLabel}&quot;,&quot;theme&quot;:&quot;{theme}&quot;,&quot;event_hierarchy&quot;:&quot;{eventHierarchy}&quot;,&quot;marketing_cloud_id&quot;:&quot;10D31225525FF5790A490D4D@AdobeOrg&quot;,&quot;session&quot;:&quot;{ad_session}&quot;,&quot;hierarchy&quot;:&quot;Home&quot;,&quot;channel&quot;:&quot;Home&quot;,&quot;page_type&quot;:&quot;front_door&quot;,&quot;page_number&quot;:&quot;1&quot;}"
                  data-post-render-param="TrackingBundle.page_type"
          data-post-render-value="front_door"
      >
                  <meta id="tracking-cb"
                    class="js-post-render-tracking-consumer tracking-settings"
              data-tracking-service="cb"
        itemprop="tracking-cb"
        data-settings="{&quot;uid&quot;:&quot;65713&quot;,&quot;domain&quot;:&quot;gamespot.com&quot;,&quot;sections&quot;:&quot;front_door&quot;,&quot;acct&quot;:&quot;{cbUserStatus}&quot;,&quot;flickerControl&quot;:&quot;false&quot;}"
        >
          
                                            
    
                    
    
    <meta class="ad-settings" content="" id="ad-settings" name="ad-settings" data-settings="{&quot;service&quot;:&quot;dart&quot;,&quot;enable_guilt&quot;:true,&quot;script&quot;:&quot;\/\/securepubads.g.doubleclick.net\/tag\/js\/gpt.js&quot;,&quot;unit_name&quot;:&quot;\/8264\/aw-gamespot\/home&quot;,&quot;target_params&quot;:{&quot;session&quot;:&quot;c&quot;,&quot;test&quot;:&quot;{abTestLabelDart}&quot;,&quot;type&quot;:&quot;home&quot;,&quot;ptype&quot;:&quot;front_door&quot;,&quot;user&quot;:&quot;anon&quot;},&quot;mapped_units&quot;:{&quot;skybox-nav&quot;:{&quot;size&quot;:[[5,5]],&quot;target&quot;:{&quot;pos&quot;:&quot;nav&quot;}},&quot;interstitial&quot;:{&quot;outOfPage&quot;:true},&quot;native-top&quot;:{&quot;size&quot;:[[11,11],&quot;fluid&quot;],&quot;target&quot;:{&quot;pos&quot;:&quot;top&quot;,&quot;strnativekey&quot;:&quot;qLSe9R3m4QRxyeb1GuWAMcZX&quot;}},&quot;leader_plus_top&quot;:{&quot;size&quot;:[[970,66],[728,90],[970,90],[970,250]],&quot;target&quot;:{&quot;pos&quot;:&quot;top&quot;}},&quot;mpu_top&quot;:{&quot;size&quot;:[[300,250]],&quot;target&quot;:{&quot;pos&quot;:&quot;top&quot;}},&quot;mpu_bottom&quot;:{&quot;size&quot;:[[300,250]],&quot;target&quot;:{&quot;pos&quot;:&quot;bottom&quot;}},&quot;leader_bottom&quot;:{&quot;size&quot;:[[728,90],[970,66]],&quot;target&quot;:{&quot;pos&quot;:&quot;bottom&quot;}}},&quot;region&quot;:&quot;us&quot;}">

    
                                            <meta id="qualtrics-settings"
      itemprop="qualtrics-settings"
      content="{&quot;id&quot;:&quot;ZN_aah4Vz47v491vLf&quot;,&quot;script&quot;:&quot;\/\/zn_aah4vz47v491vlf-cbs.siteintercept.qualtrics.com\/WRSiteInterceptEngine\/&quot;}" />
              
      <meta name="username" id="username" content="GS|Anonymous" />

                  
          <meta property="twitter:account_id" content="7157132" />
    <link rel="canonical" href="https://www.gamespot.com/" />

    
            <meta id="js-loading-html" content="&lt;div class=&quot;js-loader loader &quot;&gt;&lt;div class=&quot;loader-animation&quot;&gt;&lt;div class=&quot;loading&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;">

    
            <link rel="shortcut icon" href="/favicon.ico" />

      <link rel="apple-touch-icon" href="https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/touch-icon-iphone-precomposed.png">
  <link rel="apple-touch-icon" sizes="76x76" href="https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/touch-icon-ipad.png">
  <link rel="apple-touch-icon" sizes="120x120" href="https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/touch-icon-iphone-retina-precomposed.png">
  <link rel="apple-touch-icon" sizes="152x152" href="https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/touch-icon-ipad-retina-precomposed.png">

    
                    
  
        <meta id="richTextEditorTheme" itemprop="richTextEditorTheme" content="white" data-themes="{&quot;white&quot;:&quot;https:\/\/gamespot1.cbsistatic.com\/vf600cc3254b359450e82176eecb84e6a\/bundles\/gamespotsite\/css\/wysiwyg_white.css&quot;,&quot;black&quot;:&quot;https:\/\/gamespot1.cbsistatic.com\/vf600cc3254b359450e82176eecb84e6a\/bundles\/gamespotsite\/css\/wysiwyg_black.css&quot;}">

        
                        <style id="skin-color" type="text/css">@charset "UTF-8";article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}a,a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}blockquote{margin:0}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre;white-space:pre-wrap;word-wrap:break-word}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0;-ms-interpolation-mode:bicubic;vertical-align:middle;max-width:100%}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{border:0;margin:0;padding:0}legend{border:0;padding:0;white-space:normal}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0;vertical-align:baseline}label{cursor:pointer}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="search"]{-webkit-appearance:textfield}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}.chromeframe{margin:0.2em 0;background:#ccc;color:#000;padding:0.2em 0}.hidden{display:none !important;visibility:hidden}.visuallyhidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.visuallyhidden.focusable:active,.visuallyhidden.focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}.invisible{visibility:hidden}.relative{position:relative}*,*::before,*::after{-moz-box-sizing:border-box;box-sizing:border-box;outline:0}::-moz-selection{background:#0aabe6;color:#fff;text-shadow:none}::selection{background:#0aabe6;color:#fff;text-shadow:none}h1,h2,h3,h4,h5,h6,p,blockquote,pre,dl,dd,ol,ul,form,fieldset,legend,table,th,td,caption,hr{margin:0;padding:0}ul,ol,dl{list-style:none;list-style-image:none}abbr[title],dfn[title]{cursor:help}label,input,textarea,select,option{cursor:pointer}input[type=text]:active,input[type=text]:focus,textarea:active,textarea:focus{cursor:text;outline:none}iframe{border:0;max-width:100%}.clearfix:after{content:"";display:table;clear:both}.ir{text-indent:100%;white-space:nowrap;overflow:hidden;display:inline-block;font-size:0}.ellipseborder-top{background-image:url(https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/bg-border-light.png);background-position:top;background-repeat:repeat-x}.ellipseborder-bottom{background-image:url(https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/bg-border-light.png);background-position:bottom;background-repeat:repeat-x}.ellipseborder-left{background-image:url(https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/bg-border-left-light.png);background-repeat:repeat-y;background-position:left}.ellipseborder-vert{background-image:url(https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/bg-border-light.png),url(https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/bg-border-light.png);background-position:top,bottom;background-repeat:repeat-x}.fixbleed{background-clip:padding-box}html{color:#262626}body{font-family:-apple-system,".SFNSText-Regular",BlinkMacSystemFont,"San Francisco","Roboto","Segoe UI","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue","Helvetica","Lucida Grande",sans-serif;font-weight:400;text-rendering:optimizeLegibility}@media (max-width: 767px){body{text-rendering:optimizeSpeed;font-size:1rem;line-height:1.3rem}}
html{font-size:100%;line-height:1.3em}@media (min-width: 768px){.row>[class*="span"]{float:left;padding-left:15px;padding-right:15px}}
.span12,.medium-span12{width:100%}@media (min-width: 768px){.span12,.medium-span12{padding-left:15px;padding-right:15px}}
.row{display:block}.row:after{content:"";display:table;clear:both}@media (min-width: 768px){.row .row{margin-left:-15px;margin-right:-15px}}
@media (min-width: 768px){.medium-span1{width:8.33333%}.medium-span2{width:16.66667%}.medium-span3{width:25%}.medium-span4{width:33.33333%}.medium-span5{width:41.66667%}.medium-span6{width:50%}.medium-span7{width:58.33333%}.medium-span8{width:66.66667%}.medium-span9{width:75%}.medium-span10{width:83.33333%}.medium-span11{width:91.66667%}}@media (min-width: 1024px){.span1{width:8.33333%}.span2{width:16.66667%}.span3{width:25%}.span4{width:33.33333%}.span5{width:41.66667%}.span6{width:50%}.span7{width:58.33333%}.span8{width:66.66667%}.span9{width:75%}.span10{width:83.33333%}.span11{width:91.66667%}}.push1{float:left;margin-left:8.33333%}@media (max-width: 767px){.push1{float:none;display:block;width:auto;max-height:initial;min-width:initial;max-width:initial;margin-left:0;margin-right:0;padding-left:0;padding-right:0;text-shadow:none}}
.push2{float:left;margin-left:16.66667%}@media (max-width: 767px){.push2{float:none;display:block;width:auto;max-height:initial;min-width:initial;max-width:initial;margin-left:0;margin-right:0;padding-left:0;padding-right:0;text-shadow:none}}
.push3{float:left;margin-left:25%}@media (max-width: 767px){.push3{float:none;display:block;width:auto;max-height:initial;min-width:initial;max-width:initial;margin-left:0;margin-right:0;padding-left:0;padding-right:0;text-shadow:none}}
.push4{float:left;margin-left:33.33333%}@media (max-width: 767px){.push4{float:none;display:block;width:auto;max-height:initial;min-width:initial;max-width:initial;margin-left:0;margin-right:0;padding-left:0;padding-right:0;text-shadow:none}}
.push5{float:left;margin-left:41.66667%}@media (max-width: 767px){.push5{float:none;display:block;width:auto;max-height:initial;min-width:initial;max-width:initial;margin-left:0;margin-right:0;padding-left:0;padding-right:0;text-shadow:none}}
.push6{float:left;margin-left:50%}@media (max-width: 767px){.push6{float:none;display:block;width:auto;max-height:initial;min-width:initial;max-width:initial;margin-left:0;margin-right:0;padding-left:0;padding-right:0;text-shadow:none}}
.push7{float:left;margin-left:58.33333%}@media (max-width: 767px){.push7{float:none;display:block;width:auto;max-height:initial;min-width:initial;max-width:initial;margin-left:0;margin-right:0;padding-left:0;padding-right:0;text-shadow:none}}
.push8{float:left;margin-left:66.66667%}@media (max-width: 767px){.push8{float:none;display:block;width:auto;max-height:initial;min-width:initial;max-width:initial;margin-left:0;margin-right:0;padding-left:0;padding-right:0;text-shadow:none}}
.push9{float:left;margin-left:75%}@media (max-width: 767px){.push9{float:none;display:block;width:auto;max-height:initial;min-width:initial;max-width:initial;margin-left:0;margin-right:0;padding-left:0;padding-right:0;text-shadow:none}}
.push10{float:left;margin-left:83.33333%}@media (max-width: 767px){.push10{float:none;display:block;width:auto;max-height:initial;min-width:initial;max-width:initial;margin-left:0;margin-right:0;padding-left:0;padding-right:0;text-shadow:none}}
.push11{float:left;margin-left:91.66667%}@media (max-width: 767px){.push11{float:none;display:block;width:auto;max-height:initial;min-width:initial;max-width:initial;margin-left:0;margin-right:0;padding-left:0;padding-right:0;text-shadow:none}}
.push12{float:left;margin-left:100%}@media (max-width: 767px){.push12{float:none;display:block;width:auto;max-height:initial;min-width:initial;max-width:initial;margin-left:0;margin-right:0;padding-left:0;padding-right:0;text-shadow:none}}
.container{margin-left:auto;margin-right:auto;position:relative}.container:after{content:"";display:table;clear:both}@media (min-width: 1024px){.container{width:1000px}}@media (min-width: 1280px){.container{width:1280px}}
.container--locked{max-width:1000px;width:100%}.content--pull .primary-content{width:100%;float:left;margin-right:-330px}.content--pull .primary-content:before,.content--pull .primary-content:after{display:none;clear:none}@media (max-width: 767px){.content--pull .primary-content{margin-right:0}}.content--pull .primary-content__push{margin-right:330px}@media (max-width: 767px){.content--pull .primary-content__push{margin-right:0;margin-left:0}}.content--pull .secondary-content{width:300px;float:right;margin-right:15px;padding:0}@media (max-width: 767px){.content--pull .secondary-content{float:none;display:block;width:auto;max-height:initial;min-width:initial;max-width:initial;margin-left:0;margin-right:0;padding-left:0;padding-right:0;text-shadow:none;clear:both}}
.container-fluid{padding-left:15px;padding-right:15px;width:100%}.container-fluid:after{content:"";display:table;clear:both}.content--pull .container-fluid .secondary-content{margin-right:0}.container-fluid .max-width--750{max-width:750px;margin-left:auto;margin-right:auto}.fluid-width{width:100%}.grid{padding:0;list-style-type:none}.grid:after{content:"";display:table;clear:both}@media (min-width: 640px){.grid>*{float:left;padding:0 15px 2.6rem}}
@media (min-width: 640px){.grid.halves>*{width:50%}.grid.halves>*:nth-of-type(odd){clear:both}}@media (min-width: 640px){.grid.thirds>*{width:33.33333%}.grid.thirds>*:nth-of-type(3n+1){clear:both}}@media (max-width: 1023px){.grid.quarters{margin-left:-15px;margin-right:-15px}}@media (max-width: 1023px){.grid.quarters>*{width:50%;float:left}.grid.quarters>*:nth-of-type(odd){clear:both}}@media (min-width: 1024px){.grid.quarters>*{width:25%}.grid.quarters>*:nth-of-type(4n+1){clear:both}}@media (min-width: 1024px){.grid.fifths>*{width:20%}.grid.fifths>*:nth-of-type(5n+1){clear:both}}.grid.sixths>*{width:16.66667%}@media (min-width: 1024px){.grid.sixths>*:nth-of-type(6n+1){clear:both}}@media (max-width: 767px){.grid.sixths>*{width:50%}.grid.sixths>*:nth-of-type(odd){clear:both}}@media (max-width: 639px){.grid.sixths>*{width:100%}}@media (min-width: 1024px){.grid.sevenths>*{width:14.28571%}.grid.sevenths>*:nth-of-type(7n+1){clear:both}}@media (max-width: 767px){.grid.sevenths>*{width:100%}}
.symbol{fill:currentColor;position:relative;top:-1px;height:1em;width:1em;vertical-align:middle}.symbol.flip-horiz{transform:scaleX(-1)}.symbol.flip-vert{transform:scaleY(-1)}.symbol--size-small{height:0.8em}.symbol--size-large{height:1.333em;width:1.333em}.symbol--size-2x{height:2em;width:2em}.symbol--size-3x{height:3em;width:3em}.symbol--size-4x{height:4em;width:4em}.symbol--size-rem{height:1rem;width:1rem}@media only screen and (min-width: 760px) and (max-width: 979px){.symbol--size-resp--base{height:1em;width:1em}}
.symbol--position-left-absolute{margin-top:-0.5em;position:absolute;left:10px;top:50%}.symbol--position-left-absolute.symbol--size-small{margin-top:-0.4em}.symbol--position-left-absolute.symbol--size-large{margin-top:-0.6665em}.symbol--position-left-absolute.symbol--size-2x{margin-top:-1em}.symbol--position-left-absolute.symbol--size-3x{margin-top:-1.5em}.symbol--position-left-absolute.symbol--size-4x{margin-top:-2em}.symbol--position-left-absolute.symbol--size-rem{margin-top:-0.5rem}@media only screen and (min-width: 760px) and (max-width: 979px){.symbol--position-left-absolute.symbol--size-resp--base{margin-top:-0.5em}}
.symbol--position-flush{left:auto;right:auto}.symbol--nudge-bottom{top:-3px}.symbol--color-text{fill:#262626}.symbol--color-link{fill:#0054d1}.symbol--color-facebook{fill:#3b5897}.symbol--color-twitter{fill:#00b0eb}.symbol--color-google{fill:#bd0000}.symbol--color-youtube{fill:#bd0000}.symbol--color-rss{fill:#ff7200}.symbol--color-white{fill:#fff}.symbol--color-secondary{color:#e03800}.symbol--effect-dim{opacity:0.6}.symbol-logo-gamespot-trax{width:3.758em}.symbol-logo-gs-trax-buzz{width:4.73em}.symbol-logo-walmart{width:4.007em}h1,h2,h3,h4,h5,h6{font-weight:400;font-family:"ArgumentumBold","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{color:#262626}@media (min-width: 1024px){h1 a:hover,h2 a:hover,h3 a:hover,h4 a:hover,h5 a:hover,h6 a:hover{color:#0a6cff}}
h1{font-size:1.8125rem;line-height:1.95rem}@media (min-width: 1280px){h1{font-size:2.25rem;line-height:2.6rem}}
h2{font-size:1.4375rem;line-height:1.95rem}@media (min-width: 1280px){h2{font-size:1.8125rem;line-height:1.95rem}}
h3{font-size:1.125rem;line-height:1.3rem}@media (min-width: 1280px){h3{font-size:1.4375rem;line-height:1.95rem}}
h4{font-size:1rem;line-height:1.3rem}@media (min-width: 1280px){h4{font-size:1rem;line-height:1.3rem}}@media (min-width: 1280px){h4{font-size:1.125rem;line-height:1.3rem}}
.type-headline{font-size:2.875rem;line-height:3.25rem;font-weight:normal}@media (min-width: 1280px){.type-headline{font-size:2.875rem;line-height:3.25rem}}@media (max-width: 767px){.type-headline{font-size:1.8125rem;line-height:1.95rem}}@media (max-width: 767px){.type-headline{font-weight:400}}
.type-subheader,.t-container .news-deck{font-size:1.4375rem;line-height:1.95rem;font-family:-apple-system,".SFNSText-Regular",BlinkMacSystemFont,"San Francisco","Roboto","Segoe UI","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue","Helvetica","Lucida Grande",sans-serif;font-weight:100}@media (min-width: 1280px){.type-subheader,.t-container .news-deck{font-size:1.8125rem;line-height:1.95rem}}@media (max-width: 767px){.type-subheader,.t-container .news-deck{font-size:1.4375rem;line-height:1.95rem;line-height:1.1;font-weight:400;color:gray}}
.type-base{font-size:1rem;line-height:1.3rem}p{margin-top:0;margin-bottom:0.65rem}@media (min-width: 768px){p{margin-bottom:1.3rem}}
p:empty{margin-bottom:0}hr{display:block;height:0;border:0;margin:1.3rem 0;padding:1px 0;background-image:url(https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/bg-border-light.png);background-position:bottom;background-repeat:repeat-x}.img{position:relative}figure>img{display:block}figure>a{max-width:100%;display:block;text-align:center}figure>a.fluid-height{position:relative;height:0;overflow:hidden}figure>a.fluid-height img{position:absolute;top:0;left:0;width:100%;height:100%}img[width],img[height]{max-width:none}a{text-decoration:none;color:#0054d1}a:focus{color:#005ce5}.no-touch a:hover{color:#0a6cff;cursor:pointer}a:active{color:#0054d1}.pod-objectStats-additional a{color:#fff}.disable-hover,.disable-hover *{pointer-events:none !important}ul,ol{list-style:none;margin:0}.breadcrumbs{color:#666;margin-bottom:0.65rem;font-family:-apple-system,".SFNSText-Regular",BlinkMacSystemFont,"San Francisco","Roboto","Segoe UI","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue","Helvetica","Lucida Grande",sans-serif}.breadcrumbs a{color:#666}.no-touch .breadcrumbs a:hover{color:#0054d1}.breadcrumbs li{display:inline-block;white-space:nowrap}.breadcrumbs li+li:before{content:" » ";display:inline-block;margin:0 3px}.typography-format:after{content:"";display:table;clear:both}@media (min-width: 1024px){.typography-format{font-size:1rem;line-height:1.4rem}}.typography-format p,.typography-format ul,.typography-format ol,.typography-format blockquote,.typography-format [data-align="center"],.typography-format [data-embed-type="tweet"]{margin-bottom:1.3rem}.typography-format p:empty{margin-bottom:0}.typography-format>*:first-child{margin-top:0}.typography-format h1{margin-bottom:0.65rem}.typography-format h2,.typography-format h3,.typography-format h4{margin-bottom:1.3rem;font-weight:500}.typography-format--large [data-align="center"],.typography-format--large [data-embed-type="video"]{clear:none;overflow:hidden}.type--large{font-size:1.125rem;line-height:1.3rem}@media (min-width: 1280px){.type--large{font-size:1.4375rem;line-height:1.95rem}}
.type--xlarge{font-size:1.4375rem;line-height:1.95rem}@media (min-width: 1280px){.type--xlarge{font-size:1.8125rem;line-height:1.95rem}}
.type--huge{font-size:2.25rem;line-height:2.6rem}@media (min-width: 1280px){.type--huge{font-size:2.875rem;line-height:3.25rem}}
.hp-row,.hp-url{position:absolute;left:-10000000px}table{max-width:100%;empty-cells:show}table th,table td{margin:0;padding:0.65rem;overflow:visible;text-align:left}table thead{vertical-align:bottom;white-space:nowrap}table th{font-weight:bold}.align-vertical--contain{border-collapse:collapse;display:table !important;width:100%}.align-vertical--child{display:table-cell;vertical-align:middle}.align-vertical--child--top{vertical-align:top}html{background:#fff none;height:100%;overflow-x:hidden}#site-main:after{content:"";display:table;clear:both}#site{position:relative}#default-content,#below-content{padding:1.3rem 15px;position:relative}@media (min-width: 768px){#default-content,#below-content{padding-left:0;padding-right:0}}
.js-taboola-module .trc_rbox .trc_rbox_header{color:#262626;font-family:"ArgumentumBold","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif}.js-taboola-module .trc_rbox .trc_rbox_header .logoDiv a span{color:#262626}.js-taboola-module .trc_rbox .videoCube .video-title{color:#262626;font-family:-apple-system,".SFNSText-Regular",BlinkMacSystemFont,"San Francisco","Roboto","Segoe UI","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue","Helvetica","Lucida Grande",sans-serif}.js-taboola-module .trc_rbox .videoCube .branding{color:#999;font-family:"ArgumentumBold","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif}.js-taboola-module .trc_rbox .videoCube:hover .video-label-box .video-title{color:#0a6cff;text-decoration:none}.js-taboola-module .trc_rbox .video-title{color:#262626;font-family:"ArgumentumBold","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif}#ads_adhesion_closeBtn{top:-14px !important;right:0 !important;color:#fff !important;padding:5px !important;line-height:14px !important;font-size:24px !important;font-weight:bold !important;background:#000;border:2px solid #fff;border-radius:100%}.site-container{width:90%;max-width:1408px;margin-left:auto;margin-right:auto}.width-100{width:100%}.height-100{height:100%}.aspect-16-9{position:relative;margin:0 auto}.aspect-16-9:before{display:block;content:"";width:100%;padding-top:56.25%}.aspect-16-9>.content{position:absolute;top:0;left:0;right:0;bottom:0}.no-spacing{margin:0}.page-spacing{margin-top:2em;margin-bottom:2em}.page-spacing-top{margin-top:2em}.page-spacing-bottom{margin-bottom:2em}.vertical-spacing{margin-top:1em;margin-bottom:1em}.vertical-spacing:first-child{margin-top:0}.vertical-spacing:last-child{margin-bottom:0}.vertical-spacing-top{margin-top:1em}.vertical-spacing-top-rem{margin-top:1rem}.vertical-spacing-bottom{margin-bottom:1em}.vertical-spacing-bottom-rem{margin-bottom:1rem}.vertical-spacing-small{margin-top:0.5em;margin-bottom:0.5em}.vertical-spacing-small:first-child{margin-top:0}.vertical-spacing-small:last-child{margin-bottom:0}.vertical-spacing-small-rem{margin-top:0.5rem;margin-bottom:0.5rem}.vertical-spacing-small-rem:first-child{margin-top:0}.vertical-spacing-small-rem:last-child{margin-bottom:0}.vertical-spacing-small-top{margin-top:0.5em}.vertical-spacing-small-bottom{margin-bottom:0.5em}.vertical-spacing-bottom-none{margin-bottom:0}.horizontal-spacing{flex:1 auto;margin-left:0.889em;margin-right:0.889em}.horizontal-spacing.grided{margin-left:0.45em;margin-right:0.45em}.horizontal-spacing:first-child,.horizontal-spacing.grided:first-child{margin-left:0}.horizontal-spacing:last-child,.horizontal-spacing.grided:last-child{margin-right:0}@media (max-width: 767px){.horizontal-spacing{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;width:100%;margin-left:auto;margin-right:auto}.horizontal-spacing:not(:last-child){margin-bottom:1em}}
.horizontal-spacing-between:not(:first-child){margin-left:1em}.horizontal-spacing-between:not(:last-child){margin-right:1em}.horizontal-spacing-small{margin-left:0.45em;margin-right:0.45em}.horizontal-spacing-left-small{margin-left:0.45em}.horizontal-spacing-right-small{margin-right:0.45em}.full-width-inner-space{padding:3em 2.667em}@media (max-width: 767px){.full-width-inner-space{padding-left:5%;padding-right:5%}}
.inner-space{padding:1.667em 1.444em}.inner-space-rem{padding:1.667rem 1.444rem}.inner-space-small{padding:0.889em}.inner-space-small-rem{padding:0.889rem}.inner-space-vertical{padding-top:1.667em;padding-bottom:1.667em}.inner-space-vertical-rem{padding-top:1.667rem;padding-bottom:1.667rem}.inner-space-vertical-small{padding-top:1em;padding-bottom:1em}.inner-space-vertical-small-rem{padding-top:1rem;padding-bottom:1rem}.inner-space-top{padding-top:1.667em}.inner-space-top-rem{padding-top:1.667rem}.inner-space-top-small{padding-top:1em}.inner-space-top-small-rem{padding-top:1rem}.inner-space-bottom-small{padding-bottom:1em}.inner-space-bottom-small-rem{padding-bottom:1rem}.inner-space-top-xxsmall{padding-top:.2em}.inner-space-bottom-xxsmall-rem{padding-bottom:.2rem}.inner-space-horizontal{padding-left:1.444em;padding-right:1.444em}.inner-space-horizontal-rem{padding-left:1.444rem;padding-right:1.444rem}.base-flexbox{display:-webkit-flex;display:flex}.flexbox-column{display:-webkit-flex;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.flexbox-column-reverse{display:-webkit-flex;display:flex;-webkit-flex-direction:column-reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.flexbox-row{display:-webkit-flex;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.flexbox-row-reverse{display:-webkit-flex;display:flex;-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.flexbox-wrap{flex-wrap:wrap}.flexbox-nowrap{flex-wrap:nowrap}.flexbox-justify-between{-webkit-justify-content:space-between;justify-content:space-between}.flexbox-justify-around{-webkit-justify-content:space-around;justify-content:space-around}.flexbox-justify-center{-webkit-justify-content:center;justify-content:center}.flexbox-justify-flex-end{-webkit-justify-content:flex-end;justify-content:flex-end}.flexbox-align-self-flex-end{align-self:flex-end}.flexbox-align-start{align-items:flex-start}.flexbox-align-top{align-items:flex-start}.flexbox-align-end{align-self:flex-end}.flexbox-align-flex-start{align-items:flex-start}.flexbox-align-center{align-items:center}.flexbox-align-flex-end{align-items:flex-end}.flexbox-align-stretch{align-items:stretch}.flexbox-align-baseline{align-items:baseline}.flexbox-align-self-flex-start{align-self:flex-start}.flexbox-align-self-center{align-self:center}.flexbox-align-self-flex-end{align-self:flex-end}.flexbox-flex-even{flex:1 1 100%}.flex-grow{flex-grow:1}.float-right{float:right}.float-left{float:left}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.position-absolute-fill{position:absolute;top:0;bottom:0;left:0;right:0}.position-bottom-left{position:absolute;left:0.556em;bottom:0.556em}.position-bottom-right{position:absolute;right:0.556em;bottom:0.556em}.position-top-right{position:absolute;right:0.556em;top:0.556em}.position-top-left{position:absolute;left:0.556em;top:0.556em}.full-cover-fixed{position:fixed;top:0;right:0;bottom:0;left:0}.grid-full-row{grid-column:1/-1}.grid-2-column{-ms-grid-columns:50% 50%;display:-ms-grid;display:grid;grid-template:auto/repeat(2, 1fr);grid-gap:30px}.grid-3-column{-ms-grid-columns:33.3% 33.3% 33.3%;display:-ms-grid;display:grid;grid-template:auto/repeat(3, 1fr);grid-gap:30px}.grid-4-column{-ms-grid-columns:25% 25% 25% 25%;display:-ms-grid;display:grid;grid-template:auto/repeat(4, 1fr);grid-gap:30px}.grid-5-column{-ms-grid-columns:20% 20% 20% 20% 20%;display:-ms-grid;display:grid;grid-template:auto/repeat(5, 1fr);grid-gap:30px}@media (max-width: 767px){.grid-2-column,.grid-3-column,.grid-4-column,.grid-5-column{display:-ms-grid;display:grid;grid-template:auto/repeat(1, 1fr);grid-gap:30px}.grid-2-column img,.grid-3-column img,.grid-4-column img,.grid-5-column img{width:100%}}.no-cssgrid .grid-2-column,.no-cssgrid .grid-3-column,.no-cssgrid .grid-4-column,.no-cssgrid .grid-5-column{display:-webkit-flex;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;flex-wrap:wrap}.no-cssgrid .grid-2-column>div{width:50%}.no-cssgrid .grid-3-column>div{width:33.33%}.no-cssgrid .grid-4-column>div{width:25%}.no-cssgrid .grid-5-column>div{width:20%}@media (max-width: 767px){.no-cssgrid .grid-2-column>div,.no-cssgrid .grid-3-column>div,.no-cssgrid .grid-4-column>div,.no-cssgrid .grid-5-column>div{width:100%}.no-cssgrid .grid-2-column>div img,.no-cssgrid .grid-3-column>div img,.no-cssgrid .grid-4-column>div img,.no-cssgrid .grid-5-column>div img{width:100%}}
.two-column--span-one{width:50%;max-width:50%}.three-column--span-one{width:33.333%;max-width:33.333%}.three-column--span-two{width:66.667%;max-width:66.667%}.four-column--span-one{width:25%;max-width:25%}.four-column--span-three{width:75%;max-width:75%}.five-column--span-one{width:20%;max-width:20%}.five-column--span-two{width:40%;max-width:40%}.five-column--span-three{width:60%;max-width:60%}.five-column--span-four{width:80%;max-width:80%}@media (max-width: 767px){.mobile-overflow{overflow:scroll}.mobile-overflow .overflow-item{flex:1 0 40%}.mobile-overflow .overflow-item:not(:last-child){margin-right:0.5em}.no-touch .mobile-overflow{flex-wrap:wrap}.no-touch .mobile-overflow .overflow-item{flex:0 50%}.no-touch .mobile-overflow .overflow-item:nth-child(odd){margin:0;padding-right:0.5em}.no-touch .mobile-overflow .overflow-item:nth-child(even){margin:0;padding-left:0.5em}}@media (max-width: 639px){.mobile-overflow{overflow:scroll}.mobile-overflow .overflow-item{flex:1 0 75%}.mobile-overflow .overflow-item:not(:last-child){margin-right:0.5em}.no-touch .mobile-overflow{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.no-touch .mobile-overflow .overflow-item:nth-child(odd),.no-touch .mobile-overflow .overflow-item:nth-child(even),.no-touch .mobile-overflow .overflow-item{flex:1 0 100%;padding:0;margin:0 0 2em 0}}.hide-element{display:none}.show-below-laptop{display:none}@media (max-width: 1023px){.hide-laptop{display:none}.show-below-laptop{display:block}}@media (max-width: 767px){.hide-tablet{display:none}}@media (max-width: 639px){.hide-mobile{display:none}}.bg-center{background-position:center}.bg-no-repeat{background-repeat:no-repeat}.bg-contain{background-size:contain}.bg-cover{background-size:cover}.symbol{fill:currentColor;position:relative;height:1em;width:1em;vertical-align:middle}.symbol.flip-horiz{transform:scaleX(-1)}.symbol-logo-comicvine{width:1.886em}.symbol-logo-comicvine-outline{width:1.886em}.symbol-logo-giantbomb{width:1.3em}.symbol-logo-giantbomb-bomb{width:0.88em}.symbol-logo-giantbomb-outline{width:1.6em}.symbol-logo-giantbomb-bomb-outline{width:1em}.symbol-logo-outline-full{width:3.2em}.symbol--size-small{height:0.8em}.symbol--size-large{height:1.333em;width:1.333em}.symbol--size-2x{height:2em;width:2em}.symbol--size-3x{height:3em;width:3em}.symbol--position-left-absolute{margin-top:-0.5em;position:absolute;left:10px;top:50%}.symbol--position-left-absolute.symbol--size-small{margin-top:-0.4em}.symbol--position-left-absolute.symbol--size-large{margin-top:-0.6665em}.symbol--position-left-absolute.symbol--size-2x{margin-top:-1em}.symbol--position-left-absolute.symbol--size-3x{margin-top:-1.5em}.symbol--position-flush{left:auto;right:auto}.symbol--nudge-bottom{top:-3px}.symbol--color-text{fill:#262626}.symbol--color-link{fill:#0054d1}.symbol--color-facebook{fill:#3b5897}.symbol--color-twitter{fill:#00b0eb}.symbol--color-google{fill:#bd0000}.symbol--color-green{fill:#01b44f}.symbol--effect-dropShadow{-webkit-filter:drop-shadow(rgba(0,0,0,0.35) 0 1px 0);filter:drop-shadow(rgba(0,0,0,0.35) 0 1px 0)}.symbol--effect-highlight--secondary{-webkit-filter:drop-shadow(rgba(255,255,255,0.1) 0 -1px 0);filter:drop-shadow(rgba(255,255,255,0.1) 0 -1px 0)}.symbol--effect-dim{opacity:.6}.score{display:inline-block;max-width:100%;letter-spacing:3px;color:#ffc300}.score:before{color:#ffc300}.score:after{color:#666}.score.score-0:after{content:"\2605\2605\2605\2605\2605"}.score.score-1:before{content:"\2605"}.score.score-1:after{content:"\2605\2605\2605\2605"}.score.score-2:before{content:"\2605\2605"}.score.score-2:after{content:"\2605\2605\2605"}.score.score-3:before{content:"\2605\2605\2605"}.score.score-3:after{content:"\2605\2605"}.score.score-4:before{content:"\2605\2605\2605\2605"}.score.score-4:after{content:"\2605"}.score.score-5:before{content:"\2605\2605\2605\2605\2605"}.score span{width:0;height:0;display:inline-block;overflow:hidden;text-indent:120%}.score.input-score{cursor:pointer;margin:8px 0 16px 0}.score-big{line-height:1.1em;letter-spacing:5px}.score-big:before,.score-big:after{font-size:220%}.score.score-special{width:100px;height:20px;text-indent:110%;overflow:hidden;position:relative;background:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/images/core/sprites/icons/icn-stars.png) 0 0 no-repeat;white-space:nowrap;background-size:100% auto}@media only screen and (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx){.score.score-special{background-image:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/images/core/sprites/icons/icn-stars@2x.png)}}.score.score-special:before,.score.score-special:after{content:none}.score.score-special.score-5{background-position:0 0}.score.score-special.score-4{background-position:0 -20px}.score.score-special.score-3{background-position:0 -40px}.score.score-special.score-2{background-position:0 -60px}.score.score-special.score-1{background-position:0 -80px}.score.score-special.score-0{background-position:0 -100px}.score.score-special.score-big{height:40px;width:200px;background-image:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/images/core/sprites/icons/icn-stars@2x.png)}@media only screen and (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx){.score.score-special.score-big{background-image:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/images/core/sprites/icons/icn-stars@4x.png)}}.score.score-special.score-big.score-5{background-position:0 0}.score.score-special.score-big.score-4{background-position:0 -40px}.score.score-special.score-big.score-3{background-position:0 -80px}.score.score-special.score-big.score-2{background-position:0 -120px}.score.score-special.score-big.score-1{background-position:0 -160px}.score.score-special.score-big.score-0{background-position:0 -200px}.score.score-0{display:none !important}.js-score-input.score.score-0{display:inline-block !important}.bubble{color:#4c4c4c;display:inline-block;font-family:-apple-system,".SFNSText-Regular",BlinkMacSystemFont,"San Francisco","Roboto","Segoe UI","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue","Helvetica","Lucida Grande",sans-serif;font-size:10px;font-style:normal;line-height:16px;margin:0 5px 5px 0;padding:0 4px 0 20px;text-align:left;width:auto;border-radius:4px}.bubble:hover{color:#404040}.bubble.type{background-image:none;padding:1px 6px;text-transform:uppercase}.bubble.bubble-comment,.bubble.bubble-count{float:right;margin:2px 0 0 5px;padding-left:4px;font-family:-apple-system,".SFNSText-Regular",BlinkMacSystemFont,"San Francisco","Roboto","Segoe UI","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue","Helvetica","Lucida Grande",sans-serif;background-color:#d7d7d7;background-image:-webkit-linear-gradient(#e6e6e6,rgba(215,215,215,0));background-image:linear-gradient(#e6e6e6,rgba(215,215,215,0))}.bubble.bubble-date{background:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/images/core/sprites/icons/icn-calendar-12x12.png) no-repeat 5px 3px}.bubble.bubble-lock{background:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/images/core/sprites/icons/icn-lock-12x12.png) no-repeat 3px 2px;background-color:#ff527a}.flag{display:inline-block;background-position:left center;background-repeat:no-repeat}.flag.united-states,.flag.us{background-image:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/images/core/sprites/flags/United-States-Flag-16.png);padding-left:20px}.flag.australia,.flag.au{background-image:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/images/core/sprites/flags/Australia-Flag-16.png);padding-left:20px}.flag.united-kingdom,.flag.uk{background-image:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/images/core/sprites/flags/United-Kingdom-Flag-16.png);padding-left:20px}.flag.japan,.flag.jp{background-image:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/images/core/sprites/flags/Japan-Flag-16.png);padding-left:20px}input.flag{background-position:5px center;padding-left:25px}.badge{display:inline-block;background:#fafafa;line-height:18.8px;font-size:16px;border:solid 1px transparent;padding:0 5px;border-radius:4px}.badge.badge-success{color:#fff;background:#69feaa;border-color:#04fe71}.badge.badge-danger{color:#fff;background:#85001f;border-color:#1f0007}.badge.badge-info{color:#fff;background:#93b4d2;border-color:#4b82b4}.badge.badge-crazy{color:#fff;background:#940;border-color:#331700}a .icon{display:inline-block;text-decoration:inherit}.icon-text{top:-2px}.icon-large:before{vertical-align:-10%;font-size:1.3333333333333333em}.btn .icon,.nav .icon{display:inline}.btn .icon.icon-large,.nav .icon.icon-large{line-height:.9em}.btn .icon.icon-spin,.nav .icon.icon-spin{display:inline-block}.btn-mini .icon:before{font-size:14px;vertical-align:-15%}li .icon{display:inline-block;width:1.25em;text-align:center}.i-minus{position:relative;border-radius:50%;background-color:#0054d1;height:1.25em}.i-minus:before{content:"\2212";position:absolute;font-size:20px;font-weight:bold;line-height:0;color:#e03800;top:40%;left:50%;transform:translateX(-50%)}.i-cross:before{content:"\2716";font-weight:bold}#site{padding-top:0;padding-bottom:0}body{padding-top:3.125rem}body.auth{padding-top:0}.masthead{z-index:5000060;position:fixed;top:0;left:0;right:0;display:block;max-height:100vh;font-size:1rem;line-height:1.222;width:100%}.masthead a{color:#000;text-decoration:none}.no-touch .masthead a:hover{color:#eb0036}.masthead .symbol{top:0}.masthead .live-indicator{margin-left:0}.masthead .live-indicator.small{margin-left:0}@media (min-width: 768px){.masthead{display:flex;font-size:0.875rem}}.masthead-rows{background:#fff;z-index:2;display:flex;flex:1;flex-direction:column;max-height:100vh}.masthead-open .masthead-rows{z-index:5000060}.masthead-row{z-index:2}.masthead-row-wrap{display:flex;align-items:stretch;justify-content:space-between;width:90%;max-width:1408px;margin-left:auto;margin-right:auto}.masthead-overlay{display:block;height:0;content:"";position:fixed;top:3.125rem;left:0;bottom:0;right:0;opacity:0}.masthead-meta{font-size:0.625rem;color:#666}.masthead-avatar{border-radius:100%;border:1px solid #bfbfbf;display:inline-block;overflow:hidden;line-height:0;height:1rem;width:1rem;max-height:1rem;max-width:1rem}.masthead-avatar img{height:100%;width:100%}.masthead-button{background-color:#eb0036;line-height:1.15;border-radius:6.25rem;padding:0.5em 0.8em}.masthead-button i{line-height:0;display:inline-block}.masthead-button .symbol{font-size:0.8em;margin:0 0.5em 0 0}.no-touch .masthead-button:hover{background-color:#b30029}.masthead .masthead-button{color:#fff}.no-touch .masthead .masthead-button:hover{color:#fff}.masthead-button--small{font-size:0.625rem;border-radius:4px;padding:0.375rem}.masthead-toggle{display:flex;align-items:center;cursor:pointer;line-height:0}.masthead-toggle[data-toggle="nav"]::after{content:"";position:absolute;left:-25px;width:100px;height:3.125rem;z-index:100}.masthead-toggle .symbol{font-size:1rem}button.masthead-toggle{background:none;border:0;font-size:inherit;margin:0;padding:0}button.masthead-toggle:focus{background:rgba(235,0,54,0.2)}.masthead-toggle-close{display:none;color:#eb0036}.masthead-status .symbol{font-size:0.8em}.masthead-status-good{color:#01b44f}.masthead-status-alert{color:#eb0036}.masthead-logo{z-index:10;height:3.125rem;line-height:0}.masthead-logo-link{display:inline-block}.masthead-logo-asset{display:inline-block}.masthead-logo-asset .symbol{font-size:2.5rem;position:relative;top:0.3125rem}.masthead-logo-asset-full{display:none}@media (min-width: 1024px){.masthead-logo-asset-compact{display:none}.masthead-logo-asset-full{display:inline-block}}.masthead-compact{height:3.125rem;max-height:3.125rem;flex:1 0 auto;z-index:3}.masthead-compact .masthead-row-wrap{min-height:3.125rem}.masthead-compact .masthead-logo{display:flex;flex:1;justify-content:center}.masthead-compact .masthead-user-nav{display:none;height:3.125rem;max-height:3.125rem;margin-right:-0.625rem}.masthead-compact .masthead-nav-section{border:0}.masthead-default{background:#fff;flex:1 1 auto;overflow-y:auto}.masthead-default .masthead-row-wrap{width:100%}.masthead-default .masthead-logo,.masthead-default .masthead-toggle-search{display:none}.masthead-default .masthead-user-nav{display:none}@media (min-width: 768px){.masthead-compact{display:none}.masthead-default{background:none;flex:none;height:3.125rem;overflow-y:visible;z-index:10}.masthead-default .masthead-row-wrap{width:90%}.masthead-default .masthead-logo,.masthead-default .masthead-toggle-search{display:flex}.masthead-default .masthead-user-nav{display:flex}}.masthead-nav{max-height:0;overflow-y:hidden;display:flex;flex:1 1 auto;flex-direction:column;margin-left:1rem}@media (min-width: 768px){.masthead-nav{max-height:none;overflow-y:visible;flex-direction:row;justify-content:space-between}}@media (min-width: 1024px){.masthead-nav{margin-left:2rem}}
.masthead-nav-open{bottom:0}.masthead-nav-open .masthead-rows{position:absolute;top:0;bottom:0;left:0;right:0}@media (min-width: 768px){.masthead-nav-open .masthead-rows{position:static}}.masthead-nav-open .masthead-relative-rows{bottom:auto}.masthead-nav-open .masthead-nav{max-height:100%;overflow-y:auto;transition:max-height 350ms ease-out;border-bottom:1px solid #d8d8d8;z-index:5000060}.masthead-nav-open .masthead-compact .masthead-nav-section{display:none}.masthead-nav-open .masthead-compact .masthead-user-nav{display:flex}.masthead-nav-open .masthead-toggle-nav-open{display:none}.masthead-nav-open .masthead-toggle-nav-close{display:flex}@media (min-width: 768px){.masthead-nav-open{bottom:auto}}
.masthead-nav-section{border-top:1px solid #d8d8d8}.masthead-nav-section:first-child{border-top:0}@media (min-width: 768px){.masthead-nav-section{display:flex;border-top:0}}
.masthead-nav-items{margin:0;padding:0;border-top:1px solid #d8d8d8}.masthead-nav-items:first-child{border-top:0}@media (min-width: 768px){.masthead-nav-items{display:flex;cursor:default;border-top:0}.masthead-nav-items:first-child{margin-left:0}}
.masthead-nav-item{list-style:none;border-top:1px solid #d8d8d8}.masthead-nav-item:first-child{border-top:0}@media (min-width: 768px){.masthead-nav-item{border-top:0;display:flex;position:relative}.no-touch .masthead-nav-item:hover{z-index:5000060}}
.masthead-nav-item-icon{display:none}@media (min-width: 768px){.masthead-nav-item-icon{display:inline-block;font-size:1.2em;color:#666}}
.masthead-nav-item-label{display:flex;flex:1 0 auto;align-items:center;padding:1rem}@media (min-width: 768px){.masthead-nav-item-label{padding:0;position:relative}.masthead-nav-item-active .masthead-nav-item-label,.masthead-nav-item-open .masthead-nav-item-label,.no-touch .masthead-nav-item:hover .masthead-nav-item-label{background:none;color:#eb0036}.masthead-nav-item-active .masthead-nav-item-label::before,.masthead-nav-item-open .masthead-nav-item-label::before,.no-touch .masthead-nav-item:hover .masthead-nav-item-label::before{content:"";display:block;position:absolute;bottom:0;left:0;right:0;border-bottom:0.125rem solid #eb0036}.masthead-nav-item-active .masthead-nav-item-label .masthead-nav-item-icon,.masthead-nav-item-open .masthead-nav-item-label .masthead-nav-item-icon,.no-touch .masthead-nav-item:hover .masthead-nav-item-label .masthead-nav-item-icon{color:#eb0036}}
.masthead-nav-item-wrap{display:flex;justify-content:space-between}@media (min-width: 768px){.masthead-nav-item-wrap{justify-content:flex-start}}
.masthead-nav-item-toggle{display:flex;align-items:center;padding:0 0.5em;cursor:pointer}.masthead-nav-item-toggle .symbol{font-size:2em}.masthead-nav-item-toggle::before{content:"";display:block;margin:0.3125rem 0;padding-right:0.5rem;border:solid #d8d8d8;border-width:0 0 0 1px;width:0;align-self:stretch}@media (min-width: 768px){.masthead-nav-item-toggle{display:none}}
.masthead-toggle-nav-item-open{color:#666}.masthead-toggle-nav-item-close{color:#eb0036}.masthead-nav-item-open{z-index:5000060}.masthead-nav-item-open .masthead-toggle-nav-item-open{display:none}.masthead-nav-item-open .masthead-toggle-nav-item-close{display:flex}.masthead-open .masthead-nav-overlay{height:auto;z-index:5000060}.masthead-subnav{background:#fff;max-height:0;overflow:hidden;z-index:2;padding:0;font-size:0.875rem}.masthead-subnav a{color:#eb0036}.no-touch .masthead-subnav a:hover{color:#000}.masthead-nav-item-open .masthead-subnav{max-height:278em;transition:max-height 5s ease-out;border-top:1px solid #d8d8d8}.masthead-subnav-content{padding:1rem 2rem}.masthead-subnav-items{margin:0.5rem 0 0;padding:0}.masthead-subnav-items:first-child{margin-top:0}.masthead-subnav-item{margin:0.5rem 0 0}.masthead-subnav-item:first-child{margin-top:0}.masthead-subnav-item>a{display:block;white-space:nowrap}.masthead-subnav-spotlight{display:none}.masthead-subnav-spotlight:only-child{display:block}.masthead-subnav-spotlight-title{font-size:1rem;font-weight:bold;margin:0 0 1rem 0}.masthead-subnav-spotlight-content+.masthead-subnav-spotlight-content{margin-top:1rem}@media (min-width: 768px){.masthead-subnav{background:#fff;border-radius:0.25rem;position:absolute;top:3.125rem;left:-2rem;opacity:0;max-height:none;display:none;min-width:200%}.masthead-nav-item-open .masthead-subnav,.no-touch .masthead-nav-item:hover .masthead-subnav{display:block;opacity:1;transition:opacity 0.5s ease-out;transition-delay:0.2s;border-top:0;box-shadow:0 1.5625rem 1.875rem 0 rgba(0,0,0,0.25);z-index:5000060}.masthead-subnav-content{padding:2rem}}@media (min-width: 768px){.masthead-subnav-spotlight-body{width:18.5rem}}@media (min-width: 1280px){.masthead-subnav-content{display:flex;align-items:stretch;max-width:40rem;justify-content:space-between}.masthead-subnav-items{padding:0;margin:0 0 0 2rem}.masthead-subnav-items:first-child{margin-left:0}.masthead-subnav-spotlight{display:block}}.masthead-content-item+.masthead-content-item{margin-top:1rem}.masthead-content-item .link-img{width:5rem;margin-top:0;margin-bottom:0}.masthead-content-item .card-byline{line-height:1.5em;width:200px}.masthead-content-item .card-byline p{margin:0}.masthead-content-item .absolute-play-pause .hover-play-icon i,.masthead-content-item .absolute-play-pause .hover-pause-icon i{width:50%;height:50%}.masthead-content-item-image{margin:0 0 0.8em}@media (max-width: 767px){.masthead-content-item-cta{display:none}}@media (min-width: 768px){.masthead-subnav-join-livestream{display:flex}.masthead-subnav-join-livestream .masthead-content-item-image{flex:2;margin:0 1.5em 0 0}.masthead-subnav-join-livestream .masthead-content-item-meta{flex:1}.masthead-content-item-cta{margin-top:1.777em;padding:0.6em 1em}}.masthead-user-nav-items{display:flex;justify-content:flex-end}.masthead-user-nav-item{display:flex;border-top:0}.masthead-user-nav-item .masthead-nav-item-label{padding:0.625rem}@media (min-width: 768px){.masthead-user-nav-item .masthead-nav-item-label{padding:0}}
.masthead-user-subnav{display:none}@media (min-width: 768px){.masthead-user-subnav{left:auto;right:-2em;width:20rem}.masthead-user-subnav-content{padding:2rem;display:block;height:100%;overflow:hidden}.masthead-user-subnav-head{border-bottom:1px solid #d8d8d8;margin:0 0 1rem;padding:0 0 1rem}.masthead-user-subnav-body-wrap{height:100%}.masthead-subnav--scroll .masthead-user-subnav-body-wrap{overflow-y:auto}.masthead-user-subnav-title{font-size:1rem;font-weight:800}.masthead-user-subnav-items+.masthead-user-subnav-items{margin-top:1rem;padding-top:1rem;border-top:1px solid #d8d8d8}.masthead-user-subnav-item+.masthead-user-subnav-item{margin:0.5rem 0 0}.masthead-user-subnav-item a>i{line-height:0}.masthead-user-subnav-item .symbol{font-size:0.8em;margin:0 0.5em 0 0}.masthead-user-subnav-avatar{height:2.5rem;width:2.5rem;margin:0 1rem 0 0;border-radius:50%;overflow:hidden}.masthead-user-subnav-msg{color:#666;text-align:center;justify-content:center;margin-top:0.75em}.masthead-user-friends-subnav .masthead-status:first-child{margin-right:0.5em}.masthead-user-friends-subnav .masthead-username{max-width:90%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}}.masthead-alert-icon{color:gray;display:inline-block;position:relative;line-height:0}.masthead-nav-item-open .masthead-alert-icon,.no-touch .masthead-nav-item:hover .masthead-alert-icon{color:#000}.masthead-alert-active .masthead-alert-icon{color:#eb0036}.masthead-alert-item+.masthead-alert-item{border-top:1px solid #d8d8d8;padding-top:1rem;margin-top:1rem}.masthead-alert-item a{display:flex;align-items:baseline}.masthead-alert-author{flex:1 0 auto}.masthead-alert-title{font-size:inherit;margin:0 0 0.25em}.masthead-alert-content{padding:0 0 0 0.75em}.masthead-alert-content:first-child{padding:0}.masthead-user-messages-shortcuts{border-bottom:1px solid #d8d8d8;padding:0.5rem 0}.masthead-user-messages-subnav .masthead-alert-content{max-width:80%;overflow:hidden}.masthead-logout-nav{display:block}@media (min-width: 768px){.masthead-logout-nav{display:none}}
.masthead-search{background:#f2f2f2;max-height:0;opacity:0;overflow:hidden;position:absolute;top:0;left:0;right:0;display:flex;z-index:5000060}.masthead-search-content{height:3.125rem;position:relative}.masthead-search-content .site-search-container{background:#fff;border-radius:4px;margin:0.25rem 0;padding:0.5rem;width:100%;display:flex;align-items:center}.masthead-search-content .main-search{min-height:0;background:none}.masthead-search-content .main-search .dropdown--main{margin:0 1.75rem 0 0}.masthead-search-content .dropdown--autocomplete{position:absolute;top:3.125rem;left:5%;width:90%;border-radius:0;border:0;overflow-y:auto}.masthead-search-content .dropdown--autocomplete ul{background-color:#fff;border-radius:0;border:0}.masthead-search-content .dropdown--autocomplete li.next:hover,.masthead-search-content .dropdown--autocomplete li.prev:hover{color:#eb0036}.masthead-search-body{display:flex;flex:1 0 auto}.masthead-search-open .masthead-search{max-height:3.125rem;opacity:1;transition:opacity 0.25s ease-out;overflow:visible}.masthead-search-open .masthead-nav-overlay{height:0;z-index:0}.masthead-search-open .masthead-search-overlay{height:auto;opacity:0.9;transition:opacity 0.175s;transition-delay:0.2s;z-index:5000060;background:#f2f2f2}.masthead-search-open .masthead-toggle-search-open{visibility:hidden}.masthead-search-open .masthead-toggle-search-close{display:flex}.masthead-hide-mobile{display:none}@media (min-width: 768px){.masthead-hide-mobile{display:flex}}
.masthead-flex-desktop{display:none}@media (min-width: 1024px){.masthead-flex-desktop{display:flex}}
.masthead-hr-t::before{content:"";display:flex;margin:1rem 0;border:solid #d8d8d8;border-width:1px 0 0 0;height:0;width:100%}.masthead-hspace-l{margin-left:1rem}.masthead .masthead-hspace-l:first-child{margin-left:0}.masthead-compact .masthead-hspace-l{margin-left:0}.masthead-default .masthead-hspace-l{margin-left:0}@media (min-width: 768px){.masthead-default .masthead-hspace-l{margin-left:1rem}}
.masthead-hspace-r{margin-right:1rem}.masthead .masthead-hspace-r:last-child{margin-right:0}.masthead-default .masthead-hspace-r{margin-right:0}@media (min-width: 768px){.masthead-default .masthead-hspace-r{margin-right:1rem}}
.masthead-vr-l::before{content:"";display:block;margin:0.625rem 1rem 0.625rem 0;border:solid #d8d8d8;border-width:0 0 0 1px;width:0}.masthead-default .masthead-vr-l::before{display:none}@media (min-width: 1024px){.masthead-default .masthead-vr-l::before{display:block}}.masthead-vr-l:first-child::before{display:none}.masthead-vr-r::after{content:"";display:block;margin:0.625rem 0 0.625rem 1rem;border:solid #d8d8d8;border-width:0 0 0 1px;width:0}.masthead-default .masthead-vr-r::after{display:none}@media (min-width: 1024px){.masthead-default .masthead-vr-r::after{display:block}}.masthead-vr-r:last-child::after{display:none}.auth-masthead{background:#262626}.auth-nav{color:#bfbfbf;font-size:0.722rem;margin:0;position:relative}body{padding-top:3.125rem}body.has-promo-alert{-webkit-transition:padding-top 0.25s linear;transition:padding-top 0.25s linear}body.has-promo-alert--live-now{padding-top:5.625rem}body.has-promo-alert--breaking-news{padding-top:8.75rem}@media (min-width: 768px){body.has-promo-alert--breaking-news{padding-top:9.375rem}}
.has-promo-alert--live-now .masthead-search{top:2.5rem}.has-promo-alert--breaking-news .masthead-search{top:5.625rem}@media (min-width: 768px){.has-promo-alert--breaking-news .masthead-search{top:6.25rem}}
.has-promo-alert--live-now .masthead-search-overlay{top:5.625rem}.has-promo-alert--breaking-news .masthead-search-overlay{top:8.75rem}@media (min-width: 768px){.has-promo-alert--breaking-news .masthead-search-overlay{top:9.375rem}}
@media (min-width: 768px){.masthead-default{border-bottom:none}.masthead-subnav .link-img{position:relative}.no-touch .masthead-subnav a:hover .link-img::before{animation:fadeOverlayIn 250ms 1;content:'';position:absolute;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,0.4)}}.masthead-logo-asset .symbol{color:#000}.masthead-logo-asset-compact .symbol{font-size:1.875rem;top:0.625rem}.auth-nav{font-size:1rem}.symbol--color-site-logo{fill:#fd0}.content-type{display:flex;justify-content:center;align-items:center;position:absolute;left:5px;top:5px;bottom:auto;right:auto;z-index:1;padding:0;width:32px;height:32px;color:#fff;font-size:0}.content-type.content-symbol--medium{left:10px;top:10px;width:36px;height:36px}.content-type i{width:100%;height:100%;display:flex;justify-content:center;align-items:center}.content-type svg{top:0;width:50%;height:50%}.content-type .symbol-video-play{margin-left:15%;width:45%;height:45%}.content-type.content-type--podcast{background-image:url(https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/player/headphones-btn-64.png)}.content-type.content-type--video,.content-type.content-type--podcast,.content-type.content-type--review,.content-type.content-type--imageGallery{border-radius:100%;background:#e03800;border:2px solid #fff}.content-type.content-type--review .content{margin-top:0.2rem}.content-type.content-type--review.promo--review-score-pending{background:#0054d1}.content-type strong{font-size:1.125rem;line-height:1.3rem}.promo--reviw-score{margin-top:0.2rem}.promo--reviw-score .content-type--64x64{width:64px;height:64px;margin-top:-32px;margin-left:-32px}.kubrick{background-position:50% 50%;background-repeat:no-repeat;background-color:#000;position:relative;margin:0 auto;background-size:cover;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.kubrick a:not(.btn){color:#fff}@media (min-width: 1280px){.kubrick-lead{background-size:1460px auto}}
@media (min-width: 1024px){.kubrick-curtains{max-width:1460px;margin:0 auto;position:relative}.kubrick-curtains:before,.kubrick-curtains:after{content:" ";width:100px;height:100%;display:block;top:0;right:-1px;position:absolute;background-image:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/images/core/loose/bg-kubrick-fade-right.png);background-size:100%;opacity:0;z-index:1;-webkit-transition:opacity 0.5s;transition:opacity 0.5s}}@media (min-width: 1024px) and (min-width: 1024px){.kubrick-curtains:before,.kubrick-curtains:after{opacity:1}}@media (min-width: 1024px){.kubrick-curtains:after{right:auto;left:-1px;background-image:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/images/core/loose/bg-kubrick-fade-left.png)}}
@media (min-width: 1024px){.kubrick-lead--has-subnav .kubrick-curtains--bottom{height:40px;margin-bottom:-40px}}
.kubrick-content{padding:1.3rem 15px}@media (max-width: 767px){.kubrick-content{padding:0}}
.kubrick-overlay{background:rgba(0,0,0,0.52);position:relative}.kubrick-info{padding-top:0.65rem;padding-bottom:0.65rem;color:#fff;z-index:2;position:relative}@media (min-width: 1024px){.kubrick-info{padding-top:1.3rem;padding-bottom:1.3rem}}.kubrick-info.no-min{min-height:auto}.kubrick-info.no-sticky{width:100%;float:none;text-shadow:none}.kubrick-info.no-sticky a{color:#262626}.kubrick-info.no-sticky .show-title{background:none !important;display:none}.kubrick-info.no-sticky .container{max-width:100%;padding-right:15px;padding-left:15px}.kubrick-info.no-sticky .share-item>a{color:#262626}.kubrick-info__title{font-size:1.8125rem;line-height:1.95rem;font-family:"ArgumentumBlack","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif;font-weight:normal;font-style:normal;margin:0 0 0.65rem}@media (min-width: 1280px){.kubrick-info__title{font-size:2.25rem;line-height:2.6rem}}@media (max-width: 767px){.kubrick-info__title{padding:0.65rem 15px}}
.kubrick-info__deck{font-size:1rem;line-height:1.3rem;margin:0 0 0.65rem}@media (min-width: 1280px){.kubrick-info__deck{font-size:1rem;line-height:1.3rem}}@media (min-width: 1280px){.kubrick-info__deck{font-size:1.125rem;line-height:1.3rem}}@media (max-width: 767px){.kubrick-info__deck{padding:0 15px}}
.kubrick.large{background-size:1460px 100%}.kubrick.large .kubrick-info{width:100%;min-height:0}.kubrick.large .kubrick-content{min-width:100%}.kubrick.large .kubrick-info__deck{max-width:100%;margin:0}.kubrick.large .video-size{float:none;clear:both;margin:0 auto;width:100%}.kubrick.large .kubrick-background{height:auto}.kubrick.large .kubrick-background:after{display:none}.kubrick.large .av-video-player{background:none;margin:0 auto;max-width:960px}@media (min-width: 1280px) and (min-height: 720px){.kubrick.large .av-video-player{max-width:1280px}}
.kubrick-video-bg__wrap{position:absolute;top:0;left:0;width:100%}.kubrick-video-background{display:block;visibility:hidden;position:absolute}@media (min-width: 1024px){.kubrick-video-background{left:50%;top:-104px;margin-left:-730px;width:1460px;visibility:visible;-webkit-transform:translateZ(0);transform:translateZ(0)}}
@media (min-width: 1024px){.kubrick-lead--has-subnav{padding-bottom:40px;margin-bottom:-40px}}
.kubrick-lead--minimal .kubrick-content{padding:0;text-align:center}@media (min-width: 1024px){.kubrick-lead--minimal .kubrick-content{width:65%;margin-left:auto;margin-right:auto;padding-top:16.9rem;min-height:26rem}}.kubrick-lead--minimal .kubrick-info{padding-top:0}@media (max-width: 767px){.kubrick-lead--minimal .kubrick-info__inner{display:block;padding:2.6rem 15px 1.3rem}}.kubrick-lead--minimal .kubrick-overlay{background-color:transparent;background-image:-webkit-linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0.7));background-image:linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0.7))}.kubrick-lead--feature .kubrick-content{text-align:center;padding-top:5.2rem}@media (min-width: 1024px){.kubrick-lead--feature .kubrick-content{padding-top:20.8rem}}
.kubrick-lead--show .kubrick-info__title{font-size:1.125rem;line-height:1.3rem}@media (min-width: 1280px){.kubrick-lead--show .kubrick-info__title{font-size:1.4375rem;line-height:1.95rem}}
.kubrick-lead--hubs .kubrick-overlay{background:transparent}.kubrick-lead--hubs .kubrick-content{padding-top:15.6rem}.kubrick-breadcrumbs{font-family:"ArgumentumMed","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif;font-weight:normal;font-style:normal;text-shadow:rgba(0,0,0,0.5) 0 1px 0;color:#fff;font-size:2.25rem;line-height:2.6rem}.kubrick-breadcrumbs li{display:inline-block;white-space:nowrap;vertical-align:middle}.kubrick-breadcrumbs li:after{content:"//";display:inline-block;margin:0 5px}.kubrick-breadcrumbs li:last-child:after{content:""}.kubrick-breadcrumbs a{display:inline-block !important;color:#fff}.no-touch .kubrick-breadcrumbs a:hover{color:#0054d1}.kubrick__tabs{margin-bottom:0.65rem;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-direction:row;flex-direction:row}.no-flexbox .kubrick__tabs{display:table;width:100%}.kubrick__tabs-item{-ms-flex:1 1 auto;flex:1 1 auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.no-flexbox .kubrick__tabs-item{display:table-cell;float:none}.no-flexbox .kubrick__tabs-item{width:50%}.kubrick__tabs-item>a{border:1px solid rgba(255,255,255,0.1);border-width:1px 0 0;box-shadow:0 -1px 0 rgba(0,0,0,0.2);color:#fff;font-style:italic;display:block;text-align:center;padding:0.325rem 15px;text-shadow:rgba(0,0,0,0.5) 0 1px 0}.kubrick__tabs-item>a:hover{border-color:rgba(255,255,255,0.25);box-shadow:0 -1px 0 rgba(0,0,0,0.45)}.kubrick__tabs-item span{font-family:"ArgumentumBold","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif;font-weight:normal;font-style:normal}@media (max-width: 767px){.kubrick__tabs-item span{display:block}}.kubrick__tabs-item.active>a,.kubrick__tabs-item.active>a:hover{border-color:#e03800}.kubrick-lead--review .kubrick-info__releasedate>li{display:inline-block;margin:0.325rem;font-size:1rem;line-height:1.3rem;font-family:"ArgumentumLight","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif;font-weight:normal;font-style:normal}@media (min-width: 1280px){.kubrick-lead--review .kubrick-info__releasedate>li{font-size:1rem;line-height:1.3rem}}@media (min-width: 1280px){.kubrick-lead--review .kubrick-info__releasedate>li{font-size:1.125rem;line-height:1.3rem}}@media (min-width: 1024px){.kubrick-lead--review .kubrick-info__releasedate>li{margin:0.65rem}}.kubrick-lead--review .system{margin:0 0.65rem;font-size:1rem;line-height:1.3rem}@media (min-width: 1280px){.kubrick-lead--review .system{font-size:1rem;line-height:1.3rem}}
.kubrick-lead--feature--video{overflow:hidden}.kubrick-lead--feature--video .kubrick-content{text-align:center}@media (min-width: 1024px){.kubrick-lead--feature--video .kubrick-info{position:absolute;bottom:40px;width:100%;left:0;padding:0;font-size:1rem;line-height:1.3rem;-webkit-transition:all cubic-bezier(0.455, 0.03, 0.515, 0.955);transition:all cubic-bezier(0.455, 0.03, 0.515, 0.955)}}@media (min-width: 1024px) and (min-width: 1280px){.kubrick-lead--feature--video .kubrick-info{font-size:1rem;line-height:1.3rem}}@media (min-width: 1024px) and (min-width: 1280px){.kubrick-lead--feature--video .kubrick-info{font-size:1.125rem;line-height:1.3rem}}
.kubrick-lead--feature--video .is-vid-loading>div{opacity:0}@media (min-width: 1024px){.kubrick-lead--feature--video .kubrick-info__title{margin:0 auto;max-width:1000px}}@media (max-width: 767px){.kubrick-lead--feature--video .kubrick-video{margin-bottom:1.3rem}.kubrick-lead--feature--video .kubrick-video .av-wrapper-max{border:1px solid rgba(0,0,0,0.7);box-shadow:rgba(255,255,255,0.35) 0 0 1px inset}}.kubrick-lead--feature--video .kubrick-video .av-video-player{margin:0 auto;max-width:870px;background:none;box-shadow:none}@media (max-width: 767px){.kubrick-lead--feature--video .kubrick-video .av-video-player{width:100%}.kubrick-lead--feature--video .kubrick-video .av-video-player .av-splash{background-size:60px auto}}.kubrick-lead--feature--video .kubrick-video .av-video-player-frame{background:none;box-shadow:none}.kubrick-lead--feature--video .kubrick-video .av-video-player-hold{opacity:0;-webkit-transition:opacity 1s;transition:opacity 1s}.kubrick-lead--feature--video .kubrick-video .av-chrome{opacity:0;-webkit-transition:opacity 1s;transition:opacity 1s}.kubrick-lead--feature--video.video-active .av-video-player-hold{opacity:1}.kubrick-lead--feature--video.video-active .av-chrome{opacity:1}@media (min-width: 1024px){.kubrick-lead--feature--video.video-active .kubrick-info{visibility:hidden}.kubrick-lead--feature--video.video-active .kubrick-video .av-video-player{box-shadow:#000 0 2px 10px}.kubrick-lead--feature--video.video-active .kubrick-video .av-video-player-frame{box-shadow:rgba(255,255,255,0.2) 0 0 0 1px inset}.kubrick-lead--feature--video.video-active .kubrick-video .av-chrome{opacity:1}.kubrick-lead--feature--video.video-active .kubrick-video .av-video-player-hold{opacity:1}.kubrick-lead--feature--video.video-active .c2{opacity:0;-webkit-transform:scale(0);transform:scale(0)}}.kubrick-lead--feature--video.sticky .av-video-player{margin-top:0}@media (min-width: 1024px){.kubrick-lead--ring .kubrick-curtains:before{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAARgAAAAoCAQAAACPii0eAAAAl0lEQVR42u3SMQqAMAxA0ST3v7MOHaTS1goODu+JYiQ46M8jmsyIuM7Z1F/HU3/X39+n2dG2amt3tlfLndqc6qN3rp/O9mL7W+XDt1/9sdE/Hk9RAS8IBsEgGASDYBAMCAbBIBgEg2AQDAgGwSAYBINgEAwIBsEgGASDYEAwCAbBIBgEg2BAMAgGwSAYBINgQDAIBsHwfyfxRwJPIQjWGwAAAABJRU5ErkJggg==)}.kubrick-lead--ring .kubrick-curtains:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAARgAAAAoCAQAAACPii0eAAAAl0lEQVR42u3SsQ5AMBSG0X/w/o/cGkyll0oMhnOEuHJj6belJ6e7msbnfBrfxvfZPLuOnbawWe+12522OLWP/nn/tdrL0m7K6Xoi9fk9nX16T5JkC7wgGASDYBAMgkEwIBgEg2AQDIJBMCAYBINgEAyCQTAgGASDYBAMggHBIBgEg2AQDIIBwSAYBINgEAyCAcEgGATD/+0JPPKgn7PmJgAAAABJRU5ErkJggg==)}}
.kubrick-lead--ring__hold{position:relative}.kubrick-lead--ring__hold:after{content:"";display:table;clear:both}@media (min-width: 1024px){.kubrick-lead--ring__hold{margin:0 auto;height:0;padding-bottom:34.72222%}}@media (min-width: 1280px){.kubrick-lead--ring__hold{max-width:1460px;height:420.13889px;padding:0}}
.kubrick-content--ring{background:#000 no-repeat center center;background-size:cover;margin:0;z-index:auto;display:block;position:relative;height:170px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.kubrick-content--ring:after{content:" ";bottom:0;left:0;right:0;top:0}@media (min-width: 640px){.kubrick-content--ring{height:200px}.kubrick-content--ring:nth-child(2){clear:both}.kubrick-content--ring:nth-child(2),.kubrick-content--ring:nth-child(3){float:left;width:50%}}@media (min-width: 1024px){.kubrick-content--ring{position:absolute;height:50%;top:0}.kubrick-content--ring:first-child{height:100%}.kubrick-content--ring:nth-child(2){clear:none}.kubrick-content--ring:nth-child(2),.kubrick-content--ring:nth-child(3){float:none;width:auto}.kubrick-content--ring:nth-child(3){top:50%}.kubrick-content--ring:nth-child(3):before{display:none}}
.kubrick-info--ring{padding:0.65rem 0;position:absolute;bottom:0;left:15px;right:15px}.kubrick-info--ring .kubrick-info__title{font-size:1.125rem;line-height:1.3rem;font-family:"ArgumentumBlack","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif;font-weight:normal;font-style:normal}@media (min-width: 1024px){.kubrick-info--ring .kubrick-info__title{font-size:1.8125rem;line-height:1.95rem}}.kubrick-info--ring .kubrick-info__deck{display:none}@media (min-width: 1024px){.kubrick-info--ring .kubrick-info__deck{display:block}}.kubrick-info--ring .kubrick-info__comments{display:none}.kubrick-info--ring h3.kubrick-info__title{font-size:1.125rem;line-height:1.3rem;font-family:"ArgumentumBold","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif;font-weight:normal;font-style:normal}.kubrick-info--ring--video{padding-right:55px}.kubrick-info--ring--video:before,.kubrick-info--ring--video:after{content:" ";border-radius:100%;position:absolute;right:0;top:50%;height:40px;width:40px;margin-top:-20px}.kubrick-info--ring--video:before{background-color:#c13000;background-image:-webkit-linear-gradient(#e03800,rgba(193,48,0,0));background-image:linear-gradient(#e03800,rgba(193,48,0,0))}.kubrick-info--ring--video:after{background:url(https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/player/play-btn-dots-20x20.png) center center no-repeat}@media only screen and (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx){.kubrick-info--ring--video:after{background-image:url(https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/player/play-btn-dots-40x40.png);background-size:20px 20px}}
.kubrick-info--ring--review{padding-right:54px}.kubrick-info--ring--review .gs-score{position:absolute;right:0px;bottom:18px}.kubrick-lead--topshelf{margin-bottom:1.3rem}.kubrick-lead--topshelf:after{content:"";display:table;clear:both}.kubrick-lead--topshelf .kubrick-info{position:absolute;bottom:0;left:0;padding:15px;width:100%}.kubrick-lead--topshelf .kubrick-content--top{box-shadow:rgba(0,0,0,0.25) 3px 0 10px inset,rgba(255,255,255,0.1) 1px 1px 0 inset;padding-bottom:41.64%;width:100%}.kubrick-lead--topshelf .kubrick-content--top:before{content:"";position:absolute;display:block;bottom:0;left:0;right:0;top:0;width:100%;height:100%;z-index:1}.kubrick-lead--topshelf .kubrick-content--top:before{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAESCAQAAAB9HsyAAAAAcElEQVQ4y81Tyw7AIAgr6P9/8w5LNEtoVzx5IRj6QNCJAOYbsEJ8Mwqpqv1CMlz+C1S4ZFVNGxJCBbTbhsBkUOVYTaLgamXD0ri+cdyTTLbQNOdcTQ3mziuVQxrFgXnQd4/Or9B6NGuFQ9rFRvd08ABmyQUf/gBAlQAAAABJRU5ErkJggg==) left bottom repeat-x}.kubrick-lead--topshelf .kubrick-content--top .kubrick-info__title{font-size:1.4375rem;line-height:1.95rem}.kubrick-lead--topshelf .kubrick-content--bottom{width:50%;float:left;padding-bottom:28.125%;box-shadow:rgba(255,255,255,0.25) -1px 1px 0 0 inset,rgba(0,0,0,0.5) 5px 0 8px inset}.kubrick-lead--topshelf .kubrick-content--bottom:before{content:"";position:absolute;display:block;bottom:0;left:0;right:0;top:0;width:100%;height:100%;z-index:1}.kubrick-lead--topshelf .kubrick-content--bottom:before{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAB/CAQAAABvA9uwAAAASUlEQVQoz2NhYGRgYIEQTKgsbFxsBDMuLjPcAGYsEmhcFiyyRBAIbWgsNCX4DSBJAr/lxHqGCRcLWwhhU4KTYEQNdrT4ZRg0BAD+0AL8q9ZkXAAAAABJRU5ErkJggg==) left bottom repeat-x}.kubrick-lead--topshelf .kubrick-content--bottom .kubrick-info__title{font-size:1rem;line-height:1.3rem}@media (min-width: 1280px){.kubrick-lead--topshelf .kubrick-content--bottom .kubrick-info__title{font-size:1rem;line-height:1.3rem}}@media (min-width: 1280px){.kubrick-lead--topshelf .kubrick-content--bottom .kubrick-info__title{font-size:1.125rem;line-height:1.3rem}}.kubrick-lead--topshelf .kubrick-content{height:0;padding-top:0;background-size:cover;position:relative;display:block}@media (max-width: 639px){.kubrick-lead--topshelf .kubrick-content{float:none;position:relative;height:170px;width:100%;background-position:50% 50%}.kubrick-lead--topshelf .kubrick-content .kubrick-info__title{font-size:1rem;line-height:1.3rem}}@media (max-width: 639px) and (min-width: 1280px){.kubrick-lead--topshelf .kubrick-content .kubrick-info__title{font-size:1rem;line-height:1.3rem}}@media (max-width: 639px) and (min-width: 1280px){.kubrick-lead--topshelf .kubrick-content .kubrick-info__title{font-size:1.125rem;line-height:1.3rem}}
.kubrick-lead--topshelf .kubrick-info--video{padding-right:60px}.kubrick-lead--topshelf .kubrick-info--video:before,.kubrick-lead--topshelf .kubrick-info--video:after{content:" ";border-radius:100%;position:absolute;right:10px;top:50%;height:40px;width:40px;margin-top:-20px}.kubrick-lead--topshelf .kubrick-info--video:before{background-color:#c13000;background-image:-webkit-linear-gradient(#e03800,rgba(193,48,0,0));background-image:linear-gradient(#e03800,rgba(193,48,0,0))}.kubrick-lead--topshelf .kubrick-info--video:after{background:url(https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/player/play-btn-dots-20x20.png) center center no-repeat}@media only screen and (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx){.kubrick-lead--topshelf .kubrick-info--video:after{background-image:url(https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/player/play-btn-dots-40x40.png);background-size:20px 20px}}@media (min-width: 1024px){.kubrick-lead--topshelf .kubrick-content--top .kubrick-info--video{padding-right:80px}.kubrick-lead--topshelf .kubrick-content--top .kubrick-info--video:before,.kubrick-lead--topshelf .kubrick-content--top .kubrick-info--video:after{height:70px;width:70px;margin-top:-35px}.kubrick-lead--topshelf .kubrick-content--top .kubrick-info--video:after{background-image:url(https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/player/play-btn-dots-40x40.png)}}@media only screen and (min-width: 1024px) and (min--moz-device-pixel-ratio: 1.3), (min-width: 1024px) and (-o-min-device-pixel-ratio: 2.6 / 2), (min-width: 1024px) and (-webkit-min-device-pixel-ratio: 1.3), (min-width: 1024px) and (min-device-pixel-ratio: 1.3), (min-width: 1024px) and (min-resolution: 1.3dppx){.kubrick-lead--topshelf .kubrick-content--top .kubrick-info--video:after{background-image:url(https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/player/play-btn-dots-80x80.png);background-size:40px 40px}}
.promo--object{display:flex;position:relative;overflow:hidden}.promo-image--wide{position:relative;margin:0 auto;position:relative;width:100%}.promo-image--wide:before{display:block;content:"";width:100%;padding-top:56.25%}.promo-image--wide>.content{position:absolute;top:0;left:0;right:0;bottom:0}.promo-image--square{position:relative;margin:0 auto;position:relative;width:100%}.promo-image--square:before{display:block;content:"";width:100%;padding-top:100%}.promo-image--square>.content{position:absolute;top:0;left:0;right:0;bottom:0}.promo--full-width{margin-bottom:1.3rem}@media (min-width: 1024px){.promo--full-width{flex-grow:2;margin-right:0}}
@media (min-width: 1024px){.promo--half-width{flex-grow:1;flex-basis:48%;margin-right:1.3rem}.promo--half-width:last-child{margin-right:0}}
@media (min-width: 1024px){.promo--offset-wide{flex-basis:64%;margin-right:1.3rem}}@media (max-width: 767px){.promo--offset-wide{flex-basis:100%;margin-right:0}}
@media (min-width: 1024px){.promo--offset-square{flex-basis:36%}}@media (max-width: 767px){.promo--offset-square{flex-basis:100%;margin-right:0}}
.promo--header{margin-top:1.3rem}.promo--header.two-column{margin-top:0;margin-bottom:1.3rem}@media (max-width: 767px){.promo--header{margin-left:0.65rem;margin-right:0.65rem}.promo--header.two-column{margin-left:0}}
.promo--container{display:flex;justify-content:center;margin-top:20px}.promo--container .promo--image .content{height:360px}@media (min-width: 1280px){.promo--container .promo--image .content{height:420px}}.promo--container .promo--image .content img{height:100%;width:100%;object-fit:cover}@media (max-width: 767px){.promo--container{flex-wrap:wrap}}.promo--container.two-column{flex-wrap:wrap;margin-top:0;margin-bottom:2.6rem}.promo--header-nav{font-family:"ArgumentumLight","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif;font-weight:normal;font-style:normal}.promo--header-nav-item-inactive{color:#262626}.no-touch .promo--header-nav-item-inactive:hover{color:#0054d1}.promo--image{background:#000;width:100%}.promo--image img{-webkit-transition:opacity 0.25s;transition:opacity 0.25s}.promo--media-type{position:relative;margin:0 auto;border-radius:100%;background:#e03800;border:2px solid #fff;position:absolute;top:20px;left:20px;width:48px;color:#fff}.promo--media-type:before{display:block;content:"";width:100%;padding-top:100%}.promo--media-type>.content{position:absolute;top:0;left:0;right:0;bottom:0}.promo--media-type.promo--review-score-pending{background:#0aabe6}@media (max-width: 767px){.promo--media-type{top:10px;left:10px}}.promo--media-type.medium{width:36px}.promo--media-type.small{width:32px}.promo--media-type .content{display:flex;justify-content:center;align-items:center}.promo--media-type .content>*{width:50%}.promo--media-type svg{top:0;width:100%;height:100%}.promo--media-type .symbol-video-play{margin-left:15%;width:90%;height:90%}.promo--review-score{font-size:1.8125rem;line-height:1.95rem;font-family:"ArgumentumBold","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif;font-weight:normal;font-style:normal;color:#fff;text-align:center;margin-top:0.2rem}.promo--cta{display:flex;text-align:left;margin-top:1.3rem}.promo--cta.share--column .share-item{margin-right:0.65rem}@media (max-width: 767px){.promo-type--overlay.promo--object:first-child{display:block;margin-bottom:1.3rem}}.promo-type--overlay.promo--object:hover .promo--image img{opacity:0.5}.promo-type--overlay .promo--metadata{background-image:-webkit-linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0.85));background-image:linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0.85));padding:2.6rem 1.3rem 1.3rem 1.3rem;position:absolute;right:0;bottom:0;left:0}.promo-type--overlay .promo--metadata h1,.promo-type--overlay .promo--metadata h2,.promo-type--overlay .promo--metadata span{color:#fff}.promo-type--overlay .promo--metadata span{-webkit-transition:all 0.25s;-webkit-transition-delay:0.05s;transition:all 0.25s 0.05s;opacity:0.75;overflow:hidden;display:block;margin:0;max-height:0;font-size:1.125rem;line-height:1.3rem;font-family:-apple-system,".SFNSText-Regular",BlinkMacSystemFont,"San Francisco","Roboto","Segoe UI","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue","Helvetica","Lucida Grande",sans-serif;font-weight:normal;font-style:normal;line-height:1.3em}.promo-type--overlay:hover .promo--metadata span{max-height:200px}@media (min-width: 1024px){.promo-type--overlay.promo--offset-square h2{font-size:1.4375rem;line-height:1.95rem}}
@media (max-width: 767px){.promo-type--grid{margin-bottom:1.3rem}}.promo-type--grid.promo--object{display:block}.promo-type--grid.promo--object:hover .promo--image img{opacity:0.75}.promo-type--grid .promo--metadata{display:block;margin-top:0.65rem}.promo-type--grid h2{font-size:1.4375rem;line-height:1.95rem;color:#262626}.promo-type--grid:hover h2{color:#e03800}.promo-type--grid .media-img{background:#000}.promo-type--grid .media-img:hover img{-webkit-transition:opacity 0.15s;transition:opacity 0.15s;opacity:0.75}.promo-type--grid .promo--review-score{font-size:1.4375rem;line-height:1.95rem}.promo-type--single{display:flex;flex-basis:100%;flex-wrap:no-wrap}@media (max-width: 767px){.promo-type--single{display:block}}.promo-type--single .promo--single-metadata:not(.promo--video-show){background:#fff;border:1px solid #e6e6e6;position:relative;z-index:0;padding:1.3rem}@media (max-width: 767px){.promo-type--single .promo--single-metadata:not(.promo--video-show){border:none;position:static}}.promo-type--single .promo--image:hover img{opacity:0.75}@media (min-width: 640px){.promo-type--single .promo--media-type{position:relative;top:0;left:0;margin-bottom:20px;width:64px;height:64px}.promo-type--single .promo--media-type .promo--review-score{font-size:2.25rem;line-height:2.6rem}}.promo-type--single h1,.promo-type--single h2{font-size:2.25rem;line-height:2.6rem;color:#000;line-height:1em;margin-bottom:0.65rem}@media (max-width: 767px){.promo-type--single h1,.promo-type--single h2{font-size:1.8125rem;line-height:1.95rem}}.no-touch .promo-type--single .promo--single-metadata:hover h1,.no-touch .promo-type--single .promo--single-metadata:hover h2{color:#0054d1}.promo-type--single .promo--metadata span{font-size:1.4375rem;line-height:1.95rem;line-height:23px;font-family:"ArgumentumUltraLight","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif;font-weight:normal;font-style:normal;color:#000}@media (max-width: 767px){.promo-type--single .promo--metadata span{font-size:1.125rem;line-height:1.3rem}}.promo-type--single .av-player-athena .av-video-player{max-width:none;margin:0}.promo--video-show{z-index:0;position:relative;padding:1.3rem}.promo--video-show .content{z-index:1}.promo--video-show:before{content:"";background-color:rgba(0,0,0,0.5);position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1}.promo-type--single .promo--video-show .promo--metadata span{color:#fff}.promo--video-show h1{display:none}.promo--video-show h2{color:#fff}.promo--video-show .promo--video-deck{color:#bfbfbf}.promo--video-show .promo--video-metadata{border:none;background-color:transparent}.promo--video-show .promo--show-logo{margin-bottom:1.3rem;width:50%}.promo--video-show .share--column .share-item--upvote .share-item__container.btn,.promo--video-show .share--column .share-item--comments .share-item__container{border-color:#fff;color:#fff}.promo--video-show .btn.join-chat{background:transparent;border-color:#fff;color:#fff}.promo--video-show .btn.join-chat:hover{background:rgba(255,255,255,0.25);color:#fff}.no-touch .promo--video-show.promo--single-metadata:hover{cursor:pointer}.no-touch .promo--video-show.promo--single-metadata:hover:before{content:"";background-color:rgba(0,0,0,0.75);position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1;-webkit-transition:background-color 175ms ease-in;-ms-transition:background-color 175ms ease-in;transition:background-color 175ms ease-in}.no-touch .promo--video-show.promo--single-metadata:hover h2{color:#fff}.promo--video .btn.join-chat{background:transparent;border-color:#e03800;color:#e03800}.promo--video .btn.join-chat:hover{background:rgba(224,56,0,0.25);color:#e03800}@media (min-width: 1024px){.subnav--flex .subnav-list{display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-direction:row;flex-direction:row}.no-flexbox .subnav--flex .subnav-list{display:table;width:100%}.subnav--flex .subnav-list__item{-ms-flex:1 1 auto;flex:1 1 auto}.no-flexbox .subnav--flex .subnav-list__item{display:table-cell;float:none}.subnav--flex .subnav-list__item.flex-grow{-webkit-flex-grow:2;flex-grow:2}}
.subnav--flex.subnav--constrain .subnav-list{margin-left:auto;margin-right:auto}@media (min-width: 1024px){.subnav--flex.subnav--constrain .subnav-list{max-width:1000px}}
.subnav{text-align:center;-webkit-backface-visibility:hidden}@media (min-width: 1024px){.subnav{margin:0 auto;padding:0;position:relative;z-index:5}.body-fullscreen .subnav{display:none}}
.subnav-list{list-style:none;margin:0}.subnav-list:after{content:"";display:table;clear:both}@media (min-width: 1024px){.subnav-list{margin:0 auto;background:#fff;width:auto;padding-left:0;padding-right:0;position:relative;display:inline-block}}
@media (min-width: 1024px){.subnav-list__item{float:left;display:block;position:relative;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAAnCAYAAAAl15mhAAAAS0lEQVQoz2M6duzofyBoYGKAAvIZf4D4H4jxG4j/ghi/MBg/YYwfIA0EGN9BZoEY32CM7zCpbxhS37AqJkbNH+y6iHHhT9w+BQcCABJYQ6PmzmJ7AAAAAElFTkSuQmCC) no-repeat left top}.subnav-list__item:first-child{background:none}.subnav-list__item>a{font-size:1rem;line-height:1.3rem;line-height:40px;white-space:nowrap;font-family:"ArgumentumMed","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif;font-weight:normal;font-style:normal;color:#262626;display:block;text-align:center;position:relative;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.subnav-list__item>a:after{display:inline-block;vertical-align:middle;content:"";height:0;width:0;vertical-align:middle;border-top:6px solid #eb0036;border-left:5px solid transparent;border-right:5px solid transparent;margin-left:0}.subnav-list__item>a:after{-webkit-transition:all 250ms;transition:all 250ms;position:absolute;top:0;left:50%;margin-left:-3px;opacity:0;-webkit-transform:translateY(-6px);transform:translateY(-6px)}.subnav-list__item.active,.no-touch .subnav-list__item:hover{color:#e03800}.subnav-list__item.active>a,.no-touch .subnav-list__item:hover>a{color:#eb0036;background:none;position:relative}.subnav-list__item.active>a:hover,.no-touch .subnav-list__item:hover>a:hover{color:#eb0036}.subnav-list__item.active>a:after,.no-touch .subnav-list__item:hover>a:after{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}.subnav-list__item>a img{margin:3px 5px 0 0;border:1px solid rgba(0,0,0,0.75);float:left;box-shadow:rgba(0,0,0,0.35) 0 1px 3px,rgba(255,255,255,0.35) 0 0 1px inset}}.subnav-list__item .icon{vertical-align:middle}@media (min-width: 1024px){.subnav--flex .subnav-list__item-primary{-ms-flex:0 1 auto;flex:0 1 auto}.no-flexbox .subnav--flex .subnav-list__item-primary{display:table-cell;float:none}.subnav-list__item-primary>a{display:block}.subnav-list__item-primary>a>span{text-transform:none;max-width:260px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:block;padding-right:10px;padding-left:50px;text-align:left}.subnav-list__item-primary img{margin-left:5px;position:absolute;left:10px}}
.subnav-toggle{display:none}@media (max-width: 1023px){.subnav-toggle{display:block !important;background:#fff;text-transform:uppercase;position:relative;height:50px;text-align:center;border-bottom:2px solid #e03800;box-shadow:rgba(255,255,255,0.1) 0 -1px 0 inset;-webkit-transition:all 0.5s;transition:all 0.5s}.subnav-toggle a{color:#262626;width:100%;display:block;line-height:50px;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none}.subnav-toggle .icon{position:absolute;right:0;height:100%;width:60px;text-align:center;line-height:50px;-webkit-transition:all 0.5s linear;transition:all 0.5s linear}.subnav-toggle .icon:before,.subnav-toggle .icon:after{content:"";height:8px;width:16px;display:block;position:absolute;right:20px;top:50%;margin-top:-6px;-webkit-transition:all 0.5s linear;transition:all 0.5s linear}.subnav-toggle .icon:before{border-top:2px solid #262626;border-bottom:2px solid #262626}.subnav-toggle .icon:after{height:2px;background:#262626;top:50%;margin-top:-3px}.subnav-toggle.is-active .icon{background:#e03800}.subnav-toggle.is-active .icon:after{background:#fff}.subnav-toggle.is-active .icon:before{border-color:#fff;height:12px;margin-top:-8px}}
@media (max-width: 1023px){.subnav-toggle{z-index:8;display:block}.subnav.menu-open .subnav-toggle{z-index:5000001}.subnav.menu-open .subnav-list{visibility:visible;opacity:1;z-index:5000000}.subnav>.container{margin:0;padding:0;width:100%}.subnav>.container>div{padding:0;float:none}.subnav .subnav-list{visibility:hidden;opacity:0;padding:0;position:absolute;right:0;top:50px;width:100%;background:#fff;box-shadow:rgba(0,0,0,0.175) 0 6px 12px}.subnav .subnav-list__item a{text-align:left;display:block;padding:0.65rem 15px;border-bottom:1px solid #d9d9d9;color:#262626}.subnav .subnav-list__item .icon{display:none}}.promo-strip{margin:0 0 1.3rem 0}.promo-strip:after{content:"";display:table;clear:both}.promo-strip.span12{float:none}.promo-strip__item.span3:nth-of-type(4n+1){clear:left}@media (min-width: 1024px){.promo-strip__item.span3:nth-of-type(n+5){padding-top:1.3rem}}@media (max-width: 1023px){.promo-strip__item{margin-bottom:1.3rem;float:left;width:50%}.promo-strip__item:nth-of-type(odd){clear:both}}@media (max-width: 767px){.promo-strip__item{padding-top:0;padding-left:7.5px}.promo-strip__item:nth-of-type(odd){padding-left:0;padding-right:7.5px}.promo-strip__item .content-type{display:none}}
@media (min-width: 1024px){.pod-river .promo-strip__item{padding-bottom:1.3rem}}.pod-river .promo-strip__item .media-figure{margin-bottom:0.65rem}.promoTitle--rhythm--inc{margin-top:0.325rem}@keyframes marquee{0%{transform:translateX(100%)}100%{transform:translateX(-100%)}}.promo-alert{background:#e03800;color:#fff}.promo-alert__body{height:2.5rem;overflow:hidden;-webkit-transition:height 0.25s linear;transition:height 0.25s linear}.promo-alert__content{overflow:hidden}.promo-alert__content-body{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.promo-alert__content-body a{color:#fff;line-height:inherit;min-width:initial;display:inline-block}.no-touch .promo-alert__content-body a:hover{color:#fff;text-decoration:underline}@media (max-width: 767px){.promo-alert__content-body{text-overflow:initial}.promo-alert__content-body a{-ms-animation:marquee 20s linear infinite 0s;-o-animation:marquee 20s linear infinite 0s;-webkit-animation:marquee 20s linear infinite 0s;-moz-animation:marquee 20s linear infinite 0s;animation:marquee 20s linear infinite 0s}}
.promo-alert__title{text-transform:uppercase;white-space:nowrap;padding:0 1.3rem 0 0;font-family:"ArgumentumMedItalic","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif;font-weight:normal;font-style:normal;font-size:1.4375rem;line-height:1.95rem}@media (max-width: 767px){.promo-alert__title{padding:0 0.65rem}}.promo-alert__title+.promo-alert__content{background:#ad2b00;height:100%;padding:0 1.3rem;position:relative;-ms-flex:2 1 auto;flex:2 1 auto;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-direction:row;flex-direction:row;-ms-flex-align:center;align-items:center}.no-flexbox .promo-alert__title+.promo-alert__content{display:table-cell;float:none}.no-flexbox .promo-alert__title+.promo-alert__content{display:table;width:100%}.promo-alert__title+.promo-alert__content:after{background-image:-webkit-linear-gradient(left, rgba(173,43,0,0),#ad2b00);background-image:linear-gradient(to right, rgba(173,43,0,0),#ad2b00);content:"";position:absolute;pointer-events:none;right:0;top:0;bottom:0;width:50px}@media (max-width: 767px){.promo-alert__title+.promo-alert__content{padding:0}.promo-alert__title+.promo-alert__content:after{background:none}}
.promo-alert__row:first-child{height:2.5rem;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-direction:row;flex-direction:row;-ms-flex-align:center;align-items:center}.no-flexbox .promo-alert__row:first-child{display:table;width:100%}.promo-alert__row+.promo-alert__row{background:#ad2b00;height:3.75rem;padding-top:0.325rem;font-size:1.4375rem;line-height:1.95rem;font-family:"ArgumentumUltraLight","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif;font-weight:normal;font-style:normal}@media (max-width: 767px){.promo-alert__row+.promo-alert__row{height:3.125rem}}
.promo-alert__close{font-size:1.4375rem;line-height:1.95rem;background:none;color:inherit;border:0;cursor:pointer;padding:0 0.65rem;height:100%}.no-touch .promo-alert__close:hover{background:#942500}.promo-alert--breaking-news .promo-alert__body{height:6.25rem}.promo-alert--breaking-news .promo-alert__title{font-size:1.8125rem;line-height:1.95rem;-ms-flex:1 1 auto;flex:1 1 auto}.no-flexbox .promo-alert--breaking-news .promo-alert__title{display:table-cell;float:none}@media (max-width: 767px){.promo-alert--breaking-news .promo-alert__body{height:5.625rem}.promo-alert--breaking-news .promo-alert__title{font-size:1.4375rem;line-height:1.95rem}}
.promo-alert--disabled .promo-alert__body{height:0}.promo-alert--disabled .promo-alert__content-body a{-ms-animation:none;-o-animation:none;-webkit-animation:none;-moz-animation:none;animation:none}.promo-banner{color:#fff;border-radius:8px;background-color:#000;background-size:cover;background-position:center center;overflow:hidden}@media (max-width: 767px){.promo-banner{margin:0.65rem 0.65rem 0}}
.promo-banner-wrap{display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-direction:row;flex-direction:row;-ms-flex-align:center;align-items:center;justify-content:center;padding:1.3rem;background:rgba(224,56,0,0.85);font-size:2.25rem;line-height:2.6rem}.no-flexbox .promo-banner-wrap{display:table;width:100%}.no-touch a:hover .promo-banner-wrap{background-color:rgba(224,56,0,0.95)}@media (max-width: 767px){.promo-banner-wrap{padding:0.65rem;font-size:1.125rem;line-height:1.3rem}}
.promo-banner__title{z-index:1;display:inline-block;font-family:-apple-system,".SFNSText-Regular",BlinkMacSystemFont,"San Francisco","Roboto","Segoe UI","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue","Helvetica","Lucida Grande",sans-serif;font-weight:bold;font-style:normal}.promo-banner__cta{font-size:1.5em}.media{display:block;position:relative}@media (max-width: 767px){.media{overflow:hidden}}.media>a{display:block;position:relative}.media>a:after{content:"";display:table;clear:both}.media-figure{position:relative;max-width:100%}.river .media-figure{width:40%}.river .media-figure img{width:100%}.media-figure .media-type{display:none}@media (min-width: 1024px){.media-figure .media-type{font-style:normal;position:absolute;bottom:4px;left:0;color:#fff;padding:0 6px;text-transform:uppercase;font-weight:500;z-index:2;text-shadow:rgba(0,0,0,0.5) 0 1px 1px;display:inline-block;font-size:0.75rem;line-height:1.3rem;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}}.media-figure .media-type.media-type--right{left:auto;right:0;white-space:nowrap;text-align:right}@media (min-width: 1024px){.river .media-figure--river{width:220px}}
@media (min-width: 1024px){.river .media-figure--large{width:320px}}
@media (min-width: 1024px){.river .media-video .media-figure--large{height:220px}}
@media (min-width: 1024px){.river .media-figure--search{width:180px}}
@media (min-width: 1024px){.river .media-figure--medium{width:150px}}
.river .media-figure--small{width:60px}.media-img{position:relative}.media-figure--has-rhythm{margin-bottom:0.65rem}.media-body{color:#4c4c4c;overflow:hidden}.media-body .media-body>:last-child{margin-bottom:0}.media-title{font-weight:normal;color:#262626;position:relative;font-size:1rem;line-height:1.3rem;-webkit-transition:color 0.25s;transition:color 0.25s}@media (min-width: 1280px){.media-title{font-size:1rem;line-height:1.3rem}}@media (min-width: 1280px){.media-title{font-size:1.125rem;line-height:1.3rem}}@media (min-width: 1024px){.media-title{margin-bottom:0.325rem}}
.media-sub-title{font-size:1rem;line-height:1.3rem;font-weight:500;font-family:-apple-system,".SFNSText-Regular",BlinkMacSystemFont,"San Francisco","Roboto","Segoe UI","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue","Helvetica","Lucida Grande",sans-serif;margin:0 0 0.325rem}.no-touch a:hover .media-title{color:#0a6cff}.media-superscript{color:#e03800;font-weight:800;text-transform:uppercase;font-size:0.8125rem;line-height:1.04rem}@media (max-width: 767px){.media-superscript{display:block;font-weight:normal;font-size:0.75rem;line-height:0.78rem}}
.media-superscript--sponsored{color:#0aabe6;font-weight:normal;font-style:italic;text-transform:none}.media-byline{color:#999}@media (min-width: 640px){.media-byline{margin-bottom:0.65rem}}.media-byline .system-list{display:inline-block}.media-byline .flag-icon{vertical-align:middle}.media-deck{margin-bottom:0}.media-meta{font-size:0.8125rem;line-height:1.56rem;color:#999}.media-date{color:#999;white-space:nowrap}.media-comments{position:relative;color:#999}.media-group{position:relative;padding-top:0.65rem;padding-bottom:0.65rem}@media (min-width: 1024px){.media-group{padding-top:1.3rem;padding-bottom:1.3rem}}.media-group .grid .media{padding:0 15px 1.3rem}.media-group .grid .media>a{display:block !important}.media-group .grid .media+.media{background:none}.media-group .grid .media-figure,.media-group .grid .media-body{width:100% !important;display:block !important;margin-bottom:0.65rem}.media-group .grid .media-title{font-size:1rem;line-height:1.3rem}.media-group .grid .media-body{padding:0;overflow:visible}.media-group__header{margin-bottom:1.3rem;font-weight:normal;font-size:1rem;line-height:1.3rem}@media (min-width: 1280px){.media-group__header{font-size:1rem;line-height:1.3rem}}.media-group__header a{color:#0054d1}@media (max-width: 767px){.river article.media,li.media{margin-bottom:0.65rem}}.media--sponsored{background-color:#fff;border:1px solid rgba(10,171,230,0.5);border-width:1px 0;padding:1.3rem;clear:both}@media (min-width: 1024px){.body-reviews-list .media--sponsored .media-figure{width:150px}}.pod-popular .media--sponsored{border:none}.pod-popular .media--sponsored .media-img:after,.pod-popular .media--sponsored .media-deck{display:none}.pod-popular .media--sponsored .media-figure,.pod-popular .media--sponsored .media-body{display:table-cell;vertical-align:middle}.media--sponsored.promo-strip__item{background-color:transparent;padding-top:0;padding-bottom:0}.media--sponsored.promo-strip__item .media-figure{margin-bottom:0}.media--sponsored.promo-strip__item .media-body{background-color:#fafafa;padding:0.65rem}.mapped-ad .media--sponsored{text-align:left;line-height:1.3}@media (min-width: 640px){.river .media+.media{background-image:url(https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/bg-border-light.png);background-position:top;background-repeat:repeat-x}}.media-date{font-size:0.8125rem;line-height:1.3rem}@media (min-width: 768px){.media-date{font-size:0.75rem;line-height:0.78rem}.media-date>span{font-family:"ArgumentumMed","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif;font-weight:normal;font-style:normal}}
.media-meta .media-type{color:#e03800;margin-right:5px}@media (min-width: 640px){.river .media,.forum-messages .media,.mapped-ad .media{padding-top:0.65rem;padding-bottom:0.65rem}.river>.media:first-of-type,.forum-messages>.media:first-of-type,.mapped-ad>.media:first-of-type{padding-top:0}.river .media--small,.river .pod-popular .media--sponsored,.pod-popular .river .media--sponsored,.forum-messages .media--small,.forum-messages .pod-popular .media--sponsored,.pod-popular .forum-messages .media--sponsored,.mapped-ad .media--small,.mapped-ad .pod-popular .media--sponsored,.pod-popular .mapped-ad .media--sponsored{padding-top:0.325rem;padding-bottom:0.325rem}.river .media--no-pad,.forum-messages .media--no-pad,.mapped-ad .media--no-pad{padding-top:0;padding-bottom:0}.river .media-figure,.forum-messages .media-figure,.mapped-ad .media-figure{float:left;margin-right:15px}.river .media--sponsored .media-figure,.forum-messages .media--sponsored .media-figure,.mapped-ad .media--sponsored .media-figure{width:220px}}@media (min-width: 1024px){.river .media,.forum-messages .media,.mapped-ad .media{padding-top:1.3rem;padding-bottom:1.3rem}}
@media (min-width: 640px){.forum-messages .media--sponsored{margin:0.65rem auto;max-width:600px}}
@media (max-width: 639px){.no-touch .editorial .media,.no-touch .forum-messages .media,.no-touch .mapped-ad .media{padding-bottom:0.325rem;padding-top:0.325rem}.touch .editorial .media,.touch .forum-messages .media,.touch .mapped-ad .media{padding:1px;background:#fff;box-shadow:rgba(0,0,0,0.15) 0 1px 3px;margin-bottom:0.65rem}.editorial .media:not(.media-game),.forum-messages .media:not(.media-game),.mapped-ad .media:not(.media-game){display:table;width:100%}.editorial .media:not(.media-game)>.media-figure,.forum-messages .media:not(.media-game)>.media-figure,.mapped-ad .media:not(.media-game)>.media-figure{display:table-cell;vertical-align:middle;padding-top:0.15em}.editorial .media:not(.media-game)>.media-body,.forum-messages .media:not(.media-game)>.media-body,.mapped-ad .media:not(.media-game)>.media-body{display:table-cell;vertical-align:middle;padding-top:0.15em}.editorial .media:not(.media-game)>a,.forum-messages .media:not(.media-game)>a,.mapped-ad .media:not(.media-game)>a{display:table}.editorial .media:not(.media-game)>a .media-figure,.forum-messages .media:not(.media-game)>a .media-figure,.mapped-ad .media:not(.media-game)>a .media-figure{display:table-cell;vertical-align:middle;padding-top:0.15em}.editorial .media:not(.media-game)>a .media-body,.forum-messages .media:not(.media-game)>a .media-body,.mapped-ad .media:not(.media-game)>a .media-body{display:table-cell;vertical-align:middle;padding-top:0.15em}.editorial .media--sponsored,.forum-messages .media--sponsored,.mapped-ad .media--sponsored{margin:0.65rem 0}.editorial .media-game .media-figure,.forum-messages .media-game .media-figure,.mapped-ad .media-game .media-figure{float:left}.touch .editorial .media-top-games,.touch .forum-messages .media-top-games,.touch .mapped-ad .media-top-games{padding:0}.no-touch .editorial .media+.media,.no-touch .forum-messages .media+.media,.no-touch .mapped-ad .media+.media{background-image:url(https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/bg-border-light.png);background-position:top;background-repeat:repeat-x}.editorial .media-figure,.forum-messages .media-figure,.mapped-ad .media-figure{width:40%;padding-top:0 !important}.editorial .media-body,.forum-messages .media-body,.mapped-ad .media-body{padding:3px 0 3px 10px}.editorial .media-body--top-games,.forum-messages .media-body--top-games,.mapped-ad .media-body--top-games{padding:0}.editorial .media-deck,.forum-messages .media-deck,.mapped-ad .media-deck{display:none}}
@media (max-width: 639px){.pod-river--infinite .loading{margin:1.3rem 0}.pod-river--infinite .media-ad-wrapper{margin-bottom:0.65rem}.pod-river--infinite .media-ad-wrapper .ad-wrap{padding:0}}@media (max-width: 639px){.media-top-games{text-align:center}.media-title--top-games{padding:0.65rem 0 0.4875rem;text-transform:uppercase;text-align:center;border-top:1px solid #e03800;display:inline-block;line-height:1}.media-body--top-games{padding:0}.media-body--top-games>li{display:inline-block;width:20%}.media-body--top-games>li+li{padding-left:1px}.media-body--top-games a{display:inline-block;position:relative}.media-body--top-games a:after{content:" ";display:inline-block;position:absolute;top:0;bottom:0;left:0;right:0;box-shadow:inset 0 0 5px rgba(0,0,0,0.5)}.media-footer--top-games{font-size:0.625rem;line-height:1.56rem;padding:0.325rem;text-align:right}.media-footer--top-games .game-gs50__logo{display:inline-block;vertical-align:middle}}@media (max-width: 639px){.media-ad-wrapper{margin-left:-15px;margin-right:-15px}}.pod{position:relative;margin-bottom:1.3rem}.pod-header{display:block;margin-bottom:0.65rem;position:relative}.pod-header:after{content:"";display:table;clear:both}@media (min-width: 1024px){.pod-header.has-feed-group{padding-right:50px}}
.pod-title{display:inline-block}.pod-header__grid{position:absolute;top:0;right:0;line-height:40px}.pod-header__grid a{color:#666}.pod-header__grid a.on,.pod-header__grid a:hover{color:#0054d1}.pod-header__grid+.pod-header__grid{right:24px}.pod-section{padding:0.65rem 0}.pod-section__header{text-transform:uppercase;margin:0.65rem 0;font-family:-apple-system,".SFNSText-Regular",BlinkMacSystemFont,"San Francisco","Roboto","Segoe UI","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue","Helvetica","Lucida Grande",sans-serif;clear:both;font-weight:800;font-size:0.8125rem;line-height:1.3rem}.pod-section__header>span{color:#e03800}.pod-section__header .icon{margin-right:5px}.pod-body{overflow:hidden}.pod-body.pod-body--pad{padding:0.65rem}.pod-footer>a,.pod-footer span{display:block}.pod-footer>a{padding-top:0.325rem;margin-top:0.325rem}.pod-embedIframe{line-height:0}.pod-title,.pod-title>h4,.pod-title>h1{text-shadow:rgba(255,255,255,0.8) 0 1px 0;color:#000}.pod-header{text-transform:uppercase;font-family:"ArgumentumBlack","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif;font-weight:normal;font-style:normal;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-direction:row;flex-direction:row;align-items:center;border-left:5px solid #e03800}.no-flexbox .pod-header{display:table;width:100%}.pod-header .pod-div{background-image:url(https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/bg-border-light.png);background-position:bottom;background-repeat:repeat-x;background-position:center left}.pod-header .pod-header__item:not(.no-flex){-ms-flex:1 1 auto;flex:1 1 auto}.no-flexbox .pod-header .pod-header__item:not(.no-flex){display:table-cell;float:none}.pod-header .pod-header__filters--tabs:not(.no-flex),.pod-header .pod-header__filters--select:not(.no-flex){display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-direction:row;flex-direction:row;-webkit-justify-content:flex-end;justify-content:flex-end;align-items:center}.no-flexbox .pod-header .pod-header__filters--tabs:not(.no-flex),.no-flexbox .pod-header .pod-header__filters--select:not(.no-flex){display:table;width:100%}.pod-header .pod-header__filters--tabs:not(.no-flex)>a,.pod-header .pod-header__filters--tabs:not(.no-flex)>select,.pod-header .pod-header__filters--tabs:not(.no-flex)>li,.pod-header .pod-header__filters--select:not(.no-flex)>a,.pod-header .pod-header__filters--select:not(.no-flex)>select,.pod-header .pod-header__filters--select:not(.no-flex)>li{-ms-flex:1 1 auto;flex:1 1 auto;margin:0 0 0 10px}.no-flexbox .pod-header .pod-header__filters--tabs:not(.no-flex)>a,.no-flexbox .pod-header .pod-header__filters--tabs:not(.no-flex)>select,.no-flexbox .pod-header .pod-header__filters--tabs:not(.no-flex)>li,.no-flexbox .pod-header .pod-header__filters--select:not(.no-flex)>a,.no-flexbox .pod-header .pod-header__filters--select:not(.no-flex)>select,.no-flexbox .pod-header .pod-header__filters--select:not(.no-flex)>li{display:table-cell;float:none}.pod-header .pod-title{display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-direction:row;flex-direction:row}.no-flexbox .pod-header .pod-title{display:table;width:100%}.pod-header .pod-title>h1,.pod-header .pod-title>h4,.pod-header .pod-title span{-ms-flex:1 1 auto;flex:1 1 auto}.no-flexbox .pod-header .pod-title>h1,.no-flexbox .pod-header .pod-title>h4,.no-flexbox .pod-header .pod-title span{display:table-cell;float:none}.pod-header .pod-title .pod-div{-ms-flex:100 1 auto;flex:100 1 auto}.no-flexbox .pod-header .pod-title .pod-div{display:table-cell;float:none}.pod-header__show-more{padding:0.65rem 0 0.65rem 15px}@media (max-width: 767px){.pod-header__show-more{display:none}}
.pod-section__header{font-family:"ArgumentumBlack","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif;font-weight:normal;font-style:normal}.pod-header--mod{border-left:none;margin-bottom:0}.pod-header--mod .pod-title{padding:0}.pod-header--mod .pod-title:before{content:"";width:50px;height:5px;display:block;position:absolute;left:0;top:0;background:#e03800}.pod-header--mod .pod-title>h4{padding-top:1.3rem}.pod-header--mod .pod-div{display:none}.pod-title,.pod-title>h4,.pod-title>h1{font-family:"ArgumentumBold","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif;font-weight:normal;font-style:normal;padding:0 0 0 15px;margin:0;position:relative;color:#333;float:none;font-size:1rem;line-height:1.3rem}@media (min-width: 1280px){.pod-title,.pod-title>h4,.pod-title>h1{font-size:1rem;line-height:1.3rem}}@media (min-width: 1280px){.pod-title,.pod-title>h4,.pod-title>h1{font-size:1.125rem;line-height:1.3rem}}.pod-title>h4,.pod-title>h1,.pod-title>h4>h4,.pod-title>h4>h1,.pod-title>h1>h4,.pod-title>h1>h1{padding:0.65rem 15px 0.65rem 0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.pod-header__filters--js{display:none}.js .pod-header__filters--js{display:block}.pod-header--tabs{border:none}.pod-header--tabs .pod-header__filters--tabs>a{border-top:5px solid transparent;box-shadow:inset 0 1px 0 0 rgba(255,255,255,0.4),0 -1px 0 0 rgba(0,0,0,0.125);border-color:rgba(0,0,0,0.09);margin:0 !important;background:transparent;border-radius:0;padding:12px 0 3px;position:relative;width:50%;font-family:"ArgumentumBold","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif;font-weight:normal;font-style:normal;font-size:1.125rem;line-height:1.3rem;-webkit-transition:all 250ms;transition:all 250ms;text-shadow:rgba(255,255,255,0.5) 0 1px 0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media (min-width: 1280px){.pod-header--tabs .pod-header__filters--tabs>a{font-size:1.4375rem;line-height:1.95rem}}.pod-header--tabs .pod-header__filters--tabs>a:after{display:inline-block;vertical-align:middle;content:"";height:0;width:0;vertical-align:middle;border-top:6px solid #e03800;border-left:5px solid transparent;border-right:5px solid transparent;margin-left:0}.pod-header--tabs .pod-header__filters--tabs>a:after{-webkit-transition:all 250ms;transition:all 250ms;position:absolute;top:0;left:50%;margin-left:-3px;opacity:0;-webkit-transform:translateY(-6px);transform:translateY(-6px)}.pod-header--tabs .pod-header__filters--tabs .on,.pod-header--tabs .pod-header__filters--tabs.active>a,.no-touch .pod-header--tabs .pod-header__filters--tabs a:hover{border-top-color:#e03800;color:#e03800}.pod-header--tabs .pod-header__filters--tabs .on:after,.pod-header--tabs .pod-header__filters--tabs.active>a:after,.no-touch .pod-header--tabs .pod-header__filters--tabs a:hover:after{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}.news-hdr{margin:auto;margin-bottom:1.3rem}.news-hdr:after{content:"";display:table;clear:both}.news-title{margin-bottom:0.65rem}.news-section>h4{color:#666;float:left;font-size:1rem;line-height:1.3rem}.news-section .comments{float:right}.news-byline{font-size:1rem;line-height:1.3rem;margin-bottom:0.65rem}.news-deck{margin-bottom:0.65rem;font-size:1.125rem;line-height:1.3rem}@media (min-width: 1280px){.news-deck{font-size:1.4375rem;line-height:1.95rem}}
.news-related-cta{margin:0 auto 1rem;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none}.news-related-cta>a{display:flex;justify-content:center;align-items:center;border:1px solid #e03800;border-radius:20px;background:#e03800;height:30px;padding:1rem 0.5rem;color:#fff;font-family:"ArgumentumMed","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif;font-weight:normal}.call-to-action-under{margin-bottom:3rem}.news-related-cta-text{max-width:300px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}[data-embed-type="pinbox"]{margin-bottom:1.3rem;padding-left:1.2rem;padding-right:1.2rem;border-left:2px solid #0054d1;border-right:2px solid #0054d1}[data-embed-type="pinbox"] .associated-header{font-style:italic}[data-embed-type="pinbox"] ul{margin-left:0;margin-bottom:0;list-style:none}p.author{font-style:italic;color:#666;font-size:0.8125rem;line-height:1.3rem}.news-related{font-size:1rem;line-height:1.3rem;margin-bottom:0.65rem;clear:left}.news-related dd{margin-left:0.65rem}.news-related dt{font-weight:bold}.news-related dt,.news-related dd{display:inline}.news-related hr{margin:0.5rem 0 0.5rem 0}.news-related .news-related-object{height:5rem}.news-related .news-related-object p{line-height:1.3rem;margin-bottom:0}.news-related .news-related-object a{color:#262626}.news-deck{font-family:"ArgumentumUltraLight","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif;font-weight:normal;font-style:normal}@media (max-width: 1279px){.news-deck{line-height:1.43rem}}
.news-byline{font-family:"ArgumentumLight","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif;font-weight:normal;font-style:normal}.news-title{font-family:"ArgumentumBlack","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif;font-weight:normal;font-style:normal}.news-section{background-image:url(https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/bg-border-light.png);background-position:bottom;background-repeat:repeat-x;display:block;color:#666;background-position:center center;margin-bottom:0.65rem}.news-section .breadcrumbs,.news-section a{background-color:#fff;font-family:"ArgumentumMed","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif;font-weight:normal;font-style:normal}.news-section .breadcrumbs{display:none}@media (min-width: 1024px){.news-section .breadcrumbs{float:left;padding-right:10px;margin:0;display:inline-block}}.news-section>a{float:right;margin-left:10px;padding-left:10px;display:inline-block}.news-section>a i:before{font-size:14px}.news-section__no-border{background-image:none}.article{position:relative;margin-bottom:2.6rem}.article--two-column .news-hdr{background-image:url(https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/bg-border-light.png);background-position:bottom;background-repeat:repeat-x}.article--one-column{margin:0 auto}@media (min-width: 1024px){.article--one-column{width:970px}}.article--one-column.article--feature .news-deck,.article--one-column.article--feature .news-byline{text-align:center}.article--one-column.article--feature .news-title{padding-bottom:15px}.article-related-video .av-player-container .av-video-player{max-width:none}@media (max-width: 767px){.article-related-video .av-player-container .av-video-player{margin-left:-15px;margin-right:-15px}}.article-related-video .video-caption{color:gray;margin:0}.article-related-video .video-caption em{font-family:-apple-system,".SFNSText-Regular",BlinkMacSystemFont,"San Francisco","Roboto","Segoe UI","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue","Helvetica","Lucida Grande",sans-serif;font-weight:bold;font-style:normal;color:#262626}@media (min-width: 1280px){.seamless-article .article--one-column{width:1070px}}
@media (min-width: 1024px){.content-body--buffer .article-body,.content-body--buffer .newsletter-subscribe{margin-left:100px;margin-right:100px}}
@media (min-width: 1024px){.content-body--bufferAd>.article-body,.content-body--bufferAd>.article-related-video,.content-body--bufferAd>.newsletter-subscribe{margin-right:360px}}
@media (min-width: 768px){.content-body--bufferSocial .newsletter-subscribe{display:inline-block}}@media (min-width: 1024px){.content-body--bufferSocial .article-body,.content-body--bufferSocial .newsletter-subscribe{margin-left:100px;display:block}}
.content-body .newsletter-subscribe .fb-like{margin-left:15px}.content-body .newsletter-subscribe iframe{max-width:initial}@media (max-width: 1023px){.one-column #default-content{padding-left:15px;padding-right:15px}}@media (max-width: 639px){.one-column #default-content .article-ad-wrapper{margin-left:-15px;margin-right:-15px}}
@media (max-width: 767px){.news-single-view-body{padding-top:0}.news-single-view-body #default-content{padding:0}}.article-comments{font-size:0.8125rem;line-height:1.3rem;background-color:#f2f2f2}.article-comments span.text-bold{color:#262626}@media (max-width: 767px){.has-pad--max{padding:1.3rem !important}}@media (min-width: 1280px){.t-container{border-radius:6px;background:#fff}}
.t-container+.t-container{margin-top:1.3rem}@media (max-width: 767px){.t-container+.t-container{margin-top:2.6rem}}
.t-container .content-body--buffer .typography-format [data-size="large"]:first-child{clear:none;margin-left:0;margin-right:0;width:auto !important;max-width:100%}.t-container .YAD--module{background:transparent;box-shadow:none}.t-container div[data-twttr-id]{margin-bottom:1.3rem}.seamless-debug{position:fixed;bottom:0;left:0;overflow-x:scroll;overflow-y:hidden;width:100%;z-index:5000060}.seamless-debug .media-img{border-radius:4px;margin-right:10px;width:70px;height:40px;overflow:hidden}.seamless-debug .pod-recirc__content{display:table;width:100%;table-layout:fixed}.seamless-debug .media{background-color:#fff;box-shadow:0 -2px 6px rgba(0,0,0,0.1);border:1px solid #d9d9d9;border-width:1px 0 0;display:table-cell;float:none;padding:0.65rem 1.3rem 1.3rem;position:relative;bottom:-10px;vertical-align:middle;width:300px}.seamless-debug .media+.media{border-width:1px 0 0 1px}.seamless-debug .media.media--is-current-seamless{border-width:0 1px;border-top:3px solid #e03800;bottom:0}.seamless-debug .media--is-current-seamless+.media{border-width:1px 0 0 0}.seamless-debug .media .type-base{overflow:hidden;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical}.seamless-debug .controls{box-shadow:0 0 4px rgba(0,0,0,0.2);display:none;margin-top:-26px;position:absolute;top:50%;left:10px;z-index:2}.seamless-debug .controls--footer{left:auto;right:10px}.seamless-debug:hover .controls{display:block}.seamless-recirc-noscroller:hover .controls{display:none}.seamless--aside-follow{clear:left}.seamless--aside-follow hr{width:65px;margin:6px 0 8px}.seamless--aside-follow .media-figure{width:65px;text-align:center;margin:8px 0 6px 0}.js-seamless-content{z-index:1}#infographic figure,#infographic p{margin-bottom:0}.content-body--buffer .typography-format [data-size="large"],.content-body--buffer .typography-format [data-embed-type="video"]{width:970px !important;max-width:970px;margin-left:-100px;margin-right:-100px}@media (max-width: 1023px){.content-body--buffer .typography-format [data-size="large"],.content-body--buffer .typography-format [data-embed-type="video"]{max-width:100%;margin-left:0;margin-right:0}}@media (min-width: 768px){.content-body--buffer .typography-format [data-size="medium"],.content-body--buffer .typography-format blockquote[data-size="large"][data-align="right"],.content-body--buffer .typography-format blockquote[data-size="large"][data-align="left"]{max-width:54.28%}}@media (min-width: 1024px){.content-body--buffer .typography-format [data-size="medium"],.content-body--buffer .typography-format blockquote[data-size="large"][data-align="right"],.content-body--buffer .typography-format blockquote[data-size="large"][data-align="left"]{max-width:62.3%}}@media (min-width: 768px){.content-body--buffer .typography-format [data-size="small"]{max-width:31.42%}}@media (min-width: 1024px){.content-body--buffer .typography-format [data-size="small"]{max-width:41.6%}}.content-body--buffer .typography-format [data-align="right"]{margin-right:-100px}@media (max-width: 767px){.content-body--buffer .typography-format [data-align="right"]{margin-right:0}}.content-body--buffer .typography-format [data-align="left"]{margin-left:-100px}@media (max-width: 767px){.content-body--buffer .typography-format [data-align="left"]{margin-left:0}}@media (min-width: 768px){.typography-format blockquote[data-size="large"][data-align="right"]{margin-left:30px}}.typography-format blockquote[data-size="large"][data-align="left"]{margin-right:30px}.content-footer__user-actions .btn-upvote{margin-right:1.3rem}@media (max-width: 639px){.content-footer__user-actions .btn-upvote{margin-right:0.325rem;margin-bottom:0.325rem}}
.seamless-content-divider{font-size:20px;padding:2.6rem;text-align:center;display:flex;flex-direction:row;justify-content:center}.seamless-content-divider:before,.seamless-content-divider:after{margin-left:0.65rem;margin-right:0.65rem;flex-grow:1;height:1px;content:"\a0";background-color:#ddd;position:relative;top:0.5em}.binge-head{position:sticky;background-color:#fff;z-index:202;box-shadow:0px 0px 2px 0px gray;padding-top:4px}.has-promo-alert--live-now .binge-head{top:5.625rem}.has-promo-alert--breaking-news .binge-head{top:8.75rem}.binge-head ul{overflow-x:scroll;-webkit-overflow-scrolling:touch}.binge-head .binge-header{font-size:13px;color:#000;font-weight:600;padding-top:10px;margin:0 0 0 10px}.binge-head .binge-item{margin:10px 7px;padding-right:14px;border-right:1px solid #bfbfbf;font-size:14px}.binge-head .binge-item:last-child{border-right:0}.binge-head .binge-item .viewed{display:none}.binge-head .binge-item a{width:70vw}.binge-head .binge-item img{height:80px;width:80px;margin:0 10px 0 0}.binge-head .binge-item span{display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis}.binge-head .binge-item .text{color:#000;height:9vh;line-height:1.2;padding-top:6px}.binge-head .binge-item .date{font-size:10px;color:gray}.binge-head .binge-item--read{opacity:0.6}.binge-head .binge-item--read .viewed{display:inline;color:#0aabe6;margin-left:3px}.color-50{color:gray}@font-face{font-family:"ArgumentumLightItalic";src:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-LightItalic-webfont.eot);src:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-LightItalic-webfont.eot?#iefix) format("embedded-opentype"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-LightItalic-webfont.woff2) format("woff2"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-LightItalic-webfont.woff) format("woff"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-LightItalic-webfont.ttf) format("truetype"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-LightItalic-webfont.svg#argumentumlight_italic) format("svg");font-weight:"normal";font-style:"normal"}@font-face{font-family:"ArgumentumLight";src:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-Light-webfont.eot);src:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-Light-webfont.eot?#iefix) format("embedded-opentype"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-Light-webfont.woff2) format("woff2"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-Light-webfont.woff) format("woff"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-Light-webfont.ttf) format("truetype"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-Light-webfont.svg#argumentumlight) format("svg");font-weight:"normal";font-style:"normal"}@font-face{font-family:"ArgumentumUltraLightItalic";src:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-UltraLightItalic-webfont.eot);src:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-UltraLightItalic-webfont.eot?#iefix) format("embedded-opentype"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-UltraLightItalic-webfont.woff2) format("woff2"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-UltraLightItalic-webfont.woff) format("woff"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-UltraLightItalic-webfont.ttf) format("truetype"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-UltraLightItalic-webfont.svg#argumentumultra_light_italic) format("svg");font-weight:"normal";font-style:"normal"}@font-face{font-family:"ArgumentumUltraLight";src:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-UltraLight-webfont.eot);src:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-UltraLight-webfont.eot?#iefix) format("embedded-opentype"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-UltraLight-webfont.woff2) format("woff2"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-UltraLight-webfont.woff) format("woff"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-UltraLight-webfont.ttf) format("truetype"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-UltraLight-webfont.svg#argumentumultra_light) format("svg");font-weight:"normal";font-style:"normal"}@font-face{font-family:"ArgumentumBlackItalic";src:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-BLackItalic-webfont.eot);src:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-BLackItalic-webfont.eot?#iefix) format("embedded-opentype"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-BLackItalic-webfont.woff2) format("woff2"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-BLackItalic-webfont.woff) format("woff"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-BLackItalic-webfont.ttf) format("truetype"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-BLackItalic-webfont.svg#argumentumblack_italic) format("svg");font-weight:"normal";font-style:"normal"}@font-face{font-family:"ArgumentumBlack";src:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-BLack-webfont.eot);src:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-BLack-webfont.eot?#iefix) format("embedded-opentype"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-BLack-webfont.woff2) format("woff2"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-BLack-webfont.woff) format("woff"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-BLack-webfont.ttf) format("truetype"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-BLack-webfont.svg#argumentumblack) format("svg");font-weight:"normal";font-style:"normal"}@font-face{font-family:"ArgumentumBoldItalic";src:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-BoldItalic-webfont.eot);src:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-BoldItalic-webfont.eot?#iefix) format("embedded-opentype"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-BoldItalic-webfont.woff2) format("woff2"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-BoldItalic-webfont.woff) format("woff"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-BoldItalic-webfont.ttf) format("truetype"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-BoldItalic-webfont.svg#argumentumbold_italic) format("svg");font-weight:"normal";font-style:"normal"}@font-face{font-family:"ArgumentumBold";src:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-Bold-webfont.eot);src:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-Bold-webfont.eot?#iefix) format("embedded-opentype"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-Bold-webfont.woff2) format("woff2"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-Bold-webfont.woff) format("woff"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-Bold-webfont.ttf) format("truetype"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-Bold-webfont.svg#argumentumbold) format("svg");font-weight:"normal";font-style:"normal"}@font-face{font-family:"ArgumentumMedItalic";src:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-MediumItalic-webfont.eot);src:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-MediumItalic-webfont.eot?#iefix) format("embedded-opentype"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-MediumItalic-webfont.woff2) format("woff2"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-MediumItalic-webfont.woff) format("woff"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-MediumItalic-webfont.ttf) format("truetype"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-MediumItalic-webfont.svg#argumentummedium_italic) format("svg");font-weight:"normal";font-style:"normal"}@font-face{font-family:"ArgumentumMed";src:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-Medium-webfont.eot);src:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-Medium-webfont.eot?#iefix) format("embedded-opentype"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-Medium-webfont.woff2) format("woff2"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-Medium-webfont.woff) format("woff"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-Medium-webfont.ttf) format("truetype"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-Medium-webfont.svg#argumentummedium) format("svg");font-weight:"normal";font-style:"normal"}@font-face{font-family:"MuchoSansBold";src:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_bold-webfont.eot);src:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_bold-webfont.eot?#iefix) format("embedded-opentype"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_bold-webfont.woff2) format("woff2"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_bold-webfont.woff) format("woff"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_bold-webfont.ttf) format("truetype"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_bold-webfont.svg#mucho_sansbold) format("svg");font-weight:"bold";font-style:"normal"}@font-face{font-family:"MuchoSansBoldItalic";src:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_bolditalic-webfont.eot);src:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_bolditalic-webfont.eot?#iefix) format("embedded-opentype"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_bolditalic-webfont.woff2) format("woff2"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_bolditalic-webfont.woff) format("woff"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_bolditalic-webfont.ttf) format("truetype"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_bolditalic-webfont.svg#mucho_sansbold_italic) format("svg");font-weight:"bold";font-style:"italic"}@font-face{font-family:"MuchoSansItalic";src:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_italic-webfont.eot);src:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_italic-webfont.eot?#iefix) format("embedded-opentype"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_italic-webfont.woff2) format("woff2"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_italic-webfont.woff) format("woff"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_italic-webfont.ttf) format("truetype"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_italic-webfont.svg#mucho_sansitalic) format("svg");font-weight:"normal";font-style:"italic"}@font-face{font-family:"MuchoSansReg";src:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_regular-webfont.eot);src:url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_regular-webfont.eot?#iefix) format("embedded-opentype"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_regular-webfont.woff2) format("woff2"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_regular-webfont.woff) format("woff"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_regular-webfont.ttf) format("truetype"),url(https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_regular-webfont.svg#mucho_sansregular) format("svg");font-weight:"normal";font-style:"normal"}b,strong{font-family:-apple-system,".SFNSText-Regular",BlinkMacSystemFont,"San Francisco","Roboto","Segoe UI","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue","Helvetica","Lucida Grande",sans-serif;font-weight:bold;font-style:normal}b>i,b>em,strong>i,strong>em{font-weight:bold;font-style:italic}i,em{font-family:-apple-system,".SFNSText-Regular",BlinkMacSystemFont,"San Francisco","Roboto","Segoe UI","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue","Helvetica","Lucida Grande",sans-serif;font-weight:normal;font-style:italic}i>b,i>strong,em>b,em>strong{font-weight:bold;font-style:italic}.article .typography-format blockquote{text-align:left;position:relative;padding:0 0 0 30px;border:none;background:transparent;font-family:"ArgumentumMedItalic","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif;font-weight:normal;font-style:normal}.article .typography-format blockquote:before{content:"\275D";position:absolute;left:-8px;top:-4px;color:#e03800;font-size:46px;line-height:46px;font-family:"ArgumentumBold","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif;font-weight:normal;font-style:normal}.article .typography-format blockquote cite{font-family:"ArgumentumLightItalic","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif;font-weight:normal;font-style:normal}.article .typography-format blockquote p{font-size:1.5rem;line-height:1.95rem}.typography-format figcaption{font-family:"ArgumentumLightItalic","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif;font-weight:normal;font-style:normal;font-size:0.875rem;line-height:1.3rem}.typography-format--large{font-size:1.125rem;line-height:1.3rem;line-height:1.5}@media only screen and (max-width: 1209px){.pod-title>h4,.pod-title>h4>h4{font-size:15px;padding-right:5px}}h4{font-size:1.28571rem;line-height:1.62857rem}@media only screen and (min-width: 1210px){h4{font-size:1.28571rem;line-height:1.72857rem}}h1,h2,h3,h4,h5,h6{font-family:"ArgumentumBold","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif;font-weight:normal;font-style:normal}.type-headline{font-family:"ArgumentumBold","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif;font-weight:normal;font-style:normal}@media (max-width: 767px){.type-headline{font-family:"ArgumentumLight","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif;font-weight:normal;font-style:normal}}
.type-subheader,.t-container .news-deck{font-size:1.4375rem;line-height:1.95rem;font-family:"ArgumentumUltraLight","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif;font-weight:normal;font-style:normal}@media (min-width: 1280px){.type-subheader,.t-container .news-deck{font-size:1.8125rem;line-height:1.95rem}}@media (max-width: 767px){.type-subheader,.t-container .news-deck{font-family:"ArgumentumLight","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif;font-weight:normal;font-style:normal}}
.type--header-two-col{border-bottom:1px solid rgba(38,38,38,0.25);margin-bottom:1.3rem;padding-bottom:0.65rem}.text-small{font-size:0.875rem}.text-xsmall{font-size:0.625rem}.border-bottom--thin--60{border-bottom:solid 1px #999}.game--top-games{counter-reset:counter-topgames;position:relative}.game--top-games .game-background{background:#2b2d31 center center;background-size:cover;box-shadow:rgba(255,255,255,0.25) 0 1px 0 inset,rgba(0,0,0,0.4) 0 -1px 0 inset;margin-left:20px;position:relative}.game--top-games .game-background:before{background:#fff;color:#262626;content:counter(counter-topgames);counter-increment:counter-topgames;display:block;font-size:24px;font-family:"ArgumentumBold","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif;font-weight:normal;font-style:normal;line-height:20px;text-align:center;position:absolute;left:-26px;top:50%;margin-top:-10px;width:20px}.game--top-games .game-background.game-background--promoted{margin-left:0}.game--top-games .game-background.game-background--promoted:before{content:none}.game--top-games .game-item{background-color:rgba(0,0,0,0.65);background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAANkAAAAKCAQAAACTHTN8AAAAbElEQVRYw+2R0QrAIAhF3f7/L/cd2ra2QsPocQzOCbsqocTd5JBSj7xaJnV2njd6hdXMnFqo79CemXszdtVNinPaXZJK+55xa+uudfXPmHuVSRYju+eaVZVd4GdgGZYBlgGWYRlgGWAZlsG3nMPhqxXZYOE8AAAAAElFTkSuQmCC);background-position:left top;background-repeat:repeat-y;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.game--top-games .game-info{display:block;margin:0;padding:20px 15px}.no-touch .game--top-games .game-info:hover .game-title{color:#bfbfbf}.game--top-games .game-title{font:500 19px/20px -apple-system,".SFNSText-Regular",BlinkMacSystemFont,"San Francisco","Roboto","Segoe UI","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue","Helvetica","Lucida Grande",sans-serif;color:#fff;margin:0;padding-right:5px;text-shadow:#000 0 1px 0}.game--top-games .game-meta{color:#fff;margin-bottom:0;opacity:0.75}.game--top-games .game-meta--date{font-size:0.8125rem;line-height:1.3rem;font-family:"ArgumentumMed","Franklin Gothic Medium","Arial Narrow Bold","Helvetica Neue",Arial,sans-serif;font-weight:normal;font-style:normal}.is-nav-fixed{position:absolute;width:100%;top:0;left:0;z-index:5000164;-webkit-transform:translateZ(0);transform:translateZ(0)}.is-nav-fixed.has-scrolled{position:fixed}.is-sticky{position:fixed;top:0}.pull-right{float:right}.pull-left{float:left}.clear{clear:both}.overflow--hidden{overflow:hidden}.has-pad{padding:15px}.has-pad--max{padding:2.6rem}.has-pad--vert{padding-top:1.3rem;padding-bottom:1.3rem}.has-pad--vert--inc{padding-top:0.325rem;padding-bottom:0.325rem}.has-pad--vert--min{padding-top:0.65rem;padding-bottom:0.65rem}.has-pad--vert--max{padding-top:2.6rem;padding-bottom:2.6rem}.has-pad--vert--ultra{padding-top:2.6rem;padding-bottom:2.6rem}@media (min-width: 1024px){.has-pad--vert--ultra{padding-top:2.5rem;padding-bottom:2.5rem}}
.has-pad--top{padding-top:1.3rem}.has-pad--bottom{padding-bottom:1.3rem}.has-pad--bottom--resp{padding-bottom:1.3rem}@media (min-width: 1024px){.has-pad--bottom--resp{padding-bottom:2.6rem}}
.no-pad{padding:0}.mapped-ad.no-pad{padding:0}.has-rhythm{margin-bottom:1.3rem}.has-rhythm--resp{margin-bottom:1.3rem}@media (min-width: 1024px){.has-rhythm--resp{margin-bottom:2.6rem}}
.has-rhythm--vert{margin-top:1.3rem;margin-bottom:1.3rem}.has-rhythm--vert-max{margin-top:2.6rem;margin-bottom:2.6rem}.has-rhythm--vert-top{margin-top:1.3rem}.has-rhythm--inc{margin-bottom:0.325rem}.has-rhythm--min{margin-bottom:0.65rem}.has-rhythm--max{margin-bottom:2.6rem}.no-rhythm{margin-bottom:0}.hide{display:none !important}.hide.in{display:block !important}.show{display:block !important}@media (max-width: 639px){.hide-mobile{display:none !important}}
.invisible{visibility:hidden}.visible{visibility:visible;opacity:1}.ellipsis{white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis}.ellipseborder-bottom{background-image:url(https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/bg-border-light.png);background-position:bottom;background-repeat:repeat-x}.right,[data-align="right"]{float:right;clear:right;margin-bottom:1.3rem}@media (min-width: 640px){.right,[data-align="right"]{margin-left:30px}}
.left,[data-align="left"]{float:left;clear:left;margin-bottom:1.3rem}@media (min-width: 640px){.left,[data-align="left"]{margin-right:30px}}
.center,[data-align="center"]{clear:both;display:block;margin-right:auto;margin-left:auto;margin-bottom:1.3rem;text-align:center}@media (max-width: 639px){[data-align="right"],[data-align="left"]{max-width:100% !important;width:100% !important;float:none;clear:both}}
[data-size="large"]{max-width:100%}@media (min-width: 640px){[data-size="medium"]{max-width:64%}}
@media (min-width: 640px){[data-size="small"]{max-width:42.67%}}
.av-player-container{display:none}
</style>

        <script type="text/javascript">
      (function () {
        function loadCSS(e){var t=window.document.createElement("link"),i=window.document.getElementsByTagName("head")[0];t.rel="stylesheet",t.href=e,t.setAttribute("id","skin-color-non-critical"),t.media="only x",i.appendChild(t),setTimeout(function(){t.media="all"},0)}
        loadCSS('https://gamespot1.cbsistatic.com/vf600cc3254b359450e82176eecb84e6a/bundles/gamespotsite/css/gamespot_white.css');
      })();
    </script>
        <noscript><!--[if !IE]> --><link id="skin-color" rel="stylesheet" href="https://gamespot1.cbsistatic.com/vf600cc3254b359450e82176eecb84e6a/bundles/gamespotsite/css/gamespot_white.css"><!-- <![endif]--><!--[if IE]><link id="skin-color-0" rel="stylesheet" href="https://gamespot1.cbsistatic.com/vf600cc3254b359450e82176eecb84e6a/bundles/gamespotsite/css/gamespot_white_split1.css"><link id="skin-color-1" rel="stylesheet" href="https://gamespot1.cbsistatic.com/vf600cc3254b359450e82176eecb84e6a/bundles/gamespotsite/css/gamespot_white_split2.css"><link id="skin-color-2" rel="stylesheet" href="https://gamespot1.cbsistatic.com/vf600cc3254b359450e82176eecb84e6a/bundles/gamespotsite/css/gamespot_white_split3.css"><![endif]--></noscript>
  

  
                  <style>
/*
Added By: Laura
Description: logo size too small
Remove: GMSCORE-419
*/
.symbol-logo-walmart {
    width: 4.007em;
}

/*
Added By: Laura
Description: no space below blockquote
Remove: ticket coming
*/
.article .typography-format blockquote {
  margin-bottom: 1.3rem;
}

/*
Added By: Patrick
Description: Style old button buylinks
Remove: After January 1st, 2020
*/
a[data-embed-type="buylink"] {
    width: fit-content;
    padding: 0.85rem;
    background-color: #eb0036;
    color: white;
    border-radius: 4px;
}

a[data-embed-type="buylink"]:hover {
    background-color: #b8002a;
    color: white;
}

/*
Added by: Laura
Description: Keep 16:9 aspect ratio of images at largest breakpoint
*/
@media (min-width: 1280px) {
  .promo--container .promo--image .content {
    height: 420px;
  }
}

/*
Added by: Laura
Description: Reviews door reviews score covering text
Remove: /issue-tracker/issues/7114
*/
.promo--single-metadata:not(.promo--video-show) .promo--media-type {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 20px;
    width: 64px;
    height: 64px;
}

/*
Added By: Will
Description: Fix content flash
Remove: after phoenix/pull/4716
*/
body#default-body {
   visibility: visible !important;
}
.review-breakdown__inner .breakdown-score {
background: none;
border: none;
box-shadow: none;
}

.kubrick-lead--ring__hold {
max-width: 1460px;
}

@media only screen and (min-width: 1460px){
.kubrick-curtains:before, .kubrick-curtains:after {
opacity: 1 !important;
}
}
</style>          
          
    <meta id="kCode" itemprop="kCode" name="kCode" content="/contra/cheats/">

    

            
              <script type="text/javascript" charset="utf-8">
      PhoenixLoader.gdprConsentCallback("google_ad_sense", function() {
        (function(G,o,O,g,L,e){G[g]=G[g]||function(){(G[g]['q']=G[g]['q']||[]).push(
        arguments)},G[g]['t']=1*new Date;L=o.createElement(O),e=o.getElementsByTagName(
        O)[0];L.async=1;L.src='//www.google.com/adsense/search/async-ads.js';
        e.parentNode.insertBefore(L,e)})(window,document,'script','_googCsa');
      }, 'targeting', 'Ads');
    </script><script src="//securepubads.g.doubleclick.net/tag/js/gpt.js" type="text/javascript" async></script><script>
    window.BidBarrel = window.BidBarrel || {};
    window.BidBarrel.queue = window.BidBarrel.queue || [];
  </script><script type="text/plain" class="optanon-category-4"              id="script_index_exchange"                  src="//js-sec.indexww.com/ht/p/183728-38947210541979.js"                  async        charset="utf-8"></script><script type="text/plain" class="optanon-category-4"              id="script_bidbarrel_amazon"                  src="//c.amazon-adsystem.com/aax2/apstag.js"                  async        charset="utf-8"></script><script src="https://gamespot1.cbsistatic.com/vf37c8fbe7a94c587b3e9249d07d26cb9/js/compiled/c86918c.js" type="text/javascript" async></script>  
    
            <script type="text/plain" class="optanon-category-4">
      
    </script>
  
        
  <meta name="device-type" content="desktop"/>
  <meta name="page-type" content="0"/>
  <meta name="ab-test-label" content="not in test"/>
  <meta name="in-ab-test" content="0"/>
  <meta name="user-region" content="us"/>

  </head>


<body id="default-body" class="default has-nav-slim body-home col-2-template " style="display: block !important" >
              <section id="message-block" class="message-success" style="display: none">
                      </section>
    
    <div id="site-main">

      
              <div class="js-mapped-ad mapped-ad mapped-skybox-nav mapped-skybox-nav-dart" data-ad-type="skybox-nav"><div class="ad-wrap ad-wrap-skybox-nav"></div></div>      
        <header id="masthead" class="js-masthead js-fixed-masthead masthead"><div class="js-masthead-overlay masthead-overlay masthead-nav-overlay"></div><div class="js-masthead-rows masthead-rows"><div class="js-masthead-compact masthead-row masthead-compact"><div class="masthead-row-wrap"><div class="js-masthead-toggle masthead-toggle masthead-toggle-nav" data-toggle="nav"><i class="masthead-toggle-nav-open"><svg viewBox="0 0 80 80" width="80" height="80" aria-hidden="true" class="symbol symbol-menu"><rect width="80" height="16"/><rect y="32" width="56" height="16"/><rect y="64" width="32" height="16"/></svg></i><i class="masthead-toggle-close masthead-toggle-nav-close"><svg viewBox="0 0 80 80" width="80" height="80" aria-hidden="true" class="symbol symbol-close"><polygon points="80 11.31 68.69 0 40 28.69 11.31 0 0 11.31 28.69 40 0 68.69 11.31 80 40 51.31 68.69 80 80 68.69 51.31 40 80 11.31"/></svg></i></div><div class="masthead-nav-section flexbox-row flex-grow"><div class="masthead-logo"><a class="masthead-logo-link" href="/" title="GameSpot"><i class="masthead-logo-asset masthead-logo-asset-compact"><svg viewBox="0 0 731.79 731.81" width="731.79" height="731.81" aria-hidden="true" class="symbol symbol-logo-outline-circle"><path d="M365.89,0C163.81,0,0,163.83,0,365.91s163.81,365.9,365.89,365.9S731.79,568,731.79,365.91,568,0,365.89,0Zm0,684.24c-175.81,0-318.33-142.53-318.33-318.33S190.08,47.58,365.89,47.58,684.23,190.1,684.23,365.91,541.71,684.24,365.89,684.24Z"/><path d="M508.25,506.5c-8.35-5.84-19.41-8.42-31.6-8.42-9.51,0-33.75,3.88-71.5,11.7-19.88,4.27-35.17,5.61-46.07,5.61-43.63,0-80.47-14.35-112.21-43.36-30.26-29.3-46.21-64.56-46.21-105.9,0-42.29,14.94-77.74,46-106.05,31.92-29.35,72.16-43.65,121.16-43.65,32.09,0,57.48,2.21,78.49,7.5,3.24.65,19.22,5.84,47.56,16.19l-11.58,44.3c-14.15-5.81-24.73-9.14-32.43-10.73a169.56,169.56,0,0,0-46.22-6.16c-31.92,0-56.85,10.13-75.72,30.29-17.42,18.52-25.53,41.72-25.53,68.73,0,26.67,7.79,48.47,23.74,66.42C342.3,451.12,361.33,459,383.29,459c8.48,0,16-1.34,21.83-6.58a27.1,27.1,0,0,0,9-20.83V371.07h94.15Z"/></svg></i><i class="masthead-logo-asset masthead-logo-asset-full"><svg viewBox="0 0 1631.76 517.06" width="1631.76" height="517.06" aria-hidden="true" class="symbol symbol-logo-outline-full"><path d="M1510,137.41a119.48,119.48,0,0,0-75.43,27l60.12-88.74L1383.6,151.05,1411,19.51l-73.82,112.37L1311.82,0l-25.16,131.87-73.71-112,27.2,131.23-110.9-75,60,88.07a119.78,119.78,0,0,0-75.55-26.71c-41.34,0-77.15,20.59-99.43,51.75-22-31.16-58-51.75-99.3-51.75a121.52,121.52,0,0,0-99.24,51.75,121.49,121.49,0,0,0-99.21-51.75c-40.94,0-77.15,20.59-99.33,51.75a120.86,120.86,0,0,0-99-51.75c-41,0-77.23,20.59-99.53,51.75a120.74,120.74,0,0,0-99-51.75c-41,0-77.12,20.59-99.44,51.75a120.69,120.69,0,0,0-99.12-51.75C54.43,137.41,0,191.87,0,258.72S54.43,380,121.12,380a120.32,120.32,0,0,0,99.12-51.62C242.57,359.61,278.73,380,319.69,380a120.37,120.37,0,0,0,99-51.62C441,359.61,477.28,380,518.25,380a120.49,120.49,0,0,0,99-51.62,121.26,121.26,0,0,0,198.54,0,121.26,121.26,0,0,0,198.54,0c22.28,31.26,58.09,51.62,99.43,51.62,28.3,0,54.33-9.83,75.55-25.91l-60,87.21,111.12-75.21-27.22,131.36,73.73-112.09L1312,517.06l25.5-131.72,73.71,111.88-27.42-131.37,111.12,75.34-59.15-86.55A121.82,121.82,0,0,0,1510,380c67.4,0,121.71-54.42,121.71-121.26S1577.44,137.41,1510,137.41Zm.76,225.84c-46,0-78.72-26.79-121-53.28l51.68,77.52-79.84-55.27,24.57,98.27-55.27-86-18.36,98.26-18.49-98.26-55.27,86,24.57-98.27-79.85,55.27,51.14-76.71c-42.47,26.22-76.33,52.46-121.17,52.46a104.7,104.7,0,0,1-99.32-71.68,104.65,104.65,0,0,1-198.64,0,104.65,104.65,0,0,1-198.64,0,104.65,104.65,0,0,1-198.64,0,104.65,104.65,0,0,1-198.64,0,104.73,104.73,0,1,1,0-66.1,104.65,104.65,0,0,1,198.64,0,104.65,104.65,0,0,1,198.64,0,104.65,104.65,0,0,1,198.64,0,104.65,104.65,0,0,1,198.64,0,104.7,104.7,0,0,1,99.32-71.68c46.59,0,78.7,26.25,121.17,52.46l-51.14-76.71,79.85,55.28-24.57-98.27,55.27,86,18.38-98.27L1331,172.55l55.27-86-24.57,98.27,79.84-55.28-50.64,76c42.19-26,78.93-51.72,119.94-51.72a104.73,104.73,0,0,1,0,209.46Z"/><path d="M136.2,280.15a8.92,8.92,0,0,1-2.94,6.85c-1.92,1.72-4.39,2.16-7.18,2.16a24,24,0,0,1-18.81-8.58c-5.25-5.91-7.81-13.08-7.81-21.85s2.67-16.52,8.4-22.61c6.21-6.63,14.41-10,24.91-10a55.78,55.78,0,0,1,15.21,2,63,63,0,0,1,10.67,3.53l3.81-14.57c-9.32-3.41-14.58-5.11-15.65-5.33-6.91-1.74-15.26-2.47-25.82-2.47-16.12,0-29.36,4.71-39.86,14.36C70.9,233,66,244.69,66,258.6c0,13.6,5.25,25.2,15.2,34.84a52.57,52.57,0,0,0,36.92,14.26,73.35,73.35,0,0,0,15.16-1.85c12.42-2.57,20.39-3.85,23.52-3.85a18.05,18.05,0,0,1,10.4,2.77V260.23h-31Z"/><path d="M308.4,212.23l-43.31,92.56H283.8l6.92-15h42.42l6.9,15h34.07l-43.5-92.56Zm-9.81,60.86,13.24-28.58,13.32,28.58Z"/><polygon points="517.91 252.84 489.36 212.22 463.43 212.22 463.43 304.78 480.56 304.78 480.56 253.16 500.7 282.49 517.91 282.49 541.47 248.89 541.47 304.78 572.38 304.78 572.38 212.22 546.73 212.22 517.91 252.84"/><polygon points="677.93 304.78 754.15 304.78 754.15 287.99 709.2 287.99 709.2 263.12 740.28 263.12 740.28 246.19 709.2 246.19 709.2 229.06 754.15 229.06 754.15 212.22 677.93 212.22 677.93 304.78"/><path d="M924.15,245.87c-6.33-2.34-10.84-4.62-13.66-6.65s-3.9-4-3.9-5.65a5,5,0,0,1,2.39-4.4,13.87,13.87,0,0,1,6.92-1.63,57.86,57.86,0,0,1,16,2.27,70.33,70.33,0,0,1,14,6.76L954.25,224A70.11,70.11,0,0,0,936,214.15a66.35,66.35,0,0,0-24.85-4.79q-16.81,0-27.49,8.68c-6.69,5.34-10.17,12-10.17,19.93,0,6.43,2.28,11.89,7,16.89s11.62,9.48,21.33,13c14.46,5.57,21.74,10.1,21.74,13.61A6.14,6.14,0,0,1,920.4,287c-2.36,1.72-5.24,2.16-9.21,2.16-6.11,0-11.68-.76-16.67-2.92a54.94,54.94,0,0,1-14.66-8.9l-9.34,11.38a61.93,61.93,0,0,0,18.58,13.18,59.16,59.16,0,0,0,26.15,5.8c13.07,0,23.57-2.92,31.63-8.9,7.49-5.57,11.13-12,11.13-19.48a25.2,25.2,0,0,0-7-17.78C945.58,255.5,936.79,249.93,924.15,245.87Z"/><path d="M1157.51,221.11c-7.93-6-17.35-8.88-28.29-8.88h-52.83v92.56h31.3V273.94h21.53c10.94,0,20.36-3.13,28.29-9.21,7.72-6,11.48-13.38,11.48-21.84S1165.23,227.13,1157.51,221.11Zm-24.43,31.38a20.71,20.71,0,0,1-13.05,4.11h-12.34V229.06H1120a22.34,22.34,0,0,1,13.05,4.18c3.55,2.78,5.36,6.19,5.36,9.66C1138.43,246.85,1136.62,249.93,1133.07,252.48Z"/><path d="M1349.28,223.58c-9.75-9.53-21.94-14.23-36.65-14.23-14.22,0-26.44,4.71-36.61,14.23-9.87,9.66-14.9,21.35-14.9,35s5,25.2,14.9,34.84a52.15,52.15,0,0,0,36.61,14.26c14.7,0,26.9-4.72,36.65-14.26,10.41-9.64,15.33-21.24,15.33-34.84S1359.45,233.24,1349.28,223.58Zm-23.56,56.78c-3.74,6.13-7.95,8.81-12.87,8.81s-9.4-2.61-13.16-8.58a46.53,46.53,0,0,1,0-43.73c4-6.19,8.24-9.33,13.16-9.33s9.57,3.14,13.09,9c3.74,6.09,5.56,13.37,5.56,22C1331.5,267.07,1329.69,274.48,1325.72,280.36Z"/><polygon points="1464.79 229.06 1495.11 229.06 1495.11 304.78 1525.79 304.78 1525.79 229.06 1555.98 229.06 1555.98 212.22 1464.79 212.22 1464.79 229.06"/></svg></i></a></div><div class="js-masthead-toggle masthead-toggle masthead-toggle-search" data-toggle="search"><i class="masthead-toggle-search-open"><svg viewBox="0 0 80 80" width="80" height="80" aria-hidden="true" class="symbol symbol-search"><path d="M80,68.69,59.56,48.25A32,32,0,1,0,48.25,59.56L68.69,80ZM32,48A16,16,0,1,1,48,32,16,16,0,0,1,32,48Z"/></svg></i></div></div></div></div><div class="masthead-row masthead-default"><div class="masthead-row-wrap masthead-default-wrap"><div class="masthead-logo"><a class="masthead-logo-link" href="/" title="GameSpot"><i class="masthead-logo-asset masthead-logo-asset-compact"><svg viewBox="0 0 731.79 731.81" width="731.79" height="731.81" aria-hidden="true" class="symbol symbol-logo-outline-circle"><path d="M365.89,0C163.81,0,0,163.83,0,365.91s163.81,365.9,365.89,365.9S731.79,568,731.79,365.91,568,0,365.89,0Zm0,684.24c-175.81,0-318.33-142.53-318.33-318.33S190.08,47.58,365.89,47.58,684.23,190.1,684.23,365.91,541.71,684.24,365.89,684.24Z"/><path d="M508.25,506.5c-8.35-5.84-19.41-8.42-31.6-8.42-9.51,0-33.75,3.88-71.5,11.7-19.88,4.27-35.17,5.61-46.07,5.61-43.63,0-80.47-14.35-112.21-43.36-30.26-29.3-46.21-64.56-46.21-105.9,0-42.29,14.94-77.74,46-106.05,31.92-29.35,72.16-43.65,121.16-43.65,32.09,0,57.48,2.21,78.49,7.5,3.24.65,19.22,5.84,47.56,16.19l-11.58,44.3c-14.15-5.81-24.73-9.14-32.43-10.73a169.56,169.56,0,0,0-46.22-6.16c-31.92,0-56.85,10.13-75.72,30.29-17.42,18.52-25.53,41.72-25.53,68.73,0,26.67,7.79,48.47,23.74,66.42C342.3,451.12,361.33,459,383.29,459c8.48,0,16-1.34,21.83-6.58a27.1,27.1,0,0,0,9-20.83V371.07h94.15Z"/></svg></i><i class="masthead-logo-asset masthead-logo-asset-full"><svg viewBox="0 0 1631.76 517.06" width="1631.76" height="517.06" aria-hidden="true" class="symbol symbol-logo-outline-full"><path d="M1510,137.41a119.48,119.48,0,0,0-75.43,27l60.12-88.74L1383.6,151.05,1411,19.51l-73.82,112.37L1311.82,0l-25.16,131.87-73.71-112,27.2,131.23-110.9-75,60,88.07a119.78,119.78,0,0,0-75.55-26.71c-41.34,0-77.15,20.59-99.43,51.75-22-31.16-58-51.75-99.3-51.75a121.52,121.52,0,0,0-99.24,51.75,121.49,121.49,0,0,0-99.21-51.75c-40.94,0-77.15,20.59-99.33,51.75a120.86,120.86,0,0,0-99-51.75c-41,0-77.23,20.59-99.53,51.75a120.74,120.74,0,0,0-99-51.75c-41,0-77.12,20.59-99.44,51.75a120.69,120.69,0,0,0-99.12-51.75C54.43,137.41,0,191.87,0,258.72S54.43,380,121.12,380a120.32,120.32,0,0,0,99.12-51.62C242.57,359.61,278.73,380,319.69,380a120.37,120.37,0,0,0,99-51.62C441,359.61,477.28,380,518.25,380a120.49,120.49,0,0,0,99-51.62,121.26,121.26,0,0,0,198.54,0,121.26,121.26,0,0,0,198.54,0c22.28,31.26,58.09,51.62,99.43,51.62,28.3,0,54.33-9.83,75.55-25.91l-60,87.21,111.12-75.21-27.22,131.36,73.73-112.09L1312,517.06l25.5-131.72,73.71,111.88-27.42-131.37,111.12,75.34-59.15-86.55A121.82,121.82,0,0,0,1510,380c67.4,0,121.71-54.42,121.71-121.26S1577.44,137.41,1510,137.41Zm.76,225.84c-46,0-78.72-26.79-121-53.28l51.68,77.52-79.84-55.27,24.57,98.27-55.27-86-18.36,98.26-18.49-98.26-55.27,86,24.57-98.27-79.85,55.27,51.14-76.71c-42.47,26.22-76.33,52.46-121.17,52.46a104.7,104.7,0,0,1-99.32-71.68,104.65,104.65,0,0,1-198.64,0,104.65,104.65,0,0,1-198.64,0,104.65,104.65,0,0,1-198.64,0,104.65,104.65,0,0,1-198.64,0,104.73,104.73,0,1,1,0-66.1,104.65,104.65,0,0,1,198.64,0,104.65,104.65,0,0,1,198.64,0,104.65,104.65,0,0,1,198.64,0,104.65,104.65,0,0,1,198.64,0,104.7,104.7,0,0,1,99.32-71.68c46.59,0,78.7,26.25,121.17,52.46l-51.14-76.71,79.85,55.28-24.57-98.27,55.27,86,18.38-98.27L1331,172.55l55.27-86-24.57,98.27,79.84-55.28-50.64,76c42.19-26,78.93-51.72,119.94-51.72a104.73,104.73,0,0,1,0,209.46Z"/><path d="M136.2,280.15a8.92,8.92,0,0,1-2.94,6.85c-1.92,1.72-4.39,2.16-7.18,2.16a24,24,0,0,1-18.81-8.58c-5.25-5.91-7.81-13.08-7.81-21.85s2.67-16.52,8.4-22.61c6.21-6.63,14.41-10,24.91-10a55.78,55.78,0,0,1,15.21,2,63,63,0,0,1,10.67,3.53l3.81-14.57c-9.32-3.41-14.58-5.11-15.65-5.33-6.91-1.74-15.26-2.47-25.82-2.47-16.12,0-29.36,4.71-39.86,14.36C70.9,233,66,244.69,66,258.6c0,13.6,5.25,25.2,15.2,34.84a52.57,52.57,0,0,0,36.92,14.26,73.35,73.35,0,0,0,15.16-1.85c12.42-2.57,20.39-3.85,23.52-3.85a18.05,18.05,0,0,1,10.4,2.77V260.23h-31Z"/><path d="M308.4,212.23l-43.31,92.56H283.8l6.92-15h42.42l6.9,15h34.07l-43.5-92.56Zm-9.81,60.86,13.24-28.58,13.32,28.58Z"/><polygon points="517.91 252.84 489.36 212.22 463.43 212.22 463.43 304.78 480.56 304.78 480.56 253.16 500.7 282.49 517.91 282.49 541.47 248.89 541.47 304.78 572.38 304.78 572.38 212.22 546.73 212.22 517.91 252.84"/><polygon points="677.93 304.78 754.15 304.78 754.15 287.99 709.2 287.99 709.2 263.12 740.28 263.12 740.28 246.19 709.2 246.19 709.2 229.06 754.15 229.06 754.15 212.22 677.93 212.22 677.93 304.78"/><path d="M924.15,245.87c-6.33-2.34-10.84-4.62-13.66-6.65s-3.9-4-3.9-5.65a5,5,0,0,1,2.39-4.4,13.87,13.87,0,0,1,6.92-1.63,57.86,57.86,0,0,1,16,2.27,70.33,70.33,0,0,1,14,6.76L954.25,224A70.11,70.11,0,0,0,936,214.15a66.35,66.35,0,0,0-24.85-4.79q-16.81,0-27.49,8.68c-6.69,5.34-10.17,12-10.17,19.93,0,6.43,2.28,11.89,7,16.89s11.62,9.48,21.33,13c14.46,5.57,21.74,10.1,21.74,13.61A6.14,6.14,0,0,1,920.4,287c-2.36,1.72-5.24,2.16-9.21,2.16-6.11,0-11.68-.76-16.67-2.92a54.94,54.94,0,0,1-14.66-8.9l-9.34,11.38a61.93,61.93,0,0,0,18.58,13.18,59.16,59.16,0,0,0,26.15,5.8c13.07,0,23.57-2.92,31.63-8.9,7.49-5.57,11.13-12,11.13-19.48a25.2,25.2,0,0,0-7-17.78C945.58,255.5,936.79,249.93,924.15,245.87Z"/><path d="M1157.51,221.11c-7.93-6-17.35-8.88-28.29-8.88h-52.83v92.56h31.3V273.94h21.53c10.94,0,20.36-3.13,28.29-9.21,7.72-6,11.48-13.38,11.48-21.84S1165.23,227.13,1157.51,221.11Zm-24.43,31.38a20.71,20.71,0,0,1-13.05,4.11h-12.34V229.06H1120a22.34,22.34,0,0,1,13.05,4.18c3.55,2.78,5.36,6.19,5.36,9.66C1138.43,246.85,1136.62,249.93,1133.07,252.48Z"/><path d="M1349.28,223.58c-9.75-9.53-21.94-14.23-36.65-14.23-14.22,0-26.44,4.71-36.61,14.23-9.87,9.66-14.9,21.35-14.9,35s5,25.2,14.9,34.84a52.15,52.15,0,0,0,36.61,14.26c14.7,0,26.9-4.72,36.65-14.26,10.41-9.64,15.33-21.24,15.33-34.84S1359.45,233.24,1349.28,223.58Zm-23.56,56.78c-3.74,6.13-7.95,8.81-12.87,8.81s-9.4-2.61-13.16-8.58a46.53,46.53,0,0,1,0-43.73c4-6.19,8.24-9.33,13.16-9.33s9.57,3.14,13.09,9c3.74,6.09,5.56,13.37,5.56,22C1331.5,267.07,1329.69,274.48,1325.72,280.36Z"/><polygon points="1464.79 229.06 1495.11 229.06 1495.11 304.78 1525.79 304.78 1525.79 229.06 1555.98 229.06 1555.98 212.22 1464.79 212.22 1464.79 229.06"/></svg></i></a></div><div class="js-masthead-nav masthead-nav masthead-hspace-r masthead-vr-r"><nav class="js-masthead-site-nav masthead-nav-section masthead-site-nav flex-grow"><ul class="masthead-nav-items"><li class="js-masthead-menu js-masthead-nav-item masthead-nav-item"><div class="masthead-nav-item-wrap"><a class="js-masthead-menu-link masthead-nav-item-label" href="/games/"><span class="masthead-nav-item-text">Games</span><i class="masthead-nav-item-icon"><svg version="1.1" width="18" height="28" viewBox="0 0 18 28" aria-hidden="true" class="symbol symbol-angle-down"><path d="M16.797 11.5q0 0.203-0.156 0.359l-7.281 7.281q-0.156 0.156-0.359 0.156t-0.359-0.156l-7.281-7.281q-0.156-0.156-0.156-0.359t0.156-0.359l0.781-0.781q0.156-0.156 0.359-0.156t0.359 0.156l6.141 6.141 6.141-6.141q0.156-0.156 0.359-0.156t0.359 0.156l0.781 0.781q0.156 0.156 0.156 0.359z"/></svg></i></a><span class="js-masthead-menu-toggle masthead-nav-item-toggle"><i class="masthead-toggle-nav-item-open"><svg version="1.1" width="18" height="28" viewBox="0 0 18 28" aria-hidden="true" class="symbol symbol-angle-down"><path d="M16.797 11.5q0 0.203-0.156 0.359l-7.281 7.281q-0.156 0.156-0.359 0.156t-0.359-0.156l-7.281-7.281q-0.156-0.156-0.156-0.359t0.156-0.359l0.781-0.781q0.156-0.156 0.359-0.156t0.359 0.156l6.141 6.141 6.141-6.141q0.156-0.156 0.359-0.156t0.359 0.156l0.781 0.781q0.156 0.156 0.156 0.359z"/></svg></i><i class="masthead-toggle-close masthead-toggle-nav-item-close"><svg version="1.1" width="18" height="28" viewBox="0 0 18 28" aria-hidden="true" class="symbol symbol-angle-up"><path d="M16.797 18.5q0 0.203-0.156 0.359l-0.781 0.781q-0.156 0.156-0.359 0.156t-0.359-0.156l-6.141-6.141-6.141 6.141q-0.156 0.156-0.359 0.156t-0.359-0.156l-0.781-0.781q-0.156-0.156-0.156-0.359t0.156-0.359l7.281-7.281q0.156-0.156 0.359-0.156t0.359 0.156l7.281 7.281q0.156 0.156 0.156 0.359z"/></svg></i></span></div><!-- GamespotSiteBundle:Core:masthead:other_subnav_games|N|15:09:48 --><div class="js-masthead-subnav masthead-subnav"><div class="masthead-subnav-content"><ul class="masthead-subnav-items"><li class="masthead-subnav-item"><a href="/games/" class="js-click-tag"  data-click-tag="nav|games|left-menu|games-home">All Games News</a></li><li class="masthead-subnav-item"><a href="/gametech/" class="js-click-tag"  data-click-tag="nav|games|left-menu|gametech">Game Tech</a></li><li class="masthead-subnav-item masthead-hr-t"><a href="/pc/" class="js-click-tag"  data-click-tag="nav|games|left-menu|pc">PC</a></li><li class="masthead-subnav-item"><a href="/ps4/" class="js-click-tag"  data-click-tag="nav|games|left-menu|ps4">PS4</a></li><li class="masthead-subnav-item"><a href="/ps5/" class="js-click-tag"  data-click-tag="nav|games|left-menu|ps5">PS5</a></li><li class="masthead-subnav-item"><a href="/xbox-one/" class="js-click-tag"  data-click-tag="nav|games|left-menu|xbox-one">Xbox One</a></li><li class="masthead-subnav-item"><a href="/xbox-series-x/" class="js-click-tag"  data-click-tag="nav|games|left-menu|xbox-series-x">Xbox Series X</a></li><li class="masthead-subnav-item"><a href="/nintendo-switch/" class="js-click-tag"  data-click-tag="nav|games|left-menu|switch">Switch</a></li><li class="masthead-subnav-item"><a href="/stadia/" class="js-click-tag"  data-click-tag="nav|games|left-menu|stadia">Stadia</a></li><li class="masthead-subnav-item"><a href="/3ds/" class="js-click-tag"  data-click-tag="nav|games|left-menu|3ds">3DS</a></li></ul><div class="masthead-subnav-items masthead-subnav-spotlight"><div class="masthead-subnav-spotlight-content"><div class="masthead-subnav-spotlight-title">Latest in Games</div><div class="masthead-subnav-spotlight-body"><ol><li class="masthead-content-item"><a class="content-item--list-item flexbox-row" href="/reviews/dreams-review-create-and-play/1900-6417414/"><div><div class="link-img vertical-spacing-small"><img class="type-review" src="https://gamespot1.cbsistatic.com/uploads/screen_large/1593/15930215/3638557-dreams-earlyreview-promo12.jpg" alt="Dreams Review - Create And Play"></div></div><div><div class="card-byline"><p class="p-small-space text-small">Dreams Review - Create And Play</p></div></div></a></li><li class="masthead-content-item"><a class="content-item--list-item flexbox-row" href="/videos/final-fantasy-7-remake-persona-5-sonic-and-more-re/2300-6452258/"><div><div class="link-img vertical-spacing-small"><div class="hover-play-pause absolute-play-pause"><div  class="hover-play-icon  "
  ><i><svg viewBox="0 0 90 90" width="90" height="90" aria-hidden="true" class="symbol symbol-video-play"><polygon points="10 80 10 10 80 45 10 80"/></svg></i></div><div class="hover-pause-icon  "
  ><i><svg viewBox="0 0 80 80" width="80" height="80" aria-hidden="true" class="symbol symbol-video-pause"><rect width="24" height="80"/><rect x="56" width="24" height="80"/></svg></i></div></div><img class="type-video" src="https://gamespot1.cbsistatic.com/uploads/screen_large/1574/15746725/3638532-dreams_bestgamesremade_022020_site.jpg" alt="Final Fantasy 7 Remake, Persona 5, Sonic, And More Remade In Dreams"></div></div><div><div class="card-byline"><p class="p-small-space text-small">Final Fantasy 7 Remake, Persona 5, Sonic, And More Remade In Dreams</p></div></div></a></li><li class="masthead-content-item"><a class="content-item--list-item flexbox-row" href="/videos/the-6-biggest-changes-to-fortnite-chapter-2-season/2300-6452254/"><div><div class="link-img vertical-spacing-small"><div class="hover-play-pause absolute-play-pause"><div  class="hover-play-icon  "
  ><i><svg viewBox="0 0 90 90" width="90" height="90" aria-hidden="true" class="symbol symbol-video-play"><polygon points="10 80 10 10 80 45 10 80"/></svg></i></div><div class="hover-pause-icon  "
  ><i><svg viewBox="0 0 80 80" width="80" height="80" aria-hidden="true" class="symbol symbol-video-pause"><rect width="24" height="80"/><rect x="56" width="24" height="80"/></svg></i></div></div><img class="type-video" src="https://gamespot1.cbsistatic.com/uploads/screen_large/1352/13527689/3638442-fortnite_biggestchangesseason2_022020_site.jpg" alt="The 6 Biggest Changes To Fortnite Chapter 2 Season 2"></div></div><div><div class="card-byline"><p class="p-small-space text-small">The 6 Biggest Changes To Fortnite Chapter 2 Season 2</p></div></div></a></li></ol></div></div></div></div></div><!-- /GamespotSiteBundle:Core:masthead:other_subnav_games --></li><li class="js-masthead-nav-item masthead-nav-item masthead-hspace-l"><div class="masthead-nav-item-wrap"><a class="masthead-nav-item-label" href="/entertainment/"><span class="masthead-nav-item-text">Entertainment</span></a></div></li></ul><ul class="masthead-nav-items masthead-hspace-l masthead-vr-l"><li class="js-masthead-nav-item masthead-nav-item"><div class="masthead-nav-item-wrap"><a class="masthead-nav-item-label" href="/news/"><span class="masthead-nav-item-text">News</span></a></div></li><li class="js-masthead-nav-item masthead-nav-item masthead-hspace-l"><div class="masthead-nav-item-wrap"><a class="masthead-nav-item-label" href="/reviews/"><span class="masthead-nav-item-text">Reviews</span></a></div></li><li class="js-masthead-nav-item masthead-nav-item masthead-hspace-l"><div class="masthead-nav-item-wrap"><a class="masthead-nav-item-label" href="/videos/"><span class="masthead-nav-item-text">Videos</span></a></div></li><li class="js-masthead-nav-item masthead-nav-item masthead-hspace-l"><div class="masthead-nav-item-wrap"><a class="masthead-nav-item-label" href="/deals/"><span class="masthead-nav-item-text">Deals</span></a></div></li></ul><ul class="masthead-nav-items masthead-hspace-l masthead-vr-l"><li class="js-masthead-menu js-masthead-nav-item masthead-nav-item"><div class="masthead-nav-item-wrap"><a class="js-masthead-menu-link masthead-nav-item-label" href="/forums/"><span class="masthead-nav-item-text">Forums</span><i class="masthead-nav-item-icon"><svg version="1.1" width="18" height="28" viewBox="0 0 18 28" aria-hidden="true" class="symbol symbol-angle-down"><path d="M16.797 11.5q0 0.203-0.156 0.359l-7.281 7.281q-0.156 0.156-0.359 0.156t-0.359-0.156l-7.281-7.281q-0.156-0.156-0.156-0.359t0.156-0.359l0.781-0.781q0.156-0.156 0.359-0.156t0.359 0.156l6.141 6.141 6.141-6.141q0.156-0.156 0.359-0.156t0.359 0.156l0.781 0.781q0.156 0.156 0.156 0.359z"/></svg></i></a><span class="js-masthead-menu-toggle masthead-nav-item-toggle"><i class="masthead-toggle-nav-item-open"><svg version="1.1" width="18" height="28" viewBox="0 0 18 28" aria-hidden="true" class="symbol symbol-angle-down"><path d="M16.797 11.5q0 0.203-0.156 0.359l-7.281 7.281q-0.156 0.156-0.359 0.156t-0.359-0.156l-7.281-7.281q-0.156-0.156-0.156-0.359t0.156-0.359l0.781-0.781q0.156-0.156 0.359-0.156t0.359 0.156l6.141 6.141 6.141-6.141q0.156-0.156 0.359-0.156t0.359 0.156l0.781 0.781q0.156 0.156 0.156 0.359z"/></svg></i><i class="masthead-toggle-close masthead-toggle-nav-item-close"><svg version="1.1" width="18" height="28" viewBox="0 0 18 28" aria-hidden="true" class="symbol symbol-angle-up"><path d="M16.797 18.5q0 0.203-0.156 0.359l-0.781 0.781q-0.156 0.156-0.359 0.156t-0.359-0.156l-6.141-6.141-6.141 6.141q-0.156 0.156-0.359 0.156t-0.359-0.156l-0.781-0.781q-0.156-0.156-0.156-0.359t0.156-0.359l7.281-7.281q0.156-0.156 0.359-0.156t0.359 0.156l7.281 7.281q0.156 0.156 0.156 0.359z"/></svg></i></span></div><!-- GamespotSiteBundle:Core:masthead:other_subnav__forums_anon|N|15:12:52 --><div class="js-masthead-subnav masthead-subnav"><div class="masthead-subnav-content"><ul class="masthead-subnav-items"><li class="masthead-subnav-item"><a href="/forums/games-discussion-1000000/" class="js-click-tag"  data-click-tag="nav|forums|left-menu|games-discussion">Games Discussion</a></li><li class="masthead-subnav-item"><a href="/forums/system-wars-314159282/" class="js-click-tag"  data-click-tag="nav|forums|left-menu|system-wars">System Wars</a></li><li class="masthead-subnav-item"><a href="/forums/offtopic-discussion-314159273/" class="js-click-tag"  data-click-tag="nav|forums|left-menu|offtopic-discussion">Off-Topic Discussion</a></li></ul><ul class="masthead-subnav-items"><li class="masthead-subnav-item"><a href="/forums/bug-reporting-feedback-1000006/" class="js-click-tag"  data-click-tag="nav|forums|left-menu|bug-reporting-feedback">Bug Reporting &amp; Feedback</a></li><li class="masthead-subnav-item"><a href="/forums/" class="js-click-tag"  data-click-tag="nav|forums|left-menu|see-all">See all Forums</a></li></ul></div></div><!-- /GamespotSiteBundle:Core:masthead:other_subnav__forums_anon --></li></ul></nav><nav class="masthead-nav-section" role="navigation"><a class="masthead-nav-item-label" href="/login-signup/">Login/Sign Up</a></nav></div><div class="js-masthead-toggle masthead-toggle masthead-toggle-search" data-toggle="search"><i class="masthead-toggle-search-open"><svg viewBox="0 0 80 80" width="80" height="80" aria-hidden="true" class="symbol symbol-search"><path d="M80,68.69,59.56,48.25A32,32,0,1,0,48.25,59.56L68.69,80ZM32,48A16,16,0,1,1,48,32,16,16,0,0,1,32,48Z"/></svg></i></div></div></div><div class="js-masthead-overlay masthead-overlay masthead-search-overlay"></div><div class="masthead-row masthead-search"><div class="masthead-row-wrap"><div class="js-masthead-search masthead-search-content flexbox-row flexbox-align-stretch width-100"><div class="masthead-search-body masthead-vr-r masthead-hspace-r"><div class="js-site-search-container site-search-container"><form action="/search/" method="get" class="js-site-search main-search flexbox-row" data-search-landing="true" data-search-results-length="10" data-search-parent-selector=".js-masthead-search"><div class="dropdown--main"><select name="i" class="dropdown--selector"><option value="">All</option><option value="site">Games</option><option value="videos">Videos</option><option value="articles">Articles</option><option value="reviews">Reviews</option><option value="features">Features</option><option value="image_gallery">Galleries</option><option value="users">Users</option></select></div><i class="symbol-search-wrapper"><svg viewBox="0 0 80 80" width="80" height="80" aria-hidden="true" class="symbol symbol-search"><path d="M80,68.69,59.56,48.25A32,32,0,1,0,48.25,59.56L68.69,80ZM32,48A16,16,0,1,1,48,32,16,16,0,0,1,32,48Z"/></svg></i><input type="text" name="q" placeholder="Search GameSpot" autocomplete="off" class="js-site-search-query" value="" tabindex="1" /></form></div></div><div class="js-masthead-toggle masthead-toggle masthead-toggle-search" data-toggle="search" tabindex="1"><i class="masthead-toggle-close masthead-toggle-search-close"><svg viewBox="0 0 80 80" width="80" height="80" aria-hidden="true" class="symbol symbol-close"><polygon points="80 11.31 68.69 0 40 28.69 11.31 0 0 11.31 28.69 40 0 68.69 11.31 80 40 51.31 68.69 80 80 68.69 51.31 40 80 11.31"/></svg></i></div></div></div></div></div></header>  <script type="text/javascript">
  var performance = window.performance || {};
  if (performance.mark && performance.measure) {
    performance.mark('nr_headerLoad');
          performance.measure('nr_headerLoad', 'nr_pageStart', 'nr_headerLoad');
      }
</script>
                    <div class="js-mapped-ad mapped-ad mapped-interstitial mapped-interstitial-dart" data-ad-type="interstitial"><div class="ad-wrap ad-wrap-interstitial"></div></div>                  <div id="site-wrapper" >
                <div id="wrapper">
      
  

  
      


    
  
      
                  
  <section class="promo--container container row span12"><a
                      href="https://www.gamespot.com/reviews/dreams-review-create-and-play/1900-6417414/"
          
          class="promo--object promo--offset-wide promo-type--overlay  js-click-tag"
                      data-click-tag="front_door|promos|topSlot-1|1700-29657"
                          data-event-title="Dreams Review - Create And Play"
                        data-event-guid="1700-29657"
                  ><div class="promo--image promo--wide"><div class="content"><img src="https://gamespot1.cbsistatic.com/uploads/screen_kubrick/1593/15930215/3638557-dreams-earlyreview-promo12.jpg" alt="Dreams Review - Create And Play"></div></div><div class=""><div class="content"><div class="promo--media-type "><div class="content"><span class="promo--review-score">9</span></div></div><summary class="promo--metadata"><h2>Dreams Review - Create And Play</h2><span>Dreams is a technical and creative marvel, a robust game-making toolkit where the only limits are your skill and imagination.</span></summary></div></div></a><a
                      href="https://www.gamespot.com/articles/now-playing-vagrant-story-halo-the-master-chief-co/1100-6473994/"
          
          class="promo--object promo--offset-square promo-type--overlay  js-click-tag"
                      data-click-tag="front_door|promos|topSlot-2|1700-29661"
                          data-event-title="Now Playing: Vagrant Story, Halo: The Master Chief Collection, River City Girls, And More"
                        data-event-guid="1700-29661"
                  ><div class="promo--image promo--square"><div class="content"><img src="https://gamespot1.cbsistatic.com/uploads/square_medium/1552/15524586/3638556-now-playing-gamez-week-4-feature-promo12.jpg" alt="Now Playing: Vagrant Story, Halo: The Master Chief Collection, River City Girls, And More"></div></div><div class=""><div class="content"><summary class="promo--metadata"><h2>Now Playing: Vagrant Story, Halo: The Master Chief Collection, River City Girls, And More</h2><span>Which games are you playing right now? Here&#039;s what&#039;s been keeping folks on the GameSpot team busy after work this past week.</span></summary></div></div></a></section>
  
  
                              
  
          <div id="site" role="main">
          <div id="default-content" class=" container row">
                    
          
            
<section class="promo-strip span12"><ul class="promo-strip__list row "><li class="promo-type--grid promo-strip__item media  span3 "><a href="/articles/animal-crossing-new-horizons-hands-on-from-nervous/1100-6473984/" class="js-click-tag" data-promo-id="29649" data-top-slot-allowed="1" data-click-tag="front_door|promos|slot1|1700-29649"><figure class="media-figure"><div class="media-img "><img src="https://gamespot1.cbsistatic.com/uploads/screen_small/1575/15759911/3638443-acnh-01_720.jpg" alt=""></div><span class="content-type content-type--article hide-mobile content-symbol--medium  "></span><div class="media-type media-type--right hide-mobile"><i><svg version="1.1" width="28" height="28" viewBox="0 0 28 28" aria-hidden="true" class="symbol symbol-comments"><path d="M22 12q0 2.172-1.469 4.016t-4.008 2.914-5.523 1.070q-1.344 0-2.75-0.25-1.937 1.375-4.344 2-0.562 0.141-1.344 0.25h-0.047q-0.172 0-0.32-0.125t-0.18-0.328q-0.016-0.047-0.016-0.102t0.008-0.102 0.031-0.094l0.039-0.078t0.055-0.086 0.063-0.078 0.070-0.078 0.063-0.070q0.078-0.094 0.359-0.391t0.406-0.461 0.352-0.453 0.391-0.602 0.32-0.688q-1.937-1.125-3.047-2.766t-1.109-3.5q0-2.172 1.469-4.016t4.008-2.914 5.523-1.070 5.523 1.070 4.008 2.914 1.469 4.016zM28 16q0 1.875-1.109 3.508t-3.047 2.758q0.156 0.375 0.32 0.688t0.391 0.602 0.352 0.453 0.406 0.461 0.359 0.391q0.016 0.016 0.063 0.070t0.070 0.078 0.063 0.078 0.055 0.086l0.039 0.078t0.031 0.094 0.008 0.102-0.016 0.102q-0.047 0.219-0.203 0.344t-0.344 0.109q-0.781-0.109-1.344-0.25-2.406-0.625-4.344-2-1.406 0.25-2.75 0.25-4.234 0-7.375-2.063 0.906 0.063 1.375 0.063 2.516 0 4.828-0.703t4.125-2.016q1.953-1.437 3-3.313t1.047-3.969q0-1.203-0.359-2.375 2.016 1.109 3.187 2.781t1.172 3.594z"/></svg></i> 3
        </div></figure><div class="media-body"><h3 class="media-title promoTitle--rhythm--inc">Animal Crossing: New Horizons Hands-On -- From Nervous To Excited</h3></div></a></li><li class="promo-type--grid promo-strip__item media  span3 "><a href="/videos/7-game-series-that-need-a-comeback/2300-6452259/" class="js-click-tag" data-promo-id="29658" data-top-slot-allowed="1" data-click-tag="front_door|promos|slot2|1700-29658"><figure class="media-figure"><div class="media-img "><img src="https://gamespot1.cbsistatic.com/uploads/screen_small/1574/15746725/3638535-7games_thatneedacomeback_022120_site.jpg" alt=""></div><span class="content-type content-type--video hide-mobile content-symbol--medium  "><i><svg viewBox="0 0 90 90" width="90" height="90" aria-hidden="true" class="symbol symbol-video-play"><polygon points="10 80 10 10 80 45 10 80"/></svg></i></span><div class="media-type media-type--right hide-mobile"><i><svg version="1.1" width="28" height="28" viewBox="0 0 28 28" aria-hidden="true" class="symbol symbol-comments"><path d="M22 12q0 2.172-1.469 4.016t-4.008 2.914-5.523 1.070q-1.344 0-2.75-0.25-1.937 1.375-4.344 2-0.562 0.141-1.344 0.25h-0.047q-0.172 0-0.32-0.125t-0.18-0.328q-0.016-0.047-0.016-0.102t0.008-0.102 0.031-0.094l0.039-0.078t0.055-0.086 0.063-0.078 0.070-0.078 0.063-0.070q0.078-0.094 0.359-0.391t0.406-0.461 0.352-0.453 0.391-0.602 0.32-0.688q-1.937-1.125-3.047-2.766t-1.109-3.5q0-2.172 1.469-4.016t4.008-2.914 5.523-1.070 5.523 1.070 4.008 2.914 1.469 4.016zM28 16q0 1.875-1.109 3.508t-3.047 2.758q0.156 0.375 0.32 0.688t0.391 0.602 0.352 0.453 0.406 0.461 0.359 0.391q0.016 0.016 0.063 0.070t0.070 0.078 0.063 0.078 0.055 0.086l0.039 0.078t0.031 0.094 0.008 0.102-0.016 0.102q-0.047 0.219-0.203 0.344t-0.344 0.109q-0.781-0.109-1.344-0.25-2.406-0.625-4.344-2-1.406 0.25-2.75 0.25-4.234 0-7.375-2.063 0.906 0.063 1.375 0.063 2.516 0 4.828-0.703t4.125-2.016q1.953-1.437 3-3.313t1.047-3.969q0-1.203-0.359-2.375 2.016 1.109 3.187 2.781t1.172 3.594z"/></svg></i> 11
        </div></figure><div class="media-body"><h3 class="media-title promoTitle--rhythm--inc">7 Game Series That Need A Comeback</h3></div></a></li><li class="promo-type--grid promo-strip__item media  span3 "><a href="/articles/win-a-dragon-ball-z-kakarot-collectors-edition-wit/1100-6473842/" class="js-click-tag" data-promo-id="29585" data-top-slot-allowed="1" data-click-tag="front_door|promos|slot3|1700-29585"><figure class="media-figure"><div class="media-img "><img src="https://gamespot1.cbsistatic.com/uploads/screen_small/1593/15930215/3549489-195015439522875.jpg" alt=""></div><span class="content-type content-type--article hide-mobile content-symbol--medium  "></span><div class="media-type media-type--right hide-mobile"><i><svg version="1.1" width="28" height="28" viewBox="0 0 28 28" aria-hidden="true" class="symbol symbol-comments"><path d="M22 12q0 2.172-1.469 4.016t-4.008 2.914-5.523 1.070q-1.344 0-2.75-0.25-1.937 1.375-4.344 2-0.562 0.141-1.344 0.25h-0.047q-0.172 0-0.32-0.125t-0.18-0.328q-0.016-0.047-0.016-0.102t0.008-0.102 0.031-0.094l0.039-0.078t0.055-0.086 0.063-0.078 0.070-0.078 0.063-0.070q0.078-0.094 0.359-0.391t0.406-0.461 0.352-0.453 0.391-0.602 0.32-0.688q-1.937-1.125-3.047-2.766t-1.109-3.5q0-2.172 1.469-4.016t4.008-2.914 5.523-1.070 5.523 1.070 4.008 2.914 1.469 4.016zM28 16q0 1.875-1.109 3.508t-3.047 2.758q0.156 0.375 0.32 0.688t0.391 0.602 0.352 0.453 0.406 0.461 0.359 0.391q0.016 0.016 0.063 0.070t0.070 0.078 0.063 0.078 0.055 0.086l0.039 0.078t0.031 0.094 0.008 0.102-0.016 0.102q-0.047 0.219-0.203 0.344t-0.344 0.109q-0.781-0.109-1.344-0.25-2.406-0.625-4.344-2-1.406 0.25-2.75 0.25-4.234 0-7.375-2.063 0.906 0.063 1.375 0.063 2.516 0 4.828-0.703t4.125-2.016q1.953-1.437 3-3.313t1.047-3.969q0-1.203-0.359-2.375 2.016 1.109 3.187 2.781t1.172 3.594z"/></svg></i> 6
        </div></figure><div class="media-body"><h3 class="media-title promoTitle--rhythm--inc">Win A Dragon Ball Z: Kararot Collector’s Edition with PS4 Pro Included*</h3></div></a></li><li class="promo-type--grid promo-strip__item media  span3 "><a href="/videos/star-trek-picard-episode-5-stardust-city-rag-break/2300-6452257/" class="js-click-tag" data-promo-id="29653" data-top-slot-allowed="1" data-click-tag="front_door|promos|slot4|1700-29653"><figure class="media-figure"><div class="media-img "><img src="https://gamespot1.cbsistatic.com/uploads/screen_small/1574/15746725/3638450-picard_thumbnailtemplate_yt-e5_gs.jpg" alt=""></div><span class="content-type content-type--video hide-mobile content-symbol--medium  "><i><svg viewBox="0 0 90 90" width="90" height="90" aria-hidden="true" class="symbol symbol-video-play"><polygon points="10 80 10 10 80 45 10 80"/></svg></i></span><div class="media-type media-type--right hide-mobile"><i><svg version="1.1" width="28" height="28" viewBox="0 0 28 28" aria-hidden="true" class="symbol symbol-comments"><path d="M22 12q0 2.172-1.469 4.016t-4.008 2.914-5.523 1.070q-1.344 0-2.75-0.25-1.937 1.375-4.344 2-0.562 0.141-1.344 0.25h-0.047q-0.172 0-0.32-0.125t-0.18-0.328q-0.016-0.047-0.016-0.102t0.008-0.102 0.031-0.094l0.039-0.078t0.055-0.086 0.063-0.078 0.070-0.078 0.063-0.070q0.078-0.094 0.359-0.391t0.406-0.461 0.352-0.453 0.391-0.602 0.32-0.688q-1.937-1.125-3.047-2.766t-1.109-3.5q0-2.172 1.469-4.016t4.008-2.914 5.523-1.070 5.523 1.070 4.008 2.914 1.469 4.016zM28 16q0 1.875-1.109 3.508t-3.047 2.758q0.156 0.375 0.32 0.688t0.391 0.602 0.352 0.453 0.406 0.461 0.359 0.391q0.016 0.016 0.063 0.070t0.070 0.078 0.063 0.078 0.055 0.086l0.039 0.078t0.031 0.094 0.008 0.102-0.016 0.102q-0.047 0.219-0.203 0.344t-0.344 0.109q-0.781-0.109-1.344-0.25-2.406-0.625-4.344-2-1.406 0.25-2.75 0.25-4.234 0-7.375-2.063 0.906 0.063 1.375 0.063 2.516 0 4.828-0.703t4.125-2.016q1.953-1.437 3-3.313t1.047-3.969q0-1.203-0.359-2.375 2.016 1.109 3.187 2.781t1.172 3.594z"/></svg></i> 2
        </div></figure><div class="media-body"><h3 class="media-title promoTitle--rhythm--inc">Star Trek: Picard Episode 5 &quot;Stardust City Rag&quot; Breakdown &amp; Easter Eggs</h3></div></a></li></ul></section>
  <script type="text/javascript">
  var performance = window.performance || {};
  if (performance.mark && performance.measure) {
    performance.mark('nr_promoLoad');
          performance.measure('nr_promoLoad', 'nr_pageStart', 'nr_promoLoad');
      }
</script>
      <div class="js-mapped-ad mapped-ad mapped-leader_plus_top mapped-leader_plus_top-dart" data-ad-type="leader_plus_top"><div class="ad-wrap ad-wrap-leader_plus_top"></div></div>  
    
                <div class="primary-content span8 medium-span7">
                          
            
                        <!-- River --><section id="river" class="pod pod-river  pod-river--homepage pod-filter js-filter-pod"><dl class="pod-header pod-header--tabs has-feed-group"  data-feed-group="front-door"><dd class="pod-header__item pod-header__filters pod-header__filters--js"><div class="pod-header__filters--tabs js-filter-json" data-filter-query="content" data-filter-nohistory="1" data-filter-nodata="1"><a
                  name="popular"
                  class="pod-header__filters-item js-filter-option"
                                      data-filter-url="/river/content/popular"                    href="#popular"
                    data-filter-value="popular"
                    data-filter-cookie="&#x7B;&quot;name&quot;&#x3A;&quot;gs_river_pref&quot;,&quot;value&quot;&#x3A;&quot;popular&#x7C;2020-02-22&#x7C;0&quot;,&quot;length&quot;&#x3A;60&#x7D;"
                                   >
                Popular
              </a><a
                  name="recent"
                  class="pod-header__filters-item js-filter-option"
                                      data-filter-url="/river/content/recent"                    href="#recent"
                    data-filter-value="recent"
                    data-filter-cookie="&#x7B;&quot;name&quot;&#x3A;&quot;gs_river_pref&quot;,&quot;value&quot;&#x3A;&quot;recent&#x7C;2020-02-22&#x7C;0&quot;,&quot;length&quot;&#x3A;60&#x7D;"
                                   >
                Recent
              </a><a
                  name="updated"
                  class="pod-header__filters-item js-filter-option on"
                                      data-filter-url="/river/content/updated"                    href="#updated"
                    data-filter-value="updated"
                    data-filter-cookie="&#x7B;&quot;name&quot;&#x3A;&quot;gs_river_pref&quot;,&quot;value&quot;&#x3A;&quot;updated&#x7C;2020-02-22&#x7C;0&quot;,&quot;length&quot;&#x3A;60&#x7D;"
                                   >
                Updated
              </a></div></dd></dl><div class="filter-results js-filter-results"><section class="editorial river js-load-forever-container"><article class="media media-article"><a href="/articles/arcade1ups-nba-jam-cabinet-with-online-multiplayer/1100-6473978/" class="js-click-tag" data-click-tag="front_door|river|updated|page1|slot1"><figure class="media-figure media-figure--river"><div class="media-img imgflare--river"><img src="https://gamespot1.cbsistatic.com/uploads/screen_petite/1551/15511094/3638413-3624110-selects.00_00_10_09.still002.png" alt="" /><div class="media-type media-type--right"><i><svg version="1.1" width="28" height="28" viewBox="0 0 28 28" aria-hidden="true" class="symbol symbol-comments"><path d="M22 12q0 2.172-1.469 4.016t-4.008 2.914-5.523 1.070q-1.344 0-2.75-0.25-1.937 1.375-4.344 2-0.562 0.141-1.344 0.25h-0.047q-0.172 0-0.32-0.125t-0.18-0.328q-0.016-0.047-0.016-0.102t0.008-0.102 0.031-0.094l0.039-0.078t0.055-0.086 0.063-0.078 0.070-0.078 0.063-0.070q0.078-0.094 0.359-0.391t0.406-0.461 0.352-0.453 0.391-0.602 0.32-0.688q-1.937-1.125-3.047-2.766t-1.109-3.5q0-2.172 1.469-4.016t4.008-2.914 5.523-1.070 5.523 1.070 4.008 2.914 1.469 4.016zM28 16q0 1.875-1.109 3.508t-3.047 2.758q0.156 0.375 0.32 0.688t0.391 0.602 0.352 0.453 0.406 0.461 0.359 0.391q0.016 0.016 0.063 0.070t0.070 0.078 0.063 0.078 0.055 0.086l0.039 0.078t0.031 0.094 0.008 0.102-0.016 0.102q-0.047 0.219-0.203 0.344t-0.344 0.109q-0.781-0.109-1.344-0.25-2.406-0.625-4.344-2-1.406 0.25-2.75 0.25-4.234 0-7.375-2.063 0.906 0.063 1.375 0.063 2.516 0 4.828-0.703t4.125-2.016q1.953-1.437 3-3.313t1.047-3.969q0-1.203-0.359-2.375 2.016 1.109 3.187 2.781t1.172 3.594z"/></svg></i> 1
                                          
                                          <span class="js-river-upvote hide" data-post-render-param="UserBundle.riverUpvote[]" data-post-render-value="1100-6473978"><i><svg version="1.1" width="26" height="28" viewBox="0 0 26 28" aria-hidden="true" class="symbol symbol-thumbs-up"><path d="M4 21q0-0.406-0.297-0.703t-0.703-0.297q-0.422 0-0.711 0.297t-0.289 0.703q0 0.422 0.289 0.711t0.711 0.289q0.406 0 0.703-0.289t0.297-0.711zM6.5 13v10q0 0.406-0.297 0.703t-0.703 0.297h-4.5q-0.406 0-0.703-0.297t-0.297-0.703v-10q0-0.406 0.297-0.703t0.703-0.297h4.5q0.406 0 0.703 0.297t0.297 0.703zM25 13q0 1.344-0.859 2.328 0.234 0.688 0.234 1.188 0.047 1.188-0.672 2.141 0.266 0.875 0 1.828-0.234 0.891-0.844 1.469 0.141 1.75-0.766 2.828-1 1.188-3.078 1.219h-2.016q-1.031 0-2.25-0.242t-1.898-0.453-1.883-0.617q-1.922-0.672-2.469-0.688-0.406-0.016-0.703-0.305t-0.297-0.695v-10.016q0-0.391 0.281-0.68t0.672-0.32q0.375-0.031 1.188-0.922t1.578-1.891q1.062-1.359 1.578-1.875 0.281-0.281 0.484-0.75t0.273-0.758 0.211-0.945q0.109-0.609 0.195-0.953t0.305-0.812 0.531-0.781q0.297-0.297 0.703-0.297 0.719 0 1.289 0.164t0.938 0.406 0.625 0.633 0.375 0.703 0.187 0.781 0.078 0.703 0.008 0.609q0 0.594-0.148 1.188t-0.297 0.938-0.43 0.875q-0.047 0.094-0.156 0.281t-0.172 0.344-0.125 0.375h4.328q1.219 0 2.109 0.891t0.891 2.109z"/></svg></i><span class="js-upvote-count-value"></span></span></div></div></figure><div class="media-body"><h3 class="media-title">Arcade1Up&#039;s NBA Jam Cabinet With Online Multiplayer Now Available For Pre-Order</h3><p class="media-deck"> Arcade1Up is kicking off the spring season with a number of new arcade cabinets, three of which are now available for pre-order, including the online multiplayer-enabled NBA Jam machine.</p><footer class="media-meta"><time class="media-date" datetime="2020-02-22 18:50:18 UTC">4 hours ago</time></footer></div></a></article><article class="media media-article"><a href="/articles/the-best-toys-at-toy-fair-2020-funko-pops-baby-yod/1100-6473974/" class="js-click-tag" data-click-tag="front_door|river|updated|page1|slot2"><figure class="media-figure media-figure--river"><div class="media-img imgflare--river"><img src="https://gamespot1.cbsistatic.com/uploads/screen_petite/1591/15918215/3638366-toy-fair-2020.jpg" alt="" /><div class="media-type media-type--right"><span class="js-river-upvote hide" data-post-render-param="UserBundle.riverUpvote[]" data-post-render-value="1100-6473974"><i><svg version="1.1" width="26" height="28" viewBox="0 0 26 28" aria-hidden="true" class="symbol symbol-thumbs-up"><path d="M4 21q0-0.406-0.297-0.703t-0.703-0.297q-0.422 0-0.711 0.297t-0.289 0.703q0 0.422 0.289 0.711t0.711 0.289q0.406 0 0.703-0.289t0.297-0.711zM6.5 13v10q0 0.406-0.297 0.703t-0.703 0.297h-4.5q-0.406 0-0.703-0.297t-0.297-0.703v-10q0-0.406 0.297-0.703t0.703-0.297h4.5q0.406 0 0.703 0.297t0.297 0.703zM25 13q0 1.344-0.859 2.328 0.234 0.688 0.234 1.188 0.047 1.188-0.672 2.141 0.266 0.875 0 1.828-0.234 0.891-0.844 1.469 0.141 1.75-0.766 2.828-1 1.188-3.078 1.219h-2.016q-1.031 0-2.25-0.242t-1.898-0.453-1.883-0.617q-1.922-0.672-2.469-0.688-0.406-0.016-0.703-0.305t-0.297-0.695v-10.016q0-0.391 0.281-0.68t0.672-0.32q0.375-0.031 1.188-0.922t1.578-1.891q1.062-1.359 1.578-1.875 0.281-0.281 0.484-0.75t0.273-0.758 0.211-0.945q0.109-0.609 0.195-0.953t0.305-0.812 0.531-0.781q0.297-0.297 0.703-0.297 0.719 0 1.289 0.164t0.938 0.406 0.625 0.633 0.375 0.703 0.187 0.781 0.078 0.703 0.008 0.609q0 0.594-0.148 1.188t-0.297 0.938-0.43 0.875q-0.047 0.094-0.156 0.281t-0.172 0.344-0.125 0.375h4.328q1.219 0 2.109 0.891t0.891 2.109z"/></svg></i><span class="js-upvote-count-value"></span></span></div></div></figure><div class="media-body"><h3 class="media-title">The Best Toys At Toy Fair 2020: Funko Pops, Baby Yoda Plush, Legos, And More</h3><p class="media-deck"> Check out the most exciting Funko Pops, toys, and more revealed at Toy Fair 2020 in New York City, including some fantastic new Baby Yoda merchandise.</p><footer class="media-meta"><time class="media-date" datetime="2020-02-22 17:47:26 UTC">5 hours ago</time></footer></div></a></article><div class="js-mapped-ad mapped-ad mapped-native-top mapped-native-top-dart s-rhythm" data-ad-type="native-top"><div class="ad-wrap ad-wrap-native-top"></div></div><article class="media media-article"><a href="/articles/xbox-one-x-bundles-discounted-to-their-best-prices/1100-6473987/" class="js-click-tag" data-click-tag="front_door|river|updated|page1|slot3"><figure class="media-figure media-figure--river"><div class="media-img imgflare--river"><img src="https://gamespot1.cbsistatic.com/uploads/screen_petite/1595/15950357/3638473-3608328-xbox%20one%20x%20star%20wars.jpg" alt="" /><div class="media-type media-type--right"><i><svg version="1.1" width="28" height="28" viewBox="0 0 28 28" aria-hidden="true" class="symbol symbol-comments"><path d="M22 12q0 2.172-1.469 4.016t-4.008 2.914-5.523 1.070q-1.344 0-2.75-0.25-1.937 1.375-4.344 2-0.562 0.141-1.344 0.25h-0.047q-0.172 0-0.32-0.125t-0.18-0.328q-0.016-0.047-0.016-0.102t0.008-0.102 0.031-0.094l0.039-0.078t0.055-0.086 0.063-0.078 0.070-0.078 0.063-0.070q0.078-0.094 0.359-0.391t0.406-0.461 0.352-0.453 0.391-0.602 0.32-0.688q-1.937-1.125-3.047-2.766t-1.109-3.5q0-2.172 1.469-4.016t4.008-2.914 5.523-1.070 5.523 1.070 4.008 2.914 1.469 4.016zM28 16q0 1.875-1.109 3.508t-3.047 2.758q0.156 0.375 0.32 0.688t0.391 0.602 0.352 0.453 0.406 0.461 0.359 0.391q0.016 0.016 0.063 0.070t0.070 0.078 0.063 0.078 0.055 0.086l0.039 0.078t0.031 0.094 0.008 0.102-0.016 0.102q-0.047 0.219-0.203 0.344t-0.344 0.109q-0.781-0.109-1.344-0.25-2.406-0.625-4.344-2-1.406 0.25-2.75 0.25-4.234 0-7.375-2.063 0.906 0.063 1.375 0.063 2.516 0 4.828-0.703t4.125-2.016q1.953-1.437 3-3.313t1.047-3.969q0-1.203-0.359-2.375 2.016 1.109 3.187 2.781t1.172 3.594z"/></svg></i> 1
                                          
                                          <span class="js-river-upvote hide" data-post-render-param="UserBundle.riverUpvote[]" data-post-render-value="1100-6473987"><i><svg version="1.1" width="26" height="28" viewBox="0 0 26 28" aria-hidden="true" class="symbol symbol-thumbs-up"><path d="M4 21q0-0.406-0.297-0.703t-0.703-0.297q-0.422 0-0.711 0.297t-0.289 0.703q0 0.422 0.289 0.711t0.711 0.289q0.406 0 0.703-0.289t0.297-0.711zM6.5 13v10q0 0.406-0.297 0.703t-0.703 0.297h-4.5q-0.406 0-0.703-0.297t-0.297-0.703v-10q0-0.406 0.297-0.703t0.703-0.297h4.5q0.406 0 0.703 0.297t0.297 0.703zM25 13q0 1.344-0.859 2.328 0.234 0.688 0.234 1.188 0.047 1.188-0.672 2.141 0.266 0.875 0 1.828-0.234 0.891-0.844 1.469 0.141 1.75-0.766 2.828-1 1.188-3.078 1.219h-2.016q-1.031 0-2.25-0.242t-1.898-0.453-1.883-0.617q-1.922-0.672-2.469-0.688-0.406-0.016-0.703-0.305t-0.297-0.695v-10.016q0-0.391 0.281-0.68t0.672-0.32q0.375-0.031 1.188-0.922t1.578-1.891q1.062-1.359 1.578-1.875 0.281-0.281 0.484-0.75t0.273-0.758 0.211-0.945q0.109-0.609 0.195-0.953t0.305-0.812 0.531-0.781q0.297-0.297 0.703-0.297 0.719 0 1.289 0.164t0.938 0.406 0.625 0.633 0.375 0.703 0.187 0.781 0.078 0.703 0.008 0.609q0 0.594-0.148 1.188t-0.297 0.938-0.43 0.875q-0.047 0.094-0.156 0.281t-0.172 0.344-0.125 0.375h4.328q1.219 0 2.109 0.891t0.891 2.109z"/></svg></i><span class="js-upvote-count-value"></span></span></div></div></figure><div class="media-body"><h3 class="media-title">Xbox One X Bundles Discounted To Their Best Prices Yet</h3><p class="media-deck"> Multiple Xbox One X bundles are discounted to just $299 right now, which is $50 less than their Black Friday prices.</p><footer class="media-meta"><time class="media-date" datetime="2020-02-22 17:40:03 UTC">5 hours ago</time></footer></div></a></article><article class="media media-article"><a href="/articles/toy-fair-2020-new-pokemon-toys-revealed-including-/1100-6473993/" class="js-click-tag" data-click-tag="front_door|river|updated|page1|slot4"><figure class="media-figure media-figure--river"><div class="media-img imgflare--river"><img src="https://gamespot1.cbsistatic.com/uploads/screen_petite/1595/15950357/3638508-snooze%20snorlax.jpg" alt="" /><div class="media-type media-type--right"><span class="js-river-upvote hide" data-post-render-param="UserBundle.riverUpvote[]" data-post-render-value="1100-6473993"><i><svg version="1.1" width="26" height="28" viewBox="0 0 26 28" aria-hidden="true" class="symbol symbol-thumbs-up"><path d="M4 21q0-0.406-0.297-0.703t-0.703-0.297q-0.422 0-0.711 0.297t-0.289 0.703q0 0.422 0.289 0.711t0.711 0.289q0.406 0 0.703-0.289t0.297-0.711zM6.5 13v10q0 0.406-0.297 0.703t-0.703 0.297h-4.5q-0.406 0-0.703-0.297t-0.297-0.703v-10q0-0.406 0.297-0.703t0.703-0.297h4.5q0.406 0 0.703 0.297t0.297 0.703zM25 13q0 1.344-0.859 2.328 0.234 0.688 0.234 1.188 0.047 1.188-0.672 2.141 0.266 0.875 0 1.828-0.234 0.891-0.844 1.469 0.141 1.75-0.766 2.828-1 1.188-3.078 1.219h-2.016q-1.031 0-2.25-0.242t-1.898-0.453-1.883-0.617q-1.922-0.672-2.469-0.688-0.406-0.016-0.703-0.305t-0.297-0.695v-10.016q0-0.391 0.281-0.68t0.672-0.32q0.375-0.031 1.188-0.922t1.578-1.891q1.062-1.359 1.578-1.875 0.281-0.281 0.484-0.75t0.273-0.758 0.211-0.945q0.109-0.609 0.195-0.953t0.305-0.812 0.531-0.781q0.297-0.297 0.703-0.297 0.719 0 1.289 0.164t0.938 0.406 0.625 0.633 0.375 0.703 0.187 0.781 0.078 0.703 0.008 0.609q0 0.594-0.148 1.188t-0.297 0.938-0.43 0.875q-0.047 0.094-0.156 0.281t-0.172 0.344-0.125 0.375h4.328q1.219 0 2.109 0.891t0.891 2.109z"/></svg></i><span class="js-upvote-count-value"></span></span></div></div></figure><div class="media-body"><h3 class="media-title">Toy Fair 2020: New Pokemon Toys Revealed, Including A Very Sleepy Snorlax Plush</h3><p class="media-deck"> Wicked Cool Toys revealed three new Pokemon toys ahead of Toy Fair 2020, including an interactive Eevee and Snorlax and a neat playset.</p><footer class="media-meta"><time class="media-date" datetime="2020-02-22 17:38:21 UTC">5 hours ago</time></footer></div></a></article><article class="media media-article"><a href="/articles/baby-yoda-merch-at-toy-fair-2020-build-a-bear-plus/1100-6473929/" class="js-click-tag" data-click-tag="front_door|river|updated|page1|slot5"><figure class="media-figure media-figure--river"><div class="media-img imgflare--river"><img src="https://gamespot1.cbsistatic.com/uploads/screen_petite/1595/15950357/3638070-baby%20yoda%20thumbnail.jpg" alt="" /><div class="media-type media-type--right"><i><svg version="1.1" width="28" height="28" viewBox="0 0 28 28" aria-hidden="true" class="symbol symbol-comments"><path d="M22 12q0 2.172-1.469 4.016t-4.008 2.914-5.523 1.070q-1.344 0-2.75-0.25-1.937 1.375-4.344 2-0.562 0.141-1.344 0.25h-0.047q-0.172 0-0.32-0.125t-0.18-0.328q-0.016-0.047-0.016-0.102t0.008-0.102 0.031-0.094l0.039-0.078t0.055-0.086 0.063-0.078 0.070-0.078 0.063-0.070q0.078-0.094 0.359-0.391t0.406-0.461 0.352-0.453 0.391-0.602 0.32-0.688q-1.937-1.125-3.047-2.766t-1.109-3.5q0-2.172 1.469-4.016t4.008-2.914 5.523-1.070 5.523 1.070 4.008 2.914 1.469 4.016zM28 16q0 1.875-1.109 3.508t-3.047 2.758q0.156 0.375 0.32 0.688t0.391 0.602 0.352 0.453 0.406 0.461 0.359 0.391q0.016 0.016 0.063 0.070t0.070 0.078 0.063 0.078 0.055 0.086l0.039 0.078t0.031 0.094 0.008 0.102-0.016 0.102q-0.047 0.219-0.203 0.344t-0.344 0.109q-0.781-0.109-1.344-0.25-2.406-0.625-4.344-2-1.406 0.25-2.75 0.25-4.234 0-7.375-2.063 0.906 0.063 1.375 0.063 2.516 0 4.828-0.703t4.125-2.016q1.953-1.437 3-3.313t1.047-3.969q0-1.203-0.359-2.375 2.016 1.109 3.187 2.781t1.172 3.594z"/></svg></i> 12
                                          
                                          <span class="js-river-upvote hide" data-post-render-param="UserBundle.riverUpvote[]" data-post-render-value="1100-6473929"><i><svg version="1.1" width="26" height="28" viewBox="0 0 26 28" aria-hidden="true" class="symbol symbol-thumbs-up"><path d="M4 21q0-0.406-0.297-0.703t-0.703-0.297q-0.422 0-0.711 0.297t-0.289 0.703q0 0.422 0.289 0.711t0.711 0.289q0.406 0 0.703-0.289t0.297-0.711zM6.5 13v10q0 0.406-0.297 0.703t-0.703 0.297h-4.5q-0.406 0-0.703-0.297t-0.297-0.703v-10q0-0.406 0.297-0.703t0.703-0.297h4.5q0.406 0 0.703 0.297t0.297 0.703zM25 13q0 1.344-0.859 2.328 0.234 0.688 0.234 1.188 0.047 1.188-0.672 2.141 0.266 0.875 0 1.828-0.234 0.891-0.844 1.469 0.141 1.75-0.766 2.828-1 1.188-3.078 1.219h-2.016q-1.031 0-2.25-0.242t-1.898-0.453-1.883-0.617q-1.922-0.672-2.469-0.688-0.406-0.016-0.703-0.305t-0.297-0.695v-10.016q0-0.391 0.281-0.68t0.672-0.32q0.375-0.031 1.188-0.922t1.578-1.891q1.062-1.359 1.578-1.875 0.281-0.281 0.484-0.75t0.273-0.758 0.211-0.945q0.109-0.609 0.195-0.953t0.305-0.812 0.531-0.781q0.297-0.297 0.703-0.297 0.719 0 1.289 0.164t0.938 0.406 0.625 0.633 0.375 0.703 0.187 0.781 0.078 0.703 0.008 0.609q0 0.594-0.148 1.188t-0.297 0.938-0.43 0.875q-0.047 0.094-0.156 0.281t-0.172 0.344-0.125 0.375h4.328q1.219 0 2.109 0.891t0.891 2.109z"/></svg></i><span class="js-upvote-count-value"></span></span></div></div></figure><div class="media-body"><h3 class="media-title">Baby Yoda Merch At Toy Fair 2020: Build-A-Bear, Plush, Legos, Funko Pops, And More</h3><p class="media-deck"> An avalanche of new Baby Yoda merchandise has been revealed ahead of Toy Fair 2020, including an animatronic doll, new Lego sets, action figures, and more.</p><footer class="media-meta"><time class="media-date" datetime="2020-02-22 17:35:26 UTC">5 hours ago</time></footer></div></a></article><article class="media media-article"><a href="/articles/fortnite-battle-pass-season-2-skins-items-and-cosm/1100-6473919/" class="js-click-tag" data-click-tag="front_door|river|updated|page1|slot6"><figure class="media-figure media-figure--river"><div class="media-img imgflare--river"><img src="https://gamespot1.cbsistatic.com/uploads/screen_petite/1585/15855271/3637928-fortnite-chapter2s2-operations-1776x889-2ef0107c5509c116e0936d598d281d9e3c9b332a.png" alt="" /><div class="media-type media-type--right"><span class="js-river-upvote hide" data-post-render-param="UserBundle.riverUpvote[]" data-post-render-value="1100-6473919"><i><svg version="1.1" width="26" height="28" viewBox="0 0 26 28" aria-hidden="true" class="symbol symbol-thumbs-up"><path d="M4 21q0-0.406-0.297-0.703t-0.703-0.297q-0.422 0-0.711 0.297t-0.289 0.703q0 0.422 0.289 0.711t0.711 0.289q0.406 0 0.703-0.289t0.297-0.711zM6.5 13v10q0 0.406-0.297 0.703t-0.703 0.297h-4.5q-0.406 0-0.703-0.297t-0.297-0.703v-10q0-0.406 0.297-0.703t0.703-0.297h4.5q0.406 0 0.703 0.297t0.297 0.703zM25 13q0 1.344-0.859 2.328 0.234 0.688 0.234 1.188 0.047 1.188-0.672 2.141 0.266 0.875 0 1.828-0.234 0.891-0.844 1.469 0.141 1.75-0.766 2.828-1 1.188-3.078 1.219h-2.016q-1.031 0-2.25-0.242t-1.898-0.453-1.883-0.617q-1.922-0.672-2.469-0.688-0.406-0.016-0.703-0.305t-0.297-0.695v-10.016q0-0.391 0.281-0.68t0.672-0.32q0.375-0.031 1.188-0.922t1.578-1.891q1.062-1.359 1.578-1.875 0.281-0.281 0.484-0.75t0.273-0.758 0.211-0.945q0.109-0.609 0.195-0.953t0.305-0.812 0.531-0.781q0.297-0.297 0.703-0.297 0.719 0 1.289 0.164t0.938 0.406 0.625 0.633 0.375 0.703 0.187 0.781 0.078 0.703 0.008 0.609q0 0.594-0.148 1.188t-0.297 0.938-0.43 0.875q-0.047 0.094-0.156 0.281t-0.172 0.344-0.125 0.375h4.328q1.219 0 2.109 0.891t0.891 2.109z"/></svg></i><span class="js-upvote-count-value"></span></span></div></div></figure><div class="media-body"><h3 class="media-title">Fortnite Battle Pass: Season 2 Skins, Items, And Cosmetic Rewards</h3><p class="media-deck"> As always, the new season of Fortnite means tons of new cosmetic items to earn with the new Battle Pass. Check them all out here.</p><footer class="media-meta"><time class="media-date" datetime="2020-02-22 06:31:41 UTC">16 hours ago</time></footer></div></a></article><article class="media media-article"><a href="/articles/a-fortnite-deadpool-skin-is-included-in-season-2s-/1100-6473922/" class="js-click-tag" data-click-tag="front_door|river|updated|page1|slot7"><figure class="media-figure media-figure--river"><div class="media-img imgflare--river"><img src="https://gamespot1.cbsistatic.com/uploads/screen_petite/1597/15971423/3638017-9040972404-31494.jpg" alt="" /><div class="media-type media-type--right"><i><svg version="1.1" width="28" height="28" viewBox="0 0 28 28" aria-hidden="true" class="symbol symbol-comments"><path d="M22 12q0 2.172-1.469 4.016t-4.008 2.914-5.523 1.070q-1.344 0-2.75-0.25-1.937 1.375-4.344 2-0.562 0.141-1.344 0.25h-0.047q-0.172 0-0.32-0.125t-0.18-0.328q-0.016-0.047-0.016-0.102t0.008-0.102 0.031-0.094l0.039-0.078t0.055-0.086 0.063-0.078 0.070-0.078 0.063-0.070q0.078-0.094 0.359-0.391t0.406-0.461 0.352-0.453 0.391-0.602 0.32-0.688q-1.937-1.125-3.047-2.766t-1.109-3.5q0-2.172 1.469-4.016t4.008-2.914 5.523-1.070 5.523 1.070 4.008 2.914 1.469 4.016zM28 16q0 1.875-1.109 3.508t-3.047 2.758q0.156 0.375 0.32 0.688t0.391 0.602 0.352 0.453 0.406 0.461 0.359 0.391q0.016 0.016 0.063 0.070t0.070 0.078 0.063 0.078 0.055 0.086l0.039 0.078t0.031 0.094 0.008 0.102-0.016 0.102q-0.047 0.219-0.203 0.344t-0.344 0.109q-0.781-0.109-1.344-0.25-2.406-0.625-4.344-2-1.406 0.25-2.75 0.25-4.234 0-7.375-2.063 0.906 0.063 1.375 0.063 2.516 0 4.828-0.703t4.125-2.016q1.953-1.437 3-3.313t1.047-3.969q0-1.203-0.359-2.375 2.016 1.109 3.187 2.781t1.172 3.594z"/></svg></i> 2
                                          
                                          <span class="js-river-upvote hide" data-post-render-param="UserBundle.riverUpvote[]" data-post-render-value="1100-6473922"><i><svg version="1.1" width="26" height="28" viewBox="0 0 26 28" aria-hidden="true" class="symbol symbol-thumbs-up"><path d="M4 21q0-0.406-0.297-0.703t-0.703-0.297q-0.422 0-0.711 0.297t-0.289 0.703q0 0.422 0.289 0.711t0.711 0.289q0.406 0 0.703-0.289t0.297-0.711zM6.5 13v10q0 0.406-0.297 0.703t-0.703 0.297h-4.5q-0.406 0-0.703-0.297t-0.297-0.703v-10q0-0.406 0.297-0.703t0.703-0.297h4.5q0.406 0 0.703 0.297t0.297 0.703zM25 13q0 1.344-0.859 2.328 0.234 0.688 0.234 1.188 0.047 1.188-0.672 2.141 0.266 0.875 0 1.828-0.234 0.891-0.844 1.469 0.141 1.75-0.766 2.828-1 1.188-3.078 1.219h-2.016q-1.031 0-2.25-0.242t-1.898-0.453-1.883-0.617q-1.922-0.672-2.469-0.688-0.406-0.016-0.703-0.305t-0.297-0.695v-10.016q0-0.391 0.281-0.68t0.672-0.32q0.375-0.031 1.188-0.922t1.578-1.891q1.062-1.359 1.578-1.875 0.281-0.281 0.484-0.75t0.273-0.758 0.211-0.945q0.109-0.609 0.195-0.953t0.305-0.812 0.531-0.781q0.297-0.297 0.703-0.297 0.719 0 1.289 0.164t0.938 0.406 0.625 0.633 0.375 0.703 0.187 0.781 0.078 0.703 0.008 0.609q0 0.594-0.148 1.188t-0.297 0.938-0.43 0.875q-0.047 0.094-0.156 0.281t-0.172 0.344-0.125 0.375h4.328q1.219 0 2.109 0.891t0.891 2.109z"/></svg></i><span class="js-upvote-count-value"></span></span></div></div></figure><div class="media-body"><h3 class="media-title">A Fortnite Deadpool Skin Is Included In Season 2&#039;s Battle Pass</h3><p class="media-deck"> The Merc with a Mouth will be unlocked through weekly challenges in Fortnite Chapter 2 Season 2.</p><footer class="media-meta"><time class="media-date" datetime="2020-02-22 06:30:57 UTC">16 hours ago</time></footer></div></a></article><article class="media media-article"><a href="/articles/toy-fair-2020-see-the-new-marvels-avengers-game-fu/1100-6473981/" class="js-click-tag" data-click-tag="front_door|river|updated|page1|slot8"><figure class="media-figure media-figure--river"><div class="media-img imgflare--river"><img src="https://gamespot1.cbsistatic.com/uploads/screen_petite/1595/15950357/3638445-marvel%20avenger%27s%20funkos.jpg" alt="" /><div class="media-type media-type--right"><i><svg version="1.1" width="28" height="28" viewBox="0 0 28 28" aria-hidden="true" class="symbol symbol-comments"><path d="M22 12q0 2.172-1.469 4.016t-4.008 2.914-5.523 1.070q-1.344 0-2.75-0.25-1.937 1.375-4.344 2-0.562 0.141-1.344 0.25h-0.047q-0.172 0-0.32-0.125t-0.18-0.328q-0.016-0.047-0.016-0.102t0.008-0.102 0.031-0.094l0.039-0.078t0.055-0.086 0.063-0.078 0.070-0.078 0.063-0.070q0.078-0.094 0.359-0.391t0.406-0.461 0.352-0.453 0.391-0.602 0.32-0.688q-1.937-1.125-3.047-2.766t-1.109-3.5q0-2.172 1.469-4.016t4.008-2.914 5.523-1.070 5.523 1.070 4.008 2.914 1.469 4.016zM28 16q0 1.875-1.109 3.508t-3.047 2.758q0.156 0.375 0.32 0.688t0.391 0.602 0.352 0.453 0.406 0.461 0.359 0.391q0.016 0.016 0.063 0.070t0.070 0.078 0.063 0.078 0.055 0.086l0.039 0.078t0.031 0.094 0.008 0.102-0.016 0.102q-0.047 0.219-0.203 0.344t-0.344 0.109q-0.781-0.109-1.344-0.25-2.406-0.625-4.344-2-1.406 0.25-2.75 0.25-4.234 0-7.375-2.063 0.906 0.063 1.375 0.063 2.516 0 4.828-0.703t4.125-2.016q1.953-1.437 3-3.313t1.047-3.969q0-1.203-0.359-2.375 2.016 1.109 3.187 2.781t1.172 3.594z"/></svg></i> 1
                                          
                                          <span class="js-river-upvote hide" data-post-render-param="UserBundle.riverUpvote[]" data-post-render-value="1100-6473981"><i><svg version="1.1" width="26" height="28" viewBox="0 0 26 28" aria-hidden="true" class="symbol symbol-thumbs-up"><path d="M4 21q0-0.406-0.297-0.703t-0.703-0.297q-0.422 0-0.711 0.297t-0.289 0.703q0 0.422 0.289 0.711t0.711 0.289q0.406 0 0.703-0.289t0.297-0.711zM6.5 13v10q0 0.406-0.297 0.703t-0.703 0.297h-4.5q-0.406 0-0.703-0.297t-0.297-0.703v-10q0-0.406 0.297-0.703t0.703-0.297h4.5q0.406 0 0.703 0.297t0.297 0.703zM25 13q0 1.344-0.859 2.328 0.234 0.688 0.234 1.188 0.047 1.188-0.672 2.141 0.266 0.875 0 1.828-0.234 0.891-0.844 1.469 0.141 1.75-0.766 2.828-1 1.188-3.078 1.219h-2.016q-1.031 0-2.25-0.242t-1.898-0.453-1.883-0.617q-1.922-0.672-2.469-0.688-0.406-0.016-0.703-0.305t-0.297-0.695v-10.016q0-0.391 0.281-0.68t0.672-0.32q0.375-0.031 1.188-0.922t1.578-1.891q1.062-1.359 1.578-1.875 0.281-0.281 0.484-0.75t0.273-0.758 0.211-0.945q0.109-0.609 0.195-0.953t0.305-0.812 0.531-0.781q0.297-0.297 0.703-0.297 0.719 0 1.289 0.164t0.938 0.406 0.625 0.633 0.375 0.703 0.187 0.781 0.078 0.703 0.008 0.609q0 0.594-0.148 1.188t-0.297 0.938-0.43 0.875q-0.047 0.094-0.156 0.281t-0.172 0.344-0.125 0.375h4.328q1.219 0 2.109 0.891t0.891 2.109z"/></svg></i><span class="js-upvote-count-value"></span></span></div></div></figure><div class="media-body"><h3 class="media-title">Toy Fair 2020: See The New Marvel&#039;s Avengers Game Funko Pops</h3><p class="media-deck"> The upcoming Marvel&#039;s Avengers game is getting a lineup of Funko Pops, and you can pre-order all of them now at discounted prices.</p><footer class="media-meta"><time class="media-date" datetime="2020-02-22 04:51:27 UTC">18 hours ago</time></footer></div></a></article><article class="media media-video"><a href="/videos/devil-may-cry-3-on-switch-90-minutes-of-gameplay/2300-6452247/" class="js-click-tag" data-click-tag="front_door|river|updated|page1|slot9"><figure class="media-figure media-figure--river"><div class="media-img imgflare--river"><img src="https://gamespot1.cbsistatic.com/uploads/screen_petite/1593/15930438/3638088-gamespotlive_dmc3switch.jpg" alt="" /><div class="media-type media-type--right"><span class="js-river-upvote hide" data-post-render-param="UserBundle.riverUpvote[]" data-post-render-value="2300-6452247"><i><svg version="1.1" width="26" height="28" viewBox="0 0 26 28" aria-hidden="true" class="symbol symbol-thumbs-up"><path d="M4 21q0-0.406-0.297-0.703t-0.703-0.297q-0.422 0-0.711 0.297t-0.289 0.703q0 0.422 0.289 0.711t0.711 0.289q0.406 0 0.703-0.289t0.297-0.711zM6.5 13v10q0 0.406-0.297 0.703t-0.703 0.297h-4.5q-0.406 0-0.703-0.297t-0.297-0.703v-10q0-0.406 0.297-0.703t0.703-0.297h4.5q0.406 0 0.703 0.297t0.297 0.703zM25 13q0 1.344-0.859 2.328 0.234 0.688 0.234 1.188 0.047 1.188-0.672 2.141 0.266 0.875 0 1.828-0.234 0.891-0.844 1.469 0.141 1.75-0.766 2.828-1 1.188-3.078 1.219h-2.016q-1.031 0-2.25-0.242t-1.898-0.453-1.883-0.617q-1.922-0.672-2.469-0.688-0.406-0.016-0.703-0.305t-0.297-0.695v-10.016q0-0.391 0.281-0.68t0.672-0.32q0.375-0.031 1.188-0.922t1.578-1.891q1.062-1.359 1.578-1.875 0.281-0.281 0.484-0.75t0.273-0.758 0.211-0.945q0.109-0.609 0.195-0.953t0.305-0.812 0.531-0.781q0.297-0.297 0.703-0.297 0.719 0 1.289 0.164t0.938 0.406 0.625 0.633 0.375 0.703 0.187 0.781 0.078 0.703 0.008 0.609q0 0.594-0.148 1.188t-0.297 0.938-0.43 0.875q-0.047 0.094-0.156 0.281t-0.172 0.344-0.125 0.375h4.328q1.219 0 2.109 0.891t0.891 2.109z"/></svg></i><span class="js-upvote-count-value"></span></span></div><div class="content-type content-type--video"><i><svg viewBox="0 0 90 90" width="90" height="90" aria-hidden="true" class="symbol symbol-video-play"><polygon points="10 80 10 10 80 45 10 80"/></svg></i></div></div></figure><div class="media-body"><h3 class="media-title">Devil May Cry 3 On Switch - 90 Minutes of Gameplay</h3><p class="media-deck"> Today on GameSpot Live, we check out Devil May Cry 3 and its new features that are now available on the Nintendo Switch. Let&#039;s see how the new weapon and ...</p><footer class="media-meta"><time class="media-date" datetime="2020-02-22 03:20:16 UTC">19 hours ago</time></footer></div></a></article><article class="media media-video"><a href="/videos/fight-us-in-under-night-in-birth-exelatecl-r-on-ps/2300-6452230/" class="js-click-tag" data-click-tag="front_door|river|updated|page1|slot10"><figure class="media-figure media-figure--river"><div class="media-img imgflare--river"><img src="https://gamespot1.cbsistatic.com/uploads/screen_petite/1568/15687785/3637436-communityfridays_undernight_20200218_site.jpg" alt="" /><div class="media-type media-type--right"><i><svg version="1.1" width="28" height="28" viewBox="0 0 28 28" aria-hidden="true" class="symbol symbol-comments"><path d="M22 12q0 2.172-1.469 4.016t-4.008 2.914-5.523 1.070q-1.344 0-2.75-0.25-1.937 1.375-4.344 2-0.562 0.141-1.344 0.25h-0.047q-0.172 0-0.32-0.125t-0.18-0.328q-0.016-0.047-0.016-0.102t0.008-0.102 0.031-0.094l0.039-0.078t0.055-0.086 0.063-0.078 0.070-0.078 0.063-0.070q0.078-0.094 0.359-0.391t0.406-0.461 0.352-0.453 0.391-0.602 0.32-0.688q-1.937-1.125-3.047-2.766t-1.109-3.5q0-2.172 1.469-4.016t4.008-2.914 5.523-1.070 5.523 1.070 4.008 2.914 1.469 4.016zM28 16q0 1.875-1.109 3.508t-3.047 2.758q0.156 0.375 0.32 0.688t0.391 0.602 0.352 0.453 0.406 0.461 0.359 0.391q0.016 0.016 0.063 0.070t0.070 0.078 0.063 0.078 0.055 0.086l0.039 0.078t0.031 0.094 0.008 0.102-0.016 0.102q-0.047 0.219-0.203 0.344t-0.344 0.109q-0.781-0.109-1.344-0.25-2.406-0.625-4.344-2-1.406 0.25-2.75 0.25-4.234 0-7.375-2.063 0.906 0.063 1.375 0.063 2.516 0 4.828-0.703t4.125-2.016q1.953-1.437 3-3.313t1.047-3.969q0-1.203-0.359-2.375 2.016 1.109 3.187 2.781t1.172 3.594z"/></svg></i> 1
                                          
                                          <span class="js-river-upvote hide" data-post-render-param="UserBundle.riverUpvote[]" data-post-render-value="2300-6452230"><i><svg version="1.1" width="26" height="28" viewBox="0 0 26 28" aria-hidden="true" class="symbol symbol-thumbs-up"><path d="M4 21q0-0.406-0.297-0.703t-0.703-0.297q-0.422 0-0.711 0.297t-0.289 0.703q0 0.422 0.289 0.711t0.711 0.289q0.406 0 0.703-0.289t0.297-0.711zM6.5 13v10q0 0.406-0.297 0.703t-0.703 0.297h-4.5q-0.406 0-0.703-0.297t-0.297-0.703v-10q0-0.406 0.297-0.703t0.703-0.297h4.5q0.406 0 0.703 0.297t0.297 0.703zM25 13q0 1.344-0.859 2.328 0.234 0.688 0.234 1.188 0.047 1.188-0.672 2.141 0.266 0.875 0 1.828-0.234 0.891-0.844 1.469 0.141 1.75-0.766 2.828-1 1.188-3.078 1.219h-2.016q-1.031 0-2.25-0.242t-1.898-0.453-1.883-0.617q-1.922-0.672-2.469-0.688-0.406-0.016-0.703-0.305t-0.297-0.695v-10.016q0-0.391 0.281-0.68t0.672-0.32q0.375-0.031 1.188-0.922t1.578-1.891q1.062-1.359 1.578-1.875 0.281-0.281 0.484-0.75t0.273-0.758 0.211-0.945q0.109-0.609 0.195-0.953t0.305-0.812 0.531-0.781q0.297-0.297 0.703-0.297 0.719 0 1.289 0.164t0.938 0.406 0.625 0.633 0.375 0.703 0.187 0.781 0.078 0.703 0.008 0.609q0 0.594-0.148 1.188t-0.297 0.938-0.43 0.875q-0.047 0.094-0.156 0.281t-0.172 0.344-0.125 0.375h4.328q1.219 0 2.109 0.891t0.891 2.109z"/></svg></i><span class="js-upvote-count-value"></span></span></div><div class="content-type content-type--video"><i><svg viewBox="0 0 90 90" width="90" height="90" aria-hidden="true" class="symbol symbol-video-play"><polygon points="10 80 10 10 80 45 10 80"/></svg></i></div></div></figure><div class="media-body"><h3 class="media-title">Fight Us In Under Night In-Birth Exe:Late[cl-r] On PS4 | GameSpot Community Fridays</h3><p class="media-deck"> Come hang out with Jean-Luc and Ben for some low-key matches of Under Night In-Birth Exe:Late[cl-r]. It&#039;s The latest version of the anime fighter out now on PS4 and Switch ...</p><footer class="media-meta"><time class="media-date" datetime="2020-02-22 03:06:58 UTC">20 hours ago</time></footer></div></a></article><article class="media media-video"><a href="/videos/apex-legends-season-4-kings-canyon-champion-gamepl/2300-6452260/" class="js-click-tag" data-click-tag="front_door|river|updated|page1|slot11"><figure class="media-figure media-figure--river"><div class="media-img imgflare--river"><img src="https://gamespot1.cbsistatic.com/uploads/screen_petite/1574/15746725/3638559-gameplay_apexkingscanyonmulticam_20200221_site.jpg" alt="" /><div class="media-type media-type--right"><span class="js-river-upvote hide" data-post-render-param="UserBundle.riverUpvote[]" data-post-render-value="2300-6452260"><i><svg version="1.1" width="26" height="28" viewBox="0 0 26 28" aria-hidden="true" class="symbol symbol-thumbs-up"><path d="M4 21q0-0.406-0.297-0.703t-0.703-0.297q-0.422 0-0.711 0.297t-0.289 0.703q0 0.422 0.289 0.711t0.711 0.289q0.406 0 0.703-0.289t0.297-0.711zM6.5 13v10q0 0.406-0.297 0.703t-0.703 0.297h-4.5q-0.406 0-0.703-0.297t-0.297-0.703v-10q0-0.406 0.297-0.703t0.703-0.297h4.5q0.406 0 0.703 0.297t0.297 0.703zM25 13q0 1.344-0.859 2.328 0.234 0.688 0.234 1.188 0.047 1.188-0.672 2.141 0.266 0.875 0 1.828-0.234 0.891-0.844 1.469 0.141 1.75-0.766 2.828-1 1.188-3.078 1.219h-2.016q-1.031 0-2.25-0.242t-1.898-0.453-1.883-0.617q-1.922-0.672-2.469-0.688-0.406-0.016-0.703-0.305t-0.297-0.695v-10.016q0-0.391 0.281-0.68t0.672-0.32q0.375-0.031 1.188-0.922t1.578-1.891q1.062-1.359 1.578-1.875 0.281-0.281 0.484-0.75t0.273-0.758 0.211-0.945q0.109-0.609 0.195-0.953t0.305-0.812 0.531-0.781q0.297-0.297 0.703-0.297 0.719 0 1.289 0.164t0.938 0.406 0.625 0.633 0.375 0.703 0.187 0.781 0.078 0.703 0.008 0.609q0 0.594-0.148 1.188t-0.297 0.938-0.43 0.875q-0.047 0.094-0.156 0.281t-0.172 0.344-0.125 0.375h4.328q1.219 0 2.109 0.891t0.891 2.109z"/></svg></i><span class="js-upvote-count-value"></span></span></div><div class="content-type content-type--video"><i><svg viewBox="0 0 90 90" width="90" height="90" aria-hidden="true" class="symbol symbol-video-play"><polygon points="10 80 10 10 80 45 10 80"/></svg></i></div></div></figure><div class="media-body"><h3 class="media-title">Apex Legends Season 4 Kings Canyon Champion Gameplay</h3><p class="media-deck"> Kings Canyon is back for a few days, so we&#039;re heading back to our old hunting grounds with Wraith, Gibraltar, and Pathfinder. Skulltown is as spicy as we remember it, ...</p><footer class="media-meta"><time class="media-date" datetime="2020-02-22 01:51:55 UTC">21 hours ago</time></footer></div></a></article><article class="media media-article"><a href="/articles/dc-comics-co-publisher-dan-didio-exits-the-company/1100-6473990/" class="js-click-tag" data-click-tag="front_door|river|updated|page1|slot12"><figure class="media-figure media-figure--river"><div class="media-img imgflare--river"><img src="https://gamespot1.cbsistatic.com/uploads/screen_petite/1582/15828986/3638493-dc_gallerycomics_1920x1080_20180613__incr_omni_dj_r2_5af5ea5686fc31.16022499.jpg" alt="" /><div class="media-type media-type--right"><i><svg version="1.1" width="28" height="28" viewBox="0 0 28 28" aria-hidden="true" class="symbol symbol-comments"><path d="M22 12q0 2.172-1.469 4.016t-4.008 2.914-5.523 1.070q-1.344 0-2.75-0.25-1.937 1.375-4.344 2-0.562 0.141-1.344 0.25h-0.047q-0.172 0-0.32-0.125t-0.18-0.328q-0.016-0.047-0.016-0.102t0.008-0.102 0.031-0.094l0.039-0.078t0.055-0.086 0.063-0.078 0.070-0.078 0.063-0.070q0.078-0.094 0.359-0.391t0.406-0.461 0.352-0.453 0.391-0.602 0.32-0.688q-1.937-1.125-3.047-2.766t-1.109-3.5q0-2.172 1.469-4.016t4.008-2.914 5.523-1.070 5.523 1.070 4.008 2.914 1.469 4.016zM28 16q0 1.875-1.109 3.508t-3.047 2.758q0.156 0.375 0.32 0.688t0.391 0.602 0.352 0.453 0.406 0.461 0.359 0.391q0.016 0.016 0.063 0.070t0.070 0.078 0.063 0.078 0.055 0.086l0.039 0.078t0.031 0.094 0.008 0.102-0.016 0.102q-0.047 0.219-0.203 0.344t-0.344 0.109q-0.781-0.109-1.344-0.25-2.406-0.625-4.344-2-1.406 0.25-2.75 0.25-4.234 0-7.375-2.063 0.906 0.063 1.375 0.063 2.516 0 4.828-0.703t4.125-2.016q1.953-1.437 3-3.313t1.047-3.969q0-1.203-0.359-2.375 2.016 1.109 3.187 2.781t1.172 3.594z"/></svg></i> 1
                                          
                                          <span class="js-river-upvote hide" data-post-render-param="UserBundle.riverUpvote[]" data-post-render-value="1100-6473990"><i><svg version="1.1" width="26" height="28" viewBox="0 0 26 28" aria-hidden="true" class="symbol symbol-thumbs-up"><path d="M4 21q0-0.406-0.297-0.703t-0.703-0.297q-0.422 0-0.711 0.297t-0.289 0.703q0 0.422 0.289 0.711t0.711 0.289q0.406 0 0.703-0.289t0.297-0.711zM6.5 13v10q0 0.406-0.297 0.703t-0.703 0.297h-4.5q-0.406 0-0.703-0.297t-0.297-0.703v-10q0-0.406 0.297-0.703t0.703-0.297h4.5q0.406 0 0.703 0.297t0.297 0.703zM25 13q0 1.344-0.859 2.328 0.234 0.688 0.234 1.188 0.047 1.188-0.672 2.141 0.266 0.875 0 1.828-0.234 0.891-0.844 1.469 0.141 1.75-0.766 2.828-1 1.188-3.078 1.219h-2.016q-1.031 0-2.25-0.242t-1.898-0.453-1.883-0.617q-1.922-0.672-2.469-0.688-0.406-0.016-0.703-0.305t-0.297-0.695v-10.016q0-0.391 0.281-0.68t0.672-0.32q0.375-0.031 1.188-0.922t1.578-1.891q1.062-1.359 1.578-1.875 0.281-0.281 0.484-0.75t0.273-0.758 0.211-0.945q0.109-0.609 0.195-0.953t0.305-0.812 0.531-0.781q0.297-0.297 0.703-0.297 0.719 0 1.289 0.164t0.938 0.406 0.625 0.633 0.375 0.703 0.187 0.781 0.078 0.703 0.008 0.609q0 0.594-0.148 1.188t-0.297 0.938-0.43 0.875q-0.047 0.094-0.156 0.281t-0.172 0.344-0.125 0.375h4.328q1.219 0 2.109 0.891t0.891 2.109z"/></svg></i><span class="js-upvote-count-value"></span></span></div></div></figure><div class="media-body"><h3 class="media-title">DC Comics Co-Publisher Dan DiDio Exits The Company</h3><p class="media-deck"> After 18 years with the comic book publisher, Dan DiDio has left DC.</p><footer class="media-meta"><time class="media-date" datetime="2020-02-22 01:49:13 UTC">21 hours ago</time></footer></div></a></article><article class="media media-article"><a href="/articles/where-is-xur-today-destiny-2-exotic-vendor-locatio/1100-6473973/" class="js-click-tag" data-click-tag="front_door|river|updated|page1|slot13"><figure class="media-figure media-figure--river"><div class="media-img imgflare--river"><img src="https://gamespot1.cbsistatic.com/uploads/screen_petite/1581/15811374/3638356-xur%20thumb.jpg" alt="" /><div class="media-type media-type--right"><span class="js-river-upvote hide" data-post-render-param="UserBundle.riverUpvote[]" data-post-render-value="1100-6473973"><i><svg version="1.1" width="26" height="28" viewBox="0 0 26 28" aria-hidden="true" class="symbol symbol-thumbs-up"><path d="M4 21q0-0.406-0.297-0.703t-0.703-0.297q-0.422 0-0.711 0.297t-0.289 0.703q0 0.422 0.289 0.711t0.711 0.289q0.406 0 0.703-0.289t0.297-0.711zM6.5 13v10q0 0.406-0.297 0.703t-0.703 0.297h-4.5q-0.406 0-0.703-0.297t-0.297-0.703v-10q0-0.406 0.297-0.703t0.703-0.297h4.5q0.406 0 0.703 0.297t0.297 0.703zM25 13q0 1.344-0.859 2.328 0.234 0.688 0.234 1.188 0.047 1.188-0.672 2.141 0.266 0.875 0 1.828-0.234 0.891-0.844 1.469 0.141 1.75-0.766 2.828-1 1.188-3.078 1.219h-2.016q-1.031 0-2.25-0.242t-1.898-0.453-1.883-0.617q-1.922-0.672-2.469-0.688-0.406-0.016-0.703-0.305t-0.297-0.695v-10.016q0-0.391 0.281-0.68t0.672-0.32q0.375-0.031 1.188-0.922t1.578-1.891q1.062-1.359 1.578-1.875 0.281-0.281 0.484-0.75t0.273-0.758 0.211-0.945q0.109-0.609 0.195-0.953t0.305-0.812 0.531-0.781q0.297-0.297 0.703-0.297 0.719 0 1.289 0.164t0.938 0.406 0.625 0.633 0.375 0.703 0.187 0.781 0.078 0.703 0.008 0.609q0 0.594-0.148 1.188t-0.297 0.938-0.43 0.875q-0.047 0.094-0.156 0.281t-0.172 0.344-0.125 0.375h4.328q1.219 0 2.109 0.891t0.891 2.109z"/></svg></i><span class="js-upvote-count-value"></span></span></div></div></figure><div class="media-body"><h3 class="media-title">Where Is Xur Today? Destiny 2 Exotic Vendor Location &amp; Items (February 21-25)</h3><p class="media-deck"> Get ready for the end of Destiny 2&#039;s Season of Dawn by filling out your Exotics collection with Xur&#039;s help.</p><footer class="media-meta"><time class="media-date" datetime="2020-02-22 01:18:19 UTC">21 hours ago</time></footer></div></a></article><article class="media media-video"><a href="/videos/final-fantasy-7-remake-persona-5-sonic-and-more-re/2300-6452258/" class="js-click-tag" data-click-tag="front_door|river|updated|page1|slot14"><figure class="media-figure media-figure--river"><div class="media-img imgflare--river"><img src="https://gamespot1.cbsistatic.com/uploads/screen_petite/1574/15746725/3638532-dreams_bestgamesremade_022020_site.jpg" alt="" /><div class="media-type media-type--right"><i><svg version="1.1" width="28" height="28" viewBox="0 0 28 28" aria-hidden="true" class="symbol symbol-comments"><path d="M22 12q0 2.172-1.469 4.016t-4.008 2.914-5.523 1.070q-1.344 0-2.75-0.25-1.937 1.375-4.344 2-0.562 0.141-1.344 0.25h-0.047q-0.172 0-0.32-0.125t-0.18-0.328q-0.016-0.047-0.016-0.102t0.008-0.102 0.031-0.094l0.039-0.078t0.055-0.086 0.063-0.078 0.070-0.078 0.063-0.070q0.078-0.094 0.359-0.391t0.406-0.461 0.352-0.453 0.391-0.602 0.32-0.688q-1.937-1.125-3.047-2.766t-1.109-3.5q0-2.172 1.469-4.016t4.008-2.914 5.523-1.070 5.523 1.070 4.008 2.914 1.469 4.016zM28 16q0 1.875-1.109 3.508t-3.047 2.758q0.156 0.375 0.32 0.688t0.391 0.602 0.352 0.453 0.406 0.461 0.359 0.391q0.016 0.016 0.063 0.070t0.070 0.078 0.063 0.078 0.055 0.086l0.039 0.078t0.031 0.094 0.008 0.102-0.016 0.102q-0.047 0.219-0.203 0.344t-0.344 0.109q-0.781-0.109-1.344-0.25-2.406-0.625-4.344-2-1.406 0.25-2.75 0.25-4.234 0-7.375-2.063 0.906 0.063 1.375 0.063 2.516 0 4.828-0.703t4.125-2.016q1.953-1.437 3-3.313t1.047-3.969q0-1.203-0.359-2.375 2.016 1.109 3.187 2.781t1.172 3.594z"/></svg></i> 3
                                          
                                          <span class="js-river-upvote hide" data-post-render-param="UserBundle.riverUpvote[]" data-post-render-value="2300-6452258"><i><svg version="1.1" width="26" height="28" viewBox="0 0 26 28" aria-hidden="true" class="symbol symbol-thumbs-up"><path d="M4 21q0-0.406-0.297-0.703t-0.703-0.297q-0.422 0-0.711 0.297t-0.289 0.703q0 0.422 0.289 0.711t0.711 0.289q0.406 0 0.703-0.289t0.297-0.711zM6.5 13v10q0 0.406-0.297 0.703t-0.703 0.297h-4.5q-0.406 0-0.703-0.297t-0.297-0.703v-10q0-0.406 0.297-0.703t0.703-0.297h4.5q0.406 0 0.703 0.297t0.297 0.703zM25 13q0 1.344-0.859 2.328 0.234 0.688 0.234 1.188 0.047 1.188-0.672 2.141 0.266 0.875 0 1.828-0.234 0.891-0.844 1.469 0.141 1.75-0.766 2.828-1 1.188-3.078 1.219h-2.016q-1.031 0-2.25-0.242t-1.898-0.453-1.883-0.617q-1.922-0.672-2.469-0.688-0.406-0.016-0.703-0.305t-0.297-0.695v-10.016q0-0.391 0.281-0.68t0.672-0.32q0.375-0.031 1.188-0.922t1.578-1.891q1.062-1.359 1.578-1.875 0.281-0.281 0.484-0.75t0.273-0.758 0.211-0.945q0.109-0.609 0.195-0.953t0.305-0.812 0.531-0.781q0.297-0.297 0.703-0.297 0.719 0 1.289 0.164t0.938 0.406 0.625 0.633 0.375 0.703 0.187 0.781 0.078 0.703 0.008 0.609q0 0.594-0.148 1.188t-0.297 0.938-0.43 0.875q-0.047 0.094-0.156 0.281t-0.172 0.344-0.125 0.375h4.328q1.219 0 2.109 0.891t0.891 2.109z"/></svg></i><span class="js-upvote-count-value"></span></span></div><div class="content-type content-type--video"><i><svg viewBox="0 0 90 90" width="90" height="90" aria-hidden="true" class="symbol symbol-video-play"><polygon points="10 80 10 10 80 45 10 80"/></svg></i></div></div></figure><div class="media-body"><h3 class="media-title">Final Fantasy 7 Remake, Persona 5, Sonic, And More Remade In Dreams</h3><p class="media-deck"> In this video we take a look at some of the best video game recreations in Dreams that we&#039;ve come across while Dream Surfing in Media Molecule&#039;s latest title.</p><footer class="media-meta"><time class="media-date" datetime="2020-02-22 01:16:56 UTC">21 hours ago</time></footer></div></a></article><article class="media media-video"><a href="/videos/animal-crossing-dreams-and-last-of-us-2-being-pull/2300-6452249/" class="js-click-tag" data-click-tag="front_door|river|updated|page1|slot15"><figure class="media-figure media-figure--river"><div class="media-img imgflare--river"><img src="https://gamespot1.cbsistatic.com/uploads/screen_petite/1574/15746725/3638169-after%20dark_episode29_site.jpg" alt="" /><div class="media-type media-type--right"><i><svg version="1.1" width="28" height="28" viewBox="0 0 28 28" aria-hidden="true" class="symbol symbol-comments"><path d="M22 12q0 2.172-1.469 4.016t-4.008 2.914-5.523 1.070q-1.344 0-2.75-0.25-1.937 1.375-4.344 2-0.562 0.141-1.344 0.25h-0.047q-0.172 0-0.32-0.125t-0.18-0.328q-0.016-0.047-0.016-0.102t0.008-0.102 0.031-0.094l0.039-0.078t0.055-0.086 0.063-0.078 0.070-0.078 0.063-0.070q0.078-0.094 0.359-0.391t0.406-0.461 0.352-0.453 0.391-0.602 0.32-0.688q-1.937-1.125-3.047-2.766t-1.109-3.5q0-2.172 1.469-4.016t4.008-2.914 5.523-1.070 5.523 1.070 4.008 2.914 1.469 4.016zM28 16q0 1.875-1.109 3.508t-3.047 2.758q0.156 0.375 0.32 0.688t0.391 0.602 0.352 0.453 0.406 0.461 0.359 0.391q0.016 0.016 0.063 0.070t0.070 0.078 0.063 0.078 0.055 0.086l0.039 0.078t0.031 0.094 0.008 0.102-0.016 0.102q-0.047 0.219-0.203 0.344t-0.344 0.109q-0.781-0.109-1.344-0.25-2.406-0.625-4.344-2-1.406 0.25-2.75 0.25-4.234 0-7.375-2.063 0.906 0.063 1.375 0.063 2.516 0 4.828-0.703t4.125-2.016q1.953-1.437 3-3.313t1.047-3.969q0-1.203-0.359-2.375 2.016 1.109 3.187 2.781t1.172 3.594z"/></svg></i> 1
                                          
                                          <span class="js-river-upvote hide" data-post-render-param="UserBundle.riverUpvote[]" data-post-render-value="2300-6452249"><i><svg version="1.1" width="26" height="28" viewBox="0 0 26 28" aria-hidden="true" class="symbol symbol-thumbs-up"><path d="M4 21q0-0.406-0.297-0.703t-0.703-0.297q-0.422 0-0.711 0.297t-0.289 0.703q0 0.422 0.289 0.711t0.711 0.289q0.406 0 0.703-0.289t0.297-0.711zM6.5 13v10q0 0.406-0.297 0.703t-0.703 0.297h-4.5q-0.406 0-0.703-0.297t-0.297-0.703v-10q0-0.406 0.297-0.703t0.703-0.297h4.5q0.406 0 0.703 0.297t0.297 0.703zM25 13q0 1.344-0.859 2.328 0.234 0.688 0.234 1.188 0.047 1.188-0.672 2.141 0.266 0.875 0 1.828-0.234 0.891-0.844 1.469 0.141 1.75-0.766 2.828-1 1.188-3.078 1.219h-2.016q-1.031 0-2.25-0.242t-1.898-0.453-1.883-0.617q-1.922-0.672-2.469-0.688-0.406-0.016-0.703-0.305t-0.297-0.695v-10.016q0-0.391 0.281-0.68t0.672-0.32q0.375-0.031 1.188-0.922t1.578-1.891q1.062-1.359 1.578-1.875 0.281-0.281 0.484-0.75t0.273-0.758 0.211-0.945q0.109-0.609 0.195-0.953t0.305-0.812 0.531-0.781q0.297-0.297 0.703-0.297 0.719 0 1.289 0.164t0.938 0.406 0.625 0.633 0.375 0.703 0.187 0.781 0.078 0.703 0.008 0.609q0 0.594-0.148 1.188t-0.297 0.938-0.43 0.875q-0.047 0.094-0.156 0.281t-0.172 0.344-0.125 0.375h4.328q1.219 0 2.109 0.891t0.891 2.109z"/></svg></i><span class="js-upvote-count-value"></span></span></div><div class="content-type content-type--video"><i><svg viewBox="0 0 90 90" width="90" height="90" aria-hidden="true" class="symbol symbol-video-play"><polygon points="10 80 10 10 80 45 10 80"/></svg></i></div></div></figure><div class="media-body"><h3 class="media-title">Animal Crossing, Dreams, And Last Of Us 2 Being Pulled From PAX | GameSpot After Dark #29</h3><p class="media-deck"> On this week’s GameSpot After Dark, we’re joined by Dave Klein from the GameSpot Universe team to talk about the incredible potential of Dreams, preserving retro games, and Sony pulling ...</p><footer class="media-meta"><time class="media-date" datetime="2020-02-22 01:01:53 UTC">22 hours ago</time></footer></div></a></article><article class="media media-video"><a href="/videos/getting-an-s-rank-and-a-perfect-combo-in-bloodroot/2300-6452252/" class="js-click-tag" data-click-tag="front_door|river|updated|page1|slot16"><figure class="media-figure media-figure--river"><div class="media-img imgflare--river"><img src="https://gamespot1.cbsistatic.com/uploads/screen_petite/1563/15636435/3638369-gp%20blood%20site.jpg" alt="" /><div class="media-type media-type--right"><span class="js-river-upvote hide" data-post-render-param="UserBundle.riverUpvote[]" data-post-render-value="2300-6452252"><i><svg version="1.1" width="26" height="28" viewBox="0 0 26 28" aria-hidden="true" class="symbol symbol-thumbs-up"><path d="M4 21q0-0.406-0.297-0.703t-0.703-0.297q-0.422 0-0.711 0.297t-0.289 0.703q0 0.422 0.289 0.711t0.711 0.289q0.406 0 0.703-0.289t0.297-0.711zM6.5 13v10q0 0.406-0.297 0.703t-0.703 0.297h-4.5q-0.406 0-0.703-0.297t-0.297-0.703v-10q0-0.406 0.297-0.703t0.703-0.297h4.5q0.406 0 0.703 0.297t0.297 0.703zM25 13q0 1.344-0.859 2.328 0.234 0.688 0.234 1.188 0.047 1.188-0.672 2.141 0.266 0.875 0 1.828-0.234 0.891-0.844 1.469 0.141 1.75-0.766 2.828-1 1.188-3.078 1.219h-2.016q-1.031 0-2.25-0.242t-1.898-0.453-1.883-0.617q-1.922-0.672-2.469-0.688-0.406-0.016-0.703-0.305t-0.297-0.695v-10.016q0-0.391 0.281-0.68t0.672-0.32q0.375-0.031 1.188-0.922t1.578-1.891q1.062-1.359 1.578-1.875 0.281-0.281 0.484-0.75t0.273-0.758 0.211-0.945q0.109-0.609 0.195-0.953t0.305-0.812 0.531-0.781q0.297-0.297 0.703-0.297 0.719 0 1.289 0.164t0.938 0.406 0.625 0.633 0.375 0.703 0.187 0.781 0.078 0.703 0.008 0.609q0 0.594-0.148 1.188t-0.297 0.938-0.43 0.875q-0.047 0.094-0.156 0.281t-0.172 0.344-0.125 0.375h4.328q1.219 0 2.109 0.891t0.891 2.109z"/></svg></i><span class="js-upvote-count-value"></span></span></div><div class="content-type content-type--video"><i><svg viewBox="0 0 90 90" width="90" height="90" aria-hidden="true" class="symbol symbol-video-play"><polygon points="10 80 10 10 80 45 10 80"/></svg></i></div></div></figure><div class="media-body"><h3 class="media-title">Getting An S Rank &amp; A Perfect Combo In Bloodroots</h3><p class="media-deck"> Check out the first two stages of Bloodroots, headed to PS4, PC, and Nintendo Switch on February 28.</p><footer class="media-meta"><time class="media-date" datetime="2020-02-22 01:01:52 UTC">22 hours ago</time></footer></div></a></article></section><script type="text/javascript">
  var performance = window.performance || {};
  if (performance.mark && performance.measure) {
    performance.mark('nr_riverLoad');
          performance.measure('nr_riverLoad', 'nr_pageStart', 'nr_riverLoad');
      }
</script><div class="show-more js-load-forever" data-show-more-type="updated" data-max-page="6" data-end-of-line="/news/" data-end-of-line-text="View more news"><a href="#" class="show-more-link"><i><svg version="1.1" width="22" height="28" viewBox="0 0 22 28" aria-hidden="true" class="symbol symbol-plus"><path d="M22 11.5v3q0 0.625-0.438 1.062t-1.062 0.438h-6.5v6.5q0 0.625-0.438 1.062t-1.062 0.438h-3q-0.625 0-1.062-0.438t-0.438-1.062v-6.5h-6.5q-0.625 0-1.062-0.438t-0.438-1.062v-3q0-0.625 0.438-1.062t1.062-0.438h6.5v-6.5q0-0.625 0.438-1.062t1.062-0.438h3q0.625 0 1.062 0.438t0.438 1.062v6.5h6.5q0.625 0 1.062 0.438t0.438 1.062z"/></svg></i>Show me more</a></div></div></section>
      
        <div class="js-taboola-module" data-taboola-parameters="{&quot;mode&quot;:&quot;thumbnails-a&quot;,&quot;container&quot;:&quot;taboola-below-main-column-thumbnails&quot;,&quot;placement&quot;:&quot;front_door Below Main Column Thumbnails&quot;,&quot;target_type&quot;:&quot;mix&quot;}"></div>
    
                    </div>
                        <aside class="secondary-content span4 medium-span5">
                                    <div class="js-mapped-ad mapped-ad mapped-mpu_top mapped-mpu_top-dart" data-ad-type="mpu_top"><div class="ad-wrap ad-wrap-mpu_top"></div></div>                                        <!-- GamespotGameBundle:Games:frontDoorGames:homepage|N|15:10:43 -->  

              
  

<section class="pod pod--topgames pod-filter js-filter-pod"><dl class="pod-header  " ><dt class="pod-header__item"><div class="pod-title"><h4  >Top Upcoming Games</h4><span class="pod-div" role="presentation" aria-hidden="true"></span></div></dt><dd class="pod-header__item pod-header__filters pod-header__filters--js no-flex hide-mobile"><div class="pod-header__filters--select"><select name="sort" class="js-filter-json" data-filter-query="topgames" data-filter-nohistory="1" data-filter-nodata="1" data-filter-extra-data="{&quot;clickTagPrefix&quot;:&quot;front_door&quot;}"><option value="overall"data-filter-url="/river/games/overall">OVERALL</option><option value="xbox-one"data-filter-url="/river/games/xbox-one">XBOX ONE</option><option value="ps4"data-filter-url="/river/games/ps4">PS4</option><option value="nintendo-switch"data-filter-url="/river/games/nintendo-switch">SWITCH</option><option value="3ds"data-filter-url="/river/games/3ds">3DS</option><option value="pc"data-filter-url="/river/games/pc">PC</option></select></div></dd></dl><div class="filter-results js-filter-results"><ul class="game game--top-games"><li class="game-background" style="background-image: url('https://gamespot1.cbsistatic.com/uploads/sliver_small/1593/15930215/3551631-3551585-ffviir_june_screenshots_6_1561027400.jpg')"><div class="game-item"><a href="/final-fantasy-vii-remake/" class="js-click-tag game-info" data-click-tag="front_door|topgames|overall|slot1"><h4 class="game-title">Final Fantasy VII Remake</h4><p class="game-meta game-meta--date">
                        Coming <span>Apr 10, 2020</span><div class='dn'><span id='_qualtrics_release_indicator'>unreleased</span></div></p></a></div></li><li class="game-background" style="background-image: url('https://gamespot1.cbsistatic.com/uploads/sliver_small/1576/15769789/3398429-screen-a-mercenary-on-the-rise.4.jpg')"><div class="game-item"><a href="/cyberpunk-2077/" class="js-click-tag game-info" data-click-tag="front_door|topgames|overall|slot2"><h4 class="game-title">Cyberpunk 2077</h4><p class="game-meta game-meta--date">
                        Coming <span>Sep 17, 2020</span><div class='dn'><span id='_qualtrics_release_indicator'>unreleased</span></div></p></a></div></li><li class="game-background" style="background-image: url('https://gamespot1.cbsistatic.com/uploads/sliver_small/1593/15930215/3537220-screen%20shot%202019-05-21%20at%2011.39.50%20am.png')"><div class="game-item"><a href="/pokemon-shield/" class="js-click-tag game-info" data-click-tag="front_door|topgames|overall|slot3"><h4 class="game-title">Pokemon Sword / Shield: The Isle of Armor</h4><p class="game-meta game-meta--date">
                  
            Coming <span>June 2020</span><div class='dn'><span id='_qualtrics_release_indicator'>unreleased</span></div></p></a></div></li><li class="game-background" style="background-image: url('https://gamespot1.cbsistatic.com/uploads/sliver_small/536/5360430/3165126-screen_tlou2_teaser_01.jpg')"><div class="game-item"><a href="/the-last-of-us-part-ii/" class="js-click-tag game-info" data-click-tag="front_door|topgames|overall|slot4"><h4 class="game-title">The Last of Us Part II</h4><p class="game-meta game-meta--date">
                        Coming <span>May 29, 2020</span><div class='dn'><span id='_qualtrics_release_indicator'>unreleased</span></div></p></a></div></li><li class="game-background" style="background-image: url('https://gamespot1.cbsistatic.com/uploads/sliver_small/1197/11970954/3499351-doometernal-bg.jpg')"><div class="game-item"><a href="/doom-eternal/" class="js-click-tag game-info" data-click-tag="front_door|topgames|overall|slot5"><h4 class="game-title">DOOM Eternal</h4><p class="game-meta game-meta--date">
                        Coming <span>Mar 20, 2020</span><div class='dn'><span id='_qualtrics_release_indicator'>unreleased</span></div></p></a></div></li><li class="game-background" style="background-image: url('https://gamespot1.cbsistatic.com/uploads/sliver_small/1593/15930215/3532617-haloinfinite_e318_ancientrings-74a4bdcba7724b28b4cd017a309a9583.jpg')"><div class="game-item"><a href="/halo-infinite/" class="js-click-tag game-info" data-click-tag="front_door|topgames|overall|slot6"><h4 class="game-title">Halo Infinite</h4><p class="game-meta game-meta--date">
                  
            Coming <span>Q4 2020</span><div class='dn'><span id='_qualtrics_release_indicator'>unreleased</span></div></p></a></div></li><li class="game-background" style="background-image: url('https://gamespot1.cbsistatic.com/uploads/sliver_small/469/4693985/2604941-6759864154-20133.jpg')"><div class="game-item"><a href="/star-citizen/" class="js-click-tag game-info" data-click-tag="front_door|topgames|overall|slot7"><h4 class="game-title">Star Citizen</h4><p class="game-meta game-meta--date"><span>Unknown Release Date</span><div class='dn'><span id='_qualtrics_release_indicator'>unreleased</span></div></p></a></div></li><li class="game-background" style="background-image: url('https://gamespot1.cbsistatic.com/uploads/sliver_small/1593/15930215/3549278-bywroxnw_preview_screenshot1_177674.jpg')"><div class="game-item"><a href="/watch-dogs-legion/" class="js-click-tag game-info" data-click-tag="front_door|topgames|overall|slot8"><h4 class="game-title">Watch Dogs: Legion</h4><p class="game-meta game-meta--date">
                        Coming <span>Mar 6, 2020</span><div class='dn'><span id='_qualtrics_release_indicator'>unreleased</span></div></p></a></div></li><li class="game-background" style="background-image: url('https://gamespot1.cbsistatic.com/uploads/sliver_small/1197/11970954/2858441-2858338-p6.jpg')"><div class="game-item"><a href="/persona-5-royal/" class="js-click-tag game-info" data-click-tag="front_door|topgames|overall|slot9"><h4 class="game-title">Persona 5 Royal</h4><p class="game-meta game-meta--date">
                        Coming <span>Mar 31, 2020</span><div class='dn'><span id='_qualtrics_release_indicator'>unreleased</span></div></p></a></div></li><li class="game-background" style="background-image: url('https://gamespot1.cbsistatic.com/uploads/sliver_small/1593/15930215/3549405-switch_animalcrossingnewhorizons_05.jpg')"><div class="game-item"><a href="/animal-crossing-new-horizons/" class="js-click-tag game-info" data-click-tag="front_door|topgames|overall|slot10"><h4 class="game-title">Animal Crossing: New Horizons</h4><p class="game-meta game-meta--date">
                        Coming <span>Mar 20, 2020</span><div class='dn'><span id='_qualtrics_release_indicator'>unreleased</span></div></p></a></div></li></ul><footer class="pod-footer"><a class="game-gs50" href="/gamespot-50/"><span class="game-gs50__logo">GameSpot 50</span>
        See all upcoming games <i><svg version="1.1" width="28" height="28" viewBox="0 0 28 28" aria-hidden="true" class="symbol symbol-arrow-right"><path d="M23 15q0 0.844-0.578 1.422l-10.172 10.172q-0.609 0.578-1.422 0.578-0.797 0-1.406-0.578l-1.172-1.172q-0.594-0.594-0.594-1.422t0.594-1.422l4.578-4.578h-11q-0.812 0-1.32-0.586t-0.508-1.414v-2q0-0.828 0.508-1.414t1.32-0.586h11l-4.578-4.594q-0.594-0.562-0.594-1.406t0.594-1.406l1.172-1.172q0.594-0.594 1.406-0.594 0.828 0 1.422 0.594l10.172 10.172q0.578 0.547 0.578 1.406z"/></svg></i></a></footer></div></section>
<!-- /GamespotGameBundle:Games:frontDoorGames:homepage -->

      <!-- GamespotGameBundle:Default:reviewJson:homepage|N|15:14:01 --><!-- Latest Reviews --><section class="pod pod-latestReviews pod-filter js-filter-pod"><dl class="pod-header  " ><dt class="pod-header__item"><div class="pod-title"><h4  >Reviews</h4><span class="pod-div" role="presentation" aria-hidden="true"></span></div></dt><dd class="pod-header__item pod-header__filters pod-header__filters--js no-flex hide-mobile"><div class="pod-header__filters--select"><select name="sort" class="js-filter-json" data-filter-query="platform" data-filter-nohistory="1" data-filter-nodata="1" data-filter-extra-data="{&quot;clickTagPrefix&quot;:&quot;front_door&quot;}"><option value="latest"data-filter-url="/river/reviews/latest">LATEST</option><option value="xbox-one"data-filter-url="/river/reviews/xbox-one">XBOX ONE</option><option value="ps4"data-filter-url="/river/reviews/ps4">PS4</option><option value="xbox-360"data-filter-url="/river/reviews/xbox-360">XBOX 360</option><option value="ps3"data-filter-url="/river/reviews/ps3">PS3</option><option value="nintendo-switch"data-filter-url="/river/reviews/nintendo-switch">SWITCH</option><option value="3ds"data-filter-url="/river/reviews/3ds">3DS</option><option value="pc"data-filter-url="/river/reviews/pc">PC</option></select></div></dd></dl><div class="filter-results js-filter-results"><ol class="reviews-list"><li class="reviews-list__item reviews-list__item--first" style="background-image: url('https://gamespot1.cbsistatic.com/uploads/sliver_small/1575/15759911/3638531-dreams-review-thumb-nologo.jpg')"><a href="/reviews/dreams-review-create-and-play/1900-6417414/" class="js-click-tag" data-click-tag="front_door|review-pod|latest|slot1"><div class="align-vertical--contain"><div class="align-vertical--child game-info-wrapper"><h4 class="game-title">
                                                                                          Dreams
                                          </h4><ul class="system-list"><li class="system label">Reviewed on:</li><li class="system system--simple system--ps4 ">PS4</li></ul></div><dl class="game-score align-vertical--child "><dt><div class="gs-score  gs-score--small score-9"><div class="gs-score__clip"><div class="gs-score__pie gs-score__spinner"></div></div><div class="gs-score__clip gs-score__clip2"><div class="gs-score__pie gs-score__filler"></div></div><div class="gs-score__inner"><div class="gs-score__table"><div class="gs-score__cell">          9
        </div></div></div></div></dt><dd>Superb</dd></dl></div></a></li><li class="reviews-list__header"><span class="reviews-list__header-game">Game</span><span class="reviews-list__header-score">Score</span><li><li class="reviews-list__item"><a href="/reviews/through-the-darkest-of-times-review-enemy-inside-t/1900-6417407/" class="js-click-tag" data-click-tag="front_door|review-pod|latest|slot2"><div class="align-vertical--contain"><h4 class="game-title align-vertical--child">
                                                                                    Through the Darkest of Times
                                       </h4><dl class="game-score align-vertical--child "><dt>8</dt><dd>Great</dd></dl></div></a></li><li class="reviews-list__item"><a href="/reviews/the-pedestrian-review-walk-before-you-run/1900-6417408/" class="js-click-tag" data-click-tag="front_door|review-pod|latest|slot3"><div class="align-vertical--contain"><h4 class="game-title align-vertical--child">
                                                                                    The Pedestrian
                                       </h4><dl class="game-score align-vertical--child "><dt>7</dt><dd>Good</dd></dl></div></a></li><li class="reviews-list__item"><a href="/reviews/kunai-review-throwing-knives/1900-6417405/" class="js-click-tag" data-click-tag="front_door|review-pod|latest|slot4"><div class="align-vertical--contain"><h4 class="game-title align-vertical--child">
                                                                                    KUNAI
                                       </h4><dl class="game-score align-vertical--child "><dt>7</dt><dd>Good</dd></dl></div></a></li><li class="reviews-list__item"><a href="/reviews/kentucky-route-zero-review-where-the-streets-have-/1900-6417404/" class="js-click-tag" data-click-tag="front_door|review-pod|latest|slot5"><div class="align-vertical--contain"><h4 class="game-title align-vertical--child">
                                                                                    Kentucky Route Zero: TV Edition
                                       </h4><dl class="game-score align-vertical--child "><dt>9</dt><dd>Superb</dd></dl></div></a></li><li class="reviews-list__item"><a href="/reviews/kingdom-hearts-3-remind-review-dont-remind-me/1900-6417398/" class="js-click-tag" data-click-tag="front_door|review-pod|latest|slot6"><div class="align-vertical--contain"><h4 class="game-title align-vertical--child">
                                                                                    Kingdom Hearts III - Re Mind
                                       </h4><dl class="game-score align-vertical--child "><dt>4</dt><dd>Poor</dd></dl></div></a></li><li class="reviews-list__item"><a href="/reviews/lennas-inception-review-press-start/1900-6417397/" class="js-click-tag" data-click-tag="front_door|review-pod|latest|slot7"><div class="align-vertical--contain"><h4 class="game-title align-vertical--child">
                                                                                    Lenna&#039;s Inception
                                       </h4><dl class="game-score align-vertical--child "><dt>7</dt><dd>Good</dd></dl></div></a></li><li class="reviews-list__item"><a href="/reviews/journey-to-the-savage-planet-review-a-pulpy-sci-fi/1900-6417395/" class="js-click-tag" data-click-tag="front_door|review-pod|latest|slot8"><div class="align-vertical--contain"><h4 class="game-title align-vertical--child">
                                                                                    Journey to the Savage Planet
                                       </h4><dl class="game-score align-vertical--child "><dt>7</dt><dd>Good</dd></dl></div></a></li><li class="reviews-list__item"><a href="/reviews/frostpunk-the-last-autumn-review-calm-before-the-s/1900-6417394/" class="js-click-tag" data-click-tag="front_door|review-pod|latest|slot9"><div class="align-vertical--contain"><h4 class="game-title align-vertical--child">
                                                                                    Frostpunk: The Last Autumn
                                       </h4><dl class="game-score align-vertical--child "><dt>8</dt><dd>Great</dd></dl></div></a></li><li class="reviews-list__item"><a href="/reviews/dragon-ball-z-kakarot-review-mondo-cool/1900-6417393/" class="js-click-tag" data-click-tag="front_door|review-pod|latest|slot10"><div class="align-vertical--contain"><h4 class="game-title align-vertical--child">
                                                                                    Dragon Ball Z: Kakarot
                                       </h4><dl class="game-score align-vertical--child "><dt>7</dt><dd>Good</dd></dl></div></a></li></ol><footer class="pod-footer"><a href="/reviews/">See All Reviews <i><svg version="1.1" width="28" height="28" viewBox="0 0 28 28" aria-hidden="true" class="symbol symbol-arrow-right"><path d="M23 15q0 0.844-0.578 1.422l-10.172 10.172q-0.609 0.578-1.422 0.578-0.797 0-1.406-0.578l-1.172-1.172q-0.594-0.594-0.594-1.422t0.594-1.422l4.578-4.578h-11q-0.812 0-1.32-0.586t-0.508-1.414v-2q0-0.828 0.508-1.414t1.32-0.586h11l-4.578-4.594q-0.594-0.562-0.594-1.406t0.594-1.406l1.172-1.172q0.594-0.594 1.406-0.594 0.828 0 1.422 0.594l10.172 10.172q0.578 0.547 0.578 1.406z"/></svg></i></a></footer></div></section><!-- /GamespotGameBundle:Default:reviewJson:homepage --><section class="pod pod-upcoming"><div class="pod-body upcoming"></div></section>
                                                      <div class="js-mapped-ad mapped-ad mapped-mpu_bottom mapped-mpu_bottom-dart" data-ad-type="mpu_bottom"><div class="ad-wrap ad-wrap-mpu_bottom"></div></div>            
        <div class="js-taboola-module" data-taboola-parameters="{&quot;mode&quot;:&quot;thumbnails-rr&quot;,&quot;container&quot;:&quot;taboola-right-rail-thumbnails&quot;,&quot;placement&quot;:&quot;front_door Right Rail Thumbnails&quot;,&quot;target_type&quot;:&quot;mix&quot;}"></div>
                    </aside>
                              </div>
              </div>


  </div>
                <div class="js-mapped-ad mapped-ad mapped-leader_bottom mapped-leader_bottom-dart" data-ad-type="leader_bottom"><div class="ad-wrap ad-wrap-leader_bottom"></div></div>          </div>
          <footer id="footer" class="mastfooter" role="complementary"><div class="container row"><section class="footer-network"><div class="footer-network-copyright">© 2020 CBS Interactive Inc. All rights reserved.</div><div class="footer-network-about"><div class="footer-network-row"><a href="https://privacy.cbs" target="_blank">Privacy Policy</a><a href="https://legalterms.cbsinteractive.com/adchoice" target="_blank">Ad Choice</a><a href="https://legalterms.cbsinteractive.com/terms-of-use" target="_blank">Terms of Use</a><a href="https://cbsi.secure.force.com/CBSi/knowledgehome?referer=gamespot.com" target="_blank">Help</a><a href="https://cbsinteractive.com/advertising/" target="_blank">Advertise</a><a href="mailto:cbsi-partnerships@cbsinteractive.com" target="_blank">Partnerships</a><a href="https://cbs.avature.net/cbsinteractivecareers/SearchJobs/?3_56_3=%22260%22" target="_blank">Careers</a><span id="qualtrics-feedback"></span></div><div class="footer-network-row"><a href="https://ca.privacy.cbs">CA Privacy/Info We Collect</a><a href="https://ca.privacy.cbs/donotsell">CA Do Not Sell My Info</a></div></div></section><section class="footer-links hide-mobile"><ul><li><span class="footer-links__header">More Sites</span></li><li><a href="https://www.gamespot.com.br/">gamespot.com.br</a></li><li><a href="https://www.giantbomb.com/"><i class="footer-social__item footer_logo_gb"></i>giantbomb.com</a></li><li><a href="https://gamefaqs.gamespot.com/"><i class="footer-social__item footer_logo_gf"></i>gamefaqs.com</a></li><li><a href="https://www.metacritic.com/"><i class="footer-social__item footer_logo_mc"></i>metacritic.com</a></li></ul><ul><li><span class="footer-links__header">Reviews</span></li><li><a href="https://www.gamespot.com/reviews/">Latest Reviews</a></li><li><a href="/reviews/pc">PC</a></li><li><a href="/reviews/ps4">PS4</a></li><li><a href="/reviews/xbox-one">Xbox One</a></li><li><a href="/reviews/nintendo-switch">Switch</a></li></ul><ul><li><span class="footer-links__header">News</span></li><li><a href="https://www.gamespot.com/news/">Latest News</a></li><li><a href="/news/pc">PC</a></li><li><a href="/news/ps4">PS4</a></li><li><a href="/news/xbox-one">Xbox One</a></li><li><a href="/news/nintendo-switch">Switch</a></li></ul><ul><li><span class="footer-links__header">Shows</span></li><li><a href="https://www.gamespot.com/shows/true-fiction/">True Fiction</a></li><li><a href="https://www.gamespot.com/shows/gamespot-community-fridays/">GameSpot Community Fridays</a></li><li><a href="https://www.gamespot.com/shows/audio-logs/">Audio Logs</a></li><li><a href="https://www.gamespot.com/shows/gamespot-of-thrones/">GameSpot of Thrones</a></li><li><a href="https://www.gamespot.com/shows/gamespot-live/">GameSpot Live</a></li></ul><ul><li><span class="footer-links__header">Talk to Us</span></li><li><a href="https://www.gamespot.com/forums/">Forums</a></li><li class="footer--social-icons"><strong>GameSpot</strong><a href="http://facebook.com/gamespot" target="_blank" rel="nofollow"><i><svg version="1.1" width="28" height="28" viewBox="0 0 28 28" aria-hidden="true" class="symbol symbol-facebook-sign"><path d="M24 21.5q0 1.859-1.32 3.18t-3.18 1.32h-3v-9.5h3.172l0.469-3.5h-3.641v-2.234q0-0.844 0.438-1.297t1.5-0.453l2.063-0.016v-3.234q-1.5-0.141-2.812-0.141-2.125 0-3.406 1.258t-1.281 3.523v2.594h-3.5v3.5h3.5v9.5h-8.5q-1.859 0-3.18-1.32t-1.32-3.18v-15q0-1.859 1.32-3.18t3.18-1.32h15q1.859 0 3.18 1.32t1.32 3.18v15z"/></svg></i></a><a href="http://twitter.com/gamespot" target="_blank" rel="nofollow"><i><svg version="1.1" width="26" height="28" viewBox="0 0 26 28" aria-hidden="true" class="symbol symbol-twitter"><path d="M25.312 6.375q-1.047 1.531-2.531 2.609 0.016 0.219 0.016 0.656 0 2.031-0.594 4.055t-1.805 3.883-2.883 3.289-4.031 2.281-5.047 0.852q-4.234 0-7.75-2.266 0.547 0.063 1.219 0.063 3.516 0 6.266-2.156-1.641-0.031-2.938-1.008t-1.781-2.492q0.516 0.078 0.953 0.078 0.672 0 1.328-0.172-1.75-0.359-2.898-1.742t-1.148-3.211v-0.063q1.062 0.594 2.281 0.641-1.031-0.688-1.641-1.797t-0.609-2.406q0-1.375 0.688-2.547 1.891 2.328 4.602 3.727t5.805 1.555q-0.125-0.594-0.125-1.156 0-2.094 1.477-3.57t3.57-1.477q2.188 0 3.687 1.594 1.703-0.328 3.203-1.219-0.578 1.797-2.219 2.781 1.453-0.156 2.906-0.781z"/></svg></i></a><a href="http://youtube.com/gamespot" target="_blank" rel="nofollow"><i><svg version="1.1" width="28" height="28" viewBox="0 0 28 28" aria-hidden="true" class="symbol symbol-youtube-play"><path d="M20 14q0-0.578-0.469-0.844l-8-5q-0.484-0.313-1.016-0.031-0.516 0.281-0.516 0.875v10q0 0.594 0.516 0.875 0.25 0.125 0.484 0.125 0.313 0 0.531-0.156l8-5q0.469-0.266 0.469-0.844zM28 14q0 1.5-0.016 2.344t-0.133 2.133-0.352 2.305q-0.25 1.141-1.078 1.922t-1.937 0.906q-3.469 0.391-10.484 0.391t-10.484-0.391q-1.109-0.125-1.945-0.906t-1.086-1.922q-0.219-1.016-0.336-2.305t-0.133-2.133-0.016-2.344 0.016-2.344 0.133-2.133 0.352-2.305q0.25-1.141 1.078-1.922t1.937-0.906q3.469-0.391 10.484-0.391t10.484 0.391q1.109 0.125 1.945 0.906t1.086 1.922q0.219 1.016 0.336 2.305t0.133 2.133 0.016 2.344z"/></svg></i></a><a class="footer--social-instagram" href="http://instagram.com/gamespot" target="_blank" rel="nofollow"><i><svg version="1.1" x="0px" y="0px" viewBox="-705 887 28 28" enable-background="new -705 887 28 28" xml:space="preserve" width="28" height="28" aria-hidden="true" class="symbol symbol-instagram"><path fill-rule="evenodd" clip-rule="evenodd" d="M-683.8,899.1h-2.1c0.2,0.6,0.2,1.2,0.2,1.8c0,4.1-3.3,7.4-7.4,7.4
	c-4.1,0-7.4-3.3-7.4-7.4c0-0.6,0.1-1.3,0.2-1.8h-2.1v10.1c0,0.5,0.4,0.9,0.9,0.9h16.6c0.5,0,0.9-0.4,0.9-0.9V899.1z M-683.8,892.7
	c0-0.5-0.4-0.9-0.9-0.9h-2.8c-0.5,0-0.9,0.4-0.9,0.9v2.8c0,0.5,0.4,0.9,0.9,0.9h2.8c0.5,0,0.9-0.4,0.9-0.9V892.7z M-693,896.4
	c-2.5,0-4.6,2.1-4.6,4.6c0,2.5,2.1,4.6,4.6,4.6s4.6-2.1,4.6-4.6C-688.4,898.4-690.5,896.4-693,896.4 M-683.8,913h-18.5
	c-1.5,0-2.8-1.2-2.8-2.8v-18.4c0-1.5,1.2-2.8,2.8-2.8h18.5c1.5,0,2.8,1.2,2.8,2.8v18.4C-681,911.7-682.3,913-683.8,913"/></svg></i></a><a href="https://flipboard.com/@gamespot?utm_source=gamespot&utm_medium=follow&utm_campaign=tools" target="_blank" rel="nofollow"><i><svg version="1.1" x="0px" y="0px" viewBox="0 0 32 32" width="32" height="32" aria-hidden="true" class="symbol symbol-flipboard"><polygon points="10.7,0 0,0 0,10.6 0,21.2 0,32 10.7,32 10.7,21.3 10.7,10.7  "/><polygon opacity="0.8" points="21.4,0 10.8,0 10.7,0 10.7,10.7 21.3,10.7 21.4,10.7 32,10.7 32,0  "/><rect x="10.7" y="10.7" opacity="0.6" width="10.7" height="10.7"/></svg></i></a><a href="/feeds" title="RSS Feeds"><i><svg version="1.1" width="22" height="28" viewBox="0 0 22 28" aria-hidden="true" class="symbol symbol-rss"><path d="M6 21q0 1.25-0.875 2.125t-2.125 0.875-2.125-0.875-0.875-2.125 0.875-2.125 2.125-0.875 2.125 0.875 0.875 2.125zM14 22.922q0.031 0.438-0.266 0.75-0.281 0.328-0.734 0.328h-2.109q-0.391 0-0.672-0.258t-0.313-0.648q-0.344-3.578-2.883-6.117t-6.117-2.883q-0.391-0.031-0.648-0.313t-0.258-0.672v-2.109q0-0.453 0.328-0.734 0.266-0.266 0.672-0.266h0.078q2.5 0.203 4.781 1.258t4.047 2.836q1.781 1.766 2.836 4.047t1.258 4.781zM22 22.953q0.031 0.422-0.281 0.734-0.281 0.313-0.719 0.313h-2.234q-0.406 0-0.695-0.273t-0.305-0.664q-0.187-3.359-1.578-6.383t-3.617-5.25-5.25-3.617-6.383-1.594q-0.391-0.016-0.664-0.305t-0.273-0.68v-2.234q0-0.438 0.313-0.719 0.281-0.281 0.688-0.281h0.047q4.094 0.203 7.836 1.875t6.648 4.594q2.922 2.906 4.594 6.648t1.875 7.836z"/></svg></i></a><a href="https://newsletter.gamespot.com/public/preference_center.jsp" target="_blank" rel="nofollow"><i><svg version="1.1" width="28" height="28" viewBox="0 0 28 28" aria-hidden="true" class="symbol symbol-envelope"><path d="M28 11.094v12.406q0 1.031-0.734 1.766t-1.766 0.734h-23q-1.031 0-1.766-0.734t-0.734-1.766v-12.406q0.688 0.766 1.578 1.359 5.656 3.844 7.766 5.391 0.891 0.656 1.445 1.023t1.477 0.75 1.719 0.383h0.031q0.797 0 1.719-0.383t1.477-0.75 1.445-1.023q2.656-1.922 7.781-5.391 0.891-0.609 1.563-1.359zM28 6.5q0 1.234-0.766 2.359t-1.906 1.922q-5.875 4.078-7.313 5.078-0.156 0.109-0.664 0.477t-0.844 0.594-0.812 0.508-0.898 0.422-0.781 0.141h-0.031q-0.359 0-0.781-0.141t-0.898-0.422-0.812-0.508-0.844-0.594-0.664-0.477q-1.422-1-4.094-2.852t-3.203-2.227q-0.969-0.656-1.828-1.805t-0.859-2.133q0-1.219 0.648-2.031t1.852-0.812h23q1.016 0 1.758 0.734t0.742 1.766z"/></svg></i></a></li><li class="footer--social-icons"><strong>GameSpot Entertainment</strong><a href="http://facebook.com/GameSpotUniverse" target="_blank" rel="nofollow"><i><svg version="1.1" width="28" height="28" viewBox="0 0 28 28" aria-hidden="true" class="symbol symbol-facebook-sign"><path d="M24 21.5q0 1.859-1.32 3.18t-3.18 1.32h-3v-9.5h3.172l0.469-3.5h-3.641v-2.234q0-0.844 0.438-1.297t1.5-0.453l2.063-0.016v-3.234q-1.5-0.141-2.812-0.141-2.125 0-3.406 1.258t-1.281 3.523v2.594h-3.5v3.5h3.5v9.5h-8.5q-1.859 0-3.18-1.32t-1.32-3.18v-15q0-1.859 1.32-3.18t3.18-1.32h15q1.859 0 3.18 1.32t1.32 3.18v15z"/></svg></i></a><a href="http://twitter.com/gsuniverse" target="_blank" rel="nofollow"><i><svg version="1.1" width="26" height="28" viewBox="0 0 26 28" aria-hidden="true" class="symbol symbol-twitter"><path d="M25.312 6.375q-1.047 1.531-2.531 2.609 0.016 0.219 0.016 0.656 0 2.031-0.594 4.055t-1.805 3.883-2.883 3.289-4.031 2.281-5.047 0.852q-4.234 0-7.75-2.266 0.547 0.063 1.219 0.063 3.516 0 6.266-2.156-1.641-0.031-2.938-1.008t-1.781-2.492q0.516 0.078 0.953 0.078 0.672 0 1.328-0.172-1.75-0.359-2.898-1.742t-1.148-3.211v-0.063q1.062 0.594 2.281 0.641-1.031-0.688-1.641-1.797t-0.609-2.406q0-1.375 0.688-2.547 1.891 2.328 4.602 3.727t5.805 1.555q-0.125-0.594-0.125-1.156 0-2.094 1.477-3.57t3.57-1.477q2.188 0 3.687 1.594 1.703-0.328 3.203-1.219-0.578 1.797-2.219 2.781 1.453-0.156 2.906-0.781z"/></svg></i></a><a href="http://youtube.com/GameSpotUniverse" target="_blank" rel="nofollow"><i><svg version="1.1" width="28" height="28" viewBox="0 0 28 28" aria-hidden="true" class="symbol symbol-youtube-play"><path d="M20 14q0-0.578-0.469-0.844l-8-5q-0.484-0.313-1.016-0.031-0.516 0.281-0.516 0.875v10q0 0.594 0.516 0.875 0.25 0.125 0.484 0.125 0.313 0 0.531-0.156l8-5q0.469-0.266 0.469-0.844zM28 14q0 1.5-0.016 2.344t-0.133 2.133-0.352 2.305q-0.25 1.141-1.078 1.922t-1.937 0.906q-3.469 0.391-10.484 0.391t-10.484-0.391q-1.109-0.125-1.945-0.906t-1.086-1.922q-0.219-1.016-0.336-2.305t-0.133-2.133-0.016-2.344 0.016-2.344 0.133-2.133 0.352-2.305q0.25-1.141 1.078-1.922t1.937-0.906q3.469-0.391 10.484-0.391t10.484 0.391q1.109 0.125 1.945 0.906t1.086 1.922q0.219 1.016 0.336 2.305t0.133 2.133 0.016 2.344z"/></svg></i></a></li></ul></section><section class="footer-site"><a href="https://www.gamespot.com/" class="footer-logo"><i><svg viewBox="0 0 1631.76 517.06" width="1631.76" height="517.06" aria-hidden="true" class="symbol symbol-logo-outline-full"><path d="M1510,137.41a119.48,119.48,0,0,0-75.43,27l60.12-88.74L1383.6,151.05,1411,19.51l-73.82,112.37L1311.82,0l-25.16,131.87-73.71-112,27.2,131.23-110.9-75,60,88.07a119.78,119.78,0,0,0-75.55-26.71c-41.34,0-77.15,20.59-99.43,51.75-22-31.16-58-51.75-99.3-51.75a121.52,121.52,0,0,0-99.24,51.75,121.49,121.49,0,0,0-99.21-51.75c-40.94,0-77.15,20.59-99.33,51.75a120.86,120.86,0,0,0-99-51.75c-41,0-77.23,20.59-99.53,51.75a120.74,120.74,0,0,0-99-51.75c-41,0-77.12,20.59-99.44,51.75a120.69,120.69,0,0,0-99.12-51.75C54.43,137.41,0,191.87,0,258.72S54.43,380,121.12,380a120.32,120.32,0,0,0,99.12-51.62C242.57,359.61,278.73,380,319.69,380a120.37,120.37,0,0,0,99-51.62C441,359.61,477.28,380,518.25,380a120.49,120.49,0,0,0,99-51.62,121.26,121.26,0,0,0,198.54,0,121.26,121.26,0,0,0,198.54,0c22.28,31.26,58.09,51.62,99.43,51.62,28.3,0,54.33-9.83,75.55-25.91l-60,87.21,111.12-75.21-27.22,131.36,73.73-112.09L1312,517.06l25.5-131.72,73.71,111.88-27.42-131.37,111.12,75.34-59.15-86.55A121.82,121.82,0,0,0,1510,380c67.4,0,121.71-54.42,121.71-121.26S1577.44,137.41,1510,137.41Zm.76,225.84c-46,0-78.72-26.79-121-53.28l51.68,77.52-79.84-55.27,24.57,98.27-55.27-86-18.36,98.26-18.49-98.26-55.27,86,24.57-98.27-79.85,55.27,51.14-76.71c-42.47,26.22-76.33,52.46-121.17,52.46a104.7,104.7,0,0,1-99.32-71.68,104.65,104.65,0,0,1-198.64,0,104.65,104.65,0,0,1-198.64,0,104.65,104.65,0,0,1-198.64,0,104.65,104.65,0,0,1-198.64,0,104.73,104.73,0,1,1,0-66.1,104.65,104.65,0,0,1,198.64,0,104.65,104.65,0,0,1,198.64,0,104.65,104.65,0,0,1,198.64,0,104.65,104.65,0,0,1,198.64,0,104.7,104.7,0,0,1,99.32-71.68c46.59,0,78.7,26.25,121.17,52.46l-51.14-76.71,79.85,55.28-24.57-98.27,55.27,86,18.38-98.27L1331,172.55l55.27-86-24.57,98.27,79.84-55.28-50.64,76c42.19-26,78.93-51.72,119.94-51.72a104.73,104.73,0,0,1,0,209.46Z"/><path d="M136.2,280.15a8.92,8.92,0,0,1-2.94,6.85c-1.92,1.72-4.39,2.16-7.18,2.16a24,24,0,0,1-18.81-8.58c-5.25-5.91-7.81-13.08-7.81-21.85s2.67-16.52,8.4-22.61c6.21-6.63,14.41-10,24.91-10a55.78,55.78,0,0,1,15.21,2,63,63,0,0,1,10.67,3.53l3.81-14.57c-9.32-3.41-14.58-5.11-15.65-5.33-6.91-1.74-15.26-2.47-25.82-2.47-16.12,0-29.36,4.71-39.86,14.36C70.9,233,66,244.69,66,258.6c0,13.6,5.25,25.2,15.2,34.84a52.57,52.57,0,0,0,36.92,14.26,73.35,73.35,0,0,0,15.16-1.85c12.42-2.57,20.39-3.85,23.52-3.85a18.05,18.05,0,0,1,10.4,2.77V260.23h-31Z"/><path d="M308.4,212.23l-43.31,92.56H283.8l6.92-15h42.42l6.9,15h34.07l-43.5-92.56Zm-9.81,60.86,13.24-28.58,13.32,28.58Z"/><polygon points="517.91 252.84 489.36 212.22 463.43 212.22 463.43 304.78 480.56 304.78 480.56 253.16 500.7 282.49 517.91 282.49 541.47 248.89 541.47 304.78 572.38 304.78 572.38 212.22 546.73 212.22 517.91 252.84"/><polygon points="677.93 304.78 754.15 304.78 754.15 287.99 709.2 287.99 709.2 263.12 740.28 263.12 740.28 246.19 709.2 246.19 709.2 229.06 754.15 229.06 754.15 212.22 677.93 212.22 677.93 304.78"/><path d="M924.15,245.87c-6.33-2.34-10.84-4.62-13.66-6.65s-3.9-4-3.9-5.65a5,5,0,0,1,2.39-4.4,13.87,13.87,0,0,1,6.92-1.63,57.86,57.86,0,0,1,16,2.27,70.33,70.33,0,0,1,14,6.76L954.25,224A70.11,70.11,0,0,0,936,214.15a66.35,66.35,0,0,0-24.85-4.79q-16.81,0-27.49,8.68c-6.69,5.34-10.17,12-10.17,19.93,0,6.43,2.28,11.89,7,16.89s11.62,9.48,21.33,13c14.46,5.57,21.74,10.1,21.74,13.61A6.14,6.14,0,0,1,920.4,287c-2.36,1.72-5.24,2.16-9.21,2.16-6.11,0-11.68-.76-16.67-2.92a54.94,54.94,0,0,1-14.66-8.9l-9.34,11.38a61.93,61.93,0,0,0,18.58,13.18,59.16,59.16,0,0,0,26.15,5.8c13.07,0,23.57-2.92,31.63-8.9,7.49-5.57,11.13-12,11.13-19.48a25.2,25.2,0,0,0-7-17.78C945.58,255.5,936.79,249.93,924.15,245.87Z"/><path d="M1157.51,221.11c-7.93-6-17.35-8.88-28.29-8.88h-52.83v92.56h31.3V273.94h21.53c10.94,0,20.36-3.13,28.29-9.21,7.72-6,11.48-13.38,11.48-21.84S1165.23,227.13,1157.51,221.11Zm-24.43,31.38a20.71,20.71,0,0,1-13.05,4.11h-12.34V229.06H1120a22.34,22.34,0,0,1,13.05,4.18c3.55,2.78,5.36,6.19,5.36,9.66C1138.43,246.85,1136.62,249.93,1133.07,252.48Z"/><path d="M1349.28,223.58c-9.75-9.53-21.94-14.23-36.65-14.23-14.22,0-26.44,4.71-36.61,14.23-9.87,9.66-14.9,21.35-14.9,35s5,25.2,14.9,34.84a52.15,52.15,0,0,0,36.61,14.26c14.7,0,26.9-4.72,36.65-14.26,10.41-9.64,15.33-21.24,15.33-34.84S1359.45,233.24,1349.28,223.58Zm-23.56,56.78c-3.74,6.13-7.95,8.81-12.87,8.81s-9.4-2.61-13.16-8.58a46.53,46.53,0,0,1,0-43.73c4-6.19,8.24-9.33,13.16-9.33s9.57,3.14,13.09,9c3.74,6.09,5.56,13.37,5.56,22C1331.5,267.07,1329.69,274.48,1325.72,280.36Z"/><polygon points="1464.79 229.06 1495.11 229.06 1495.11 304.78 1525.79 304.78 1525.79 229.06 1555.98 229.06 1555.98 212.22 1464.79 212.22 1464.79 229.06"/></svg></i></a></section></div></footer>    
    </div>

  
                  <meta name="ssbfo" data-post-render-param="CmsBundle.ssbfo" data-post-render-value="1" content="" />
      
  
    <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script><script>
  window.jQuery || document.write('<script src="https://gamespot1.cbsistatic.com/vf37c8fbe7a94c587b3e9249d07d26cb9/js/compiled/jquery.local.js">\x3C/script>')
</script>
            <script>
/*
Added By: Will
Description: Show first 3 gallery images by default no lazy loading
Github Issue: GMSCORE-247
Remove: After PR 5004
Url: Image Gallery
*/
$(function(){
    $('.js-image-gallery__image-placeholder:lt(3)').each(function(){
        $(this).find('img').show();
        $(this).removeClass('image-gallery__image-placeholder').addClass('image-gallery__image-wrapper');
    });
});
/*
Added By: Will
Description: Livestream creation not using generate by default
Github Issue: /issues/7274
Url: CMS Livestream
*/
$(function(){
  setTimeout(function(){
    $('[name=ingest-point-0]').trigger('change');
  }, 100);
});

/*
Added By: Will
Description: Fix image viewer
Github Issue: issue-tracker/issues/6998
Url: Forum post with images
*/
document.getElementById('cdnHost').setAttribute('content', '');

/*
Added By: Will
Description: Fix srcset when instart is on
Url: https://www.gamespot.com/articles/phil-spencer-is-exactly-who-you-think-he-is/1100-6468846/
*/
$(function(){
    if ($('.body-highend-content').length > 0) {
        $(document).on('scroll', function(){
            $('.body-highend-content img[srcset]').each(function(){
                $(this).attr('src', $(this).attr('srcset').split(' ')[0]);
                $(this).removeAttr('srcset');
            });
            $('.body-highend-content img[data-srcset]').each(function(){
                $(this).attr('src', $(this).attr('data-srcset').split(' ')[0]);
                $(this).removeAttr('srcset');
            });
        });
    }
});
/*
Added By: Will
Description: Fix datetime now button
Github Issue: /issues/6916
Url: Any cms page
*/
$(function(){ 
        var siteTime = 'America/Los_Angeles';
        // Date picker now button
        $('.datetime-now-button').click( function(event) {
            event.preventDefault();

            var $this = $(this);
            var datePicker = $this.parent().find('.datepicker-input');
            var timePicker = $this.parent().find('.timepicker');

            var now = moment.tz(siteTime);

            var dateStr = now.format('M/D/YYYY');
            var timeStr = now.format('HH:mm');

            datePicker.val(dateStr);
            timePicker.val(timeStr);

            datePicker.datepicker('update');
            // Trigger time display update
            timePicker.trigger('changeTime');

            // Let anyone listening know that dates are set now
            $(document).trigger('phoenix_date_picker_now_done');
        });
});

/*
Added By: Regina
Description: Adds 'mapped-ad-blank' class name to ads that are blank and need to be collapsed
Remove: When this goes live https://github.com/cbsi/phoenix/pull/4786
Url: https://www.gamespot.com/articles/steel-circus-everything-you-need-to-know/1100-6468981/
*/
$(function() {
    $(document).on('ad_rendered', function (e, adData) {
        if (adData.isBlank) {
            const $adDiv = $('#' + adData.divId);
            const $adWrap = $adDiv.closest('.js-mapped-ad');

            // Collapse blank ad if one of the following is true
            // - it wasn't blocked
            // - it was blocked but not hidden
            if (!adData.isBlocked || !($adDiv.is(':hidden') || $adWrap.is(':hidden'))) {
                $adWrap.addClass('mapped-ad-blank');
            }
        }
    });
});
</script>      
            <script src="https://gamespot1.cbsistatic.com/vf37c8fbe7a94c587b3e9249d07d26cb9/js/compiled/header_js.js" type="text/javascript"></script>
      
          <script src="https://gamespot1.cbsistatic.com/vf37c8fbe7a94c587b3e9249d07d26cb9/js/compiled/all.js" type="text/javascript"></script>
  
  
  
    
    
  <script src="https://gamespot1.cbsistatic.com/vf37c8fbe7a94c587b3e9249d07d26cb9/js/compiled/site.js" type="text/javascript"></script>
  <!-- BEG: base custom_js -->
      

    
      <!-- END: base custom_js -->

                        
        
            




  

  <script type="text/plain" class="optanon-category-2"              id="script_omniture_and_qualtrics"                  src="https://gamespot1.cbsistatic.com/vf37c8fbe7a94c587b3e9249d07d26cb9/js/compiled/trackingAll.js"                  async        charset="utf-8"></script>

  
      
            <meta name="trackingEventsLookup" content='[]' />
      

      <script async src="https://gamespot1.cbsistatic.com/vf37c8fbe7a94c587b3e9249d07d26cb9/js/compiled/siteTracking.js"></script>
  
      <noscript>
      <img src="https://dw.cbsi.com/clear/c.gif?ptid=2000&amp;ednm=%7Bedition%7D&amp;ursuid=%7Bursuid%7D&amp;regSilo=2&amp;rsid=cbsigamespotsite&amp;prodtypid=8&amp;pagetype=front_door&amp;topicbrcrm=Home&amp;sid=6&amp;ts=1582412966" alt="" class="visuallyhidden">
    </noscript>
  
  
  




  

  <script type="text/plain" class="optanon-category-2"              id="script_true_anthem"                  src="//tru.am/scripts/custom/cbsinteractive.js"                  async        charset="utf-8"></script>

  

  <!-- Facebook Pixel Code -->
<script>
  PhoenixLoader.gdprConsentCallback("facebookPixel", function () {
    !function(f,b,e,v,n,t,s)
    {if(f.fbq)return;n=f.fbq=function(){n.callMethod?
      n.callMethod.apply(n,arguments):n.queue.push(arguments)};
      if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
      n.queue=[];t=b.createElement(e);t.async=!0;
      t.src=v;s=b.getElementsByTagName(e)[0];
      s.parentNode.insertBefore(t,s)}(window,document,'script',
      'https://connect.facebook.net/en_US/fbevents.js');
    fbq('init', '1664416907029093');
    fbq('track', 'PageView');
  }, 'social');
</script>
<noscript>
  <img height="1" width="1"
       src="https://www.facebook.com/tr?id=1664416907029093&ev=PageView&noscript=1"/>
</noscript>
<!-- End Facebook Pixel Code -->  <!-- Global site tag (gtag.js) - Google Ads: 930621608 -->



  



  <script type="text/plain" class="optanon-category-4"              id="script_googleTagManager"                  src="https://www.googletagmanager.com/gtag/js?id=AW-930621608"                  async        charset="utf-8"></script>

  

<script>
  PhoenixLoader.gdprConsentCallback("googlePixel", function () {
    window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'AW-930621608');
  }, 'targeting');
</script>
          <script>
          var taboola_url = '//cdn.taboola.com/libtrc/cbsinteractive-gamespot/loader.js';
          var taboola_header_key = 'home';
        </script><script async src="https://gamespot1.cbsistatic.com/vf37c8fbe7a94c587b3e9249d07d26cb9/js/compiled/5ec795d.js"></script>  
    
  
    

  
        <script type="text/javascript">
    (function () {
      "use strict";

            var x = document.createElement('meta');
      x.id = "xdetstatus";
      x.name = "xdetstatus";
      x.content="";
      x.setAttribute("data-status", "unknown");
      x.setAttribute("data-processed", "0");
      document.head.appendChild(x);

      var $, $xdetstatus;

      try {
        $ = window.jQuery || window.$;
        $xdetstatus = $(x);
      }
      catch (e) {
        console.error('jQuery is not defined');
      }

      var updateStatus = function (blocking) {
        $xdetstatus.data('status', !!blocking);
        $xdetstatus.trigger('statusChange', [blocking]);
      };

            if (typeof window.I11C !== "undefined") {
          $(function(){
            updateStatus(false);
          });
          return;
      }

      // use PhoenixThirdPartyLoader to load all third party features
      // load source_point if enabled, otherwise call updateStatus(false) to load ads
      PhoenixLoader.gdprConsentCallback("source_point",
        function() {
                    var h=function(e){if(e.target.tagName === 'SCRIPT' && e.target.src.indexOf('js/compiled/sourcepoint') !== -1){updateStatus(true);window.removeEventListener('error', h);}};
          window.addEventListener('error', h, true);

                    var evt1='sp.blocking',
            evt2='sp.not_blocking',
            f1=function(e){
              updateStatus(true);
              document.removeEventListener(evt1, f1);
              document.removeEventListener(evt2, f2);
            },
            f2=function (e){
              updateStatus(false);
              document.removeEventListener(evt1, f1);
              document.removeEventListener(evt2, f2);
            };
          document.addEventListener(evt1, f1);
          document.addEventListener(evt2, f2);


                    window._sp_ = window._sp_ || {};
          window._sp_.config = window._sp_.config || {};
          window._sp_.config.account_id = 68;

          var s = document.createElement('script'); s.src = 'https://gamespot1.cbsistatic.com/vf37c8fbe7a94c587b3e9249d07d26cb9/js/compiled/sourcepoint.js';
          var x = document.getElementsByTagName('script')[0];
          x.parentNode.insertBefore(s, x);
        }, 'targeting', 'Scripts',
        function() {
            updateStatus(false); // for sake of third party feature testing, assume block = false
        }
      );
    })();
  </script>  
      <div id="liveMessageOverlay" class="live_message-overlay full-cover-fixed text-center base-flexbox flexbox-justify-center flexbox-align-center" style="display:none;">
      <div id="liveMessageInner" class="live_message-container inner-space-rem bg-white">
        <span>
          <i class="vertical-spacing-small-bottom"><svg version="1.1" width="28" height="28" viewBox="0 0 28 28" aria-hidden="true" class="symbol symbol-info-sign"><path d="M16 21.5v-2.5q0-0.219-0.141-0.359t-0.359-0.141h-1.5v-8q0-0.219-0.141-0.359t-0.359-0.141h-5q-0.219 0-0.359 0.141t-0.141 0.359v2.5q0 0.219 0.141 0.359t0.359 0.141h1.5v5h-1.5q-0.219 0-0.359 0.141t-0.141 0.359v2.5q0 0.219 0.141 0.359t0.359 0.141h7q0.219 0 0.359-0.141t0.141-0.359zM14 7.5v-2.5q0-0.219-0.141-0.359t-0.359-0.141h-3q-0.219 0-0.359 0.141t-0.141 0.359v2.5q0 0.219 0.141 0.359t0.359 0.141h3q0.219 0 0.359-0.141t0.141-0.359zM24 14q0 3.266-1.609 6.023t-4.367 4.367-6.023 1.609-6.023-1.609-4.367-4.367-1.609-6.023 1.609-6.023 4.367-4.367 6.023-1.609 6.023 1.609 4.367 4.367 1.609 6.023z"/></svg></i>        </span>
        <p id="liveMessageContent"></p>
        <a onclick="closeOverlay();" class="live_message-close btn btn-large btn-default vertical-spacing-small-top">Close</a>
      </div>
    </div>
      
        <script id="js-template-autocomplete-result-pod" type="text/template"><span class="<%= data.resultPodClass %>"><span><%= data.resultDisplayName %></span><i><svg version="1.1" width="22" height="28" viewBox="0 0 22 28" aria-hidden="true" class="symbol symbol-remove"><path d="M20.281 20.656q0 0.625-0.438 1.062l-2.125 2.125q-0.438 0.438-1.062 0.438t-1.062-0.438l-4.594-4.594-4.594 4.594q-0.438 0.438-1.062 0.438t-1.062-0.438l-2.125-2.125q-0.438-0.438-0.438-1.062t0.438-1.062l4.594-4.594-4.594-4.594q-0.438-0.438-0.438-1.062t0.438-1.062l2.125-2.125q0.438-0.438 1.062-0.438t1.062 0.438l4.594 4.594 4.594-4.594q0.438-0.438 1.062-0.438t1.062 0.438l2.125 2.125q0.438 0.438 0.438 1.062t-0.438 1.062l-4.594 4.594 4.594 4.594q0.438 0.438 0.438 1.062z"/></svg></i><input type="hidden" name="<%= data.resultInputName %>"<% _.each(data.resultDataStore, function(value, key) { %>data-<%= key %>="<%= value %>" <% }) %> value="<%= data.resultInputValue %>"></span></script><script id="js-template-autocomplete-results" type="text/template"><div class="dropdown--autocomplete"><ul class="js-autocomplete-list autocomplete-list bordered-list"><% if (data.showNotificationBar) { %><li class="js-autocomplete-notification-bar notification-bar color-tertiary"><span class="js-autocomplete-notification-text notification-text">Searching for</span> &quot;<span class="js-autocomplete-notification-term notification-term"></span>&quot;</li><% } %></ul><div class="js-loader loader "><div class="loader-animation"><div class="loading"></div></div></div></div></script><script id="js-template-autocomplete-results-legacy" type="text/template"><div class="dropdown-menu typeahead typeahead-full"><ul class="js-autocomplete-list autocomplete-list"><% if (data.showNotificationBar) { %><li class="js-autocomplete-notification-bar notificationBar"><span class="js-autocomplete-notification-text notification-text">Searching for</span> &quot;<span class="js-autocomplete-notification-term notification-term"></span>&quot;</li><% } %></ul><div class="js-loader loader "><div class="loader-animation"><div class="loading"></div></div></div></div></script><script id="js-template-autocomplete-result-item" type="text/template"><li><% if (data.hasResult) { %><% if (data.resultUrl) { %><a class="flexbox-row <% if (data.resultClass) { print(data.resultClass); } %>" href="<%= data.resultUrl %>" data-id="<%= data.resultUrlDataId %>" data-key="<%= data.resultUrlDataKey %>" data-type="<%= data.resultUrlDataType %>"><% } else { %><div class="flexbox-row <% if (data.resultClass) { print(data.resultClass); } %>"><% } %><% if (data.resultImage) { %><div class="link-img"><img src="<%= data.resultImage %>"></div><% } %><div class="flexbox-row flexbox-justify-between"><p><%= data.resultName %></p><% if (data.resultType) { %><span class="result-type"><%= data.resultType %></span><% } %></div><% if (data.resultUrl) { %></a><% } else { %></div><% } %><% } else { %><% if (data.emptyText) { %><div class="noResults"><%= data.emptyText %></div><% } %><% } %></li></script><script id="js-template-autocomplete-result-item-legacy" type="text/template"><li><% if (data.hasResult) { %><% if (data.resultUrl) { %><a class=" <% if (data.resultClass) { print(data.resultClass); } %>" href="<%= data.resultUrl %>" data-id="<%= data.resultUrlDataId %>" data-key="<%= data.resultUrlDataKey %>" data-type="<%= data.resultUrlDataType %>"><% } else { %><div class=" <% if (data.resultClass) { print(data.resultClass); } %>"><% } %><% if (data.resultImage) { %><img src="<%= data.resultImage %>"><% } %><div class="flexbox-row flexbox-justify-between"><p><%= data.resultName %></p><% if (data.resultType) { %><span class="result-type"><%= data.resultType %></span><% } %></div><% if (data.resultUrl) { %></a><% } else { %></div><% } %><% } else { %><% if (data.emptyText) { %><div class="noResults"><%= data.emptyText %></div><% } %><% } %></li></script><script id="js-template-autocomplete-pagination" type="text/template"><li class="js-autocomplete-page <%= data.direction %>" data-direction="<%= data.direction %>"><% if (data.direction === "next") { %>See more results<% } else { %>See previous results<% } %></li></script>    <script id="js-underscore-template-small-buylink" type="text/template"><% var linkText = link.text %><% var linkUrl = link.url %><a 
  target="_blank" 
  href=<%= linkUrl %>
  class="js-lead-click-event-tracking"
  data-event-tracking='{"lead_type":"deal","merchant":"","link_location":"Buy Button","lead_dest_url":"<%= linkUrl %>"}'
  data-vars-buy-link=<%= linkUrl %>
><%= linkText %></a></script><script id="js-underscore-template-medium-buylink" type="text/template"><div class="pod pod--carousel-strip  carousel__standard"><div class="js-carousel-strip carousel-strip" data-viewport="3"><div class="flexbox-row flexbox-justify-between"><% if (collection.title) { %><h4 class="collection-title"><%= collection.title %></h4><% } %><div class="carousel-strip__control flexbox-justify-flex-end"><div class="js-carousel-strip__control--prev carousel-strip__control--prev"><button type="button" class="js-carousel-strip__control" data-control-dir="1"><i><svg version="1.1" width="10" height="28" viewBox="0 0 10 28" aria-hidden="true" class="symbol symbol-angle-left"><path d="M9.797 8.5q0 0.203-0.156 0.359l-6.141 6.141 6.141 6.141q0.156 0.156 0.156 0.359t-0.156 0.359l-0.781 0.781q-0.156 0.156-0.359 0.156t-0.359-0.156l-7.281-7.281q-0.156-0.156-0.156-0.359t0.156-0.359l7.281-7.281q0.156-0.156 0.359-0.156t0.359 0.156l0.781 0.781q0.156 0.156 0.156 0.359z"/></svg></i></button></div><div class="js-carousel-strip__control--next carousel-strip__control--next"><button type="button" class="js-carousel-strip__control" data-control-dir="-1"><i><svg version="1.1" width="10" height="28" viewBox="0 0 10 28" aria-hidden="true" class="symbol symbol-angle-right"><path d="M9.297 15q0 0.203-0.156 0.359l-7.281 7.281q-0.156 0.156-0.359 0.156t-0.359-0.156l-0.781-0.781q-0.156-0.156-0.156-0.359t0.156-0.359l6.141-6.141-6.141-6.141q-0.156-0.156-0.156-0.359t0.156-0.359l0.781-0.781q0.156-0.156 0.359-0.156t0.359 0.156l7.281 7.281q0.156 0.156 0.156 0.359z"/></svg></i></button></div></div></div><div class="js-carousel-strip__viewport carousel-strip__viewport"><div class="js-carousel-strip__body carousel-strip__body"><ul class="js-carousel-strip__strip carousel-strip__strip"><% _.each(collection.collection, function(buylink) { %><% var { itemDescription, linkText, linkUrl, "data-img-src" : imgSrc } = buylink %><li class="carousel-strip__slot"  style="max-width: 33.333333333333%;flex:1 0 33.333333333333%;"><div class="buylink-item-container"><div class="image-container"><img class="overlay" src=<%= imgSrc %> /><img class="main-image" src=<%= imgSrc %>></div><div class="information-container"><p class="item-description"><%= itemDescription %></p><% var link = { text:linkText, url:linkUrl } %><% var linkText = link.text %><% var linkUrl = link.url %><a 
  target="_blank" 
  href=<%= linkUrl %>
  class="js-lead-click-event-tracking"
  data-event-tracking='{"lead_type":"deal","merchant":"","link_location":"Buy Button","lead_dest_url":"<%= linkUrl %>"}'
  data-vars-buy-link=<%= linkUrl %>
><%= linkText %></a></div></div></li><% }); %></ul></div></div></div></div></script><script id="js-underscore-template-large-buylink" type="text/template"><h4 class="collection-title"><%= collection.title %></h4><div class="buylink-container"><% _.each(collection.collection, function(buylink) { %><% var { itemDescription, linkText, linkUrl, "data-img-src" : imgSrc } = buylink %><div class="buylink-item-container"><div class="image-container"><img class="overlay" src=<%= imgSrc %> /><img class="main-image" src=<%= imgSrc %>></div><div class="information-container"><p class="item-description"><%= itemDescription %></p><% var link = { text:linkText, url:linkUrl } %><% var linkText = link.text %><% var linkUrl = link.url %><a 
  target="_blank" 
  href=<%= linkUrl %>
  class="js-lead-click-event-tracking"
  data-event-tracking='{"lead_type":"deal","merchant":"","link_location":"Buy Button","lead_dest_url":"<%= linkUrl %>"}'
  data-vars-buy-link=<%= linkUrl %>
><%= linkText %></a></div></div><% }); %></div></script>      </body>
</html>
URL
GET http://www.gamespot.com/
Response Headers
Content-Length:
0
Accept-Ranges:
bytes
Strict-Transport-Security:
max-age=300
Server:
Varnish
Retry-After:
0
Connection:
close
Location:
https://www.gamespot.com/
Date:
Sat, 22 Feb 2020 23:11:55 GMT
Response Body

Empty body

Measurement UID
01202002229e3f51958ec283fa79aaa47357bd33
Report ID
20200222T231154Z_AS37229_ijvihWLq34GPOHdPZU3Sb3JvCMrwUlANBkH9KRgUp04XIMsHSf
Platform
android
Software Name
ooniprobe-android (2.2.0)
Measurement Engine
libmeasurement_kit (0.10.6)

Raw Measurement Data

Loading…