Mobile 375 × 812

Desktop 1440 × 900

Score: 71 / 100
Based on 8 categories, 0 sections
Room to improve — your 16.9s load time is above Google's 2.5s 'Good' threshold.
Several missing protections leave your users and data exposed.
Major barriers for users with disabilities — up to 15% of your audience.
Well-optimized for search — your content is discoverable.
Good server performance with room for optimization.
Strong compliance posture across regulations.
Rich content metadata — your pages look great everywhere.
Heavier than average — reducing page weight saves energy and bandwidth.
The overall score is a weighted average of individual category scores. Categories with more impact on user experience and security carry more weight.
Weights reflect general web best practices. Individual needs may differ.
Content-Security-Policy header is missing
Security gaps expose your site and users to attacks, eroding trust.
HSTS header is missing
Security gaps expose your site and users to attacks, eroding trust.
No Content-Security-Policy header found
Security gaps expose your site and users to attacks, eroding trust.
1 button(s) with no accessible text
Accessibility issues exclude users with disabilities — up to 15% of your potential audience.
26 image-only link(s) without alt text
Accessibility issues exclude users with disabilities — up to 15% of your potential audience.
High impact, low effort — start here.
High impact, requires investment.
Small gains, minimal effort.
Nothing in this quadrant — good news.
Low impact, high effort — do last.
Nothing in this quadrant — good news.
[](https://beavercheck.com/results/6f7ef1e5-fc2b-4c1b-9527-f4ce2b3557f0)<a href="https://beavercheck.com/results/6f7ef1e5-fc2b-4c1b-9527-f4ce2b3557f0"><img src="https://beavercheck.com/badge?url=https%3A%2F%2Fsteampowered.com" alt="BeaverCheck Score"></a>https://beavercheck.com/badge?url=https%3A%2F%2Fsteampowered.comThis badge auto-updates with your latest scan result.
Your site performs reasonably well, but a few targeted fixes could meaningfully improve results. Accessibility issues exclude users who rely on assistive technology — an estimated 15% of your potential audience. Addressing the critical issues below would have the most immediate impact on your user trust.
6 barrier(s) likely increasing bounce by ~26%.
Page takes 16.9s to load
+12% bounceUsers abandon at ~3s — you're 14.4s over the 2.5s threshold
Fix: Optimize render-blocking resources, preload the hero image, and compress images
Page feels frozen for 1.1s
+5% bounceClicks on the primary CTA are ignored while JavaScript runs
Fix: Break up long tasks; defer non-critical JavaScript to post-hydration
No HSTS header
+1% bounceReturning visitors are briefly exposed to downgrade attacks on first request
Fix: Set Strict-Transport-Security: max-age=31536000; includeSubDomains
No Content-Security-Policy header
+1% bounceHigher XSS blast radius — one compromised script can exfiltrate the checkout form
Fix: Ship a reporting-only CSP first, then enforce once violations are clean
No structured data
+2% bounceNo rich-result eligibility in Google — lower SERP CTR vs competitors with stars and prices
Fix: Add JSON-LD for your page type (Product, Article, FAQPage, LocalBusiness, …)
No skip-to-content link
+1% bounceKeyboard and screen-reader users must tab through the entire header on every page
Fix: Add a visible-on-focus <a href="#main">Skip to content</a> as the first focusable element
Preliminary CRO audit — each barrier links to the tab with detailed analysis.
€383 investment → €0.73/month returns + EUR 500,000 risk avoided
€383
4h · 5 findings
€0.73 /mo
~€8.71 / year
EUR 500,000
if kept compliant
€128 — in quick wins — start here for the fastest payback
Figures combine localized regulatory fine ceilings, search/conversion value priced against local CPC, and bandwidth waste estimates. Results depend on implementation quality and audience composition. Not legal or financial advice.
4.5 developer hours at €85/hr
Based on European Union rates (€85/hr)
Start here for the best return on investment
€41,667 / month at risk
~€500,009 / year if left unfixed
€500,000
+2 more
€0.73 /mo
9794.0 MB/mo × 0.074 EUR/GB
Compliance figures represent the statutory maximum fine for the most severe triggered category, capped per regulation — not the sum of per-finding penalties. Based on published regulatory fine ranges. This is not legal advice.
Unique monthly visitors from your analytics
Purchases, signups, or key actions
Optional — for revenue estimation
more engaged visitors from reduced bounce
Fix 5 critical issues to capture this value
Based on Google/Deloitte research ("Milliseconds Make Millions") showing a ~7% bounce rate increase per additional second of LCP above the 2.5s "Good" threshold.
Your site's LCP: → estimated after fixes.
These are estimates based on industry research — actual results vary
Your data stays in your browser — nothing is sent to our servers
Thanks for your feedback!
We'll use a cached audit if available, or offer to scan.
Industry-standard audits powered by Google Lighthouse.
Key metrics that affect user experience.
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
5.04 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
16.93 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
1.06 s
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.006
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
5.04 s
Time to Interactive Time to Interactive — how long until the page is fully interactive and responds to user input. Under 3.8s is good.
17.58 s
Audit breakdown by category with detailed findings.
Remove large, duplicate JavaScript modules from bundles to reduce unnecessary bytes consumed by network activity.
Performance issues directly impact user engagement and conversion rates.
Polyfills and transforms enable older browsers to use new JavaScript features. However, many aren't necessary for modern browsers. Consider modifying your JavaScript build process to not transpile Baseline features, unless you know you must support older browsers. Learn why most sites can deploy ES6+ code without transpiling
Shipping ES5 transpiled code to modern browsers wastes bytes — every user with an evergreen browser pays for compatibility you don't need.
Most users today run browsers that natively support ES6+, async/await, optional chaining, and the rest of modern JavaScript. Transpiling to ES5 'just in case' adds 20-40% to your bundle for no benefit. Configure your build to target a modern browserslist, or ship a differential bundle pair (modern + legacy) with the module/nomodule pattern.
Source: Google web.dev / Lighthouse
3rd party code can significantly impact load performance. Reduce and defer loading of 3rd party code to prioritize your page's content.
Performance issues directly impact user engagement and conversion rates.
A long cache lifetime can speed up repeat visits to your page. Learn more about caching.
Performance issues directly impact user engagement and conversion rates.
Your first network request is the most important. Reduce its latency by avoiding redirects, ensuring a fast server response, and enabling text compression.
Performance issues directly impact user engagement and conversion rates.
A forced reflow occurs when JavaScript queries geometric properties (such as offsetWidth) after styles have been invalidated by a change to the DOM state. This can result in poor performance. Learn more about forced reflows and possible mitigations.
Performance issues directly impact user engagement and conversion rates.
Reducing the download time of images can improve the perceived load time of the page and LCP. Learn more about optimizing image size
Performance issues directly impact user engagement and conversion rates.
| URL | Resource Size | Est Savings | |
|---|---|---|---|
Football Manager 26 div.home_area_spotlight > div.spotlight_img > a > img | /store_item_assets/steam/spotlights/f961b672ee8c2502d8bf6... | 109.2 KiB | 96.2 KiB |
Featured & Recommended
World of Warships
Free To Play
Warhammer 40,000: Space M… div#responsive_page_template_content > div.home_page_col_wrapper > div.home_page_body_ctn > div.home_cluster_ctn | store.akamai.steamstatic.com/public/images/v6/home/cluster_bg.png?v=1 | 131.4 KiB | 53.5 KiB |
div.carousel_items > a.store_main_capsule > div.capsule > div.screenshot div.carousel_items > a.store_main_capsule > div.capsule > div.screenshot | /store_item_assets/steam/apps/552990/0db97f96d1d92e0a1304... | 85.5 KiB | 52.5 KiB |
div.carousel_items > a.store_main_capsule > div.capsule > div.screenshot div.carousel_items > a.store_main_capsule > div.capsule > div.screenshot | /store_item_assets/steam/apps/552990/dd539e8cf724c6f13aad... | 74.6 KiB | 41.6 KiB |
div.carousel_items > a.store_main_capsule > div.capsule > div.screenshot div.carousel_items > a.store_main_capsule > div.capsule > div.screenshot | /store_item_assets/steam/apps/552990/ce262a0056031b3ed05f... | 71.8 KiB | 38.9 KiB |
Roots of Pacha div.spotlight_col > a.store_capsule > div.capsule > img | /store_item_assets/steam/apps/1245560/fb243da1a884f5ae805... | 53.7 KiB | 37.6 KiB |
div.carousel_items > a.store_main_capsule > div.capsule > div.screenshot div.carousel_items > a.store_main_capsule > div.capsule > div.screenshot | /store_item_assets/steam/apps/552990/9f38903d525fdce3bdb1... | 64.4 KiB | 31.4 KiB |
Cat Quest: The Fur-tastic Trilogy div.spotlight_col > a.store_capsule > div.capsule > img | /store_item_assets/steam/bundles/41962/oiocrdwv3nie3a6m/h... | 35.6 KiB | 29.1 KiB |
Slay the Spire 2 div.focus > a.store_capsule > div.capsule > img | /store_item_assets/steam/apps/2868840/b0958d387dc366211e0... | 32.0 KiB | 25.5 KiB |
KuloNiku: Bowl Up! div.focus > a.store_capsule > div.capsule > img | /store_item_assets/steam/apps/3357960/11e2af7df9465e47962... | 29.7 KiB | 23.3 KiB |
div#module_top_new_releases > div.home_page_content > div.top_new_releases_banner_ctn > div.top_new_releases_background div#module_top_new_releases > div.home_page_content > div.top_new_releases_banner_ctn > div.top_new_releases_background | store.steampowered.com/stats/monthlytopreleaseimages?l=english&cc=SG | 179.4 KiB | 23.1 KiB |
John Carpenter's Toxic Commando div.focus > a.store_capsule > div.capsule > img | /store_item_assets/steam/apps/2157830/ade0163ee0cebba5dc9... | 28.4 KiB | 21.9 KiB |
div#home_maincap_v7 > div.carousel_items > a.store_main_capsule > div.capsule div#home_maincap_v7 > div.carousel_items > a.store_main_capsule > div.capsule | /store_item_assets/steam/apps/552990/0f2acae9f2d6926f3b8d... | 55.8 KiB | 20.5 KiB |
div.carousel_items > div.focus > a.content_hub_capsule_ctn > img div.carousel_items > div.focus > a.content_hub_capsule_ctn > img | /categories/homepageimage/category/simulation?cc=us&l=eng... | 44.8 KiB | 20.1 KiB |
Dome Keeper div.focus > a.store_capsule > div.capsule > img | /store_item_assets/steam/apps/1637320/39810977acc72c02958... | 24.0 KiB | 17.5 KiB |
Everwind div.focus > a.store_capsule > div.capsule > img | /store_item_assets/steam/apps/2253100/81c5fb1f7602d9fe92a... | 24.0 KiB | 17.5 KiB |
WRATH: Aeon of Ruin VR - Brutal Edition div.next > a.store_capsule > div.capsule > img | /store_item_assets/steam/apps/3430260/8330236b32df5e24bea... | 23.3 KiB | 16.9 KiB |
div.carousel_items > div.focus > a.content_hub_capsule_ctn > img div.carousel_items > div.focus > a.content_hub_capsule_ctn > img | /categories/homepageimage/category/action?cc=us&l=english... | 41.2 KiB | 16.5 KiB |
WWE 2K26 div.focus > a.store_capsule > div.capsule > img | /store_item_assets/steam/apps/3717070/6e590c37107f7306ab9... | 21.1 KiB | 14.6 KiB |
Forefront div.next > a.store_capsule > div.capsule > img | /store_item_assets/steam/apps/2981220/17412ccf3ff0a2f6a50... | 20.7 KiB | 14.3 KiB |
London Games Festival. Presented by Games London and Fireshine Games. div.home_area_spotlight > div.spotlight_img > a > img | /store_item_assets/steam/spotlights/a52d6f82995d620548b7a... | 26.5 KiB | 13.5 KiB |
div.carousel_items > div.focus > a.content_hub_capsule_ctn > img div.carousel_items > div.focus > a.content_hub_capsule_ctn > img | /categories/homepageimage/category/survival?cc=us&l=engli... | 36.6 KiB | 11.9 KiB |
R.E.P.O. div.focus > a.store_capsule > div.capsule > img | /store_item_assets/steam/apps/3241660/1ea445e044a2d5b09cf... | 17.6 KiB | 11.1 KiB |
div.carousel_items > div.focus > a.content_hub_capsule_ctn > img div.carousel_items > div.focus > a.content_hub_capsule_ctn > img | /categories/homepageimage/category/horror?cc=us&l=english... | 34.1 KiB | 10.9 KiB |
RV There Yet? div.focus > a.store_capsule > div.capsule > img | /store_item_assets/steam/apps/3949040/cae24b4ed7f4531be51... | 16.3 KiB | 9.8 KiB |
STEAM div.responsive_header_content > div.responsive_header_logo > a > img | store.akamai.steamstatic.com/public/shared/images/responsive/header_logo.png | 10.6 KiB | 9.2 KiB |
Hot Dogs, Horseshoes & Hand Grenades div.next > a.store_capsule > div.capsule > img | /store_item_assets/steam/apps/450540/header_292x136.jpg?t... | 13.0 KiB | 6.5 KiB |
The Exit 8 VR div.next > a.store_capsule > div.capsule > img | /store_item_assets/steam/apps/3193770/header_292x136.jpg?... | 12.9 KiB | 6.4 KiB |
Optimize LCP by making the LCP image discoverable from the HTML immediately, and avoiding lazy-loading
Performance issues directly impact user engagement and conversion rates.
HTTP/2 and HTTP/3 offer many benefits over HTTP/1.1, such as multiplexing. Learn more about using modern HTTP.
Performance issues directly impact user engagement and conversion rates.
Avoid chaining critical requests by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load.
Performance issues directly impact user engagement and conversion rates.
Requests are blocking the page's initial render, which may delay LCP. Deferring or inlining can move these network requests out of the critical path.
Performance issues directly impact user engagement and conversion rates.
Consider setting font-display to swap or optional to ensure text is consistently visible. swap can be further optimized to mitigate layout shifts with font metric overrides.
Performance issues directly impact user engagement and conversion rates.
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
Redirects introduce additional delays before the page can be loaded. Learn how to avoid page redirects.
Performance issues directly impact user engagement and conversion rates.
| URL | Time Spent |
|---|---|
| steampowered.com/ | 920 ms |
| store.steampowered.com/ | 0.0 ms |
The maximum potential First Input Delay that your users could experience is the duration of the longest task. Learn more about the Maximum Potential First Input Delay metric.
Performance issues directly impact user engagement and conversion rates.
Time to Interactive is the amount of time it takes for the page to become fully interactive. Learn more about the Time to Interactive metric.
Performance issues directly impact user engagement and conversion rates.
Minifying CSS files can reduce network payload sizes. Learn how to minify CSS.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| /public/css/v6/store.css?v=52yuvMRJwtDu&l=english&_cdn=ak... | 26.0 KiB | 4.7 KiB |
| /public/css/v6/home.css?v=xeMXPE4YKqdZ&l=english&_cdn=akamai | 20.5 KiB | 3.8 KiB |
| /public/shared/css/shared_global.css?v=fNjyilod6jgc&l=eng... | 18.7 KiB | 2.7 KiB |
Minifying JavaScript files can reduce payload sizes and script parse time. Learn how to minify JavaScript.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| /public/shared/javascript/shared_global.js?v=MZ63Bj2bxVCi... | 37.8 KiB | 10.1 KiB |
| /public/javascript/home.js?v=p1JLxKgLnZAL&l=english&_cdn=... | 35.3 KiB | 7.6 KiB |
| /public/javascript/main.js?v=2jl8YRZgA0FC&l=english&_cdn=... | 20.1 KiB | 5.2 KiB |
| /public/javascript/dynamicstore.js?v=Ip2--85Texdk&l=engli... | 19.8 KiB | 4.6 KiB |
Reduce unused rules from stylesheets and defer CSS not used for above-the-fold content to decrease bytes consumed by network activity. Learn how to reduce unused CSS.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| /public/css/applications/store/main.css?v=8uAbPKjh_iOP&l=... | 58.3 KiB | 53.4 KiB |
| /public/css/v6/store.css?v=52yuvMRJwtDu&l=english&_cdn=ak... | 25.5 KiB | 21.7 KiB |
| /public/shared/css/shared_global.css?v=fNjyilod6jgc&l=eng... | 18.2 KiB | 17.3 KiB |
| /public/css/v6/home.css?v=xeMXPE4YKqdZ&l=english&_cdn=akamai | 20.0 KiB | 16.3 KiB |
Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. Learn how to reduce unused JavaScript.
Multi-megabyte JavaScript bundles delay every interactive feature on the page.
This is the Lighthouse audit fired when too much JS is shipped relative to what executes. The fix isn't a config flag — it requires bundle analysis (webpack-bundle-analyzer, rollup-plugin-visualizer), splitting routes into chunks, lazy-loading off-screen components, and removing unused dependencies. Fundamentally different from minification: minifying reduces byte count, this reduces what's downloaded at all.
Source: Google web.dev / Lighthouse
| URL | Transfer Size | Est Savings |
|---|---|---|
| /public/javascript/applications/store/main.js?v=CYgBmprFP... | 373.8 KiB | 309.9 KiB |
| /public/javascript/applications/store/libraries~b28b7af69... | 165.1 KiB | 89.6 KiB |
| /public/shared/javascript/shared_global.js?v=MZ63Bj2bxVCi... | 37.8 KiB | 30.8 KiB |
| /public/javascript/home.js?v=p1JLxKgLnZAL&l=english&_cdn=... | 35.3 KiB | 20.4 KiB |
Consider reducing the time spent parsing, compiling, and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to reduce Javascript execution time.
Performance issues directly impact user engagement and conversion rates.
| URL | Total CPU Time | Script Evaluation | Script Parse |
|---|---|---|---|
| store.steampowered.com/ | 1.6 s | 21 ms | 95 ms |
| /public/shared/javascript/jquery-1.8.3.min.js?v=NXam5zydz... | 1.2 s | 776 ms | 24 ms |
| /public/javascript/applications/store/main.js?v=CYgBmprFP... | 830 ms | 597 ms | 220 ms |
| /public/javascript/applications/store/libraries~b28b7af69... | 686 ms | 436 ms | 92 ms |
| Unattributable | 617 ms | 15 ms | 0.0 ms |
| /public/javascript/applications/store/shared_english-json... | 148 ms | 112 ms | 35 ms |
| /public/javascript/applications/store/sales_english-json.... | 80 ms | 36 ms | 43 ms |
Consider reducing the time spent parsing, compiling and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to minimize main-thread work
Performance issues directly impact user engagement and conversion rates.
| Category | Time Spent |
|---|---|
| Script Evaluation | 2.1 s |
| Style & Layout | 1.3 s |
| Other | 882 ms |
| Script Parsing & Compilation | 643 ms |
| Parse HTML & CSS | 299 ms |
| Rendering | 220 ms |
| Garbage Collection | 15 ms |
Many navigations are performed by going back to a previous page, or forwards again. The back/forward cache (bfcache) can speed up these return navigations. Learn more about the bfcache
Performance issues directly impact user engagement and conversion rates.
| Failure reason | Failure type |
|---|---|
| The page has an unload handler in the main frame. | Actionable |
Large network payloads cost users real money and are highly correlated with long load times. Learn how to reduce payload sizes.
Performance issues directly impact user engagement and conversion rates.
Set an explicit width and height on image elements to reduce layout shifts and improve CLS. Learn how to set image dimensions
Performance issues directly impact user engagement and conversion rates.
| URL | |
|---|---|
div.carousel_items > div.focus > a.content_hub_capsule_ctn > img div.carousel_items > div.focus > a.content_hub_capsule_ctn > img | /categories/homepageimage/category/horror?cc=us&l=english... |
div.carousel_items > div.focus > a.content_hub_capsule_ctn > img div.carousel_items > div.focus > a.content_hub_capsule_ctn > img | /categories/homepageimage/category/action?cc=us&l=english... |
div.carousel_items > div.focus > a.content_hub_capsule_ctn > img div.carousel_items > div.focus > a.content_hub_capsule_ctn > img | /categories/homepageimage/category/survival?cc=us&l=engli... |
div.carousel_items > div.focus > a.content_hub_capsule_ctn > img div.carousel_items > div.focus > a.content_hub_capsule_ctn > img | /categories/homepageimage/category/simulation?cc=us&l=eng... |
STEAM div.responsive_header_content > div.responsive_header_logo > a > img | store.akamai.steamstatic.com/public/shared/images/responsive/header_logo.png |
London Games Festival. Presented by Games London and Fireshine Games. div.home_area_spotlight > div.spotlight_img > a > img | /store_item_assets/steam/spotlights/a52d6f82995d620548b7a... |
Football Manager 26 div.home_area_spotlight > div.spotlight_img > a > img | /store_item_assets/steam/spotlights/f961b672ee8c2502d8bf6... |
div.responsive_header > div.responsive_header_content > div#responsive_menu_logo > img div.responsive_header > div.responsive_header_content > div#responsive_menu_logo > img | /public/shared/images/responsive/header_menu_hamburger.png |
div.mainmenu_contents > div.mainmenu_footer > div.mainmenu_footer_logo > img div.mainmenu_contents > div.mainmenu_footer > div.mainmenu_footer_logo > img | /public/shared/images/responsive/footerLogo_valve_new.png |
a.btnv6_white_transparent > div.nonresponsive_hidden > div.responsive_content_dive > img.nonresponsive_hidden a.btnv6_white_transparent > div.nonresponsive_hidden > div.responsive_content_dive > img.nonresponsive_hidden | store.akamai.steamstatic.com/public/images/mobile/ResponsiveChevron.svg |
a.btnv6_white_transparent > div.nonresponsive_hidden > div.responsive_content_dive > img.nonresponsive_hidden a.btnv6_white_transparent > div.nonresponsive_hidden > div.responsive_content_dive > img.nonresponsive_hidden | store.akamai.steamstatic.com/public/images/mobile/ResponsiveChevron.svg |
Travellers Rest div.home_area_spotlight > div.spotlight_img > a > img | store.akamai.steamstatic.com/public/images/blank.gif |
Xbox Game Studios Advertising App div.home_area_spotlight > div.spotlight_img > a > img | store.akamai.steamstatic.com/public/images/blank.gif |
WWE 2K26 Weekend Deal div.home_area_spotlight > div.spotlight_img > a > img | store.akamai.steamstatic.com/public/images/blank.gif |
Hello Kitty Island Adventure div.home_area_spotlight > div.spotlight_img > a > img | store.akamai.steamstatic.com/public/images/blank.gif |
Dragon Ball FRANCHISE SALE div.home_area_spotlight > div.spotlight_img > a > img | store.akamai.steamstatic.com/public/images/blank.gif |
div.carousel_items > div.next > a.content_hub_capsule_ctn > img div.carousel_items > div.next > a.content_hub_capsule_ctn > img | store.akamai.steamstatic.com/public/images/blank.gif |
div.carousel_items > div.next > a.content_hub_capsule_ctn > img div.carousel_items > div.next > a.content_hub_capsule_ctn > img | store.akamai.steamstatic.com/public/images/blank.gif |
div.carousel_items > div.next > a.content_hub_capsule_ctn > img div.carousel_items > div.next > a.content_hub_capsule_ctn > img | store.akamai.steamstatic.com/public/images/blank.gif |
div.carousel_items > div.next > a.content_hub_capsule_ctn > img div.carousel_items > div.next > a.content_hub_capsule_ctn > img | store.akamai.steamstatic.com/public/images/blank.gif |
div.carousel_items > div > a.content_hub_capsule_ctn > img div.carousel_items > div > a.content_hub_capsule_ctn > img | store.akamai.steamstatic.com/public/images/blank.gif |
div.carousel_items > div > a.content_hub_capsule_ctn > img div.carousel_items > div > a.content_hub_capsule_ctn > img | store.akamai.steamstatic.com/public/images/blank.gif |
div.carousel_items > div > a.content_hub_capsule_ctn > img div.carousel_items > div > a.content_hub_capsule_ctn > img | store.akamai.steamstatic.com/public/images/blank.gif |
div.carousel_items > div > a.content_hub_capsule_ctn > img div.carousel_items > div > a.content_hub_capsule_ctn > img | store.akamai.steamstatic.com/public/images/blank.gif |
div.carousel_items > div > a.content_hub_capsule_ctn > img div.carousel_items > div > a.content_hub_capsule_ctn > img | store.akamai.steamstatic.com/public/images/blank.gif |
div.carousel_items > div > a.content_hub_capsule_ctn > img div.carousel_items > div > a.content_hub_capsule_ctn > img | store.akamai.steamstatic.com/public/images/blank.gif |
div.carousel_items > div > a.content_hub_capsule_ctn > img div.carousel_items > div > a.content_hub_capsule_ctn > img | store.akamai.steamstatic.com/public/images/blank.gif |
div.carousel_items > div > a.content_hub_capsule_ctn > img div.carousel_items > div > a.content_hub_capsule_ctn > img | store.akamai.steamstatic.com/public/images/blank.gif |
div.carousel_items > div.prev > a.content_hub_capsule_ctn > img div.carousel_items > div.prev > a.content_hub_capsule_ctn > img | store.akamai.steamstatic.com/public/images/blank.gif |
div.carousel_items > div.prev > a.content_hub_capsule_ctn > img div.carousel_items > div.prev > a.content_hub_capsule_ctn > img | store.akamai.steamstatic.com/public/images/blank.gif |
div.carousel_items > div.prev > a.content_hub_capsule_ctn > img div.carousel_items > div.prev > a.content_hub_capsule_ctn > img | store.akamai.steamstatic.com/public/images/blank.gif |
div.carousel_items > div.prev > a.content_hub_capsule_ctn > img div.carousel_items > div.prev > a.content_hub_capsule_ctn > img | store.akamai.steamstatic.com/public/images/blank.gif |
MOUSE: P.I. For Hire div.tab_content_items > a.tab_item > div.tab_item_cap > img.tab_item_cap_img | store.akamai.steamstatic.com/public/shared/images/trans.gif |
OPUS: Prism Peak div.tab_content_items > a.tab_item > div.tab_item_cap > img.tab_item_cap_img | store.akamai.steamstatic.com/public/shared/images/trans.gif |
Last Flag div.tab_content_items > a.tab_item > div.tab_item_cap > img.tab_item_cap_img | store.akamai.steamstatic.com/public/shared/images/trans.gif |
REPLACED div.tab_content_items > a.tab_item > div.tab_item_cap > img.tab_item_cap_img | store.akamai.steamstatic.com/public/shared/images/trans.gif |
Moses & Plato - Last Train to Clawville div.tab_content_items > a.tab_item > div.tab_item_cap > img.tab_item_cap_img | store.akamai.steamstatic.com/public/shared/images/trans.gif |
Cubetory div.tab_content_items > a.tab_item > div.tab_item_cap > img.tab_item_cap_img | store.akamai.steamstatic.com/public/shared/images/trans.gif |
Full Metal Sergeant 2 div.tab_content_items > a.tab_item > div.tab_item_cap > img.tab_item_cap_img | store.akamai.steamstatic.com/public/shared/images/trans.gif |
Warhammer 40,000: Fire Warrior (Classic) div.tab_content_items > a.tab_item > div.tab_item_cap > img.tab_item_cap_img | store.akamai.steamstatic.com/public/shared/images/trans.gif |
Final Liberation: Warhammer Epic 40,000 (Classic) div.tab_content_items > a.tab_item > div.tab_item_cap > img.tab_item_cap_img | store.akamai.steamstatic.com/public/shared/images/trans.gif |
Seeds of Calamity div.tab_content_items > a.tab_item > div.tab_item_cap > img.tab_item_cap_img | store.akamai.steamstatic.com/public/shared/images/trans.gif |
More information about the performance of your application. These numbers don't directly affect the Performance score.
These checks highlight opportunities to improve the accessibility of your web app. Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so manual testing is also encouraged.
Some ARIA parent roles must contain specific child roles to perform their intended accessibility functions. Learn more about roles and required children elements.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
World of Warships
Free To Play
Warhammer 40,000: Space Marine 2
-67%
S$69.90
S$… div.home_cluster_ctn > div.home_page_content > div#home_maincap_v7 > div.carousel_items |
WEEKEND DEAL
Offer ends 20 Apr @ 10:00am.
Up to -95%
FREE WEEKEND
Play for free… div#module_special_offers > div.home_page_content > div#spotlight_carousel > div.carousel_items |
HORROR
ACTION
SURVIVAL
SIMULATION
CASUAL
ROLE-PLAYING
STORY-RICH
ANIME
RACING
V… div.home_page_content > div.content_hub_carousel > div.carousel_container > div.carousel_items |
NEW RELEASES
SPECIALS
FREE GAMES
BY USER TAGS div.home_page_body_ctn > div.home_ctn > div.big_buttons > div.button_container |
LIVE
-20%
S$12.00
S$9.60
LIVE
-60%
S$17.00
S$6.80
S$9.50
S$8.50
LIVE
S$12.00
LI… div.home_ctn > div.home_page_content > div.carousel_container > div.carousel_items |
S$26.00
MOUSE: P.I. For Hire
Action, FPS, Cartoony, Boomer Shooter
-10%
S$24.75… div.home_leftcol > div#home_tabs_content > div#tab_newreleases_content > div.tab_content_items |
S$7.50
S$20.00
S$18.50
S$32.99 div.home_ctn > div.home_page_content > div.carousel_container > div.carousel_items |
These are opportunities to improve the usage of ARIA in your application which may enhance the experience for users of assistive technology, like a screen reader.
Low-contrast text is difficult or impossible for many users to read. Learn how to provide sufficient color contrast.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
-67% a.store_main_capsule > div.info > div.discount_block > div.discount_pct |
S$69.90 div.info > div.discount_block > div.discount_prices > div.discount_original_price |
HORROR div.focus > a.content_hub_capsule_ctn > div.label_ctn > span.label |
ACTION div.focus > a.content_hub_capsule_ctn > div.label_ctn > span.label |
-20% a.store_capsule > div > div.discount_block > div.discount_pct |
-60% a.store_capsule > div > div.discount_block > div.discount_pct |
-10% div.tab_content_items > a.tab_item > div.discount_block > div.discount_pct |
-20% div.tab_content_items > a.tab_item > div.discount_block > div.discount_pct |
-10% div.tab_content_items > a.tab_item > div.discount_block > div.discount_pct |
-30% div.tab_content_items > a.tab_item > div.discount_block > div.discount_pct |
-15% div.tab_content_items > a.tab_item > div.discount_block > div.discount_pct |
-20% div.tab_content_items > a.tab_item > div.discount_block > div.discount_pct |
-20% div.tab_content_items > a.tab_item > div.discount_block > div.discount_pct |
-40% div.tab_content_items > a.tab_item > div.discount_block > div.discount_pct |
Get Mobile Apps footer._1pYnEk5gbmwcthm_TJ9jVl > div.uh0Q7gKQw3ZgTwvd5mQiZ > div.ja5o2GZTopxfGJArsZgFh > a._2rbqjlRz2ShvIiYodebfc2 |
These are opportunities to improve the legibility of your content.
Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.mainmenu_contents > div.mainmenu_footer > div.mainmenu_footer_logo > img div.mainmenu_contents > div.mainmenu_footer > div.mainmenu_footer_logo > img |
div.responsive_header > div.responsive_header_content > div#responsive_menu_logo > img div.responsive_header > div.responsive_header_content > div#responsive_menu_logo > img |
Link text (and alternate text for images, when used as links) that is discernible, unique, and focusable improves the navigation experience for screen reader users. Learn how to make links accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
footer._1pYnEk5gbmwcthm_TJ9jVl > div.uh0Q7gKQw3ZgTwvd5mQiZ > div._1SxQuUnaM-MXeF5UfssWve > a.FYJ4NYxpWeIha0N1-jUcm footer._1pYnEk5gbmwcthm_TJ9jVl > div.uh0Q7gKQw3ZgTwvd5mQiZ > div._1SxQuUnaM-MXeF5UfssWve > a.FYJ4NYxpWeIha0N1-jUcm |
footer._1pYnEk5gbmwcthm_TJ9jVl > div.uh0Q7gKQw3ZgTwvd5mQiZ > div._1SxQuUnaM-MXeF5UfssWve > a.FYJ4NYxpWeIha0N1-jUcm footer._1pYnEk5gbmwcthm_TJ9jVl > div.uh0Q7gKQw3ZgTwvd5mQiZ > div._1SxQuUnaM-MXeF5UfssWve > a.FYJ4NYxpWeIha0N1-jUcm |
footer._1pYnEk5gbmwcthm_TJ9jVl > div.uh0Q7gKQw3ZgTwvd5mQiZ > div._1SxQuUnaM-MXeF5UfssWve > a.FYJ4NYxpWeIha0N1-jUcm footer._1pYnEk5gbmwcthm_TJ9jVl > div.uh0Q7gKQw3ZgTwvd5mQiZ > div._1SxQuUnaM-MXeF5UfssWve > a.FYJ4NYxpWeIha0N1-jUcm |
footer._1pYnEk5gbmwcthm_TJ9jVl > div.uh0Q7gKQw3ZgTwvd5mQiZ > div._1SxQuUnaM-MXeF5UfssWve > a.FYJ4NYxpWeIha0N1-jUcm footer._1pYnEk5gbmwcthm_TJ9jVl > div.uh0Q7gKQw3ZgTwvd5mQiZ > div._1SxQuUnaM-MXeF5UfssWve > a.FYJ4NYxpWeIha0N1-jUcm |
footer._1pYnEk5gbmwcthm_TJ9jVl > div.uh0Q7gKQw3ZgTwvd5mQiZ > div._1SxQuUnaM-MXeF5UfssWve > a.FYJ4NYxpWeIha0N1-jUcm footer._1pYnEk5gbmwcthm_TJ9jVl > div.uh0Q7gKQw3ZgTwvd5mQiZ > div._1SxQuUnaM-MXeF5UfssWve > a.FYJ4NYxpWeIha0N1-jUcm |
footer._1pYnEk5gbmwcthm_TJ9jVl > div.uh0Q7gKQw3ZgTwvd5mQiZ > div._1SxQuUnaM-MXeF5UfssWve > a.FYJ4NYxpWeIha0N1-jUcm footer._1pYnEk5gbmwcthm_TJ9jVl > div.uh0Q7gKQw3ZgTwvd5mQiZ > div._1SxQuUnaM-MXeF5UfssWve > a.FYJ4NYxpWeIha0N1-jUcm |
These are opportunities to improve the semantics of the controls in your application. This may enhance the experience for users of assistive technology, like a screen reader.
Visible text labels that do not match the accessible name can result in a confusing experience for screen reader users. Learn more about accessible names.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
-67%
S$69.90
S$23.06 div.carousel_items > a.store_main_capsule > div.info > div.discount_block |
-40%
S$80.00
S$48.00 div.home_area_spotlight > div.spotlight_content > div.spotlight_body > div.discount_block |
-20%
S$12.00
S$9.60 div.focus > a.store_capsule > div > div.discount_block |
-60%
S$17.00
S$6.80 div.focus > a.store_capsule > div > div.discount_block |
-10%
S$24.75
S$22.27 div#tab_newreleases_content > div.tab_content_items > a.tab_item > div.discount_block |
-20%
S$12.99
S$10.39 div#tab_newreleases_content > div.tab_content_items > a.tab_item > div.discount_block |
-10%
S$19.99
S$17.99 div#tab_newreleases_content > div.tab_content_items > a.tab_item > div.discount_block |
-30%
S$14.50
S$10.15 div#tab_newreleases_content > div.tab_content_items > a.tab_item > div.discount_block |
-15%
S$11.25
S$9.56 div#tab_newreleases_content > div.tab_content_items > a.tab_item > div.discount_block |
-20%
S$11.99
S$9.59 div#tab_newreleases_content > div.tab_content_items > a.tab_item > div.discount_block |
-20%
S$6.99
S$5.59 div#tab_newreleases_content > div.tab_content_items > a.tab_item > div.discount_block |
-40%
S$14.50
S$8.70 div#tab_newreleases_content > div.tab_content_items > a.tab_item > div.discount_block |
Image natural dimensions should be proportional to the display size and the pixel ratio to maximize image clarity. Learn how to provide responsive images.
Performance issues directly impact user engagement and conversion rates.
| URL | Displayed size | Actual size | Expected size | |
|---|---|---|---|---|
London Games Festival. Presented by Games London and Fireshine Games. div.home_area_spotlight > div.spotlight_img > a > img | /store_item_assets/steam/spotlights/a52d6f82995d620548b7a... | 306 x 260 | 306 x 260 | 459 x 390 |
Football Manager 26 div.home_area_spotlight > div.spotlight_img > a > img | /store_item_assets/steam/spotlights/f961b672ee8c2502d8bf6... | 306 x 260 | 306 x 260 | 459 x 390 |
Deprecated APIs will eventually be removed from the browser. Learn more about deprecated APIs.
Performance issues directly impact user engagement and conversion rates.
| Deprecation / Warning | Source |
|---|---|
| Unload event listeners are deprecated and will be removed. | /public/shared/javascript/jquery-1.8.3.min.js?v=NXam5zydz... line 1, col 34394 |
These checks ensure that your page is following basic search engine optimization advice. There are many additional factors Lighthouse does not score here that may affect your search ranking, including performance on Core Web Vitals. Learn more about Google Search Essentials.
Descriptive link text helps search engines understand your content. Learn how to make links more accessible.
Performance issues directly impact user engagement and conversion rates.
Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.mainmenu_contents > div.mainmenu_footer > div.mainmenu_footer_logo > img div.mainmenu_contents > div.mainmenu_footer > div.mainmenu_footer_logo > img |
div.responsive_header > div.responsive_header_content > div#responsive_menu_logo > img div.responsive_header > div.responsive_header_content > div#responsive_menu_logo > img |
Format your HTML in a way that enables crawlers to better understand your app’s content.
Industry-standard audits powered by Google Lighthouse. — Desktop
Key metrics that affect user experience. — Desktop
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
1.40 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
2.97 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
134 ms
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.106
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
1.74 s
Time to Interactive Time to Interactive — how long until the page is fully interactive and responds to user input. Under 3.8s is good.
3.34 s
Audit breakdown by category with detailed findings.
Remove large, duplicate JavaScript modules from bundles to reduce unnecessary bytes consumed by network activity.
Performance issues directly impact user engagement and conversion rates.
Polyfills and transforms enable older browsers to use new JavaScript features. However, many aren't necessary for modern browsers. Consider modifying your JavaScript build process to not transpile Baseline features, unless you know you must support older browsers. Learn why most sites can deploy ES6+ code without transpiling
Shipping ES5 transpiled code to modern browsers wastes bytes — every user with an evergreen browser pays for compatibility you don't need.
Most users today run browsers that natively support ES6+, async/await, optional chaining, and the rest of modern JavaScript. Transpiling to ES5 'just in case' adds 20-40% to your bundle for no benefit. Configure your build to target a modern browserslist, or ship a differential bundle pair (modern + legacy) with the module/nomodule pattern.
Source: Google web.dev / Lighthouse
3rd party code can significantly impact load performance. Reduce and defer loading of 3rd party code to prioritize your page's content.
Performance issues directly impact user engagement and conversion rates.
A long cache lifetime can speed up repeat visits to your page. Learn more about caching.
Performance issues directly impact user engagement and conversion rates.
Layout shifts occur when elements move absent any user interaction. Investigate the causes of layout shifts, such as elements being added, removed, or their fonts changing as the page loads.
Performance issues directly impact user engagement and conversion rates.
Your first network request is the most important. Reduce its latency by avoiding redirects, ensuring a fast server response, and enabling text compression.
Performance issues directly impact user engagement and conversion rates.
A forced reflow occurs when JavaScript queries geometric properties (such as offsetWidth) after styles have been invalidated by a change to the DOM state. This can result in poor performance. Learn more about forced reflows and possible mitigations.
Performance issues directly impact user engagement and conversion rates.
Optimize LCP by making the LCP image discoverable from the HTML immediately, and avoiding lazy-loading
Performance issues directly impact user engagement and conversion rates.
HTTP/2 and HTTP/3 offer many benefits over HTTP/1.1, such as multiplexing. Learn more about using modern HTTP.
Performance issues directly impact user engagement and conversion rates.
Avoid chaining critical requests by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load.
Performance issues directly impact user engagement and conversion rates.
Requests are blocking the page's initial render, which may delay LCP. Deferring or inlining can move these network requests out of the critical path.
Performance issues directly impact user engagement and conversion rates.
Consider setting font-display to swap or optional to ensure text is consistently visible. swap can be further optimized to mitigate layout shifts with font metric overrides.
Performance issues directly impact user engagement and conversion rates.
Reducing the download time of images can improve the perceived load time of the page and LCP. Learn more about optimizing image size
Performance issues directly impact user engagement and conversion rates.
| URL | Resource Size | Est Savings | |
|---|---|---|---|
Football Manager 26 div.home_area_spotlight > div.spotlight_img > a > img | /store_item_assets/steam/spotlights/f961b672ee8c2502d8bf6... | 109.2 KiB | 96.2 KiB |
Featured & Recommended
MOUSE: P.I. For Hire
Now Available
Top Seller
S$26.00
Wa… div#responsive_page_template_content > div.home_page_col_wrapper > div.home_page_body_ctn > div.home_cluster_ctn | store.akamai.steamstatic.com/public/images/v6/home/cluster_bg.png?v=1 | 131.4 KiB | 53.5 KiB |
Roots of Pacha div.spotlight_col > a.store_capsule > div.capsule > img | /store_item_assets/steam/apps/1245560/fb243da1a884f5ae805... | 53.7 KiB | 46.5 KiB |
div.carousel_items > div.focus > a.content_hub_capsule_ctn > img div.carousel_items > div.focus > a.content_hub_capsule_ctn > img | /categories/homepageimage/category/simulation?cc=us&l=eng... | 44.8 KiB | 36.8 KiB |
div.carousel_items > div.focus > a.content_hub_capsule_ctn > img div.carousel_items > div.focus > a.content_hub_capsule_ctn > img | /categories/homepageimage/category/action?cc=us&l=english... | 41.2 KiB | 33.2 KiB |
The Seven Deadly Sins: Origin div.focus > a.store_capsule > div.capsule > img | /store_item_assets/steam/apps/3679080/86b4734355e3e43b832... | 34.4 KiB | 30.4 KiB |
Cat Quest: The Fur-tastic Trilogy div.spotlight_col > a.store_capsule > div.capsule > img | /store_item_assets/steam/bundles/41962/oiocrdwv3nie3a6m/h... | 35.6 KiB | 29.1 KiB |
div.carousel_items > div.focus > a.content_hub_capsule_ctn > img div.carousel_items > div.focus > a.content_hub_capsule_ctn > img | /categories/homepageimage/category/survival?cc=us&l=engli... | 36.6 KiB | 28.6 KiB |
Slay the Spire 2 div.focus > a.store_capsule > div.capsule > img | /store_item_assets/steam/apps/2868840/b0958d387dc366211e0... | 32.0 KiB | 28.0 KiB |
RACCOIN: Coin Pusher Roguelike div.focus > a.store_capsule > div.capsule > img | /store_item_assets/steam/apps/3784030/441ff79feb6f3e92a5a... | 31.8 KiB | 27.9 KiB |
div.carousel_items > div.focus > a.content_hub_capsule_ctn > img div.carousel_items > div.focus > a.content_hub_capsule_ctn > img | /categories/homepageimage/category/horror?cc=us&l=english... | 34.1 KiB | 26.5 KiB |
KuloNiku: Bowl Up! div.focus > a.store_capsule > div.capsule > img | /store_item_assets/steam/apps/3357960/11e2af7df9465e47962... | 29.7 KiB | 25.8 KiB |
div#module_top_new_releases > div.home_page_content > div.top_new_releases_banner_ctn > div.top_new_releases_background div#module_top_new_releases > div.home_page_content > div.top_new_releases_banner_ctn > div.top_new_releases_background | store.steampowered.com/stats/monthlytopreleaseimages?l=english&cc=SG | 179.4 KiB | 23.1 KiB |
Dome Keeper div.focus > a.store_capsule > div.capsule > img | /store_item_assets/steam/apps/1637320/39810977acc72c02958... | 24.0 KiB | 20.0 KiB |
WRATH: Aeon of Ruin VR - Brutal Edition div.next > a.store_capsule > div.capsule > img | /store_item_assets/steam/apps/3430260/8330236b32df5e24bea... | 23.3 KiB | 19.4 KiB |
WWE 2K26 div.focus > a.store_capsule > div.capsule > img | /store_item_assets/steam/apps/3717070/6e590c37107f7306ab9... | 21.1 KiB | 17.1 KiB |
div.carousel_items > a.store_main_capsule > div.capsule > div.screenshot div.carousel_items > a.store_main_capsule > div.capsule > div.screenshot | /store_item_assets/steam/apps/2416450/2b9d88085cefee83819... | 49.2 KiB | 16.2 KiB |
div.carousel_items > a.store_main_capsule > div.capsule > div.screenshot div.carousel_items > a.store_main_capsule > div.capsule > div.screenshot | /store_item_assets/steam/apps/2416450/a0c2188ff0e0b874783... | 48.6 KiB | 15.5 KiB |
R.E.P.O. div.focus > a.store_capsule > div.capsule > img | /store_item_assets/steam/apps/3241660/1ea445e044a2d5b09cf... | 17.6 KiB | 13.6 KiB |
London Games Festival. Presented by Games London and Fireshine Games. div.home_area_spotlight > div.spotlight_img > a > img | /store_item_assets/steam/spotlights/a52d6f82995d620548b7a... | 26.5 KiB | 13.5 KiB |
div.carousel_items > a.store_main_capsule > div.capsule > div.screenshot div.carousel_items > a.store_main_capsule > div.capsule > div.screenshot | /store_item_assets/steam/apps/2416450/2edeb5f746f960b513a... | 46.1 KiB | 13.1 KiB |
div#home_maincap_v7 > div.carousel_items > a.store_main_capsule > div.capsule div#home_maincap_v7 > div.carousel_items > a.store_main_capsule > div.capsule | /store_item_assets/steam/apps/2416450/a495751f3ff5c722860... | 48.1 KiB | 12.7 KiB |
RV There Yet? div.focus > a.store_capsule > div.capsule > img | /store_item_assets/steam/apps/3949040/cae24b4ed7f4531be51... | 16.3 KiB | 12.3 KiB |
Half-Life: Alyx div.next > a.store_capsule > div.capsule > img | /store_item_assets/steam/apps/546560/header_292x136.jpg?t... | 13.4 KiB | 9.5 KiB |
Hot Dogs, Horseshoes & Hand Grenades div.next > a.store_capsule > div.capsule > img | /store_item_assets/steam/apps/450540/header_292x136.jpg?t... | 13.0 KiB | 9.0 KiB |
The Exit 8 VR div.next > a.store_capsule > div.capsule > img | /store_item_assets/steam/apps/3193770/header_292x136.jpg?... | 12.9 KiB | 8.9 KiB |
div.carousel_items > a.store_main_capsule > div.capsule > div.screenshot div.carousel_items > a.store_main_capsule > div.capsule > div.screenshot | /store_item_assets/steam/apps/2416450/1421d042bc447e6cc39... | 41.0 KiB | 8.0 KiB |
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
Redirects introduce additional delays before the page can be loaded. Learn how to avoid page redirects.
Performance issues directly impact user engagement and conversion rates.
| URL | Time Spent |
|---|---|
| steampowered.com/ | 368 ms |
| store.steampowered.com/ | 0.0 ms |
These are the largest layout shifts observed on the page. Each table item represents a single layout shift, and shows the element that shifted the most. Below each item are possible root causes that led to the layout shift. Some of these layout shifts may not be included in the CLS metric value due to windowing. Learn how to improve CLS
Performance issues directly impact user engagement and conversion rates.
| Element | Layout shift score |
|---|---|
Sign in to view personalized recommendations
Sign In
Or sign up and join Ste… div#responsive_page_template_content > div.home_page_col_wrapper > div.home_page_body_ctn > div.home_ctn | 0.105 |
Advanced Search div._16jZ3HEbtaJTl80pQINN2Y > div._7FiqKP7fZJGltkwRxPG6s > div._1u2HkRz_FnAfR5OjfjexgF > div.WFyPwmwIjPaI784fImRbi | 0.001 |
COMMUNITY div#global_header > div.content > div.supernav_container > a.menuitem | 0.000 |
The maximum potential First Input Delay that your users could experience is the duration of the longest task. Learn more about the Maximum Potential First Input Delay metric.
Performance issues directly impact user engagement and conversion rates.
Time to Interactive is the amount of time it takes for the page to become fully interactive. Learn more about the Time to Interactive metric.
Performance issues directly impact user engagement and conversion rates.
Reduce unused rules from stylesheets and defer CSS not used for above-the-fold content to decrease bytes consumed by network activity. Learn how to reduce unused CSS.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| /public/css/applications/store/main.css?v=8uAbPKjh_iOP&l=... | 58.3 KiB | 53.8 KiB |
| /public/css/v6/store.css?v=52yuvMRJwtDu&l=english&_cdn=ak... | 25.5 KiB | 22.8 KiB |
| /public/css/v6/home.css?v=xeMXPE4YKqdZ&l=english&_cdn=akamai | 20.0 KiB | 16.9 KiB |
| /public/shared/css/shared_global.css?v=fNjyilod6jgc&l=eng... | 18.2 KiB | 16.6 KiB |
Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. Learn how to reduce unused JavaScript.
Multi-megabyte JavaScript bundles delay every interactive feature on the page.
This is the Lighthouse audit fired when too much JS is shipped relative to what executes. The fix isn't a config flag — it requires bundle analysis (webpack-bundle-analyzer, rollup-plugin-visualizer), splitting routes into chunks, lazy-loading off-screen components, and removing unused dependencies. Fundamentally different from minification: minifying reduces byte count, this reduces what's downloaded at all.
Source: Google web.dev / Lighthouse
| URL | Transfer Size | Est Savings |
|---|---|---|
| /public/javascript/applications/store/main.js?v=CYgBmprFP... | 373.8 KiB | 310.0 KiB |
| /public/javascript/applications/store/libraries~b28b7af69... | 165.1 KiB | 89.6 KiB |
| /public/shared/javascript/shared_global.js?v=MZ63Bj2bxVCi... | 37.8 KiB | 30.3 KiB |
| /public/javascript/home.js?v=p1JLxKgLnZAL&l=english&_cdn=... | 35.3 KiB | 20.4 KiB |
Many navigations are performed by going back to a previous page, or forwards again. The back/forward cache (bfcache) can speed up these return navigations. Learn more about the bfcache
Performance issues directly impact user engagement and conversion rates.
| Failure reason | Failure type |
|---|---|
| The page has an unload handler in the main frame. | Actionable |
Minifying CSS files can reduce network payload sizes. Learn how to minify CSS.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| /public/css/v6/store.css?v=52yuvMRJwtDu&l=english&_cdn=ak... | 26.0 KiB | 4.7 KiB |
| /public/css/v6/home.css?v=xeMXPE4YKqdZ&l=english&_cdn=akamai | 20.5 KiB | 3.8 KiB |
| /public/shared/css/shared_global.css?v=fNjyilod6jgc&l=eng... | 18.7 KiB | 2.7 KiB |
Minifying JavaScript files can reduce payload sizes and script parse time. Learn how to minify JavaScript.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| /public/shared/javascript/shared_global.js?v=MZ63Bj2bxVCi... | 37.8 KiB | 10.1 KiB |
| /public/javascript/home.js?v=p1JLxKgLnZAL&l=english&_cdn=... | 35.3 KiB | 7.6 KiB |
| /public/javascript/main.js?v=2jl8YRZgA0FC&l=english&_cdn=... | 20.1 KiB | 5.2 KiB |
| /public/javascript/dynamicstore.js?v=Ip2--85Texdk&l=engli... | 19.8 KiB | 4.6 KiB |
Large network payloads cost users real money and are highly correlated with long load times. Learn how to reduce payload sizes.
Performance issues directly impact user engagement and conversion rates.
Set an explicit width and height on image elements to reduce layout shifts and improve CLS. Learn how to set image dimensions
Performance issues directly impact user engagement and conversion rates.
| URL | |
|---|---|
div.carousel_items > div.focus > a.content_hub_capsule_ctn > img div.carousel_items > div.focus > a.content_hub_capsule_ctn > img | /categories/homepageimage/category/horror?cc=us&l=english... |
div.carousel_items > div.focus > a.content_hub_capsule_ctn > img div.carousel_items > div.focus > a.content_hub_capsule_ctn > img | /categories/homepageimage/category/action?cc=us&l=english... |
div.carousel_items > div.focus > a.content_hub_capsule_ctn > img div.carousel_items > div.focus > a.content_hub_capsule_ctn > img | /categories/homepageimage/category/survival?cc=us&l=engli... |
div.carousel_items > div.focus > a.content_hub_capsule_ctn > img div.carousel_items > div.focus > a.content_hub_capsule_ctn > img | /categories/homepageimage/category/simulation?cc=us&l=eng... |
London Games Festival. Presented by Games London and Fireshine Games. div.home_area_spotlight > div.spotlight_img > a > img | /store_item_assets/steam/spotlights/a52d6f82995d620548b7a... |
Football Manager 26 div.home_area_spotlight > div.spotlight_img > a > img | /store_item_assets/steam/spotlights/f961b672ee8c2502d8bf6... |
Travellers Rest div.home_area_spotlight > div.spotlight_img > a > img | store.akamai.steamstatic.com/public/images/blank.gif |
Xbox Game Studios Advertising App div.home_area_spotlight > div.spotlight_img > a > img | store.akamai.steamstatic.com/public/images/blank.gif |
WWE 2K26 Weekend Deal div.home_area_spotlight > div.spotlight_img > a > img | store.akamai.steamstatic.com/public/images/blank.gif |
Hello Kitty Island Adventure div.home_area_spotlight > div.spotlight_img > a > img | store.akamai.steamstatic.com/public/images/blank.gif |
Dragon Ball FRANCHISE SALE div.home_area_spotlight > div.spotlight_img > a > img | store.akamai.steamstatic.com/public/images/blank.gif |
div.carousel_items > div.next > a.content_hub_capsule_ctn > img div.carousel_items > div.next > a.content_hub_capsule_ctn > img | store.akamai.steamstatic.com/public/images/blank.gif |
div.carousel_items > div.next > a.content_hub_capsule_ctn > img div.carousel_items > div.next > a.content_hub_capsule_ctn > img | store.akamai.steamstatic.com/public/images/blank.gif |
div.carousel_items > div.next > a.content_hub_capsule_ctn > img div.carousel_items > div.next > a.content_hub_capsule_ctn > img | store.akamai.steamstatic.com/public/images/blank.gif |
div.carousel_items > div.next > a.content_hub_capsule_ctn > img div.carousel_items > div.next > a.content_hub_capsule_ctn > img | store.akamai.steamstatic.com/public/images/blank.gif |
div.carousel_items > div > a.content_hub_capsule_ctn > img div.carousel_items > div > a.content_hub_capsule_ctn > img | store.akamai.steamstatic.com/public/images/blank.gif |
div.carousel_items > div > a.content_hub_capsule_ctn > img div.carousel_items > div > a.content_hub_capsule_ctn > img | store.akamai.steamstatic.com/public/images/blank.gif |
div.carousel_items > div > a.content_hub_capsule_ctn > img div.carousel_items > div > a.content_hub_capsule_ctn > img | store.akamai.steamstatic.com/public/images/blank.gif |
div.carousel_items > div > a.content_hub_capsule_ctn > img div.carousel_items > div > a.content_hub_capsule_ctn > img | store.akamai.steamstatic.com/public/images/blank.gif |
div.carousel_items > div > a.content_hub_capsule_ctn > img div.carousel_items > div > a.content_hub_capsule_ctn > img | store.akamai.steamstatic.com/public/images/blank.gif |
div.carousel_items > div > a.content_hub_capsule_ctn > img div.carousel_items > div > a.content_hub_capsule_ctn > img | store.akamai.steamstatic.com/public/images/blank.gif |
div.carousel_items > div > a.content_hub_capsule_ctn > img div.carousel_items > div > a.content_hub_capsule_ctn > img | store.akamai.steamstatic.com/public/images/blank.gif |
div.carousel_items > div > a.content_hub_capsule_ctn > img div.carousel_items > div > a.content_hub_capsule_ctn > img | store.akamai.steamstatic.com/public/images/blank.gif |
div.carousel_items > div.prev > a.content_hub_capsule_ctn > img div.carousel_items > div.prev > a.content_hub_capsule_ctn > img | store.akamai.steamstatic.com/public/images/blank.gif |
div.carousel_items > div.prev > a.content_hub_capsule_ctn > img div.carousel_items > div.prev > a.content_hub_capsule_ctn > img | store.akamai.steamstatic.com/public/images/blank.gif |
div.carousel_items > div.prev > a.content_hub_capsule_ctn > img div.carousel_items > div.prev > a.content_hub_capsule_ctn > img | store.akamai.steamstatic.com/public/images/blank.gif |
div.carousel_items > div.prev > a.content_hub_capsule_ctn > img div.carousel_items > div.prev > a.content_hub_capsule_ctn > img | store.akamai.steamstatic.com/public/images/blank.gif |
MOUSE: P.I. For Hire div.tab_content_items > a.tab_item > div.tab_item_cap > img.tab_item_cap_img | store.akamai.steamstatic.com/public/shared/images/trans.gif |
OPUS: Prism Peak div.tab_content_items > a.tab_item > div.tab_item_cap > img.tab_item_cap_img | store.akamai.steamstatic.com/public/shared/images/trans.gif |
Last Flag div.tab_content_items > a.tab_item > div.tab_item_cap > img.tab_item_cap_img | store.akamai.steamstatic.com/public/shared/images/trans.gif |
REPLACED div.tab_content_items > a.tab_item > div.tab_item_cap > img.tab_item_cap_img | store.akamai.steamstatic.com/public/shared/images/trans.gif |
Moses & Plato - Last Train to Clawville div.tab_content_items > a.tab_item > div.tab_item_cap > img.tab_item_cap_img | store.akamai.steamstatic.com/public/shared/images/trans.gif |
Cubetory div.tab_content_items > a.tab_item > div.tab_item_cap > img.tab_item_cap_img | store.akamai.steamstatic.com/public/shared/images/trans.gif |
Full Metal Sergeant 2 div.tab_content_items > a.tab_item > div.tab_item_cap > img.tab_item_cap_img | store.akamai.steamstatic.com/public/shared/images/trans.gif |
Warhammer 40,000: Fire Warrior (Classic) div.tab_content_items > a.tab_item > div.tab_item_cap > img.tab_item_cap_img | store.akamai.steamstatic.com/public/shared/images/trans.gif |
Final Liberation: Warhammer Epic 40,000 (Classic) div.tab_content_items > a.tab_item > div.tab_item_cap > img.tab_item_cap_img | store.akamai.steamstatic.com/public/shared/images/trans.gif |
Seeds of Calamity div.tab_content_items > a.tab_item > div.tab_item_cap > img.tab_item_cap_img | store.akamai.steamstatic.com/public/shared/images/trans.gif |
More information about the performance of your application. These numbers don't directly affect the Performance score.
These checks highlight opportunities to improve the accessibility of your web app. Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so manual testing is also encouraged.
Some ARIA parent roles must contain specific child roles to perform their intended accessibility functions. Learn more about roles and required children elements.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
MOUSE: P.I. For Hire
Now Available
Top Seller
S$26.00
Warframe
Just Updated
Top… div.home_cluster_ctn > div.home_page_content > div#home_maincap_v7 > div.carousel_items |
WEEKEND DEAL
Offer ends 20 Apr @ 10:00am.
Up to -95%
FREE WEEKEND
Play for free… div#module_special_offers > div.home_page_content > div#spotlight_carousel > div.carousel_items |
HORROR
ACTION
SURVIVAL
SIMULATION
CASUAL
ROLE-PLAYING
STORY-RICH
ANIME
RACING
V… div.home_page_content > div.content_hub_carousel > div.carousel_container > div.carousel_items |
NEW RELEASES
SPECIALS
FREE GAMES
BY USER TAGS div.home_page_body_ctn > div.home_ctn > div.big_buttons > div.button_container |
LIVE
-20%
S$12.00
S$9.60
LIVE
-60%
S$17.00
S$6.80
S$9.50
S$8.50
-85%
S$64.90
S$… div.home_ctn > div.home_page_content > div.carousel_container > div.carousel_items |
16 Apr, 2026
S$26.00
MOUSE: P.I. For Hire
Action, FPS, Cartoony, Boomer Shooter… div.home_leftcol > div#home_tabs_content > div#tab_newreleases_content > div.tab_content_items |
S$20.00
S$49.00
S$18.50
S$7.50 div.home_ctn > div.home_page_content > div.carousel_container > div.carousel_items |
These are opportunities to improve the usage of ARIA in your application which may enhance the experience for users of assistive technology, like a screen reader.
Low-contrast text is difficult or impossible for many users to read. Learn how to provide sufficient color contrast.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
S$80.00 div.spotlight_body > div.discount_block > div.discount_prices > div.discount_original_price |
HORROR div.focus > a.content_hub_capsule_ctn > div.label_ctn > span.label |
ACTION div.focus > a.content_hub_capsule_ctn > div.label_ctn > span.label |
SURVIVAL div.focus > a.content_hub_capsule_ctn > div.label_ctn > span.label |
SIMULATION div.focus > a.content_hub_capsule_ctn > div.label_ctn > span.label |
-20% a.store_capsule > div > div.discount_block > div.discount_pct |
-60% a.store_capsule > div > div.discount_block > div.discount_pct |
-10% div.tab_content_items > a.tab_item > div.discount_block > div.discount_pct |
-20% div.tab_content_items > a.tab_item > div.discount_block > div.discount_pct |
-10% div.tab_content_items > a.tab_item > div.discount_block > div.discount_pct |
-30% div.tab_content_items > a.tab_item > div.discount_block > div.discount_pct |
-15% div.tab_content_items > a.tab_item > div.discount_block > div.discount_pct |
-20% div.tab_content_items > a.tab_item > div.discount_block > div.discount_pct |
-20% div.tab_content_items > a.tab_item > div.discount_block > div.discount_pct |
-40% div.tab_content_items > a.tab_item > div.discount_block > div.discount_pct |
Low-contrast text is difficult or impossible for many users to read. Link text that is discernible improves the experience for users with low vision. Learn how to make links distinguishable.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
sign up div.home_page_content > div.home_page_sign_in_ctn > div.signin_buttons_ctn > a |
These are opportunities to improve the legibility of your content.
Link text (and alternate text for images, when used as links) that is discernible, unique, and focusable improves the navigation experience for screen reader users. Learn how to make links accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
footer._1pYnEk5gbmwcthm_TJ9jVl > div.uh0Q7gKQw3ZgTwvd5mQiZ > div._1SxQuUnaM-MXeF5UfssWve > a.FYJ4NYxpWeIha0N1-jUcm footer._1pYnEk5gbmwcthm_TJ9jVl > div.uh0Q7gKQw3ZgTwvd5mQiZ > div._1SxQuUnaM-MXeF5UfssWve > a.FYJ4NYxpWeIha0N1-jUcm |
footer._1pYnEk5gbmwcthm_TJ9jVl > div.uh0Q7gKQw3ZgTwvd5mQiZ > div._1SxQuUnaM-MXeF5UfssWve > a.FYJ4NYxpWeIha0N1-jUcm footer._1pYnEk5gbmwcthm_TJ9jVl > div.uh0Q7gKQw3ZgTwvd5mQiZ > div._1SxQuUnaM-MXeF5UfssWve > a.FYJ4NYxpWeIha0N1-jUcm |
footer._1pYnEk5gbmwcthm_TJ9jVl > div.uh0Q7gKQw3ZgTwvd5mQiZ > div._1SxQuUnaM-MXeF5UfssWve > a.FYJ4NYxpWeIha0N1-jUcm footer._1pYnEk5gbmwcthm_TJ9jVl > div.uh0Q7gKQw3ZgTwvd5mQiZ > div._1SxQuUnaM-MXeF5UfssWve > a.FYJ4NYxpWeIha0N1-jUcm |
footer._1pYnEk5gbmwcthm_TJ9jVl > div.uh0Q7gKQw3ZgTwvd5mQiZ > div._1SxQuUnaM-MXeF5UfssWve > a.FYJ4NYxpWeIha0N1-jUcm footer._1pYnEk5gbmwcthm_TJ9jVl > div.uh0Q7gKQw3ZgTwvd5mQiZ > div._1SxQuUnaM-MXeF5UfssWve > a.FYJ4NYxpWeIha0N1-jUcm |
footer._1pYnEk5gbmwcthm_TJ9jVl > div.uh0Q7gKQw3ZgTwvd5mQiZ > div._1SxQuUnaM-MXeF5UfssWve > a.FYJ4NYxpWeIha0N1-jUcm footer._1pYnEk5gbmwcthm_TJ9jVl > div.uh0Q7gKQw3ZgTwvd5mQiZ > div._1SxQuUnaM-MXeF5UfssWve > a.FYJ4NYxpWeIha0N1-jUcm |
footer._1pYnEk5gbmwcthm_TJ9jVl > div.uh0Q7gKQw3ZgTwvd5mQiZ > div._1SxQuUnaM-MXeF5UfssWve > a.FYJ4NYxpWeIha0N1-jUcm footer._1pYnEk5gbmwcthm_TJ9jVl > div.uh0Q7gKQw3ZgTwvd5mQiZ > div._1SxQuUnaM-MXeF5UfssWve > a.FYJ4NYxpWeIha0N1-jUcm |
These are opportunities to improve the semantics of the controls in your application. This may enhance the experience for users of assistive technology, like a screen reader.
Visible text labels that do not match the accessible name can result in a confusing experience for screen reader users. Learn more about accessible names.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
-40%
S$80.00
S$48.00 div.home_area_spotlight > div.spotlight_content > div.spotlight_body > div.discount_block |
-63%
S$43.57
S$16.07 div.home_special_offers_group > div.spotlight_col > a.store_capsule > div.discount_block |
-50%
S$27.00
S$13.50 div.home_special_offers_group > div.spotlight_col > a.store_capsule > div.discount_block |
-20%
S$89.00
S$71.20 div.focus > a.store_capsule > div > div.discount_block |
-20%
S$12.00
S$9.60 div.focus > a.store_capsule > div > div.discount_block |
-60%
S$17.00
S$6.80 div.focus > a.store_capsule > div > div.discount_block |
-10%
S$24.75
S$22.27 div#tab_newreleases_content > div.tab_content_items > a.tab_item > div.discount_block |
-20%
S$12.99
S$10.39 div#tab_newreleases_content > div.tab_content_items > a.tab_item > div.discount_block |
-10%
S$19.99
S$17.99 div#tab_newreleases_content > div.tab_content_items > a.tab_item > div.discount_block |
-30%
S$14.50
S$10.15 div#tab_newreleases_content > div.tab_content_items > a.tab_item > div.discount_block |
-15%
S$11.25
S$9.56 div#tab_newreleases_content > div.tab_content_items > a.tab_item > div.discount_block |
-20%
S$11.99
S$9.59 div#tab_newreleases_content > div.tab_content_items > a.tab_item > div.discount_block |
-20%
S$6.99
S$5.59 div#tab_newreleases_content > div.tab_content_items > a.tab_item > div.discount_block |
-40%
S$14.50
S$8.70 div#tab_newreleases_content > div.tab_content_items > a.tab_item > div.discount_block |
Image display dimensions should match natural aspect ratio. Learn more about image aspect ratio.
Performance issues directly impact user engagement and conversion rates.
| URL | Aspect Ratio (Displayed) | Aspect Ratio (Actual) | |
|---|---|---|---|
STEAM div.responsive_header_content > div.responsive_header_logo > a > img | store.akamai.steamstatic.com/public/shared/images/responsive/header_logo.png | 744 x 36 (20.67) | 744 x 171 (4.35) |
div.responsive_header > div.responsive_header_content > div#responsive_menu_logo > img div.responsive_header > div.responsive_header_content > div#responsive_menu_logo > img | /public/shared/images/responsive/header_menu_hamburger.png | 244 x 100 (2.44) | 244 x 212 (1.15) |
Image natural dimensions should be proportional to the display size and the pixel ratio to maximize image clarity. Learn how to provide responsive images.
Performance issues directly impact user engagement and conversion rates.
| URL | Displayed size | Actual size | Expected size | |
|---|---|---|---|---|
Orcs Must Die! 3 div.spotlight_col > a.store_capsule > div.capsule > img | store.akamai.steamstatic.com/public/images/blank.gif | 306 x 306 | 1 x 1 | 306 x 306 |
Deprecated APIs will eventually be removed from the browser. Learn more about deprecated APIs.
Performance issues directly impact user engagement and conversion rates.
| Deprecation / Warning | Source |
|---|---|
| Unload event listeners are deprecated and will be removed. | /public/shared/javascript/jquery-1.8.3.min.js?v=NXam5zydz... line 1, col 34394 |
These checks ensure that your page is following basic search engine optimization advice. There are many additional factors Lighthouse does not score here that may affect your search ranking, including performance on Core Web Vitals. Learn more about Google Search Essentials.
Descriptive link text helps search engines understand your content. Learn how to make links more accessible.
Performance issues directly impact user engagement and conversion rates.
| Link destination | Link Text |
|---|---|
| store.steampowered.com/recommender/?snr=1_4_4_ | More |
| store.steampowered.com/explore/?snr=1_4_4_ | Learn More |
| store.steampowered.com/communityrecommendations/?snr=1_4_4_ | More |
Format your HTML in a way that enables crawlers to better understand your app’s content.
Send Feedback