CINXE.COM
Battlestar Galactica Review - GameSpot
<!doctype html> <html lang="en" class="no-js no-touch "> <head><script type="text/javascript" src="/_static/js/bundle-playback.js?v=HxkREWBo" charset="utf-8"></script> <script type="text/javascript" src="/_static/js/wombat.js?v=txqj7nKC" charset="utf-8"></script> <script>window.RufflePlayer=window.RufflePlayer||{};window.RufflePlayer.config={"autoplay":"on","unmuteOverlay":"hidden"};</script> <script type="text/javascript" src="/_static/js/ruffle/ruffle.js"></script> <script type="text/javascript"> __wm.init("https://web.archive.org/web"); __wm.wombat("https://www.gamespot.com/reviews/battlestar-galactica-review/1900-6084925/","20200617093804","https://web.archive.org/","web","/_static/", "1592386684"); </script> <link rel="stylesheet" type="text/css" href="/_static/css/banner-styles.css?v=S1zqJCYt" /> <link rel="stylesheet" type="text/css" href="/_static/css/iconochive.css?v=3PDvdIFv" /> <!-- End Wayback Rewrite JS Include --> <script src="https://web.archive.org/web/20200617093804js_/https://cdn.cookielaw.org/scripttemplates/otSDKStub.js" async type="text/javascript" charset="UTF-8" data-domain-script="b69acdf9-a259-4c31-aefd-5dc32f96a0bc"></script> <script src="https://web.archive.org/web/20200617093804js_/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 the user has disabled the "performance" scripts then tracking will not load. Some of our scripts (eg video player) wait for tracking initialized before running, so we must now trigger that manually if (!self.trackingInitialized && !obj.performance) { window.addEventListener('DOMContentLoaded', (event) => { self.triggerEvent('tracking_initialized'); self.trackingInitialized = true; }); } 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; this.triggerEvent('loadThirdParty') }, /** * Trigger an event on the document * @param {string} eventName */ triggerEvent: function (eventName) { var event = null; if (typeof(Event) === 'function') { var event = new Event(eventName); } // 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(eventName, 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> <title>Battlestar Galactica Review - GameSpot</title> <meta name="description" content="Battlestar Galactica puts forth a far more enjoyable effort than your average licensed game, but unfortunately, there are still many problems to be found within."> <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 property="SocialTitle" content="Battlestar Galactica Review"/> <meta property="SocialDeck" content="Battlestar Galactica puts forth a far more enjoyable effort than your average licensed game, but unfortunately, there are still many problems to be found within."/> <meta property="SocialImage" content="https://gamespot1.cbsistatic.com/uploads/screen_kubrick/469/4693985/2305502-default-art--kubrick.jpg"/> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:site" content="@GameSpot"> <meta name="twitter:creator" content="@GameSpot"> <meta property="og:image" content="https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/screen_kubrick/469/4693985/2305502-default-art--kubrick.jpg"/> <meta property="og:title" content="Battlestar Galactica Review"/> <meta property="og:description" content="Battlestar Galactica puts forth a far more enjoyable effort than your average licensed game, but unfortunately, there are still many problems to be found within."/> <meta property="og:site_name" content="GameSpot"/> <meta property="og:type" content="article"/> <meta property="og:url" content="https://web.archive.org/web/20200617093804/https://www.gamespot.com/reviews/battlestar-galactica-review/1900-6084925/"/> <link rel="canonical" href="https://web.archive.org/web/20200617093804/https://www.gamespot.com/reviews/battlestar-galactica-review/1900-6084925/"/> <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="{"pageParams":{"siteid":"6","ptid":"6049","onid":null,"ednm":"{edition}","ursuid":"{ursuid}","regSilo":"2","rsid":"cbsigamespotsite","prodtypid":"8","pagetype":"review","assetguid":"1900-6084925","assettitle":"Battlestar Galactica Review","assettype":"Review","authorid":["gs-2100-788224"],"topicbrcrm":"Reviews|Game Review"},"cleargifSrc":"https:\/\/dw.cbsi.com\/clear\/c.gif?ptid=6049&ednm=%7Bedition%7D&ursuid=%7Bursuid%7D&regSilo=2&rsid=cbsigamespotsite&prodtypid=8&pagetype=review&assetguid=1900-6084925&assettitle=Battlestar+Galactica+Review&assettype=Review&authorid%5B0%5D=gs-2100-788224&topicbrcrm=Reviews%7CGame+Review&sid=6&ts=1592386684"}"> <meta id="tracking-ga" class="js-post-render-tracking-consumer tracking-settings" data-tracking-service="ga" itemprop="tracking-ga" data-settings="{"custom":{"PageType":{"index":"1","name":"PageType","value":"6049","scope":"3"},"UserType":{"index":"2","name":"UserType","value":"{gaUserType}","scope":"1"}},"account":"UA-22577913-1"}"> <meta id="tracking-om" class="js-post-render-tracking-consumer tracking-settings" data-tracking-service="om" itemprop="tracking-om" data-settings="{"brand":"GameSpot","sid":"gamespot","rsids":"cbsigamespotsite","user_status":"{userStatus}","urs_id":"{ursuid}","edition":"{edition}","site_type":"{siteType}","anon_id":"{xclgfbrowser}","url":"D=g","user_agent":"D=User-Agent","page_type_id":"6049","page_name":"gs:\/reviews\/battlestar-galactica-review\/1900-6084925\/","ab_test":"{abTestLabel}","theme":"{theme}","event_hierarchy":"{eventHierarchy}","marketing_cloud_id":"10D31225525FF5790A490D4D@AdobeOrg","session":"{ad_session}","account_settings":{"trackingServer":"aa.gamespot.com","trackingServerSecure":"saa.gamespot.com"},"page_type":"review","channel":"Reviews","hierarchy":"Reviews|Game Review","content_source":"CBSi","content_title":"Battlestar Galactica Review","author_ids":["gs-2100-788224"],"content_guid":"gs-1900-6084925","content_type":"review","platform":["PlayStation 2","Xbox"],"game_id":"gamespot:18214","game_title":"Battlestar Galactica (2003)|battlestar-galactica","product_id":"gs-5000-18214","genre":["Simulation"],"category":"Reviews|Game Review"}" data-post-render-param="TrackingBundle.page_type" data-post-render-value="review"> <meta id="tracking-cb" class="js-post-render-tracking-consumer tracking-settings" data-tracking-service="cb" itemprop="tracking-cb" data-settings="{"uid":"65713","domain":"gamespot.com","sections":"games_review,","authors":"Alex Navarro","acct":"{cbUserStatus}"}"> <meta class="ad-settings" content="" id="ad-settings" name="ad-settings" data-settings="{"service":"dart","enable_guilt":true,"script":"\/\/securepubads.g.doubleclick.net\/tag\/js\/gpt.js","unit_name":"\/8264\/aw-gamespot\/gamespace","target_params":{"session":"c","test":"{abTestLabelDart}","ptype":"review","cid":"gs-1900-6084925","game":"battlestar-galactica-2003","rating":"ESRB: T","genre":"simulation","con":"playstation-2,xbox","franchise":"battlestar-galactica","publisher":"universal-interactive","rdate":"bp52","score":71,"user":"anon"},"mapped_units":{"nav-ad-plus-leader":{"size":[[5,5],[970,66],[728,90],[970,90],[970,250]],"target":{"pos":"nav"}},"skybox-nav":{"size":[[5,5]],"target":{"pos":"nav"}},"interstitial":{"outOfPage":true},"leader_top":{"size":[[970,66],[728,90]],"target":{"pos":"top"}},"incontent-ad":{"size":[[321,31],[11,11],"fluid"],"target":{"pos":"top","strnativekey":"wht2J3jeQyvCupX61JvMZoej"}},"native-top":{"size":[[11,11],"fluid"],"target":{"pos":"top","strnativekey":"wht2J3jeQyvCupX61JvMZoej"}},"mpu_top":{"size":[[300,250]],"target":{"pos":"top"}},"mpu_bottom":{"size":[[300,250]],"target":{"pos":"bottom"}},"leader_bottom":{"size":[[728,90],[970,66]],"target":{"pos":"bottom"}},"leader_plus_top":{"size":[[970,66],[728,90],[970,90],[970,250]],"target":{"pos":"top"}}},"region":"us"}"> <meta id="qualtrics-settings" itemprop="qualtrics-settings" content="{"id":"ZN_aah4Vz47v491vLf","script":"\/\/zn_aah4vz47v491vlf-cbs.siteintercept.qualtrics.com\/WRSiteInterceptEngine\/"}"/> <meta name="username" id="username" content="GS|Anonymous"/> <meta name="pageType" data-type="review" data-id="6084925"/> <meta content="Battlestar Galactica puts forth a far more enjoyable effort than your average licensed game, but unfortunately, there are still many problems to be found within."/><meta name="guid" content="1900-6084925"/> <meta id="js-loading-html" content="<div class="js-loader loader "><div class="loader-animation"><div class="loading"></div></div></div>"> <link rel="shortcut icon" href="/web/20200617093804im_/https://www.gamespot.com/favicon.ico"/> <link rel="apple-touch-icon" href="https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/touch-icon-iphone-precomposed.png"> <link rel="apple-touch-icon" sizes="76x76" href="https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/touch-icon-ipad.png"> <link rel="apple-touch-icon" sizes="120x120" href="https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/touch-icon-iphone-retina-precomposed.png"> <link rel="apple-touch-icon" sizes="152x152" href="https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/touch-icon-ipad-retina-precomposed.png"> <link rel="amphtml" href="https://web.archive.org/web/20200617093804/https://www.gamespot.com/amp-reviews/battlestar-galactica-review/1900-6084925/"> <meta id="richTextEditorTheme" itemprop="richTextEditorTheme" content="white" data-themes="{"white":"https:\/\/gamespot1.cbsistatic.com\/v3b8462bcaccb4e6d94bdbb83f8503f47\/bundles\/gamespotsite\/css\/wysiwyg_white.css","black":"https:\/\/gamespot1.cbsistatic.com\/v3b8462bcaccb4e6d94bdbb83f8503f47\/bundles\/gamespotsite\/css\/wysiwyg_black.css"}"> <style id="skin-color">@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://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/bg-border-light.png);background-position:top;background-repeat:repeat-x}.ellipseborder-bottom{background-image:url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/bg-border-light.png);background-position:bottom;background-repeat:repeat-x}.ellipseborder-left{background-image:url(https://web.archive.org/web/20200617093804im_/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://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/bg-border-light.png),url(https://web.archive.org/web/20200617093804im_/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%}} 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://web.archive.org/web/20200617093804im_/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}a:active{color:#0054d1}.no-touch a:hover{color:#0a6cff;cursor:pointer}.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}.no-inner-space{padding:0}.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-self-baseline{align-self:baseline}.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}.centered{position:relative;top:50%;left:50%;transform:translate(-50%, -50%)}.centered--absolute{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.vertically-centered{position:relative;top:50%;transform:translateY(-50%)}.vertically-centered--absolute{position:absolute;top:50%;transform:translateY(-50%)}.horizontally-centered{position:relative;left:50%;transform:translateX(-50%)}.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}}.order--one{order:1}.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}#site{padding-top:0;padding-bottom:0}.symbol{fill:currentColor;position:relative;top:-1px;height:1em;width:1em;vertical-align:middle}.symbol-logo-outline-full{width:3.2em}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;width:100%;height:100%;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}.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://web.archive.org/web/20200617093804im_/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://web.archive.org/web/20200617093804im_/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://web.archive.org/web/20200617093804im_/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://web.archive.org/web/20200617093804im_/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://web.archive.org/web/20200617093804im_/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://web.archive.org/web/20200617093804im_/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://web.archive.org/web/20200617093804im_/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://web.archive.org/web/20200617093804im_/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}.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 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://web.archive.org/web/20200617093804im_/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}.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://web.archive.org/web/20200617093804im_/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://web.archive.org/web/20200617093804im_/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://web.archive.org/web/20200617093804im_/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}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://web.archive.org/web/20200617093804im_/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://web.archive.org/web/20200617093804im_/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{margin-left:100px;margin-right:100px}} @media (min-width: 1024px){.content-body--bufferAd>.article-body,.content-body--bufferAd>.article-related-video{margin-right:360px}} @media (min-width: 1024px){.content-body--bufferSocial .article-body{margin-left:100px;display:block}} @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://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-LightItalic-webfont.eot);src:url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-LightItalic-webfont.eot#iefix) format("embedded-opentype"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-LightItalic-webfont.woff2) format("woff2"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-LightItalic-webfont.woff) format("woff"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-LightItalic-webfont.ttf) format("truetype"),url(https://web.archive.org/web/20200617093804im_/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://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-Light-webfont.eot);src:url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-Light-webfont.eot#iefix) format("embedded-opentype"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-Light-webfont.woff2) format("woff2"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-Light-webfont.woff) format("woff"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-Light-webfont.ttf) format("truetype"),url(https://web.archive.org/web/20200617093804im_/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://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-UltraLightItalic-webfont.eot);src:url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-UltraLightItalic-webfont.eot#iefix) format("embedded-opentype"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-UltraLightItalic-webfont.woff2) format("woff2"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-UltraLightItalic-webfont.woff) format("woff"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-UltraLightItalic-webfont.ttf) format("truetype"),url(https://web.archive.org/web/20200617093804im_/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://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-UltraLight-webfont.eot);src:url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-UltraLight-webfont.eot#iefix) format("embedded-opentype"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-UltraLight-webfont.woff2) format("woff2"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-UltraLight-webfont.woff) format("woff"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-UltraLight-webfont.ttf) format("truetype"),url(https://web.archive.org/web/20200617093804im_/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://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-BLackItalic-webfont.eot);src:url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-BLackItalic-webfont.eot#iefix) format("embedded-opentype"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-BLackItalic-webfont.woff2) format("woff2"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-BLackItalic-webfont.woff) format("woff"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-BLackItalic-webfont.ttf) format("truetype"),url(https://web.archive.org/web/20200617093804im_/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://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-BLack-webfont.eot);src:url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-BLack-webfont.eot#iefix) format("embedded-opentype"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-BLack-webfont.woff2) format("woff2"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-BLack-webfont.woff) format("woff"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-BLack-webfont.ttf) format("truetype"),url(https://web.archive.org/web/20200617093804im_/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://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-BoldItalic-webfont.eot);src:url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-BoldItalic-webfont.eot#iefix) format("embedded-opentype"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-BoldItalic-webfont.woff2) format("woff2"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-BoldItalic-webfont.woff) format("woff"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-BoldItalic-webfont.ttf) format("truetype"),url(https://web.archive.org/web/20200617093804im_/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://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-Bold-webfont.eot);src:url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-Bold-webfont.eot#iefix) format("embedded-opentype"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-Bold-webfont.woff2) format("woff2"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-Bold-webfont.woff) format("woff"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-Bold-webfont.ttf) format("truetype"),url(https://web.archive.org/web/20200617093804im_/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://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-MediumItalic-webfont.eot);src:url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-MediumItalic-webfont.eot#iefix) format("embedded-opentype"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-MediumItalic-webfont.woff2) format("woff2"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-MediumItalic-webfont.woff) format("woff"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-MediumItalic-webfont.ttf) format("truetype"),url(https://web.archive.org/web/20200617093804im_/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://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-Medium-webfont.eot);src:url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-Medium-webfont.eot#iefix) format("embedded-opentype"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-Medium-webfont.woff2) format("woff2"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-Medium-webfont.woff) format("woff"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/Argumentum/Argumentum-Medium-webfont.ttf) format("truetype"),url(https://web.archive.org/web/20200617093804im_/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://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_bold-webfont.eot);src:url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_bold-webfont.eot#iefix) format("embedded-opentype"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_bold-webfont.woff2) format("woff2"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_bold-webfont.woff) format("woff"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_bold-webfont.ttf) format("truetype"),url(https://web.archive.org/web/20200617093804im_/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://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_bolditalic-webfont.eot);src:url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_bolditalic-webfont.eot#iefix) format("embedded-opentype"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_bolditalic-webfont.woff2) format("woff2"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_bolditalic-webfont.woff) format("woff"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_bolditalic-webfont.ttf) format("truetype"),url(https://web.archive.org/web/20200617093804im_/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://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_italic-webfont.eot);src:url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_italic-webfont.eot#iefix) format("embedded-opentype"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_italic-webfont.woff2) format("woff2"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_italic-webfont.woff) format("woff"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_italic-webfont.ttf) format("truetype"),url(https://web.archive.org/web/20200617093804im_/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://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_regular-webfont.eot);src:url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_regular-webfont.eot#iefix) format("embedded-opentype"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_regular-webfont.woff2) format("woff2"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_regular-webfont.woff) format("woff"),url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/fonts/MuchoSans/mucho_sans_regular-webfont.ttf) format("truetype"),url(https://web.archive.org/web/20200617093804im_/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://web.archive.org/web/20200617093804im_/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}.promo-symbol{display:none}.schedule-bar{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://web.archive.org/web/20200617093804/https://gamespot1.cbsistatic.com/v3b8462bcaccb4e6d94bdbb83f8503f47/bundles/gamespotsite/css/gamespot_white.css'); })(); </script> <noscript><!--[if !IE]> --><link id="skin-color" rel="stylesheet" href="https://web.archive.org/web/20200617093804cs_/https://gamespot1.cbsistatic.com/v3b8462bcaccb4e6d94bdbb83f8503f47/bundles/gamespotsite/css/gamespot_white.css"><!-- <![endif]--><!--[if IE]><link id="skin-color-0" rel="stylesheet" href="https://gamespot1.cbsistatic.com/v3b8462bcaccb4e6d94bdbb83f8503f47/bundles/gamespotsite/css/gamespot_white_split1.css"><link id="skin-color-1" rel="stylesheet" href="https://gamespot1.cbsistatic.com/v3b8462bcaccb4e6d94bdbb83f8503f47/bundles/gamespotsite/css/gamespot_white_split2.css"><link id="skin-color-2" rel="stylesheet" href="https://gamespot1.cbsistatic.com/v3b8462bcaccb4e6d94bdbb83f8503f47/bundles/gamespotsite/css/gamespot_white_split3.css"><![endif]--></noscript> <!-- Last Minute --> <style> /* 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> (function(){ if (window.BOOMR && window.BOOMR.version) { return; } var dom,doc,where,iframe = document.createElement("iframe"),win = window; function boomerangSaveLoadTime(e) { win.BOOMR_onload=(e && e.timeStamp) || new Date().getTime(); } if (win.addEventListener) { win.addEventListener("load", boomerangSaveLoadTime, false); } else if (win.attachEvent) { win.attachEvent("onload", boomerangSaveLoadTime); } iframe.src = "javascript:void(0)"; iframe.title = ""; iframe.role = "presentation"; (iframe.frameElement || iframe).style.cssText = "width:0;height:0;border:0;display:none;"; where = document.getElementsByTagName("script")[0]; where.parentNode.insertBefore(iframe, where); try { doc = iframe.contentWindow.document; } catch(e) { dom = document.domain; iframe.src="javascript:var d=document.open();d.domain='"+dom+"';void(0);"; doc = iframe.contentWindow.document; } doc.open()._l = function() { var js = this.createElement("script"); if (dom) { this.domain = dom; } js.id = "boomr-if-as"; js.src = "//web.archive.org/web/20200617093804/https://c.go-mpulse.net/boomerang/2XWZG-EJS9N-TDYMT-VFP4T-48MTK"; BOOMR_lstart=new Date().getTime(); this.body.appendChild(js); }; doc.write('<body onload="document._l();">'); doc.close(); })(); </script> <script type="application/ld+json"> { "@context":"https://web.archive.org/web/20200617093804/http://schema.org", "@type":"Review", "author": { "@type": "Person", "name": "Alex Navarro", "sameAs": "https://web.archive.org/web/20200617093804/https://www.gamespot.com/profile/AlexN/" }, "url": "https://web.archive.org/web/20200617093804/https://www.gamespot.com/reviews/battlestar-galactica-review/1900-6084925/", "datePublished": "2003-12-04T10:37:16Z", "reviewBody": " The science fiction genre has seen a lot of high points throughout its existence, but few were as prolific as the late 1970s. Major franchises, like Star Wars and Alien were spawned in this era, as well as cult classics like Logan's Run and the TV series Battlestar Galactica. Many of these franchises and titles have seen serious resurgences in the last several years, usually to cash in on some manner of nostalgic value. Battlestar Galactica is the latest of these classics to try and rekindle the waning interest in its respective story, and it's now gotten a new miniseries on the Sci-Fi channel and a game for both the Xbox and PlayStation 2--although the two actually have nothing to do with one another, story-wise. Battlestar Galactica the game is a space shooter in the same vein as the Rogue Squadron series but contains a less intricate gameplay setup that is clearly aimed at the more casual fans of the TV show. For what it's worth, Battlestar Galactica puts forth a far more enjoyable effort than your average licensed game, but unfortunately, there are still many problems to be found within. Further proving that everything from the '70s and '80s will eventually make some kind of comeback, the classic science fiction TV series 'Battlestar Galactica' now has its own game for the Xbox and PS2. The Battlestar Galactica series was about as by-the-numbers for a sci-fi story of that era as you could get. In the series, humanity had taken to the stars, and it set up shop on a number of different planets throughout the universe. Humans traveled around in huge starships, complete with futuristic fighter jets and all sorts of crazy weaponry. Of course, all was not right with the universe, as humanity also happened to be at war with a race of antagonistic robots called Cylons who were hell-bent on humanity's destruction. The show focused on the crew of the Galactica, obviously one of the most prestigious ships of the colonial fleet. Added to the mix was a healthy dose of improbable situations for the crew of the Galactica to escape from, and you had yourself some classic science fiction television. Battlestar Galactica is a prequel to the original TV series and takes place a full 40 years before the events of the show. In the game, you take on the role of Adama, a young, spunky pilot in the blue wing division of the Galactica's elite fighter squadron. Fans of the original will immediately recognize that Adama is actually Lorne Greene's Commander Adama character from the TV series, but, as this is a prequel, Adama is much younger and more impetuous than his future self. As is to be expected, Adama and his squadron must go up against impossible odds to defeat the Cylon forces and save the Galactica--and humanity--yet again. To do this, Adama and crew will take on a host of different combat missions against the Cylons. Missions in the game are actually quite varied, though the bulk of them are definitely of the 'kill and destroy everything in sight' ilk. Battlestar Galactica gives you a nice variety of ships with which to do the aforementioned killing by letting you pilot multiple classes of the colonial Vipers. Interestingly, you even get to fly a Cylon raider here and there. Weaponry consists of basic lasers and missiles, each of which has different forms of functionality. For example, on the standard Viper, simply pressing the laser attack button will shoot a short burst, whereas holding the button down will fire a more powerful burst. The same goes for missiles. So a quick press will fire a simple, though powerful, one, while holding the button down will let you lock on to an enemy so that you can fire a pair of homing missiles. Missiles can also be programmed--on the fly--for varying degrees of blast radius and overall power by using the directional pad. Missiles are limited by a power meter that appears alongside your damage meter on the game's heads-up display. Energy is depleted as you fire missiles, and once your barrage is finished, it begins to replenish (albeit slowly). Your energy also ties in to your ship's damage meter, so when the meter is full, your damage will slowly start to replenish as well. However, if your energy is below 100 percent, your ship won't repair, and you're far more susceptible to destruction. The game's controls are relatively easy to pick up and play, and the combat is equally user-friendly. This is certainly nothing to make light of, as Battlestar Galactica is actually quite a difficult game. In fact, it's shockingly so when you consider how generally easy to pick up the combat is. Aside from the previously mentioned functions, your ship can also perform a speed burst or slow to a halt by pressing the right and left trigger buttons (or R1 and L1 buttons), respectively. It can also jump to an intensely fast speed when you double-tap the right trigger (or R1 button). Targeting is handled by a red icon that appears over your enemy's ship, and a blue marker appears in the best position for you to lead your shots on your target. However, there is one primary flaw with this system that does cause some problems. Once a target is destroyed, your next target is autoselected for you, and, more often than not, that target is not the most important one with regard to your mission. For instance, in any situation where you're being bombarded by multiple types of ships, or you're in a situation where you have to take out a massive, centralized target, the game will frequently switch you to a random Cylon raider that has no real bearing on your current task--save for being a minor nuisance. You can switch to a new target by using the target select button, but it takes a fair amount of time to switch to the enemy you want. In many missions, ...", "publisher": { "@type": "Organization", "name": "GameSpot", "sameAs":"https://web.archive.org/web/20200617093804/https://www.gamespot.com/", "logo": { "@type": "ImageObject", "url": "https://web.archive.org/web/20200617093804/https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/gs-logo-amp.png", "width": "190", "height": "60" } }, "description": "Battlestar Galactica puts forth a far more enjoyable effort than your average licensed game, but unfortunately, there are still many problems to be found within.", "inLanguage":"en", "itemReviewed": { "name": "Battlestar Galactica (2003)", "sameAs":"https://web.archive.org/web/20200617093804/https://www.gamespot.com/games/battlestar-galactica-2003/", "@type":"VideoGame", "applicationCategory":"Game", "operatingSystem": ["PlayStation 2", "Xbox"] , "image": { "@type": "ImageObject", "url": "https://web.archive.org/web/20200617093804/https://gamespot1.cbsistatic.com/uploads/original/469/4693985/2305502-default-art--kubrick.jpg", "height": "900", "width": "1600" } }, "reviewRating": { "@type":"Rating", "ratingValue": "7.1", "bestRating":"10", "worstRating":"1" } } </script> <script type="application/ld+json"> { "@context": "https://web.archive.org/web/20200617093804/http://schema.org", "@type": "NewsArticle", "mainEntityOfPage": "https://web.archive.org/web/20200617093804/https://www.gamespot.com/reviews/battlestar-galactica-review/1900-6084925/", "headline": "Battlestar Galactica Review", "description": "Battlestar Galactica puts forth a far more enjoyable effort than your average licensed game, but unfortunately, there are still many problems to be found within.", "datePublished": "2003-12-04T10:37:16Z", "author": { "@type": "Person", "name": "Alex Navarro" }, "articleBody": " The science fiction genre has seen a lot of high points throughout its existence, but few were as prolific as the late 1970s. Major franchises, like Star Wars and Alien were spawned in this era, as well as cult classics like Logan's Run and the TV series Battlestar Galactica. Many of these franchises and titles have seen serious resurgences in the last several years, usually to cash in on some manner of nostalgic value. Battlestar Galactica is the latest of these classics to try and rekindle the waning interest in its respective story, and it's now gotten a new miniseries on the Sci-Fi channel and a game for both the Xbox and PlayStation 2--although the two actually have nothing to do with one another, story-wise. Battlestar Galactica the game is a space shooter in the same vein as the Rogue Squadron series but contains a less intricate gameplay setup that is clearly aimed at the more casual fans of the TV show. For what it's worth, Battlestar Galactica puts forth a far more enjoyable effort than your average licensed game, but unfortunately, there are still many problems to be found within. Further proving that everything from the '70s and '80s will eventually make some kind of comeback, the classic science fiction TV series 'Battlestar Galactica' now has its own game for the Xbox and PS2. The Battlestar Galactica series was about as by-the-numbers for a sci-fi story of that era as you could get. In the series, humanity had taken to the stars, and it set up shop on a number of different planets throughout the universe. Humans traveled around in huge starships, complete with futuristic fighter jets and all sorts of crazy weaponry. Of course, all was not right with the universe, as humanity also happened to be at war with a race of antagonistic robots called Cylons who were hell-bent on humanity's destruction. The show focused on the crew of the Galactica, obviously one of the most prestigious ships of the colonial fleet. Added to the mix was a healthy dose of improbable situations for the crew of the Galactica to escape from, and you had yourself some classic science fiction television. Battlestar Galactica is a prequel to the original TV series and takes place a full 40 years before the events of the show. In the game, you take on the role of Adama, a young, spunky pilot in the blue wing division of the Galactica's elite fighter squadron. Fans of the original will immediately recognize that Adama is actually Lorne Greene's Commander Adama character from the TV series, but, as this is a prequel, Adama is much younger and more impetuous than his future self. As is to be expected, Adama and his squadron must go up against impossible odds to defeat the Cylon forces and save the Galactica--and humanity--yet again. To do this, Adama and crew will take on a host of different combat missions against the Cylons. Missions in the game are actually quite varied, though the bulk of them are definitely of the "kill and destroy everything in sight" ilk. Battlestar Galactica gives you a nice variety of ships with which to do the aforementioned killing by letting you pilot multiple classes of the colonial Vipers. Interestingly, you even get to fly a Cylon raider here and there. Weaponry consists of basic lasers and missiles, each of which has different forms of functionality. For example, on the standard Viper, simply pressing the laser attack button will shoot a short burst, whereas holding the button down will fire a more powerful burst. The same goes for missiles. So a quick press will fire a simple, though powerful, one, while holding the button down will let you lock on to an enemy so that you can fire a pair of homing missiles. Missiles can also be programmed--on the fly--for varying degrees of blast radius and overall power by using the directional pad. Missiles are limited by a power meter that appears alongside your damage meter on the game's heads-up display. Energy is depleted as you fire missiles, and once your barrage is finished, it begins to replenish (albeit slowly). Your energy also ties in to your ship's damage meter, so when the meter is full, your damage will slowly start to replenish as well. However, if your energy is below 100 percent, your ship won't repair, and you're far more susceptible to destruction. The game's controls are relatively easy to pick up and play, and the combat is equally user-friendly. This is certainly nothing to make light of, as Battlestar Galactica is actually quite a difficult game. In fact, it's shockingly so when you consider how generally easy to pick up the combat is. Aside from the previously mentioned functions, your ship can also perform a speed burst or slow to a halt by pressing the right and left trigger buttons (or R1 and L1 buttons), respectively. It can also jump to an intensely fast speed when you double-tap the right trigger (or R1 button). Targeting is handled by a red icon that appears over your enemy's ship, and a blue marker appears in the best position for you to lead your shots on your target. However, there is one primary flaw with this system that does cause some problems. Once a target is destroyed, your next target is autoselected for you, and, more often than not, that target is not the most important one with regard to your mission. For instance, in any situation where you're being bombarded by multiple types of ships, or you're in a situation where you have to take out a massive, centralized target, the game will frequently switch you to a random Cylon raider that has no real bearing on your current task--save for being a minor nuisance. You can switch to a new target by using the target select button, but it takes a fair amount of time to switch to the enemy you want. In many missions, time is very much of the essence, so this less-than-intuitive method of autotargeting is a pretty big hassle. A good portion of the game's difficulty can be directly attributed to this flawed targeting system, but there are other factors to take into account as well. The only aspect of the game's inherent toughness that can be legitimately praised is the enemy AI, which is very nicely done. Various types of ships all behave in different--and appropriate--manners, and each one puts up a more than decent challenge. Considering enemies tend to travel in packs, you'll more than likely have a rough firefight on your hands in most every mission, and if you can deal with the targeting issues, the combat can actually be pretty fun. However, while your enemies are more than adept enough to get the job done, your supporting cast leaves a lot to be desired. Battlestar Galactica is extremely stingy when it comes to save points, and it's not hard to end up dying on a last-mission objective, only to have to start an entire level over again. Adama's squadron is about the most inconsistent group of fighter pilots you'll ever encounter. On missions where their jobs are to keep Cylons occupied while you go and blow up some key landmark, they can seemingly last forever. Yet, as soon as the mission objective shifts toward you having to protect them, they almost instantly become helpless, and it doesn't take long before they're sent into oblivion. Things can be made a bit easier by enacting unlockable wingmen, which you can gain through performing well on each mission. Wingmen can be instructed to attack, defend, or scatter, as necessary, in a combat situation. Beyond these basic functions, however, they're no smarter than the rest of your squadmates, and they also happen to be insanely easy to destroy. They're a great addition while they last, but they just don't last long enough. Battlestar Galactica also has a somewhat problematic mission structure, which further adds to the frustrating side of the game's difficulty. Save points appear between each mission, but the bulk of the game's missions feature multiple objectives that must be achieved. This wouldn't be a problem, except that certain objectives take a fair amount of trial and error to get right, and it can frequently take anywhere from 10 to 20 minutes from the start of a mission to get to that problematic objective. The game's first level alone requires a great number of plays to get right, but it's one of the longer missions in the game. Perhaps if some sort of limited-continue system were available that gave you the opportunity to try a specific objective a few times before having to restart a full level, then the game wouldn't be nearly as irritating to play as it is. However, as it stands, that just isn't an option, so you're going to experience a lot of frustration while trying to make your way through Battlestar Galactica's missions. Although Battlestar Galactica is by no means a terribly impressive-looking game, its graphics do the job just fine. Fans of the TV series will take to the ship designs immediately, as they're modeled very nicely after the classic Battlestar look. Weapon and energy effects, explosions, and the like also look pretty good, if a bit understated at times. The game, for the most part, runs very smoothly, and the frame rate is never an issue of any kind--nor is the camera. The only hitches that ever seemed to appear were when occasional radio communications would pop up from your squadmates or Cylons and when in-engine cutscenes would load between mission objectives. Periodically, the loading of these little scenes would cause the action on the screen to actually freeze up for a second or so, which can be rather disconcerting when you're in the middle of a battle. The only other complaint about the game's graphics stems from the less-than-impressive CG cutscene work, which shows some pretty bland-looking character animation and some bad-looking video compression, thus giving everything a very washed-out feel. The Xbox version looks decidedly better than its PS2 counterpart in most every regard, but, other than that, there's not much beyond the usual platform-to-platform variance. The game's sound design seems as though it could have used a little more effort, as there just isn't a whole lot to it. Battlestar Galactica alumni Richard Hatch and Dirk Benedict make appearances in the game by voicing their original characters, in addition to new ones, but really, they don't make a significant impact beyond the initial nostalgic value. The rest of the game's voice acting consists of some pretty forgettable talent, save perhaps for Terminator 3 star Kristanna Loken. Though, to be perfectly honest, her work isn't that memorable either. Of course, the Cylons have their awesome retro-sounding robot voices, so at least there is one bright spot to be found with the voice acting. The expected roster of space combat sound effects is front and center in Battlestar Galactica, and though none of it stands out, it's all effective stuff. The game's music is mostly made up of a lot of melodramatic, orchestrated tunes that fit pretty well with the overall scope of the game, and, of course, the classic Battlestar theme does show up here and there. There's nothing outwardly impressive about Battlestar Galactica's graphics, but they're more than adequate for what the game requires. For what it is, Battlestar Galactica is certainly an appreciable effort to do something more with its license than just offer another slapdash, underproduced game without any redeeming qualities beyond said license. Warthog has made a strong attempt to make the game's action accessible to both casual fans of the show and fans of the space combat genre. Sadly, the attempt was not entirely successful. The combination of the irritatingly tough mission structuring along with the relative simplicity of the combat ultimately makes Battlestar Galactica a bit too basic of an experience for any seasoned space combat fan, and it's too difficult of an experience for casual fans that are just looking for a simple trip down memory lane. However, if you're able to look past Battlestar Galactica's problems, there are most definitely things to like about the game, and it certainly makes for a good weekend rental. ", "publisher": { "@type": "Organization", "name": "GameSpot", "logo": { "@type": "ImageObject", "url": "https://web.archive.org/web/20200617093804/https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/gs-logo-amp.png", "width": "190", "height": "60" } }, "image": { "@type": "ImageObject", "url": "https://web.archive.org/web/20200617093804/https://gamespot1.cbsistatic.com/uploads/original/469/4693985/2305502-default-art--kubrick.jpg", "height": "900", "width": "1600" } } </script> <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='//web.archive.org/web/20200617093804/https://www.google.com/adsense/search/async-ads.js'; e.parentNode.insertBefore(L,e)})(window,document,'script','_googCsa'); }, 'targeting', 'Ads'); </script><script src="//web.archive.org/web/20200617093804js_/https://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="//web.archive.org/web/20200617093804js_/https://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="//web.archive.org/web/20200617093804js_/https://c.amazon-adsystem.com/aax2/apstag.js" async charset="utf-8"></script><script src="https://web.archive.org/web/20200617093804js_/https://gamespot1.cbsistatic.com/v61bf2ade7a3df033759fbb78da92f1ec/js/compiled/bidbarrel.js" type="text/javascript" async></script> <meta name="device-type" content="desktop"/> <meta name="page-type" content="review"/> <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-review 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-nav-ad-plus-leader mapped-nav-ad-plus-leader-dart" data-ad-type="nav-ad-plus-leader"><div class="ad-wrap ad-wrap-nav-ad-plus-leader" data-skybox-auto-collapse="1"></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="/web/20200617093804/https://www.gamespot.com/" 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="/web/20200617093804/https://www.gamespot.com/" 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-nav-item masthead-nav-item"><div class="masthead-nav-item-wrap"><a class="masthead-nav-item-label" href="https://web.archive.org/web/20200617093804/https://www.gamespot.com/articles/how-to-watch-ps5-games-reveal-event-start-time-and/1100-6478266/"><span class="masthead-nav-item-text">PS5 Reveal</span></a></div></li><li class="js-masthead-menu js-masthead-nav-item masthead-nav-item masthead-hspace-l"><div class="masthead-nav-item-wrap"><a class="js-masthead-menu-link masthead-nav-item-label" href="/web/20200617093804/https://www.gamespot.com/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|02:38:14 --><div class="js-masthead-subnav masthead-subnav"><div class="masthead-subnav-content"><ul class="masthead-subnav-items"><li class="masthead-subnav-item"><a href="/web/20200617093804/https://www.gamespot.com/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="/web/20200617093804/https://www.gamespot.com/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="/web/20200617093804/https://www.gamespot.com/games/pc/" class="js-click-tag" data-click-tag="nav|games|left-menu|pc">PC</a></li><li class="masthead-subnav-item"><a href="/web/20200617093804/https://www.gamespot.com/games/ps4/" class="js-click-tag" data-click-tag="nav|games|left-menu|ps4">PS4</a></li><li class="masthead-subnav-item"><a href="/web/20200617093804/https://www.gamespot.com/games/ps5/" class="js-click-tag" data-click-tag="nav|games|left-menu|ps5">PS5</a></li><li class="masthead-subnav-item"><a href="/web/20200617093804/https://www.gamespot.com/games/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="/web/20200617093804/https://www.gamespot.com/games/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="/web/20200617093804/https://www.gamespot.com/games/nintendo-switch/" class="js-click-tag" data-click-tag="nav|games|left-menu|switch">Switch</a></li><li class="masthead-subnav-item"><a href="/web/20200617093804/https://www.gamespot.com/games/stadia/" class="js-click-tag" data-click-tag="nav|games|left-menu|stadia">Stadia</a></li><li class="masthead-subnav-item"><a href="/web/20200617093804/https://www.gamespot.com/games/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="/web/20200617093804/https://www.gamespot.com/articles/the-division-2s-new-iron-horse-raid-launches-later/1100-6478565/"><div><div class="link-img vertical-spacing-small"><img class="type-article" src="https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/screen_large/123/1239113/3687067-tctd2_ravenous%20_exotic.jpg" alt="The Division 2's New Iron Horse Raid Launches Later This Month"></div></div><div><div class="card-byline"><p class="p-small-space text-small">The Division 2's New Iron Horse Raid Launches Later This Month</p></div></div></a></li><li class="masthead-content-item"><a class="content-item--list-item flexbox-row" href="/web/20200617093804/https://www.gamespot.com/videos/how-wasteland-3-can-be-the-best-in-the-series-inte/2300-6453151/"><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://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/screen_large/1574/15746725/3686712-p4a_wasteland3interview_20200615_site.jpeg" alt="How Wasteland 3 Can Be The Best In The Series, Interview With Brian Fargo"></div></div><div><div class="card-byline"><p class="p-small-space text-small">How Wasteland 3 Can Be The Best In The Series, Interview With Brian Fargo</p></div></div></a></li><li class="masthead-content-item"><a class="content-item--list-item flexbox-row" href="/web/20200617093804/https://www.gamespot.com/videos/in-humankind-the-most-famous-civ-wins/2300-6453149/"><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://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/screen_large/1574/15746725/3686657-humankind-site.jpg" alt="In Humankind The Most Famous Civ Wins"></div></div><div><div class="card-byline"><p class="p-small-space text-small">In Humankind The Most Famous Civ Wins</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="/web/20200617093804/https://www.gamespot.com/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="/web/20200617093804/https://www.gamespot.com/news/"><span class="masthead-nav-item-text">News</span></a></div></li><li class="js-masthead-menu js-masthead-nav-item masthead-nav-item masthead-hspace-l"><div class="masthead-nav-item-wrap"><a class="js-masthead-menu-link masthead-nav-item-label" href="/web/20200617093804/https://www.gamespot.com/games/reviews/"><span class="masthead-nav-item-text">Reviews</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_reviews|N|02:38:14 --><div class="js-masthead-subnav masthead-subnav"><div class="masthead-subnav-content"><ul class="masthead-subnav-items"><li class="masthead-subnav-item"><a href="/web/20200617093804/https://www.gamespot.com/games/reviews/" class="js-click-tag" data-click-tag="nav|reviews|left-menu|games">Games</a></li><li class="masthead-subnav-item"><a href="/web/20200617093804/https://www.gamespot.com/entertainment/reviews/" class="js-click-tag" data-click-tag="nav|reviews|left-menu|entertainment">Entertainment</a></li></ul></div></div><!-- /GamespotSiteBundle:Core:masthead:other_subnav_reviews --></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="/web/20200617093804/https://www.gamespot.com/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="/web/20200617093804/https://www.gamespot.com/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="/web/20200617093804/https://www.gamespot.com/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|02:40:14 --><div class="js-masthead-subnav masthead-subnav"><div class="masthead-subnav-content"><ul class="masthead-subnav-items"><li class="masthead-subnav-item"><a href="/web/20200617093804/https://www.gamespot.com/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="/web/20200617093804/https://www.gamespot.com/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="/web/20200617093804/https://www.gamespot.com/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="/web/20200617093804/https://www.gamespot.com/forums/bug-reporting-feedback-1000006/" class="js-click-tag" data-click-tag="nav|forums|left-menu|bug-reporting-feedback">Bug Reporting & Feedback</a></li><li class="masthead-subnav-item"><a href="/web/20200617093804/https://www.gamespot.com/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="/web/20200617093804/https://www.gamespot.com/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="/web/20200617093804/https://www.gamespot.com/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> <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="kubrick-lead" class="kubrick kubrick-lead kubrick-lead--minimal kubrick-lead--has-subnav" style="background-image: url(https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/screen_kubrick_wide/469/4693985/2305502-default-art--kubrick.jpg)"> <div class="kubrick-overlay"> <div class="kubrick-curtains"> <div class="kubrick-content container row"></div> </div> <div class="kubrick-curtains kubrick-curtains--bottom"></div> </div> </div> <nav class="subnav subnav-mobile subnav--flex "> <div class="container row"> <div class="span12"> <span class="subnav-toggle js-dropnav-toggle"> <a> <i><svg version="1.1" width="28" height="28" viewbox="0 0 28 28" aria-hidden="true" class="symbol symbol-reorder"><path d="M24 21v2q0 0.406-0.297 0.703t-0.703 0.297h-22q-0.406 0-0.703-0.297t-0.297-0.703v-2q0-0.406 0.297-0.703t0.703-0.297h22q0.406 0 0.703 0.297t0.297 0.703zM24 13v2q0 0.406-0.297 0.703t-0.703 0.297h-22q-0.406 0-0.703-0.297t-0.297-0.703v-2q0-0.406 0.297-0.703t0.703-0.297h22q0.406 0 0.703 0.297t0.297 0.703zM24 5v2q0 0.406-0.297 0.703t-0.703 0.297h-22q-0.406 0-0.703-0.297t-0.297-0.703v-2q0-0.406 0.297-0.703t0.703-0.297h22q0.406 0 0.703 0.297t0.297 0.703z"/></svg></i> Game Info </a> </span> <ul class="subnav-list subnav-list-count-7"> <li class="subnav-list__item subnav-list__item-primary "> <a href="/web/20200617093804/https://www.gamespot.com/games/battlestar-galactica-2003/"> <img src="https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/square_mini/box/3/0/3/6/18214-53036.jpg" alt="Battlestar Galactica (2003)"/> <span>Battlestar Galactica (2003)</span> </a> </li> <li class="subnav-list__item "> <a href="/web/20200617093804/https://www.gamespot.com/games/battlestar-galactica-2003/reviews/">Reviews</a> </li> <li class="subnav-list__item "> <a href="/web/20200617093804/https://www.gamespot.com/games/battlestar-galactica-2003/news/">News & Features</a> </li> <li class="subnav-list__item "> <a href="/web/20200617093804/https://www.gamespot.com/games/battlestar-galactica-2003/images/">Images</a> </li> <li class="subnav-list__item "> <a href="/web/20200617093804/https://www.gamespot.com/games/battlestar-galactica-2003/videos/">Videos</a> </li> <li class="subnav-list__item "><a href="/web/20200617093804/https://www.gamespot.com/games/battlestar-galactica-2003/cheats/">Cheats & Guides </a></li> <li class="subnav-list__item "><a href="/web/20200617093804/https://www.gamespot.com/games/battlestar-galactica-2003/forums/">Forum </a></li> </ul> </div> </div> </nav> <div id="mantle_skin" class="mantle_skin"> <div id="wrapper"> <div id="site" role="main"> <div id="default-content" class=" container row"> <div class="primary-content span8"> <article class="content-body review-article article article--review article--two-column"> <section class="news-hdr text-center has-pad--bottom--resp ellipseborder-bottom"><div class="news-section clearfix news-section__no-border has-rhythm--resp"></div><h1 class="news-title instapaper_title entry-title"> Battlestar Galactica Review </h1><h2 class="news-deck type--xlarge">Battlestar Galactica puts forth a far more enjoyable effort than your average licensed game, but unfortunately, there are still many problems to be found within.</h2><p class="news-byline">By <span class="byline-author "><a class="byline-author__name" href="/web/20200617093804/https://www.gamespot.com/profile/AlexN/" rel="author"> Alex Navarro </a></span> on <time datetime="2003-12-04 18:37:16 UTC" pubdate="pubdate">December 4, 2003 at 10:37AM PST</time></p><ul class="share " role="presentation"><li class="share-item share-item--upvote" role="presentation"><form name="upvote" method="post" action="/web/20200617093804/https://www.gamespot.com/vote/" class="js-upvote-form upvote-form js-post-render-upvote" data-allow-unvote="" data-user-voted="" data-guid="1900-6084925"><button type="submit" id="upvote_upvote" name="upvote[upvote]" class="js-upvote-btn btn share-item__container btn-text btn-large" data-guid="1900-6084925" data-event-name="Upvote"><i><svg version="1.1" width="26" height="28" viewbox="0 0 26 28" aria-hidden="true" class="symbol symbol-thumbs-up symbol--nudge-bottom"><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-btn__text upvote-btn__text" data-success-msg="" data-has-voted-msg=""> Upvote</span></button><input class="js-event-tracking" type="hidden" data-event-name="Upvote"><input type="hidden" id="upvote__token" name="upvote[_token]" data-bb="1" data-post-render-param="CmsBundle.forumTokenIds[]" data-post-render-value="upvote_1900-6084925" data-token-id="upvote_1900-6084925" autocomplete="off" value="sOkVc+oUeVPEMd4/zvYHlKDHYXEitc/hac7uZuD02DjiVzZjkT7FD12vew=="/><input type="hidden" id="upvote_assocId" name="upvote[assocId]" value="6084925"/><input type="hidden" id="upvote_assocTypeId" name="upvote[assocTypeId]" value="1900"/><li class="hp-row"><label for="upvote__website_url">Leave Blank</label><div><input type="text" id="upvote__website_url" name="upvote[_website_url]" class="hp-url" tabindex="-1"/></div></li></form></li><li class="share-item share-item--comments" role="presentation"><a title="Comment" class="js-seamless-content__goto-comments" href="#comments-block-32563355" data-content-guid="1900-6084925" rel="nofollow"><span class="share-item__container"><i><svg version="1.1" width="28" height="28" viewbox="0 0 28 28" aria-hidden="true" class="symbol symbol-comments symbol--nudge-bottom"><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></span></a></li><li class="share-item share-item--facebook js-share-button-facebook" data-share-url="https://www.gamespot.com/reviews/battlestar-galactica-review/1900-6084925/" data-guid="1900-6084925" role="presentation"><a class="js-event-tracking" class="js-event-tracking" data-event-tracking="Tracking|review|SocialShare|Facebook|1900-6084925" target="_blank" href="https://web.archive.org/web/20200617093804/https://www.facebook.com/sharer/sharer.php?u=https://www.gamespot.com/reviews/battlestar-galactica-review/1900-6084925/" title="Facebook"><span class="share-item__container"><i><svg version="1.1" width="16" height="28" viewbox="0 0 16 28" aria-hidden="true" class="symbol symbol-facebook symbol--color-white"><path d="M14.984 0.187v4.125h-2.453q-1.344 0-1.813 0.562t-0.469 1.687v2.953h4.578l-0.609 4.625h-3.969v11.859h-4.781v-11.859h-3.984v-4.625h3.984v-3.406q0-2.906 1.625-4.508t4.328-1.602q2.297 0 3.563 0.187z"/></svg></i></span></a></li><li class="share-item share-item--twitter js-share-button-twitter" data-share-url="https://www.gamespot.com/reviews/battlestar-galactica-review/1900-6084925/" data-guid="1900-6084925" role="presentation"><a class="js-event-tracking" class="js-event-tracking" data-event-tracking="Tracking|review|SocialShare|Twitter|1900-6084925" target="_blank" href="https://web.archive.org/web/20200617093804/https://twitter.com/intent/tweet?text=Battlestar%20Galactica%20Review&related=&url=https%3A%2F%2Fwww.gamespot.com%2Freviews%2Fbattlestar-galactica-review%2F1900-6084925%2F" title="Twitter"><span class="share-item__container"><i><svg version="1.1" width="26" height="28" viewbox="0 0 26 28" aria-hidden="true" class="symbol symbol-twitter symbol--color-white"><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></span></a></li><li class="share-item share-item--flipboard js-share-button-flipboard" data-guid="1900-6084925" role="presentation"><a class="js-event-tracking" data-event-tracking="Tracking|review|SocialShare|Flipboard|1900-6084925" target="_blank" href="https://web.archive.org/web/20200617093804/https://share.flipboard.com/bookmarklet/popout?v=2&title=Battlestar Galactica Review&url=https://www.gamespot.com/reviews/battlestar-galactica-review/1900-6084925/&utm_source=gamespot.com&utm_medium=article-share&utm_campaign=publisher" title="Flipboard"><span class="share-item__container"><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 symbol--color-white"><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></span></a></li></ul></section> <section class="article-body typography-format "> <div class="js-content-entity-body"> <p> The science fiction genre has seen a lot of high points throughout its existence, but few were as prolific as the late 1970s. Major franchises, like <i>Star Wars</i> and <i>Alien</i> were spawned in this era, as well as cult classics like <i>Logan's Run</i> and the TV series <i>Battlestar Galactica</i>. Many of these franchises and titles have seen serious resurgences in the last several years, usually to cash in on some manner of nostalgic value. <i>Battlestar Galactica</i> is the latest of these classics to try and rekindle the waning interest in its respective story, and it's now gotten a new miniseries on the Sci-Fi channel and a game for both the Xbox and PlayStation 2--although the two actually have nothing to do with one another, story-wise. Battlestar Galactica the game is a space shooter in the same vein as the Rogue Squadron series but contains a less intricate gameplay setup that is clearly aimed at the more casual fans of the TV show. For what it's worth, Battlestar Galactica puts forth a far more enjoyable effort than your average licensed game, but unfortunately, there are still many problems to be found within. </p><p> <figure num="2" data-ref-id="1300-539892" data-align="center" data-embed-type="image" data-size="large" data-resize-src="http://static.gamespot.com/uploads/original/gamespot/images/2003/reviews/539892-914681_20031202_002.jpg" data-ratio="0.75117370892019"><a class="fluid-height" style="padding-bottom:75.1%" href="" data-ref-id="1300-539892"><img alt="Further proving that everything from the '70s and '80s will eventually make some kind of comeback, the classic science fiction TV series 'Battlestar Galactica' now has its own game for the Xbox and PS2." src="https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/original/gamespot/images/2003/reviews/539892-914681_20031202_002.jpg" srcset="https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/original/gamespot/images/2003/reviews/539892-914681_20031202_002.jpg 639w, https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/scale_medium/gamespot/images/2003/reviews/539892-914681_20031202_002.jpg 480w" sizes="(max-width: 639px) 100vw, 639px" data-width="639"></a><figcaption>Further proving that everything from the '70s and '80s will eventually make some kind of comeback, the classic science fiction TV series 'Battlestar Galactica' now has its own game for the Xbox and PS2.</figcaption></figure> </p><p> The <i>Battlestar Galactica</i> series was about as by-the-numbers for a sci-fi story of that era as you could get. In the series, humanity had taken to the stars, and it set up shop on a number of different planets throughout the universe. Humans traveled around in huge starships, complete with futuristic fighter jets and all sorts of crazy weaponry. Of course, all was not right with the universe, as humanity also happened to be at war with a race of antagonistic robots called Cylons who were hell-bent on humanity's destruction. The show focused on the crew of the Galactica, obviously one of the most prestigious ships of the colonial fleet. Added to the mix was a healthy dose of improbable situations for the crew of the Galactica to escape from, and you had yourself some classic science fiction television. </p><p> Battlestar Galactica is a prequel to the original TV series and takes place a full 40 years before the events of the show. In the game, you take on the role of Adama, a young, spunky pilot in the blue wing division of the Galactica's elite fighter squadron. Fans of the original will immediately recognize that Adama is actually Lorne Greene's Commander Adama character from the TV series, but, as this is a prequel, Adama is much younger and more impetuous than his future self. As is to be expected, Adama and his squadron must go up against impossible odds to defeat the Cylon forces and save the Galactica--and humanity--yet again. To do this, Adama and crew will take on a host of different combat missions against the Cylons. Missions in the game are actually quite varied, though the bulk of them are definitely of the "kill and destroy everything in sight" ilk. Battlestar Galactica gives you a nice variety of ships with which to do the aforementioned killing by letting you pilot multiple classes of the colonial Vipers. Interestingly, you even get to fly a Cylon raider here and there. Weaponry consists of basic lasers and missiles, each of which has different forms of functionality. For example, on the standard Viper, simply pressing the laser attack button will shoot a short burst, whereas holding the button down will fire a more powerful burst. The same goes for missiles. So a quick press will fire a simple, though powerful, one, while holding the button down will let you lock on to an enemy so that you can fire a pair of homing missiles. Missiles can also be programmed--on the fly--for varying degrees of blast radius and overall power by using the directional pad. Missiles are limited by a power meter that appears alongside your damage meter on the game's heads-up display. Energy is depleted as you fire missiles, and once your barrage is finished, it begins to replenish (albeit slowly). Your energy also ties in to your ship's damage meter, so when the meter is full, your damage will slowly start to replenish as well. However, if your energy is below 100 percent, your ship won't repair, and you're far more susceptible to destruction. </p><p> <figure num="3" data-ref-id="1300-539893" data-align="center" data-embed-type="image" data-size="large" data-resize-src="http://static.gamespot.com/uploads/original/gamespot/images/2003/reviews/539893-914681_20031202_003.jpg" data-ratio="0.75"><a class="fluid-height" style="padding-bottom:75.0%" href="" data-ref-id="1300-539893"><img alt="The game's controls are relatively easy to pick up and play, and the combat is equally user-friendly." src="https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/original/gamespot/images/2003/reviews/539893-914681_20031202_003.jpg" srcset="https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/original/gamespot/images/2003/reviews/539893-914681_20031202_003.jpg 640w, https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/scale_medium/gamespot/images/2003/reviews/539893-914681_20031202_003.jpg 480w" sizes="(max-width: 640px) 100vw, 640px" data-width="640"></a><figcaption>The game's controls are relatively easy to pick up and play, and the combat is equally user-friendly.</figcaption></figure> </p><p> This is certainly nothing to make light of, as Battlestar Galactica is actually quite a difficult game. In fact, it's shockingly so when you consider how generally easy to pick up the combat is. Aside from the previously mentioned functions, your ship can also perform a speed burst or slow to a halt by pressing the right and left trigger buttons (or R1 and L1 buttons), respectively. It can also jump to an intensely fast speed when you double-tap the right trigger (or R1 button). Targeting is handled by a red icon that appears over your enemy's ship, and a blue marker appears in the best position for you to lead your shots on your target. However, there is one primary flaw with this system that does cause some problems. Once a target is destroyed, your next target is autoselected for you, and, more often than not, that target is not the most important one with regard to your mission. For instance, in any situation where you're being bombarded by multiple types of ships, or you're in a situation where you have to take out a massive, centralized target, the game will frequently switch you to a random Cylon raider that has no real bearing on your current task--save for being a minor nuisance. You can switch to a new target by using the target select button, but it takes a fair amount of time to switch to the enemy you want. In many missions, time is very much of the essence, so this less-than-intuitive method of autotargeting is a pretty big hassle. </p><p><p> A good portion of the game's difficulty can be directly attributed to this flawed targeting system, but there are other factors to take into account as well. The only aspect of the game's inherent toughness that can be legitimately praised is the enemy AI, which is very nicely done. Various types of ships all behave in different--and appropriate--manners, and each one puts up a more than decent challenge. Considering enemies tend to travel in packs, you'll more than likely have a rough firefight on your hands in most every mission, and if you can deal with the targeting issues, the combat can actually be pretty fun. However, while your enemies are more than adept enough to get the job done, your supporting cast leaves a lot to be desired. </p><p> <figure num="4" data-ref-id="1300-539894" data-align="center" data-embed-type="image" data-size="large" data-resize-src="http://static.gamespot.com/uploads/original/gamespot/images/2003/reviews/539894-914681_20031202_004.jpg" data-ratio="0.75"><a class="fluid-height" style="padding-bottom:75.0%" href="" data-ref-id="1300-539894"><img alt="Battlestar Galactica is extremely stingy when it comes to save points, and it's not hard to end up dying on a last-mission objective, only to have to start an entire level over again." src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" sizes="(max-width: 640px) 100vw, 640px" data-width="640" class="js-lazy-load-image" data-src="https://web.archive.org/web/20200617093804/https://gamespot1.cbsistatic.com/uploads/original/gamespot/images/2003/reviews/539894-914681_20031202_004.jpg" data-srcset="https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/original/gamespot/images/2003/reviews/539894-914681_20031202_004.jpg 640w, https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/scale_medium/gamespot/images/2003/reviews/539894-914681_20031202_004.jpg 480w"><noscript><img alt="Battlestar Galactica is extremely stingy when it comes to save points, and it's not hard to end up dying on a last-mission objective, only to have to start an entire level over again." src="https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/original/gamespot/images/2003/reviews/539894-914681_20031202_004.jpg" srcset="https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/original/gamespot/images/2003/reviews/539894-914681_20031202_004.jpg 640w, https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/scale_medium/gamespot/images/2003/reviews/539894-914681_20031202_004.jpg 480w" sizes="(max-width: 640px) 100vw, 640px" data-width="640"></noscript></a><figcaption>Battlestar Galactica is extremely stingy when it comes to save points, and it's not hard to end up dying on a last-mission objective, only to have to start an entire level over again.</figcaption></figure> </p><p> Adama's squadron is about the most inconsistent group of fighter pilots you'll ever encounter. On missions where their jobs are to keep Cylons occupied while you go and blow up some key landmark, they can seemingly last forever. Yet, as soon as the mission objective shifts toward you having to protect them, they almost instantly become helpless, and it doesn't take long before they're sent into oblivion. Things can be made a bit easier by enacting unlockable wingmen, which you can gain through performing well on each mission. Wingmen can be instructed to attack, defend, or scatter, as necessary, in a combat situation. Beyond these basic functions, however, they're no smarter than the rest of your squadmates, and they also happen to be insanely easy to destroy. They're a great addition while they last, but they just don't last long enough. </p><p> Battlestar Galactica also has a somewhat problematic mission structure, which further adds to the frustrating side of the game's difficulty. Save points appear between each mission, but the bulk of the game's missions feature multiple objectives that must be achieved. This wouldn't be a problem, except that certain objectives take a fair amount of trial and error to get right, and it can frequently take anywhere from 10 to 20 minutes from the start of a mission to get to that problematic objective. The game's first level alone requires a great number of plays to get right, but it's one of the longer missions in the game. Perhaps if some sort of limited-continue system were available that gave you the opportunity to try a specific objective a few times before having to restart a full level, then the game wouldn't be nearly as irritating to play as it is. However, as it stands, that just isn't an option, so you're going to experience a lot of frustration while trying to make your way through Battlestar Galactica's missions. </p><p> Although Battlestar Galactica is by no means a terribly impressive-looking game, its graphics do the job just fine. Fans of the TV series will take to the ship designs immediately, as they're modeled very nicely after the classic <i>Battlestar</i> look. Weapon and energy effects, explosions, and the like also look pretty good, if a bit understated at times. The game, for the most part, runs very smoothly, and the frame rate is never an issue of any kind--nor is the camera. The only hitches that ever seemed to appear were when occasional radio communications would pop up from your squadmates or Cylons and when in-engine cutscenes would load between mission objectives. Periodically, the loading of these little scenes would cause the action on the screen to actually freeze up for a second or so, which can be rather disconcerting when you're in the middle of a battle. The only other complaint about the game's graphics stems from the less-than-impressive CG cutscene work, which shows some pretty bland-looking character animation and some bad-looking video compression, thus giving everything a very washed-out feel. The Xbox version looks decidedly better than its PS2 counterpart in most every regard, but, other than that, there's not much beyond the usual platform-to-platform variance. </p><p> The game's sound design seems as though it could have used a little more effort, as there just isn't a whole lot to it. <i>Battlestar Galactica</i> alumni Richard Hatch and Dirk Benedict make appearances in the game by voicing their original characters, in addition to new ones, but really, they don't make a significant impact beyond the initial nostalgic value. The rest of the game's voice acting consists of some pretty forgettable talent, save perhaps for <i>Terminator 3</i> star Kristanna Loken. Though, to be perfectly honest, her work isn't that memorable either. Of course, the Cylons have their awesome retro-sounding robot voices, so at least there is one bright spot to be found with the voice acting. The expected roster of space combat sound effects is front and center in Battlestar Galactica, and though none of it stands out, it's all effective stuff. The game's music is mostly made up of a lot of melodramatic, orchestrated tunes that fit pretty well with the overall scope of the game, and, of course, the classic <i>Battlestar</i> theme does show up here and there. </p><p> <figure num="5" data-ref-id="1300-539895" data-align="center" data-embed-type="image" data-size="large" data-resize-src="http://static.gamespot.com/uploads/original/gamespot/images/2003/reviews/539895-914681_20031202_005.jpg" data-ratio="0.75"><a class="fluid-height" style="padding-bottom:75.0%" href="" data-ref-id="1300-539895"><img alt="There's nothing outwardly impressive about Battlestar Galactica's graphics, but they're more than adequate for what the game requires." src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" sizes="(max-width: 640px) 100vw, 640px" data-width="640" class="js-lazy-load-image" data-src="https://web.archive.org/web/20200617093804/https://gamespot1.cbsistatic.com/uploads/original/gamespot/images/2003/reviews/539895-914681_20031202_005.jpg" data-srcset="https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/original/gamespot/images/2003/reviews/539895-914681_20031202_005.jpg 640w, https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/scale_medium/gamespot/images/2003/reviews/539895-914681_20031202_005.jpg 480w"><noscript><img alt="There's nothing outwardly impressive about Battlestar Galactica's graphics, but they're more than adequate for what the game requires." src="https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/original/gamespot/images/2003/reviews/539895-914681_20031202_005.jpg" srcset="https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/original/gamespot/images/2003/reviews/539895-914681_20031202_005.jpg 640w, https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/scale_medium/gamespot/images/2003/reviews/539895-914681_20031202_005.jpg 480w" sizes="(max-width: 640px) 100vw, 640px" data-width="640"></noscript></a><figcaption>There's nothing outwardly impressive about Battlestar Galactica's graphics, but they're more than adequate for what the game requires.</figcaption></figure> </p><p> For what it is, Battlestar Galactica is certainly an appreciable effort to do something more with its license than just offer another slapdash, underproduced game without any redeeming qualities beyond said license. Warthog has made a strong attempt to make the game's action accessible to both casual fans of the show and fans of the space combat genre. Sadly, the attempt was not entirely successful. The combination of the irritatingly tough mission structuring along with the relative simplicity of the combat ultimately makes Battlestar Galactica a bit too basic of an experience for any seasoned space combat fan, and it's too difficult of an experience for casual fans that are just looking for a simple trip down memory lane. However, if you're able to look past Battlestar Galactica's problems, there are most definitely things to like about the game, and it certainly makes for a good weekend rental. </p></p> <div class="js-mapped-ad mapped-ad mapped-native-top mapped-native-top-dart" data-ad-type="native-top"><div class="ad-wrap ad-wrap-native-top"></div></div> </div> <div class="content-footer__user-actions has-rhythm"><form name="upvote" method="post" action="/web/20200617093804/https://www.gamespot.com/vote/" class="js-upvote-form upvote-form js-post-render-upvote" data-allow-unvote="" data-user-voted="" data-guid="1900-6084925"><button type="submit" id="upvote_upvote" name="upvote[upvote]" class="js-upvote-btn btn btn-upvote btn-border btn-pad--small btn-large" data-guid="1900-6084925" data-event-name="Upvote"><i><svg version="1.1" width="26" height="28" viewbox="0 0 26 28" aria-hidden="true" class="symbol symbol-thumbs-up symbol--nudge-bottom"><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-btn__text upvote-btn__text" data-success-msg=" Upvoted" data-has-voted-msg=""> Upvote</span></button><input class="js-event-tracking" type="hidden" data-event-name="Upvote"><input type="hidden" id="upvote__token" name="upvote[_token]" data-bb="1" data-post-render-param="CmsBundle.forumTokenIds[]" data-post-render-value="upvote_1900-6084925" data-token-id="upvote_1900-6084925" autocomplete="off" value="sOkVc+oUeVPEMd4/zvYHlKDHYXEitc/hac7uZuD02DjiVzZjkT7FD12vew=="/><input type="hidden" id="upvote_assocId" name="upvote[assocId]" value="6084925"/><input type="hidden" id="upvote_assocTypeId" name="upvote[assocTypeId]" value="1900"/><li class="hp-row"><label for="upvote__website_url">Leave Blank</label><div><input type="text" id="upvote__website_url" name="upvote[_website_url]" class="hp-url" tabindex="-1"/></div></li></form><a class="btn btn-large btn-border btn-border--link-color btn-pad--small" href="#comments-block-32563355" rel="nofollow"><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> View Comments (0) </a></div> </section> </article> </div> <aside class="secondary-content span4"> <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> <div class="pod pod-recirc pod-popular hide-mobile"> <header class="pod-header "> <div class="pod-header__item"> <div class="pod-title"> <h4>Latest News</h4> <span class="pod-div" role="presentation" aria-hidden="true"></span> </div> </div> </header> <div class="pod-recirc__content"> <article class="media media--small" data-guid="1100-6478565"> <a href="/web/20200617093804/https://www.gamespot.com/articles/the-division-2s-new-iron-horse-raid-launches-later/1100-6478565/" class="js-event-tracking" data-promo-id="31695" data-pinned="0" data-top-slot-allowed="1" data-event-tracking="Tracking|review|MoreFrom|1"> <div class="align-vertical--contain"> <figure class="media-figure align-vertical--child"> <div class="media-img"> <img src="https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/screen_tiny/123/1239113/3687067-tctd2_ravenous%20_exotic.jpg" alt="The Division 2's New Iron Horse Raid Launches Later This Month"/> </div> </figure> <div class="media-body align-vertical--child"> <h3 class="media-title">The Division 2's New Iron Horse Raid Launches Later This Month</h3> </div> </div> </a> </article> <article class="media media--small" data-guid="1100-6478468"> <a href="/web/20200617093804/https://www.gamespot.com/articles/star-wars-squadrons-is-a-dogfighting-campaign-and-/1100-6478468/" class="js-event-tracking" data-promo-id="31666" data-pinned="0" data-top-slot-allowed="1" data-event-tracking="Tracking|review|MoreFrom|2"> <div class="align-vertical--contain"> <figure class="media-figure align-vertical--child"> <div class="media-img"> <img src="https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/screen_tiny/1179/11799911/3685459-screen%20shot%202020-06-15%20at%202.42.05%20pm.png" alt="Star Wars: Squadrons Revealed With Cross-Play, Single-Player Campaign, No Microtransactions"/> </div> </figure> <div class="media-body align-vertical--child"> <h3 class="media-title">Star Wars: Squadrons Revealed With Cross-Play, Single-Player Campaign, No Microtransactions</h3> </div> </div> </a> </article> <article class="media media--small" data-guid="1100-6478486"> <a href="/web/20200617093804/https://www.gamespot.com/articles/the-division-2-update-10-patch-notes-new-exotics-w/1100-6478486/" class="js-event-tracking" data-promo-id="31692" data-pinned="0" data-top-slot-allowed="1" data-event-tracking="Tracking|review|MoreFrom|3"> <div class="align-vertical--contain"> <figure class="media-figure align-vertical--child"> <div class="media-img"> <img src="https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/screen_tiny/1585/15855271/3685945-3400283-tctd2_screen_e3_be1_180610nologo_1528652731.jpg" alt="Division 2 Title Update 10 Patch Notes Released"/> </div> </figure> <div class="media-body align-vertical--child"> <h3 class="media-title">Division 2 Title Update 10 Patch Notes Released</h3> </div> </div> </a> </article> <article class="media media--small" data-guid="1100-6478554"> <a href="/web/20200617093804/https://www.gamespot.com/articles/dc-to-host-massive-virtual-fandome-event-includes-/1100-6478554/" class="js-event-tracking" data-promo-id="31691" data-pinned="0" data-top-slot-allowed="1" data-event-tracking="Tracking|review|MoreFrom|4"> <div class="align-vertical--contain"> <figure class="media-figure align-vertical--child"> <div class="media-img"> <img src="https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/screen_tiny/1557/15576725/3687006-fandome" alt="DC To Host Massive Virtual "FanDome" Event, Includes The Batman And Zack Snyder's Justice League"/> </div> </figure> <div class="media-body align-vertical--child"> <h3 class="media-title">DC To Host Massive Virtual "FanDome" Event, Includes The Batman And Zack Snyder's Justice League</h3> </div> </div> </a> </article> <article class="media media--small" data-guid="1100-6478548"> <a href="/web/20200617093804/https://www.gamespot.com/articles/madden-nfl-21-announced-with-first-details-on-game/1100-6478548/" class="js-event-tracking" data-promo-id="31689" data-pinned="0" data-top-slot-allowed="1" data-event-tracking="Tracking|review|MoreFrom|5"> <div class="align-vertical--contain"> <figure class="media-figure align-vertical--child"> <div class="media-img"> <img src="https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/screen_tiny/1481/14810050/3687008-8185576093-36869.jpg" alt="Madden NFL 21 Announced With First Details On Gameplay Improvements, Career Mode, And More"/> </div> </figure> <div class="media-body align-vertical--child"> <h3 class="media-title">Madden NFL 21 Announced With First Details On Gameplay Improvements, Career Mode, And More</h3> </div> </div> </a> </article> <article class="media media--small" data-guid="1100-6477863"> <a href="/web/20200617093804/https://www.gamespot.com/articles/enter-to-win-a-2000-nzxt-h1-mini-pc/1100-6477863/" class="js-event-tracking" data-promo-id="31484" data-pinned="0" data-top-slot-allowed="1" data-event-tracking="Tracking|review|MoreFrom|6"> <div class="align-vertical--contain"> <figure class="media-figure align-vertical--child"> <div class="media-img"> <img src="https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/screen_tiny/1592/15920003/3677062-promo_image.jpg" alt="Enter To Win A $2,000 NZXT H1 Mini PC*"/> </div> </figure> <div class="media-body align-vertical--child"> <h3 class="media-title">Enter To Win A $2,000 NZXT H1 Mini PC*</h3> </div> </div> </a> </article> </div> </div> </aside> </div> <div class="review-breakdown has-multiple-reviews"> <div class="review-breakdown__inner"> <div class="container row"> <div class="related-game related-game--main clearfix"> <div class="related-game__boxart"> <figure> <img src="https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/scale_avatar/box/3/0/3/6/18214-53036.jpg" alt="Battlestar Galactica (2003)"> </figure> </div> <h3 class="related-game__title"> <a href="/web/20200617093804/https://www.gamespot.com/battlestar-galactica-2003/">Battlestar Galactica (2003)</a> / <span class="related-game__platforms"> <strong>Xbox</strong> </span> </h3> </div> <dl class="breakdown breakdown-good span6"> <dt><span>The Good</span></dt> <dd class="breakdown-good__item"><i><svg version="1.1" width="28" height="28" viewbox="0 0 28 28" aria-hidden="true" class="symbol symbol-plus-sign"><path d="M19 15v-2q0-0.406-0.297-0.703t-0.703-0.297h-4v-4q0-0.406-0.297-0.703t-0.703-0.297h-2q-0.406 0-0.703 0.297t-0.297 0.703v4h-4q-0.406 0-0.703 0.297t-0.297 0.703v2q0 0.406 0.297 0.703t0.703 0.297h4v4q0 0.406 0.297 0.703t0.703 0.297h2q0.406 0 0.703-0.297t0.297-0.703v-4h4q0.406 0 0.703-0.297t0.297-0.703zM24 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> N/A</dd> </dl> <dl class="breakdown breakdown-bad span6"> <dt><span>The Bad</span></dt> <dd class="breakdown-bad__item"><i><svg version="1.1" width="28" height="28" viewbox="0 0 28 28" aria-hidden="true" class="symbol symbol-minus-sign symbol--color-secondary"><path d="M19 15v-2q0-0.406-0.297-0.703t-0.703-0.297h-12q-0.406 0-0.703 0.297t-0.297 0.703v2q0 0.406 0.297 0.703t0.703 0.297h12q0.406 0 0.703-0.297t0.297-0.703zM24 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> </dd> </dl> <dl class="breakdown breakdown-score"> <dt class="review-score"> <div class="gs-score gs-score--large score-7"><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"><span aria-label="Review score 7.1" tabindex="0">7.1</span></div></div></div></div> </dt> <dd class="score-word">Good</dd> <dd class="score-about"><a href="//web.archive.org/web/20200617093804/https://gamespot.com/review-guidelines/">About GameSpot's Reviews</a></dd> </dl> </div> </div> <div class="container"> <span class="related-reviews__header"><strong>Other Platform Reviews</strong> for Battlestar Galactica (2003)</span> <ul class="related-reviews"> <li class="related-reviews__item"> <div class="related-game related-game--alt game--row"> <div class="related-game__boxart"> <figure> <img src="https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/square_mini/box/3/0/3/6/18214-53036.jpg" alt="Battlestar Galactica (2003)"> </figure> <span class="related-game--alt__score">7.1</span> </div> <span class="related-game__title"> <span class="related-game__platforms"> <strong>PlayStation 2</strong> /</span> Battlestar Galactica <a href="/web/20200617093804/https://www.gamespot.com/reviews/battlestar-galactica-review/1900-6084924/">Read Review</a> </span> </div> </li> </ul> </div> </div> <div class="review-authors "> <div class="container row"> <div class="review-authors__main is-alone span8 "> <h3>About the Author</h3> <div class="review-author review-author--main"> <div class="authorCard authorCard--article"> <div class="align-vertical--contain"> <div class="align-vertical--child authorCard-avatar align-vertical--child--top hide-mobile"> <div class="avatar avatar--circle "> <a href="/web/20200617093804/https://www.gamespot.com/profile/AlexN/" class="img"> <img src="https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/square_avatar/1440/14409144/2205910-avatar-default.png" alt="AlexN"> </a> </div> </div> <div class="align-vertical--child align-vertical--child--top"> <h4 class="authorCard-name"><a href="/web/20200617093804/https://www.gamespot.com/profile/AlexN/content/" rel="author" itemprop="author"><strong>Alex Navarro</strong></a></h4> <div class="authorCard-deck"> </div> <ul class="content-slug__author-social"> </ul> </div> </div> </div> </div> </div> </div> </div> <section id="below-content"> <div class="related-content container"> <div class="related-content__header-container"> <h3 class="related-content__header container">More GameSpot Reviews</h3> </div> <section class="promo-strip "><ul class="promo-strip__list row "><li class="promo-strip__item span3"><a href="https://web.archive.org/web/20200617093804/https://www.gamespot.com/reviews/the-last-of-us-part-2-review-spoilerfree-thoughts/1900-6417483/" data-pinned="0" data-promo-id="31619" data-top-slot-allowed="1"><figure class="imgflare--gradient type-review"><img src="https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/screen_large/1575/15759911/3682297-the-last-of-us-part-ii-review-promothumb.jpg" alt=""><span class="promo-type--grid content-type content-type--review hide-mobile content-symbol--medium "><span class="promo--review-score">8</span></span><figcaption class="promo-strip__title">The Last Of Us Part II Review (Spoiler-Free)</figcaption></figure></a></li><li class="promo-strip__item span3"><a href="https://web.archive.org/web/20200617093804/https://www.gamespot.com/reviews/valorant-review-a-valiant-effort/1900-6417480/" data-pinned="0" data-promo-id="31548" data-top-slot-allowed="1"><figure class="imgflare--gradient type-review"><img src="https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/screen_large/1574/15747411/3680129-valorant-review-in-progress-promothumb.jpg" alt=""><span class="promo-type--grid content-type content-type--review hide-mobile content-symbol--medium "><span class="promo--review-score">7</span></span><figcaption class="promo-strip__title">Valorant Review</figcaption></figure></a></li><li class="promo-strip__item span3"><a href="https://web.archive.org/web/20200617093804/https://www.gamespot.com/reviews/skelattack-review-bonedry/1900-6417486/" data-pinned="0" data-promo-id="31632" data-top-slot-allowed="1"><figure class="imgflare--gradient type-review"><img src="https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/screen_large/1575/15759911/3683126-skelattack-review-promothumb.jpg" alt=""><span class="promo-type--grid content-type content-type--review hide-mobile content-symbol--medium "><span class="promo--review-score">5</span></span><figcaption class="promo-strip__title">Skelattack Review - Bone-Dry</figcaption></figure></a></li><li class="promo-strip__item span3"><a href="https://web.archive.org/web/20200617093804/https://www.gamespot.com/reviews/project-warlock-review-wizards-first-doom/1900-6417484/" data-pinned="0" data-promo-id="31624" data-top-slot-allowed="1"><figure class="imgflare--gradient type-review"><img src="https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/screen_large/1575/15759911/3682461-project-warlock-review-promothumb.jpg" alt=""><span class="promo-type--grid content-type content-type--review hide-mobile content-symbol--medium "><span class="promo--review-score">6</span></span><figcaption class="promo-strip__title">Project Warlock Review - Wizard's First Doom</figcaption></figure></a></li></ul></section> </div> <div class="container"> <div class="row"> <div class="primary-content span8 medium-span7 comments"> <div class="js-taboola-module" data-taboola-parameters="{"mode":"alternating-thumbnails-b","container":"taboola-bottom-page-thumbnails","placement":"review Bottom Page Thumbnails","target_type":"mix"}"></div> <div class="well article-comments has-pad--max overflow--hidden"> <div id="comments-block-32563355" class="js-comments-block comments-block clear "> <a class="js-load-comments btn btn-full btn-primary hide" data-ajax-url="/forums/comments/32563355/?subTopic=0" rel="nofollow" href="/web/20200617093804/https://www.gamespot.com/reviews/battlestar-galactica-review/1900-6084925/?comment_page=1#comments-block-32563355"><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> Load Comments (0) </a> </div> </div> </div> <div class="secondary-content span4 medium-span5 hide-mobile"> <div class="game-module pod"><div class="game-module__image overflow--hidden"><img src="https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/uploads/screen_medium/box/3/0/3/6/18214-53036.jpg"/></div><div class="game-module__content"><a href="/web/20200617093804/https://www.gamespot.com/games/battlestar-galactica-2003/"><h4 class="game-module__name">Battlestar Galactica (2003)</h4></a><div class="game-module__release-date text-bold"> First Released <span>Nov 19, 2003</span><div class="dn"><span id="_qualtrics_release_indicator">released</span></div></div><ul class="game-module__platform"><li class="inline-block">PlayStation 2</li><li class="inline-block">Xbox</li></ul><p class="game-module__description">Battlestar Galactica puts forth a far more enjoyable effort than your average licensed game, but unfortunately, there are still many problems to be found within.</p></div><div class="game-module__scores flexbox-row"><div class="flexbox-flex-even"><i class="block vertical-spacing-bottom-rem"><svg viewbox="0 0 1631.76 517.06" width="1631.76" height="517.06" aria-hidden="true" class="symbol symbol-logo-outline-full horizontally-centered"><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><div class="review-ring-score "><div class="review-ring-score__ring review-ring-score__ring--7.1 review-ring-score--xsmall "><div class="review-ring-score__score text-bold ">7.1</div></div><span class="review-ring-score__text review-ring-score__text--small text-center ">Good</span></div></div><div class="average-score text-center flexbox-flex-even "><p class="average-score__label text-bold ">Average Rating</p><p class="average-score__total ">518 Rating(s)</p><div class="average-score__score border-circle "><span class="text-bold centered--absolute">7</span></div></div></div><div class="score-scale text-center js-review-scale-widget-container js-review-scale-widget-container--updated " data-rate-url="/battlestar-galactica-2003/user-reviews/rate"><div class="score-scale__label--sign-in"><a href="/web/20200617093804/https://www.gamespot.com/login/" class="text-bold">Sign In</a> to rate <span class="block text-bold">Battlestar Galactica (2003)</span></div></div><div class="game-module__stats"><div class="game-module__developers"><p class="text-bold">Developed by:</p><ul><li class="inline-block"><a href="/web/20200617093804/https://www.gamespot.com/companies/warthog/">Warthog</a></li></ul></div><div class="game-module__publishers"><p class="text-bold">Published by:</p><ul><li class="inline-block"><a href="/web/20200617093804/https://www.gamespot.com/companies/universal-interactive/">Universal Interactive</a></li></ul></div><div class="game-module__genres"><p class="text-bold">Genre(s):</p><ul><li class="inline-block"><a href="/web/20200617093804/https://www.gamespot.com/genre/simulation/">Simulation</a></li></ul></div></div><div class="pod-objectStats__esrb"><img src="https://web.archive.org/web/20200617093804im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/images/core//loose/esrb-t.png" alt="Content is generally suitable for ages 13 and up. May contain violence, suggestive themes, crude humor, minimal blood, simulated gambling and/or infrequent use of strong language." title="Content is generally suitable for ages 13 and up. May contain violence, suggestive themes, crude humor, minimal blood, simulated gambling and/or infrequent use of strong language."/><dl><dt>Teen</dt><dd> Mild Violence </dd></dl></div></div> <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> </div> </div> </section> </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://web.archive.org/web/20200617093804/https://privacy.cbs/" target="_blank">Privacy Policy</a><a href="https://web.archive.org/web/20200617093804/https://legalterms.cbsinteractive.com/adchoice" target="_blank">Ad Choice</a><a href="https://web.archive.org/web/20200617093804/https://legalterms.cbsinteractive.com/terms-of-use" target="_blank">Terms of Use</a><a href="https://web.archive.org/web/20200617093804/https://cbsi.secure.force.com/CBSi/knowledgehome?referer=gamespot.com" target="_blank">Help</a><a href="https://web.archive.org/web/20200617093804/https://cbsinteractive.com/advertising/" target="_blank">Advertise</a><a href="https://web.archive.org/web/20200617093804/mailto:cbsi-partnerships@cbsinteractive.com" target="_blank">Partnerships</a><a href="https://web.archive.org/web/20200617093804/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://web.archive.org/web/20200617093804/https://ca.privacy.cbs/">CA Privacy/Info We Collect</a><a href="https://web.archive.org/web/20200617093804/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://web.archive.org/web/20200617093804/https://www.giantbomb.com/"><i class="footer-social__item footer_logo_gb"></i>giantbomb.com</a></li><li><a href="https://web.archive.org/web/20200617093804/https://gamefaqs.gamespot.com/"><i class="footer-social__item footer_logo_gf"></i>gamefaqs.com</a></li><li><a href="https://web.archive.org/web/20200617093804/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://web.archive.org/web/20200617093804/https://www.gamespot.com/reviews/">Latest Reviews</a></li><li><a href="/web/20200617093804/https://www.gamespot.com/reviews/pc">PC</a></li><li><a href="/web/20200617093804/https://www.gamespot.com/reviews/ps4">PS4</a></li><li><a href="/web/20200617093804/https://www.gamespot.com/reviews/xbox-one">Xbox One</a></li><li><a href="/web/20200617093804/https://www.gamespot.com/reviews/nintendo-switch">Switch</a></li></ul><ul><li><span class="footer-links__header">News</span></li><li><a href="https://web.archive.org/web/20200617093804/https://www.gamespot.com/news/">Latest News</a></li><li><a href="/web/20200617093804/https://www.gamespot.com/news/pc">PC</a></li><li><a href="/web/20200617093804/https://www.gamespot.com/news/ps4">PS4</a></li><li><a href="/web/20200617093804/https://www.gamespot.com/news/xbox-one">Xbox One</a></li><li><a href="/web/20200617093804/https://www.gamespot.com/news/nintendo-switch">Switch</a></li></ul><ul><li><span class="footer-links__header">Shows</span></li><li><a href="https://web.archive.org/web/20200617093804/https://www.gamespot.com/shows/true-fiction/">True Fiction</a></li><li><a href="https://web.archive.org/web/20200617093804/https://www.gamespot.com/shows/gamespot-community-fridays/">GameSpot Community Fridays</a></li><li><a href="https://web.archive.org/web/20200617093804/https://www.gamespot.com/shows/audio-logs/">Audio Logs</a></li><li><a href="https://web.archive.org/web/20200617093804/https://www.gamespot.com/shows/gamespot-of-thrones/">GameSpot of Thrones</a></li><li><a href="https://web.archive.org/web/20200617093804/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://web.archive.org/web/20200617093804/https://www.gamespot.com/forums/">Forums</a></li><li class="footer--social-icons"><strong>GameSpot</strong><a href="https://web.archive.org/web/20200617093804/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="https://web.archive.org/web/20200617093804/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="https://web.archive.org/web/20200617093804/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="https://web.archive.org/web/20200617093804/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://web.archive.org/web/20200617093804/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="/web/20200617093804/https://www.gamespot.com/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://web.archive.org/web/20200617093804/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="https://web.archive.org/web/20200617093804/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="https://web.archive.org/web/20200617093804/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="https://web.archive.org/web/20200617093804/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://web.archive.org/web/20200617093804/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="//web.archive.org/web/20200617093804js_/https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script><script> window.jQuery || document.write('<script src="https://web.archive.org/web/20200617093804/https://gamespot1.cbsistatic.com/v61bf2ade7a3df033759fbb78da92f1ec/js/compiled/jquery.local.js">\x3C/script>') </script> <!-- Last Minute --> <script> /* Added By: Will Description: Chat was sometimes not loading the iframe via onetrust Issue: Remove: Url: chat */ $(function(){ if (!$('#player-iframe').attr('src') && $('#player-iframe').attr('data-src')) { $('#player-iframe').attr('src', $('#player-iframe').attr('data-src')); } setTimeout(function() { $(document).trigger('tracking_initialized'); }, 5000); }); /* 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 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 != -1) { $(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> window.utag_data = {}; </script> <script src="https://web.archive.org/web/20200617093804js_/https://gamespot1.cbsistatic.com/v61bf2ade7a3df033759fbb78da92f1ec/js/compiled/header_js.js" type="text/javascript"></script> <script src="https://web.archive.org/web/20200617093804js_/https://gamespot1.cbsistatic.com/v61bf2ade7a3df033759fbb78da92f1ec/js/compiled/all.js" type="text/javascript"></script> <script id="imageInfoBarTemplate" type="text/template"><a href="<%= profileUrl %>" class="avatar img"><img src="<%= avatar %>" /></a><div><a href="<%= profileUrl %>"><%= author %></a> uploaded on <%= dateCreated %>. </div></script> <script id="imageCommentsTemplate" type="text/template"> <li> <a href="<%= user.url %>" class="avatar img"> <img src="<%= user.img %>" /> </a> <div> <a href="<%= user.url %>"><%= user.username %></a> <%= body %> </div> </li> </script> <script id="imageFilmstripTemplate" type="text/template"><li><a href="#imageViewer<%= id %>" data-ref-id="<%= id %>"><img src="https://web.archive.org/web/20200617093804/http://gs.cbsimg.net/b.gif" data-img-src="<%= thumbnail %>" /></a></li></script> <div id="js-filmstrip" class="filmstrip filmstrip-with-ads is-hidden" itemscope tabindex="-1"><meta id="image_view-tracking-dw" class="js-post-render-tracking-consumer image_view-tracking-settings" data-tracking-service="dw" itemprop="image_view-tracking-dw" data-settings="{"pageParams":{"siteid":"6","ptid":"6049","onid":null,"ednm":"{edition}","ursuid":"{ursuid}","regSilo":"2","rsid":"cbsigamespotsite","prodtypid":"8","pagetype":"review","assetguid":"1900-6084925","assettitle":"Battlestar Galactica Review","assettype":"Review","authorid":["gs-2100-788224"],"topicbrcrm":"Reviews|Game Review"},"cleargifSrc":"https:\/\/dw.cbsi.com\/clear\/c.gif?ptid=6049&ednm=%7Bedition%7D&ursuid=%7Bursuid%7D&regSilo=2&rsid=cbsigamespotsite&prodtypid=8&pagetype=review&assetguid=1900-6084925&assettitle=Battlestar+Galactica+Review&assettype=Review&authorid%5B0%5D=gs-2100-788224&topicbrcrm=Reviews%7CGame+Review&sid=6&ts=1592386684"}"><meta id="image_view-tracking-ga" class="js-post-render-tracking-consumer image_view-tracking-settings" data-tracking-service="ga" itemprop="image_view-tracking-ga" data-settings="{"custom":{"PageType":{"index":"1","name":"PageType","value":"6049","scope":"3"},"UserType":{"index":"2","name":"UserType","value":"{gaUserType}","scope":"1"}},"account":"UA-22577913-1"}"><meta id="image_view-tracking-om" class="js-post-render-tracking-consumer image_view-tracking-settings" data-tracking-service="om" itemprop="image_view-tracking-om" data-settings="{"brand":"GameSpot","sid":"gamespot","rsids":"cbsigamespotsite","user_status":"{userStatus}","urs_id":"{ursuid}","edition":"{edition}","site_type":"{siteType}","anon_id":"{xclgfbrowser}","url":"D=g","user_agent":"D=User-Agent","page_type_id":6052,"page_name":"gs:\/reviews\/battlestar-galactica-review\/1900-6084925\/","ab_test":"{abTestLabel}","theme":"{theme}","event_hierarchy":"{eventHierarchy}","marketing_cloud_id":"10D31225525FF5790A490D4D@AdobeOrg","session":"{ad_session}","account_settings":{"trackingServer":"aa.gamespot.com","trackingServerSecure":"saa.gamespot.com"},"page_type":"image","channel":"Reviews","hierarchy":"Reviews|Game Review","content_source":"CBSi","content_title":"Battlestar Galactica Review","author_ids":["gs-2100-788224"],"content_guid":"gs-1900-6084925","content_type":"image","platform":["PlayStation 2","Xbox"],"game_id":"gamespot:18214","game_title":"Battlestar Galactica (2003)|battlestar-galactica","product_id":"gs-5000-18214","genre":["Simulation"],"category":"Reviews|Game Review"}"><meta id="image_view-tracking-cb" class="js-post-render-tracking-consumer image_view-tracking-settings" data-tracking-service="cb" itemprop="image_view-tracking-cb" data-settings="{"uid":"65713","domain":"gamespot.com","sections":"games_review,","authors":"Alex Navarro","acct":"{cbUserStatus}"}"><meta class="ad-settings page-event-ad-settings" id="image_view-ad-settings" itemprop="page-event-ad-settings" data-settings="{"page_event_name":"image_view","mapped_units":{"overlay_mpu_top":{"size":[[300,250]],"target":{"pos":"top","ptype":"image"},"on_event":"image_view"},"overlay_leader_top":{"size":[[970,66],[728,90]],"target":{"pos":"top","ptype":"image"},"on_event":"image_view"}}}"><div id="js-image-mask" class="image-mask"></div><div id="js-image-ad-leader" class="image-viewer-ad image-viewer-leader"><div class="js-mapped-ad mapped-ad mapped-overlay_leader_top mapped-overlay_leader_top-dart" data-ad-type="overlay_leader_top"><div class="ad-wrap ad-wrap-overlay_leader_top" data-ad-event="image_view"></div></div></div><a id="js-image-close" href="#" class="image-control image-close" title="Close Viewer"><i><svg version="1.1" width="22" height="28" viewbox="0 0 22 28" aria-hidden="true" class="symbol symbol-remove symbol--size-3x"><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></a><div id="js-image-pane" class="image-pane"><h3 id="js-image-title" class="image-title"></h3><img tabindex="0" src="/web/20200617093804im_/https://www.gamespot.com/reviews/battlestar-galactica-review/1900-6084925/" id="imageSource" alt=""/><div id="js-image-commands-tip" class="image-commands-tip image-commands-tip-hide"><p>Use your keyboard!</p><ul class="keyboard light"><li><i><svg version="1.1" width="28" height="28" viewbox="0 0 28 28" aria-hidden="true" class="symbol symbol-arrow-left symbol--size-large"><path d="M24 14v2q0 0.828-0.508 1.414t-1.32 0.586h-11l4.578 4.594q0.594 0.562 0.594 1.406t-0.594 1.406l-1.172 1.188q-0.578 0.578-1.406 0.578-0.812 0-1.422-0.578l-10.172-10.187q-0.578-0.578-0.578-1.406 0-0.812 0.578-1.422l10.172-10.156q0.594-0.594 1.422-0.594 0.812 0 1.406 0.594l1.172 1.156q0.594 0.594 0.594 1.422t-0.594 1.422l-4.578 4.578h11q0.812 0 1.32 0.586t0.508 1.414z"/></svg></i></li><li><i><svg version="1.1" width="28" height="28" viewbox="0 0 28 28" aria-hidden="true" class="symbol symbol-arrow-right symbol--size-large"><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></li><li><i><svg version="1.1" width="26" height="28" viewbox="0 0 26 28" aria-hidden="true" class="symbol symbol-arrow-up symbol--size-large"><path d="M25.172 15.172q0 0.797-0.578 1.406l-1.172 1.172q-0.594 0.594-1.422 0.594-0.844 0-1.406-0.594l-4.594-4.578v11q0 0.812-0.586 1.32t-1.414 0.508h-2q-0.828 0-1.414-0.508t-0.586-1.32v-11l-4.594 4.578q-0.562 0.594-1.406 0.594t-1.406-0.594l-1.172-1.172q-0.594-0.594-0.594-1.406 0-0.828 0.594-1.422l10.172-10.172q0.547-0.578 1.406-0.578 0.844 0 1.422 0.578l10.172 10.172q0.578 0.609 0.578 1.422z"/></svg></i></li><li><i><svg version="1.1" width="26" height="28" viewbox="0 0 26 28" aria-hidden="true" class="symbol symbol-arrow-down symbol--size-large"><path d="M25.172 13q0 0.828-0.578 1.406l-10.172 10.187q-0.609 0.578-1.422 0.578-0.828 0-1.406-0.578l-10.172-10.187q-0.594-0.562-0.594-1.406 0-0.828 0.594-1.422l1.156-1.172q0.609-0.578 1.422-0.578 0.828 0 1.406 0.578l4.594 4.594v-11q0-0.812 0.594-1.406t1.406-0.594h2q0.812 0 1.406 0.594t0.594 1.406v11l4.594-4.594q0.578-0.578 1.406-0.578 0.812 0 1.422 0.578l1.172 1.172q0.578 0.609 0.578 1.422z"/></svg></i></li><li>ESC</li></ul></div><a href="#" tabindex="0" id="js-image-prev" class="image-control image-prev hidden" title="Previous Image"><i><svg version="1.1" width="10" height="28" viewbox="0 0 10 28" aria-hidden="true" class="symbol symbol-caret-left symbol--size-2x"><path d="M10 7v14q0 0.406-0.297 0.703t-0.703 0.297-0.703-0.297l-7-7q-0.297-0.297-0.297-0.703t0.297-0.703l7-7q0.297-0.297 0.703-0.297t0.703 0.297 0.297 0.703z"/></svg></i></a><a href="#" tabindex="0" id="js-image-next" class="image-control image-next hidden" title="Next Image"><i><svg version="1.1" width="10" height="28" viewbox="0 0 10 28" aria-hidden="true" class="symbol symbol-caret-right symbol--size-2x"><path d="M9 14q0 0.406-0.297 0.703l-7 7q-0.297 0.297-0.703 0.297t-0.703-0.297-0.297-0.703v-14q0-0.406 0.297-0.703t0.703-0.297 0.703 0.297l7 7q0.297 0.297 0.297 0.703z"/></svg></i></a></div><div id="js-side-column" class="image-comments"><div id="js-image-ad-mpu" class="image-viewer-ad image-viewer-mpu"><div class="js-mapped-ad mapped-ad mapped-overlay_mpu_top mapped-overlay_mpu_top-dart" data-ad-type="overlay_mpu_top"><div class="ad-wrap ad-wrap-overlay_mpu_top" data-ad-event="image_view"></div></div></div><ul><li class="upload" id="imageInfo"></li><li class="box login-alert"><p><a href="/web/20200617093804/https://www.gamespot.com/login/">Log in</a> to comment</p></li></ul><ul class="scroll" id="imageComments"></ul></div><div class="image-strip"><a tabindex="0" href="#" id="js-image-view-film" class="image-view-film"><span id="js-btn-message" class="caret-message"></span><i><svg width="28px" height="28px" viewbox="0 0 28 28" version="1.1" aria-hidden="true" class="symbol symbol-caret-down symbol--size-large"><path d="M23.999997,10.222341 C23.999997,10.5531467 23.8825847,10.8397498 23.6477603,11.0821505 L15.3353915,19.6374684 C15.1005671,19.8791561 14.8221028,20 14.4999985,20 C14.1778942,20 13.8994298,19.8791561 13.6646054,19.6374684 L5.35223663,11.0821505 C5.11741221,10.8404628 5,10.5538596 5,10.222341 C5,9.89082248 5.11741221,9.60421933 5.35223663,9.3625316 C5.58706105,9.12084387 5.8655254,9 6.18762969,9 L22.8123673,9 C23.1337789,9 23.4122432,9.12084387 23.6477603,9.3625316 C23.8832774,9.60421933 24.0006897,9.89082248 23.999997,10.222341 L23.999997,10.222341 Z" stroke-width="1" fill-rule="evenodd"/></svg></i></a><div class="number"></div><ul id="js-image-strip"><li id="js-image-strip-load-more"><a href="#" class="more-images"></a></li></ul></div></div> <script src="https://web.archive.org/web/20200617093804js_/https://gamespot1.cbsistatic.com/v61bf2ade7a3df033759fbb78da92f1ec/js/compiled/imageViewer.js" type="text/javascript"></script> <script src="https://web.archive.org/web/20200617093804js_/https://gamespot1.cbsistatic.com/v61bf2ade7a3df033759fbb78da92f1ec/js/compiled/site.js" type="text/javascript"></script> <!-- BEG: base custom_js --> <script src="https://web.archive.org/web/20200617093804js_/https://gamespot1.cbsistatic.com/v61bf2ade7a3df033759fbb78da92f1ec/js/compiled/reviews.js" type="text/javascript"></script> <script type="text/javascript"> PhoenixLoader.gdprConsentCallback("viglink", function() { window.vglnk = { key: 'b9014669b87be145294606ccea8870ce' }; (function(d, t) { var s = d.createElement(t); s.type = 'text/javascript'; s.async = true; s.src = '//web.archive.org/web/20200617093804/https://cdn.viglink.com/api/vglnk.js'; var r = d.getElementsByTagName(t)[0]; r.parentNode.insertBefore(s, r); }(document, 'script')); }, 'targeting'); </script> <!-- END: base custom_js --> <script type="text/plain" class="optanon-category-2" id="script_omniture_and_qualtrics" src="https://web.archive.org/web/20200617093804js_/https://gamespot1.cbsistatic.com/v61bf2ade7a3df033759fbb78da92f1ec/js/compiled/trackingAll.js" async charset="utf-8"></script> <meta name="trackingEventsLookup" content="[]"/> <script async src="https://web.archive.org/web/20200617093804js_/https://gamespot1.cbsistatic.com/v61bf2ade7a3df033759fbb78da92f1ec/js/compiled/siteTracking.js"></script> <noscript> <img src="https://web.archive.org/web/20200617093804im_/https://dw.cbsi.com/clear/c.gif?ptid=6049&ednm=%7Bedition%7D&ursuid=%7Bursuid%7D&regSilo=2&rsid=cbsigamespotsite&prodtypid=8&pagetype=review&assetguid=1900-6084925&assettitle=Battlestar+Galactica+Review&assettype=Review&authorid%5B0%5D=gs-2100-788224&topicbrcrm=Reviews%7CGame+Review&sid=6&ts=1592386684" alt="" class="visuallyhidden"> </noscript> <script type="text/plain" class="optanon-category-2" id="script_true_anthem" src="//web.archive.org/web/20200617093804js_/https://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://web.archive.org/web/20200617093804/https://connect.facebook.net/en_US/fbevents.js'); fbq('init', '1664416907029093'); fbq('track', 'PageView'); }, 'social'); </script> <noscript> <img height="1" width="1" src="https://web.archive.org/web/20200617093804im_/https://www.facebook.com/tr?id=1664416907029093&ev=PageView&noscript=1"/> </noscript> <!-- End Facebook Pixel Code --> <!-- Global site tag (gtag.js) - Google Ads: 659993574 --> <script type="text/plain" class="optanon-category-4" id="script_googleTagManager" src="https://web.archive.org/web/20200617093804js_/https://www.googletagmanager.com/gtag/js?id=AW-659993574" 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-659993574'); }, 'targeting'); </script> <script> var taboola_url = '//web.archive.org/web/20200617093804/https://cdn.taboola.com/libtrc/cbsinteractive-gamespot/loader.js'; var taboola_header_key = 'other'; </script><script async src="https://web.archive.org/web/20200617093804js_/https://gamespot1.cbsistatic.com/v61bf2ade7a3df033759fbb78da92f1ec/js/compiled/siteAdsBidBarrel.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://web.archive.org/web/20200617093804/https://gamespot1.cbsistatic.com/v61bf2ade7a3df033759fbb78da92f1ec/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> "<span class="js-autocomplete-notification-term notification-term"></span>"</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> "<span class="js-autocomplete-notification-term notification-term"></span>"</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="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 class="image-container"><img class="overlay" src=<%= imgSrc %> /><img class="main-image" src=<%= imgSrc %>></div></div><% }); %></div></script> <script id="js-underscore-template-score-scale" type="text/template"><div class="score-scale__label text-small js-current-user-review-title" data-object-name="<%= templateData.name %>"> You rated <span class="block text-bold"><%= templateData.name %></span></div><div class="score-scale__score text-bold js-current-user-review-score"><div class="border-circle"><span class="block centered--absolute"><%= templateData.score %></span></div><div class="block"><%= _.propertyOf({"1":"Abysmal","2":"Terrible","3":"Bad","4":"Poor","5":"Mediocre","6":"Fair","7":"Good","8":"Great","9":"Superb","10":"Essential"})(templateData.score) %></div></div></script> </body> </html> <!-- FILE ARCHIVED ON 09:38:04 Jun 17, 2020 AND RETRIEVED FROM THE INTERNET ARCHIVE ON 10:14:20 Dec 18, 2024. JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE. ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C. SECTION 108(a)(3)). --> <!-- playback timings (ms): captures_list: 0.509 exclusion.robots: 0.045 exclusion.robots.policy: 0.033 esindex: 0.009 cdx.remote: 30.747 LoadShardBlock: 282.747 (3) PetaboxLoader3.datanode: 184.5 (4) PetaboxLoader3.resolve: 120.142 (2) load_resource: 119.251 -->