:root {
  --accent: #0ae2f6;
  --brand-blue: #0ae2f6;
  --text-color: #050505;
  --header-border: #ededed;
  --header-height: 77px;
  --site-max-width: 1536px;
  --page-gutter: 42px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text-color);
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  width: 100%;
  height: var(--header-height);
  background: #ffffff;
  border-bottom: 1px solid var(--header-border);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: var(--site-max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--page-gutter);
}

.site-logo {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  width: 246px;
  height: 100%;
  text-decoration: none;
}

.release-platform-icon {
    display: block;
    width: 14px;
    height: 14px;
    object-fit: contain;
    flex: 0 0 auto;
}

.release-platforms span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.review-platform-icon {
    display: block;
    width: 14px;
    height: 14px;
    object-fit: contain;
    flex: 0 0 auto;
}

.review-platforms span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}


.primary-navigation {
  display: flex;
  align-self: stretch;
  align-items: center;
  gap: 47px;
  margin-left: 169px;
  white-space: nowrap;
}

.primary-navigation a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  color: #070707;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-synthesis: none;
  line-height: 1;
  letter-spacing: -0.01em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.primary-navigation a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 4px;
  background: var(--brand-blue);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: opacity 160ms ease, transform 160ms ease;
}

.primary-navigation a:hover,
.primary-navigation a:focus-visible,
.primary-navigation a.active {
  color: #000000;
}

.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after,
.primary-navigation a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.playing-platform-icon {
    
    height: 11px;
    object-fit: contain;
    flex: 0 0 auto;
}

.playing-platforms span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 29px;
  margin-left: auto;
}

.header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 23px;
  height: 38px;
  padding: 0;
  color: #000000;
  background: transparent;
  border: 0;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: color 160ms ease, transform 160ms ease;
}

.header-icon:hover,
.header-icon:focus-visible {
  color: var(--brand-blue);
  transform: translateY(-1px);
}

.search-button {
  font-size: 22px;
}

.header-icon .fa-youtube {
  font-size: 23px;
}

.header-icon .fa-twitter {
  font-size: 22px;
}

.header-icon .fa-paypal {
  font-size: 23px;
}

.mobile-menu-button {
  display: none;
}

.page-frame {
  width: 100%;
  max-width: var(--site-max-width);
  min-height: calc(100vh - var(--header-height));
  margin: 0 auto;
}

@media (max-width: 1240px) {
  :root {
    --page-gutter: 28px;
  }

  .site-logo,
  

  .primary-navigation {
    gap: 28px;
    margin-left: 55px;
  }

  .header-actions {
    gap: 21px;
  }
}

@media (max-width: 980px) {
  .site-header {
    height: 70px;
  }

  .header-inner {
    justify-content: space-between;
  }

  .site-logo,
  

  .mobile-menu-button {
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 5px;
    order: 3;
    width: 34px;
    padding: 6px;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .mobile-menu-button span {
    display: block;
    width: 100%;
    height: 2px;
    background: #000000;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .mobile-menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-navigation {
    position: absolute;
    z-index: 2;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 12px var(--page-gutter) 18px;
    background: #ffffff;
    border-bottom: 1px solid var(--header-border);
    box-shadow: 0 12px 30px rgb(0 0 0 / 7%);
  }

  .primary-navigation.open {
    display: flex;
    flex-direction: column;
  }

  .primary-navigation a {
    min-height: 44px;
  }

  .primary-navigation a::after {
    right: auto;
    width: 42px;
  }

  .header-actions {
    margin-right: 20px;
    margin-left: auto;
  }
}

@media (max-width: 620px) {
  :root {
    --page-gutter: 18px;
  }

  .site-logo,
  

  .header-actions {
    gap: 14px;
    margin-right: 12px;
  }

  .header-actions a:nth-of-type(2),
  .header-actions a:nth-of-type(3) {
    display: none;
  }
}

/* Home page title and controls */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 80px;
  padding: 29px var(--page-gutter);
  background: #ffffff;
}

.page-title {
  margin: 0;
  color: #101114;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 51px;
  font-weight: 900;
  font-synthesis: none;
  line-height: 0.9;
  letter-spacing: -1.6px;
  text-transform: uppercase;
}

.home-toolbar-controls {
  display: flex;
  align-items: center;
  gap: 28px;
}

.sort-control {
  position: relative;
  display: block;
  width: 199px;
  height: 41px;
}

.sort-control select {
  width: 100%;
  height: 100%;
  padding: 0 42px 0 18px;
  color: #111216;
  background: #ffffff;
  border: 1px solid #d5dae2;
  border-radius: 5px;
  outline: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  appearance: none;
  cursor: pointer;
}

.sort-control i {
  position: absolute;
  top: 50%;
  right: 17px;
  color: #0a0b0d;
  font-size: 11px;
  pointer-events: none;
  transform: translateY(-50%);
}

.sort-control:focus-within select,
.content-search:focus-within {
  border-color: #aeb7c3;
  box-shadow: 0 0 0 2px rgb(28 228 245 / 12%);
}

.content-search {
  position: relative;
  display: flex;
  align-items: center;
  width: 298px;
  height: 41px;
  background: #ffffff;
  border: 1px solid #d5dae2;
  border-radius: 5px;
}

.content-search input {
  width: 100%;
  height: 100%;
  padding: 0 48px 0 15px;
  color: #111216;
  background: transparent;
  border: 0;
  outline: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
}

.content-search input::placeholder {
  color: #777c86;
  opacity: 1;
}

.content-search input::-webkit-search-cancel-button {
  display: none;
}

.content-search button {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 100%;
  padding: 0;
  color: #050608;
  background: transparent;
  border: 0;
  font-size: 17px;
  cursor: pointer;
}

.content-search button:hover,
.content-search button:focus-visible {
  color: var(--brand-blue);
}

@media (max-width: 820px) {
  .home-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .home-toolbar-controls {
    width: 100%;
    gap: 14px;
  }

  .sort-control,
  .content-search {
    flex: 1 1 0;
    width: auto;
  }
}

@media (max-width: 560px) {
  .page-title {
    font-size: 43px;
  }

  .home-toolbar-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .sort-control,
  .content-search {
    flex: none;
    width: 100%;
  }
}

/* Video card grid */
.video-library {
  width: 100%;
  padding: 0 var(--page-gutter) 16px;
  background: #ffffff;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 14px;
  row-gap: 15px;
}

.video-card {
  min-width: 0;
}

.video-card[hidden] {
  display: none;
}

.video-card-media {
  display: block;
  width: 100%;
  aspect-ratio: 1.86 / 1;
  overflow: hidden;
  background: #e8eaed;
  border-radius: 5px;
  text-decoration: none;
}

.video-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.video-card-media:hover img,
.video-card-media:focus-visible img {
  transform: scale(1.015);
}

.video-card-body {
  padding-top: 10px;
}

.video-category {
  margin: 0 0 6px;
  color: #0ae2f6;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  font-synthesis: none;
  line-height: 1;
  text-transform: uppercase;
}

.video-title {
  margin: 0;
  color: #07080a;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  font-synthesis: none;
  line-height: 1.38;
  letter-spacing: -0.01em;
}

.video-title a {
  color: inherit;
  text-decoration: none;
}

.video-title a:hover,
.video-title a:focus-visible {
  color: #0ae2f6;
}

.video-date {
  display: block;
  margin-top: 6px;
  color: #17181a;
  font-size: 12px;
  line-height: 1.2;
}

.video-empty-message {
  margin: 42px 0;
  color: #62666e;
  font-size: 14px;
  text-align: center;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.pagination-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 36px;
  color: #08090b;
  background: #ffffff;
  border: 1px solid #d7dce3;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: color 150ms ease, background 150ms ease, border-color 150ms ease;
}

.pagination-button:hover,
.pagination-button:focus-visible {
  color: #007fc5;
  border-color: #aeb7c3;
}

.pagination-button.active {
  color: #ffffff;
  background: #0ae2f6;
  border-color: #0ae2f6;
}

.pagination-arrow {
  font-size: 11px;
}

.pagination-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  color: #050608;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 1050px) {
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
  }
}

@media (max-width: 620px) {
  .video-grid {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .pagination {
    gap: 8px;
  }

  .pagination-button {
    width: 34px;
    height: 34px;
  }

  .pagination-button:nth-of-type(5),
  .pagination-button:nth-of-type(6),
  .pagination-ellipsis {
    display: none;
  }
}

/* Games coming out this week */
.weekly-releases {
  width: 100%;
  padding: 27px var(--page-gutter) 31px;
  background: #ffffff;
}

.section-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.section-heading {
  position: relative;
  margin: 0;
  padding-left: 16px;
  color: #0a0b0e;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 26px;
  font-weight: 900;
  font-synthesis: none;
  line-height: 1;
  letter-spacing: -0.45px;
  text-transform: uppercase;
}

.section-heading::before {
  position: absolute;
  top: 3px;
  bottom: 2px;
  left: 0;
  width: 4px;
  background: #0ae2f6;
  border-radius: 2px;
  content: "";
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #0ae2f6;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.view-all-link i {
  font-size: 10px;
  transition: transform 160ms ease;
}

.view-all-link:hover i,
.view-all-link:focus-visible i {
  transform: translateX(2px);
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}

.release-card {
  min-width: 0;
}

.release-cover {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 0.93 / 1;
  overflow: hidden;
  background: #e8eaed;
  border-radius: 4px;
  text-decoration: none;
}

.release-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.release-cover:hover img,
.release-cover:focus-visible img {
  transform: scale(1.015);
}

.release-date-badge {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 51px;
  color: #ffffff;
  background: #0ae2f6;
  border-radius: 0 4px 0 4px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1;
  text-transform: uppercase;
}

.release-date-badge span {
  margin-bottom: 3px;
  font-size: 10px;
  font-weight: 700;
}

.release-date-badge strong {
  font-size: 16px;
  font-weight: 700;
}

.release-card-body {
  padding-top: 12px;
}

.release-card h3 {
  min-height: 40px;
  margin: 0;
  color: #08090b;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  font-synthesis: none;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.release-card h3 a {
  color: inherit;
  text-decoration: none;
}

.release-card h3 a:hover,
.release-card h3 a:focus-visible {
  color: #0ae2f6;
}

.release-card time {
  display: block;
  margin-top: 5px;
  color: #1a1b1d;
  font-size: 12px;
  line-height: 1.2;
}

.release-platforms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
  min-height: 18px;
  margin-top: 18px;
  color: #08090b;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.release-platforms span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.release-platforms i {
  font-size: 14px;
}

.release-platforms .platform-pc {
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
}

@media (max-width: 1260px) {
  .release-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 20px;
  }
}

@media (max-width: 900px) {
  .release-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .section-heading {
    font-size: 22px;
  }

  .release-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px 16px;
  }
}

@media (max-width: 460px) {
  .section-heading-row {
    align-items: flex-start;
    gap: 15px;
  }

  .section-heading {
    font-size: 20px;
  }

  .release-grid {
    grid-template-columns: 1fr;
  }

  .release-card h3 {
    min-height: 0;
  }
}


/* Games we are playing */
.currently-playing {
  width: 100%;
  padding: 8px var(--page-gutter) 38px;
  background: #ffffff;
}

.playing-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 30px;
}

.playing-card {
  min-width: 0;
}

.playing-cover {
  display: block;
  width: 100%;
  aspect-ratio: 0.82 / 1;
  overflow: hidden;
  background: #e8eaed;
  border-radius: 5px;
  text-decoration: none;
}

.playing-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.playing-cover:hover img,
.playing-cover:focus-visible img {
  transform: scale(1.015);
}

.playing-card-body {
  padding-top: 11px;
}

.playing-card h3 {
  min-height: 40px;
  margin: 0;
  color: #08090b;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  font-synthesis: none;
  line-height: 1.34;
  letter-spacing: -0.01em;
}

.playing-card h3 a {
  color: inherit;
  text-decoration: none;
}

.playing-card h3 a:hover,
.playing-card h3 a:focus-visible {
  color: #0ae2f6;
}

.playing-platforms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
  min-height: 18px;
  margin-top: 13px;
  color: #08090b;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.playing-platforms span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.playing-platforms i {
  font-size: 14px;
}

.playing-platforms .platform-pc {
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
}

@media (max-width: 1260px) {
  .playing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 20px;
  }
}

@media (max-width: 900px) {
  .playing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .currently-playing {
    padding-top: 0;
  }

  .playing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px 16px;
  }
}

@media (max-width: 460px) {
  .playing-grid {
    grid-template-columns: 1fr;
  }

  .playing-card h3 {
    min-height: 0;
  }
}

/* Latest reviews */
.latest-reviews {
  width: 100%;
  padding: 8px var(--page-gutter) 38px;
  background: #ffffff;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 30px;
}

.review-card {
  min-width: 0;
}

.review-cover {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 0.948 / 1;
  overflow: hidden;
  background: #e8eaed;
  border-radius: 5px;
  text-decoration: none;
}

.review-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.review-score {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 38px;
  padding: 0 7px;
  color: #ffffff;
  background: #0ae2f6;
  border-radius: 0 5px 0 5px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  font-synthesis: none;
  line-height: 1;
  letter-spacing: -0.02em;
  pointer-events: none;
}

.review-cover:hover img,
.review-cover:focus-visible img {
  transform: scale(1.015);
}

.review-card-body {
  padding-top: 11px;
}

.review-card h3 {
  min-height: 40px;
  margin: 0;
  color: #08090b;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  font-synthesis: none;
  line-height: 1.34;
  letter-spacing: -0.01em;
}

.review-card h3 a {
  color: inherit;
  text-decoration: none;
}

.review-card h3 a:hover,
.review-card h3 a:focus-visible {
  color: #0ae2f6;
}

.review-platforms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
  min-height: 18px;
  margin-top: 13px;
  color: #08090b;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.review-platforms span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.review-platforms i {
  font-size: 14px;
}

@media (max-width: 1260px) {
  .review-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 20px;
  }
}

@media (max-width: 900px) {
  .review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .latest-reviews {
    padding-top: 0;
  }

  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px 16px;
  }
}

@media (max-width: 460px) {
  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-card h3 {
    min-height: 0;
  }
}

/* Site footer */
.site-footer {
  width: 100%;
  color: #ffffff;
  background:
    radial-gradient(circle at 78% 36%, rgb(18 32 42 / 42%), transparent 34%),
    linear-gradient(105deg, #08131b 0%, #0a141b 54%, #07121a 100%);
  border-top: 1px solid #e8ecef;
}

.footer-inner {
  width: 100%;
  max-width: var(--site-max-width);
  min-height: 210px;
  margin: 0 auto;
  padding: 18px 63px 14px;
}

.footer-main {
  display: grid;
  grid-template-columns: 280px 170px 214px 194px minmax(300px, 1fr);
  gap: 48px;
  align-items: start;
}

.footer-brand {
  min-width: 0;
}

.footer-logo {
  display: block;
  width: 225px;
  text-decoration: none;
}



.footer-description {
  margin: 5px 0 0;
  color: #d2d8dd;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.62;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 12px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  color: #07121a;
  background: #ffffff;
  border-radius: 50%;
  font-size: 17px;
  line-height: 1;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: #ffffff;
  background: #0ae2f6;
  transform: translateY(-1px);
}

.footer-column,
.footer-newsletter {
  padding-top: 8px;
}

.footer-column h2,
.footer-newsletter h2 {
  margin: 0 0 10px;
  color: #f8fafb;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-column a {
  margin-top: 0;
  color: #f1f3f5;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.62;
  text-decoration: none;
  white-space: nowrap;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--brand-blue);
}

.footer-newsletter {
  justify-self: end;
  width: 100%;
  max-width: 360px;
}

.footer-newsletter p {
  margin: 0 0 12px;
  color: #f1f3f5;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  width: 100%;
  height: 37px;
}

.newsletter-form input {
  min-width: 0;
  flex: 1 1 auto;
  height: 100%;
  padding: 0 15px;
  color: #ffffff;
  background: #111c24;
  border: 1px solid #35434e;
  border-right: 0;
  border-radius: 5px 0 0 5px;
  outline: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}

.newsletter-form input::placeholder {
  color: #89949d;
  opacity: 1;
}

.newsletter-form input:focus {
  border-color: #0ae2f6;
}

.newsletter-form button {
  flex: 0 0 117px;
  height: 100%;
  padding: 0 16px;
  color: #ffffff;
  background: #0ae2f6;
  border: 0;
  border-radius: 0 5px 5px 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 160ms ease;
}

.newsletter-form button:hover,
.newsletter-form button:focus-visible {
  background: #087fc0;
}

.footer-copyright {
  margin: 4px 0 0;
  color: #b9c0c6;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 1260px) {
  .footer-inner {
    padding-right: var(--page-gutter);
    padding-left: var(--page-gutter);
  }

  .footer-main {
    grid-template-columns: 250px repeat(3, minmax(120px, 1fr));
    gap: 34px;
  }

  .footer-newsletter {
    grid-column: 1 / -1;
    justify-self: stretch;
    max-width: none;
    padding-top: 2px;
  }

  .footer-newsletter p br {
    display: none;
  }
}

@media (max-width: 820px) {
  .footer-inner {
    padding-top: 30px;
    padding-bottom: 24px;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 24px;
  }

  .footer-brand,
  .footer-newsletter {
    grid-column: 1 / -1;
  }

  .footer-newsletter {
    max-width: 560px;
  }

  .footer-copyright {
    margin-top: 28px;
  }
}

@media (max-width: 520px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-newsletter {
    grid-column: auto;
  }

  .footer-description br {
    display: none;
  }

  .newsletter-form button {
    flex-basis: 108px;
    padding-right: 10px;
    padding-left: 10px;
  }
}


/* Video detail overlay */
body.overlay-open {
  overflow: hidden;
}

.content-overlay[hidden] {
  display: none;
}

.content-overlay {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 58px 18px 32px;
  opacity: 0;
  transition: opacity 180ms ease;
}

.content-overlay.is-open {
  opacity: 1;
}

.content-overlay-backdrop {
  position: fixed;
  inset: 0;
  background: rgb(4 11 16 / 72%);
  cursor: zoom-out;
}

.video-detail-modal {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100vw - 36px));
  max-height: calc(100vh - 90px);
  overflow-x: hidden;
  overflow-y: auto;
  color: #0a0b0e;
  background: #ffffff;
  border-radius: 11px;
  box-shadow: 0 24px 85px rgb(0 0 0 / 35%);
  outline: none;
  transform: translateY(14px) scale(0.985);
  transition: transform 180ms ease;
  overscroll-behavior: contain;
}

.content-overlay.is-open .video-detail-modal {
  transform: translateY(0) scale(1);
}

.video-modal-close {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  color: #08090b;
  background: transparent;
  border: 0;
  border-radius: 50%;
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
  transition: color 150ms ease, background-color 150ms ease;
}

.video-modal-close:hover,
.video-modal-close:focus-visible {
  color: #0ae2f6;
  background: #f0f3f6;
}

.video-modal-content {
  padding: 27px 31px 19px;
}

.video-modal-category {
  margin: 0 48px 16px 0;
  color: #0ae2f6;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.video-modal-title {
  max-width: 520px;
  margin: 0 34px 18px 0;
  color: #0b0c0f;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 31px;
  font-weight: 900;
  font-synthesis: none;
  line-height: 1.12;
  letter-spacing: -0.65px;
}

.video-modal-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 19px;
}

.video-modal-author {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.video-modal-avatar {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #06212a;
  background: var(--brand-blue);
  border-radius: 50%;
  font-size: 16px;
}

.video-modal-author strong {
  display: block;
  margin-bottom: 3px;
  color: #101114;
  font-size: 11px;
  line-height: 1;
}

.video-modal-author p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: #383b40;
  font-size: 10px;
  line-height: 1.2;
}

.video-modal-share {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 17px;
}

.video-modal-share > span {
  color: #17191c;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.video-modal-share a,
.video-modal-share button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 24px;
  padding: 0;
  color: #08090b;
  background: transparent;
  border: 0;
  font-size: 13px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.video-modal-share a:hover,
.video-modal-share a:focus-visible,
.video-modal-share button:hover,
.video-modal-share button:focus-visible {
  color: #0ae2f6;
}

.video-modal-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1.86 / 1;
  overflow: hidden;
  background: #080d12;
  border-radius: 7px;
}

.video-modal-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgb(0 0 0 / 28%) 100%);
  content: "";
  pointer-events: none;
}

.video-modal-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-modal-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  padding: 0 0 0 4px;
  color: #ffffff;
  background: rgb(7 142 214 / 94%);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 7px 22px rgb(0 0 0 / 28%);
  font-size: 21px;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: background-color 150ms ease, transform 150ms ease;
}

.video-modal-play:hover,
.video-modal-play:focus-visible {
  background: #057fc2;
  transform: translate(-50%, -50%) scale(1.06);
}

.video-modal-play.is-playing {
  padding-left: 0;
}

.video-modal-copy {
  padding-top: 17px;
}

.video-modal-copy p {
  margin: 0 0 17px;
  color: #1a1c20;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.52;
}

.video-modal-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 2px;
}

.video-modal-tags strong {
  margin-right: 2px;
  color: #17191c;
  font-size: 9px;
  text-transform: uppercase;
}

.video-modal-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 10px;
  color: #34373b;
  background: #ffffff;
  border: 1px solid #d9dee4;
  border-radius: 4px;
  font-size: 9px;
  line-height: 1;
}

.video-modal-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 23px;
  padding-top: 16px;
  border-top: 1px solid #edf0f2;
}

.video-modal-nav-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 3px 0;
  color: #111318;
  background: transparent;
  border: 0;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.video-modal-nav-button:hover,
.video-modal-nav-button:focus-visible {
  color: #0ae2f6;
}

.video-modal-nav-button:disabled {
  visibility: hidden;
  pointer-events: none;
}

.video-card .video-card-media,
.video-card .video-title a {
  cursor: pointer;
}

@media (max-width: 680px) {
  .content-overlay {
    padding: 18px 10px;
  }

  .video-detail-modal {
    width: min(100%, 620px);
    max-height: calc(100vh - 36px);
    border-radius: 8px;
  }

  .video-modal-content {
    padding: 23px 20px 17px;
  }

  .video-modal-title {
    margin-right: 28px;
    font-size: 27px;
  }

  .video-modal-meta-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .video-modal-share {
    gap: 19px;
  }

  .video-modal-media {
    aspect-ratio: 16 / 9;
  }

  .video-modal-play {
    width: 54px;
    height: 54px;
    font-size: 18px;
  }
}

@media (max-width: 430px) {
  .video-modal-title {
    font-size: 24px;
    line-height: 1.15;
  }

  .video-modal-copy p {
    font-size: 11px;
  }

  .video-modal-navigation {
    gap: 8px;
  }

  .video-modal-nav-button {
    font-size: 9px;
  }
}


/* Homepage navigation and brand hover colors */
.primary-navigation a:hover,
.primary-navigation a:focus-visible,
.header-icons a:hover,
.header-icons a:focus-visible,
.header-icons button:hover,
.header-icons button:focus-visible,
.header-actions a:hover,
.header-actions a:focus-visible,
.header-actions button:hover,
.header-actions button:focus-visible,
.site-header a:hover,
.site-header button:hover {
  color: #0ae2f6 !important;
}

.primary-navigation a.active::after,
.primary-navigation a[aria-current="page"]::after {
  height: 4px !important;
  background: #0ae2f6 !important;
  background-color: #0ae2f6 !important;
}

.header-icons a:hover svg,
.header-icons a:focus-visible svg,
.header-icons button:hover svg,
.header-icons button:focus-visible svg,
.header-actions a:hover svg,
.header-actions a:focus-visible svg,
.header-actions button:hover svg,
.header-actions button:focus-visible svg,
.site-header a:hover svg,
.site-header button:hover svg {
  color: #0ae2f6 !important;
  fill: #0ae2f6 !important;
  stroke: #0ae2f6 !important;
}


/* Hover underline uses brand blue */
.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after{
    background:#0ae2f6 !important;
    background-color:#0ae2f6 !important;
    height:4px !important;
    opacity:1 !important;
    transform:scaleX(1) !important;
}


/* Split high-resolution header logo */
.site-logo.split-logo,
.split-logo {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex: 0 0 auto;
    text-decoration: none;
}

.split-logo__lion {
    display: block;
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex: 0 0 auto;
}

.split-logo__text {
    display: block;
    width: 171px;
    height: auto;
    object-fit: contain;
    flex: 0 0 auto;
}

@media (max-width: 900px) {
    .split-logo__lion {
        width: 44px;
        height: 44px;
    }

    .split-logo__text {
        width: 145px;
    }
}


.site-logo img{
    display:block;
    height:auto;
    max-width:100%;
}

.site-logo .split-logo__lion{
    width:52px;
    height:52px;
    flex-shrink:0;
}

.site-logo .split-logo__text{
    width:170px;
    height:auto;
    flex-shrink:0;
}

/* Unified VGW accent colour */
:root {
    --accent: #0ae2f6;
    --brand-blue: #0ae2f6;
}

.primary-navigation a:hover,
.primary-navigation a:focus-visible,
.header-icons a:hover,
.header-icons a:focus-visible,
.header-icons button:hover,
.header-icons button:focus-visible,
.header-actions a:hover,
.header-actions a:focus-visible,
.header-actions button:hover,
.header-actions button:focus-visible,
.site-header a:hover,
.site-header button:hover,
.view-all,
.view-all:hover,
.video-category,
.overlay-category,
.section-kicker,
.category-label {
    color: #0ae2f6 !important;
}

.primary-navigation a::after,
.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after,
.primary-navigation a.active::after,
.primary-navigation a[aria-current="page"]::after,
.section-title::before {
    background: #0ae2f6 !important;
    background-color: #0ae2f6 !important;
}

.header-icons a:hover svg,
.header-icons a:focus-visible svg,
.header-icons button:hover svg,
.header-icons button:focus-visible svg,
.header-actions a:hover svg,
.header-actions a:focus-visible svg,
.header-actions button:hover svg,
.header-actions button:focus-visible svg,
.site-header a:hover svg,
.site-header button:hover svg {
    color: #0ae2f6 !important;
    fill: #0ae2f6 !important;
    stroke: #0ae2f6 !important;
}


/* Split high-resolution footer logo */
.footer-logo.footer-split-logo,
.footer-split-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.footer-split-logo__lion {
    display: block;
    width: 58px;
    height: 58px;
    object-fit: contain;
    flex: 0 0 auto;
}

.footer-split-logo__text {
    display: block;
    width: 185px;
    height: auto;
    object-fit: contain;
    flex: 0 0 auto;
}

@media (max-width: 700px) {
    .footer-split-logo__lion {
        width: 50px;
        height: 50px;
    }

    .footer-split-logo__text {
        width: 160px;
    }
}


.footer-logo img{
    display:block;
    height:auto;
    max-width:100%;
}

.footer-logo .footer-split-logo__lion{
    width:58px;
    height:58px;
    flex-shrink:0;
}

.footer-logo .footer-split-logo__text{
    width:185px;
    height:auto;
    flex-shrink:0;
}


/* Keep the header logo anchored to the left on smaller screens */
@media (max-width: 900px) {
    .site-header .header-inner,
    .site-header .site-header__inner,
    .site-header .container {
        justify-content: flex-start;
    }

    .site-logo,
    .site-logo.split-logo,
    .split-logo {
        margin-left: 0 !important;
        margin-right: auto !important;
        justify-self: start;
        align-self: center;
        flex: 0 0 auto;
    }
}


/* Definitive mobile header logo fix */
@media (max-width: 980px) {
    .site-header .header-inner {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
    }

    .site-header .site-logo,
    .site-header .site-logo.split-logo,
    .site-header .split-logo {
        display: inline-flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 7px !important;
        order: 1 !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;
        height: 100% !important;
        margin: 0 auto 0 0 !important;
        padding: 0 !important;
        flex: 0 0 auto !important;
    }

    .site-header .site-logo .split-logo__lion {
        display: block !important;
        width: 44px !important;
        min-width: 44px !important;
        max-width: 44px !important;
        height: 44px !important;
        flex: 0 0 44px !important;
        object-fit: contain !important;
    }

    .site-header .site-logo .split-logo__text {
        display: block !important;
        width: 145px !important;
        min-width: 145px !important;
        max-width: 145px !important;
        height: auto !important;
        flex: 0 0 145px !important;
        object-fit: contain !important;
    }

    .site-header .header-actions {
        order: 2 !important;
        margin-left: auto !important;
        flex: 0 0 auto !important;
    }

    .site-header .mobile-menu-button {
        order: 3 !important;
        flex-direction: column !important;
        width: 34px !important;
        height: auto !important;
        margin-left: 12px !important;
        flex: 0 0 34px !important;
    }
}

@media (max-width: 620px) {
    .site-header .site-logo .split-logo__lion {
        width: 40px !important;
        min-width: 40px !important;
        max-width: 40px !important;
        height: 40px !important;
        flex-basis: 40px !important;
    }

    .site-header .site-logo .split-logo__text {
        width: 132px !important;
        min-width: 132px !important;
        max-width: 132px !important;
        flex-basis: 132px !important;
    }
}

@media (max-width: 420px) {
    .site-header .site-logo .split-logo__lion {
        width: 36px !important;
        min-width: 36px !important;
        max-width: 36px !important;
        height: 36px !important;
        flex-basis: 36px !important;
    }

    .site-header .site-logo .split-logo__text {
        width: 116px !important;
        min-width: 116px !important;
        max-width: 116px !important;
        flex-basis: 116px !important;
    }

    .site-header .site-logo,
    .site-header .site-logo.split-logo {
        gap: 5px !important;
    }
}


/* Slightly bolder View All links */
.view-all,
.view-all:visited{
    font-weight:600 !important;
    letter-spacing:0.01em;
}

.view-all i,
.view-all svg{
    font-weight:600 !important;
}

/* News page platform filter */
.platform-control {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.platform-control select {
    appearance: none;
    -webkit-appearance: none;
    min-width: 170px;
    height: 42px;
    padding: 0 38px 0 14px;
    border: 1px solid #d9dde3;
    border-radius: 4px;
    background: #fff;
    color: #111216;
    font: inherit;
    cursor: pointer;
}

.platform-control i {
    position: absolute;
    right: 14px;
    pointer-events: none;
    font-size: 11px;
    color: #6e747c;
}

@media (max-width: 760px) {
    .home-toolbar-controls {
        flex-wrap: wrap;
    }

    .platform-control,
    .platform-control select {
        width: 100%;
    }
}

/* Match Platforms dropdown typography to the Sort by dropdown */
.platform-control select {
    font-family: inherit !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
}


/* Make Platforms dropdown text uppercase to match design */
.platform-control select{
    text-transform: uppercase !important;
}

/* Video page type filter */
.video-type-control {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.video-type-control select {
    appearance: none;
    -webkit-appearance: none;
    min-width: 185px;
    height: 42px;
    padding: 0 38px 0 14px;
    border: 1px solid #d9dde3;
    border-radius: 4px;
    background: #fff;
    color: #111216;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    cursor: pointer;
}

.video-type-control i {
    position: absolute;
    right: 14px;
    pointer-events: none;
    font-size: 11px;
    color: #6e747c;
}

@media (max-width: 760px) {
    .video-type-control,
    .video-type-control select {
        width: 100%;
    }
}

/* Reviews page score badges */
.review-image-wrap {
    position: relative;
    display: block;
}

.review-card-score {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 51px;
    padding: 0 7px;
    background: #0ae2f6;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    border-radius: 0 4px 0 4px;
    box-shadow: none;
}

.platform-control select {
    text-transform: uppercase;
}

/* Games page grid, matching Games We Are Playing */
.game-list-card {
    min-width: 0;
}

.game-list-card__image {
    display: block;
    overflow: hidden;
    border-radius: 5px;
    background: #eef1f4;
}

.game-list-card__image img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform .2s ease;
}

.game-list-card__image:hover img {
    transform: scale(1.02);
}

.game-list-card__body {
    padding-top: 10px;
}

.game-list-card__title {
    margin: 0;
    color: #111216;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.game-list-card__platform {
    margin: 5px 0 0;
    color: #858c96;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Games page: exact Games We Are Playing card treatment, repeated for three rows */
body:has(#page-title) #page-title + * .game-list-card,
.game-list-card {
    min-width: 0;
}

@media (min-width: 1201px) {
    .game-list-card {
        width: auto;
    }
}

@media (max-width: 1200px) {
    .game-list-card {
        min-width: 0;
    }
}

/* Games page date and Nintendo Switch platform icon */
.game-card-date {
    margin: 4px 0 6px;
    color: #6f7680;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.35;
}

.platform-switch-icon {
    display: inline-block;
    width: auto !important;
    height: 16px !important;
    object-fit: cover;
    flex: 0 0 16px;
    margin-right: 0;
    vertical-align: middle;
}

/* Nintendo Switch platform labels */
.game-list-card__platform,
.playing-card__platform,
.game-platforms,
.platforms {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.platform-switch-icon {
    display: inline-block;
    width: auto !important;
    height: 16px !important;
    object-fit: cover;
    flex: 0 0 16px;
    margin-right: 0;
    vertical-align: middle;
}

.platform-switch2-icon {
    display: inline-block;
    width: auto !important;
    height: 16px !important;
    object-fit: contain;
    flex: 0 0 auto;
    margin-right: 0;
    vertical-align: middle;
}

.platform-label-text {
    display: inline-block;
    color: inherit;
    font: inherit;
    line-height: 1;
    text-transform: uppercase;
}

/* Keep Nintendo platform labels regular weight */
.platform-label-text,
.game-list-card__platform .platform-label-text,
.playing-card__platform .platform-label-text {
    /* font-weight: 400 !important; */
}


/* Normalize SWITCH and SWITCH 2 label sizing everywhere */
.platform-label-text,
.game-list-card__platform .platform-label-text,
.playing-card__platform .platform-label-text,
.game-platforms .platform-label-text,
.platforms .platform-label-text {
    display: inline-block !important;
    font-family: inherit !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
}

/* Correct Nintendo platform classes */
.playing-platforms.platform-switch,
.playing-platforms.platform-switch-2,
.playing-platforms .platform-switch,
.playing-platforms .platform-switch-2 {
    font-weight: 400;
}

/* Nintendo Switch label styling */
.platform-label-text{
    color:#08090b !important;
    font-size:10px !important;
    font-weight:700 !important;
    line-height:1 !important;
    text-transform:uppercase !important;
}

/* Individual game detail page */
.game-detail-page{background:#fff}
.game-detail-hero{margin:18px auto 0;max-width:1536px;min-height:430px;background-size:cover;background-position:center;border-radius:6px;overflow:hidden}
.game-detail-hero__inner{min-height:430px;display:grid;grid-template-columns:220px minmax(0,1fr);gap:42px;align-items:center;padding-top:56px;padding-bottom:56px}
.game-detail-cover img{display:block;width:100%;aspect-ratio:3/4;object-fit:cover;border:4px solid rgba(255,255,255,.92);border-radius:7px;box-shadow:0 12px 32px rgba(0,0,0,.35)}
.game-detail-content{max-width:760px;color:#fff}
.game-detail-content h1{margin:0 0 24px;font-size:clamp(34px,4vw,56px);line-height:1.05;font-weight:800;letter-spacing:-.02em}
.game-detail-meta{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px 28px;margin-bottom:22px}
.game-detail-meta__item{display:flex;align-items:center;gap:11px;min-width:0}
.game-detail-meta__item i{width:22px;color:#fff;font-size:18px;text-align:center}
.game-detail-meta__item span{display:block;margin-bottom:3px;color:rgba(255,255,255,.72);font-size:9px;font-weight:700;line-height:1;text-transform:uppercase}
.game-detail-meta__item strong{display:block;color:#fff;font-size:13px;font-weight:700;line-height:1.2}
.game-detail-summary{margin:0;max-width:760px;color:rgba(255,255,255,.9);font-size:14px;line-height:1.65}
.game-detail-tabs-wrap{border-bottom:1px solid #e6e9ee;background:#fff}
.game-detail-tabs{display:flex;align-items:center;justify-content:center;gap:56px;min-height:66px}
.game-detail-tabs a{position:relative;display:inline-flex;align-items:center;min-height:66px;color:#08090b;font-size:11px;font-weight:700;text-transform:uppercase}
.game-detail-tabs a:hover,.game-detail-tabs a.active{color:#0ae2f6}
.game-detail-tabs a::after{content:"";position:absolute;left:0;right:0;bottom:0;height:4px;background:transparent}
.game-detail-tabs a:hover::after,.game-detail-tabs a.active::after{background:#0ae2f6}
.game-detail-overview{padding-top:34px;padding-bottom:48px}
.game-detail-overview h2{margin:0 0 12px;font-size:28px}
.game-detail-overview p{max-width:760px;margin:0;color:#4d545d;line-height:1.7}
@media(max-width:900px){.game-detail-hero{margin-top:0;border-radius:0}.game-detail-hero__inner{grid-template-columns:150px 1fr;gap:24px;min-height:0;padding-top:36px;padding-bottom:36px}.game-detail-meta{grid-template-columns:repeat(2,minmax(0,1fr))}.game-detail-tabs{justify-content:flex-start;gap:30px;overflow-x:auto}}
@media(max-width:620px){.game-detail-hero__inner{grid-template-columns:1fr}.game-detail-cover{width:150px}.game-detail-content h1{font-size:34px}.game-detail-meta{grid-template-columns:1fr}}

/* Game detail content area */
.game-detail-body{
    display:grid;
    grid-template-columns:minmax(0,1fr) 300px;
    gap:38px;
    align-items:start;
    padding-top:38px;
    padding-bottom:52px;
}

.game-detail-main-column{
    min-width:0;
}

.detail-content-section + .detail-content-section{
    margin-top:42px;
}

.detail-section-heading{
    margin-bottom:18px;
}

.detail-section-heading h2,
.game-info-card h2{
    position:relative;
    margin:0;
    padding-left:14px;
    color:#08090b;
    font-size:20px;
    font-weight:800;
    line-height:1;
    text-transform:uppercase;
}

.detail-section-heading h2::before,
.game-info-card h2::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:4px;
    height:100%;
    background:#0ae2f6;
    border-radius:2px;
}

.detail-video-grid,
.detail-news-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:18px;
}

.detail-video-card,
.detail-news-card{
    min-width:0;
}

.detail-video-card__image,
.detail-news-card__image{
    position:relative;
    display:block;
    overflow:hidden;
    border-radius:5px;
    background:#e9edf1;
}

.detail-video-card__image img,
.detail-news-card__image img{
    display:block;
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
}

.detail-video-card__image .video-duration{
    position:absolute;
    right:6px;
    bottom:6px;
    padding:3px 5px;
    border-radius:3px;
    background:rgba(0,0,0,.8);
    color:#fff;
    font-size:11px;
    font-weight:700;
}

.detail-card-category{
    display:block;
    margin-top:9px;
    color:#0ae2f6;
    font-size:10px;
    font-weight:700;
    text-transform:uppercase;
}

.detail-video-card h3,
.detail-news-card h3{
    margin:5px 0 7px;
    font-size:13px;
    font-weight:700;
    line-height:1.45;
}

.detail-video-card h3 a,
.detail-news-card h3 a{
    color:#08090b;
}

.detail-video-card h3 a:hover,
.detail-news-card h3 a:hover{
    color:#0ae2f6;
}

.detail-video-card time,
.detail-news-card time{
    color:#747b84;
    font-size:11px;
}

.detail-view-all-wrap{
    display:flex;
    justify-content:center;
    margin-top:24px;
}

.detail-view-all{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    min-width:190px;
    height:44px;
    padding:0 20px;
    border:1px solid #d8dde4;
    border-radius:4px;
    background:#fff;
    color:#0ae2f6;
    font-size:11px;
    font-weight:700;
    text-transform:uppercase;
}

.detail-view-all:hover{
    border-color:#0ae2f6;
    color:#0ae2f6;
}

.game-detail-sidebar{
    position:sticky;
    top:18px;
}

.vgw-score-card{
    overflow:hidden;
    padding:24px 22px 18px;
    border-radius:6px;
    background:linear-gradient(180deg,#0e1720 0%,#081018 100%);
    color:#fff;
    box-shadow:0 10px 24px rgba(8,9,11,.15);
}

.vgw-score-card h2{
    margin:0 0 12px;
    text-align:center;
    color:#fff;
    font-size:19px;
    font-weight:800;
    text-transform:uppercase;
}

.score-circle{
    width:128px;
    height:128px;
    margin:0 auto;
    border:2px solid #0ae2f6;
    border-radius:50%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    box-shadow:inset 0 0 24px rgba(10,226,246,.09);
}

.score-circle strong{
    font-size:48px;
    line-height:.95;
}

.score-circle span{
    margin-top:7px;
    font-size:9px;
    font-weight:700;
    text-transform:uppercase;
}

.score-verdict{
    margin:10px 0 20px;
    text-align:center;
    color:#0ae2f6;
    font-size:14px;
    font-weight:800;
    text-transform:uppercase;
}

.score-row + .score-row{
    margin-top:12px;
}

.score-row > div:first-child{
    display:flex;
    justify-content:space-between;
    margin-bottom:5px;
    font-size:10px;
    font-weight:700;
    text-transform:uppercase;
}

.score-bar{
    height:6px;
    overflow:hidden;
    border-radius:3px;
    background:#23313d;
}

.score-bar span{
    display:block;
    height:100%;
    border-radius:inherit;
    background:#0ae2f6;
}

.score-review-button{
    display:flex;
    align-items:center;
    justify-content:center;
    height:48px;
    margin-top:24px;
    border-radius:4px;
    background:#0ae2f6;
    color:#08090b;
    font-size:14px;
    font-weight:800;
    text-transform:uppercase;
}

.score-review-button:hover{
    color:#08090b;
    filter:brightness(.95);
}

.score-full-review{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-top:14px;
    color:#0ae2f6;
    font-size:11px;
    font-weight:700;
}

.game-info-card{
    margin-top:22px;
}

.game-info-card h2{
    margin-bottom:14px;
}

.game-info-card dl{
    margin:0;
    border-top:1px solid #dde2e8;
}

.game-info-card dl div{
    display:grid;
    grid-template-columns:110px 1fr;
    gap:14px;
    padding:12px 0;
    border-bottom:1px solid #dde2e8;
}

.game-info-card dt{
    color:#08090b;
    font-size:10px;
    font-weight:700;
    text-transform:uppercase;
}

.game-info-card dd{
    margin:0;
    color:#555d66;
    font-size:11px;
}

@media(max-width:1100px){
    .game-detail-body{
        grid-template-columns:1fr;
    }

    .game-detail-sidebar{
        position:static;
        display:grid;
        grid-template-columns:300px minmax(0,1fr);
        gap:28px;
    }
}

@media(max-width:850px){
    .detail-video-grid,
    .detail-news-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .game-detail-sidebar{
        grid-template-columns:1fr;
    }

    .vgw-score-card{
        max-width:380px;
    }
}

@media(max-width:520px){
    .detail-video-grid,
    .detail-news-grid{
        grid-template-columns:1fr;
    }
}


/* Game detail content centered with tighter column spacing */
.game-detail-body {
    grid-template-columns: minmax(0, 1fr) 300px !important;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    gap: 24px !important;
}

.game-detail-main-column {
    grid-column: 1;
    grid-row: 1;
}

.game-detail-sidebar {
    grid-column: 2;
    grid-row: 1;
}

.detail-video-grid,
.detail-news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

@media (max-width: 1100px) {
    .game-detail-body {
        grid-template-columns: 1fr !important;
        max-width: 760px;
    }

    .game-detail-main-column {
        grid-column: 1;
        grid-row: 1;
    }

    .game-detail-sidebar {
        grid-column: 1;
        grid-row: 2;
    }
}


/* Match game-detail video/news cards to the rest of the site */
.detail-video-card__image,
.detail-news-card__image {
    width: 100%;
    aspect-ratio: 1.86 / 1 !important;
    overflow: hidden;
    background: #e8eaed;
    border-radius: 5px;
}

.detail-video-card__image img,
.detail-news-card__image img {
    display: block;
    width: 100%;
    height: 100% !important;
    aspect-ratio: auto !important;
    object-fit: cover;
    transition: transform 180ms ease;
}

.detail-video-card__image:hover img,
.detail-news-card__image:hover img,
.detail-video-card__image:focus-visible img,
.detail-news-card__image:focus-visible img {
    transform: scale(1.015);
}

.detail-card-category {
    margin: 10px 0 6px !important;
    color: #0ae2f6;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    font-synthesis: none;
    line-height: 1 !important;
    text-transform: uppercase;
}

.detail-video-card h3,
.detail-news-card h3 {
    margin: 0 !important;
    color: #07080a;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    font-synthesis: none;
    line-height: 1.38 !important;
    letter-spacing: -0.01em;
}

.detail-video-card h3 a,
.detail-news-card h3 a {
    color: inherit;
    text-decoration: none;
}

.detail-video-card time,
.detail-news-card time {
    display: block;
    margin-top: 6px;
    color: #17181a !important;
    font-size: 12px !important;
    line-height: 1.2;
}


/* Game detail centered content width */
.game-detail-body {
    grid-template-columns: minmax(0, 1fr) 300px !important;
    max-width: 1536px;
    margin-left: auto;
    margin-right: auto;
    gap: 24px !important;
}


/* Game detail 1450px width overrides */
.game-detail-hero {
    margin: 18px auto 0;
    max-width: 1450px;
    min-height: 430px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    overflow: hidden;
}

.game-detail-body {
    grid-template-columns: minmax(0, 1fr) 300px !important;
    max-width: 1450px;
    margin-left: auto;
    margin-right: auto;
    gap: 24px !important;
}


/* Slightly smaller game box art */
.game-detail-cover {
    width: 190px;
    justify-self: center;
}

.game-detail-cover img {
    width: 100%;
    height: 255px;
    aspect-ratio: auto;
    object-fit: cover;
}

/* More Like This */
.more-like-this-card {
    margin-top: 26px;
}

.more-like-this-card h2 {
    position: relative;
    margin: 0 0 14px;
    padding-left: 14px;
    color: #08090b;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.more-like-this-card h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #0ae2f6;
    border-radius: 2px;
}

.more-like-this-list {
    border-top: 1px solid #dde2e8;
}

.more-like-this-item {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #dde2e8;
}

.more-like-this-thumb {
    display: block;
    overflow: hidden;
    border-radius: 4px;
    background: #eef1f4;
}

.more-like-this-thumb img {
    display: block;
    width: 64px;
    height: 82px;
    object-fit: cover;
}

.more-like-this-copy {
    min-width: 0;
}

.more-like-this-copy h3 {
    margin: 0 0 7px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.more-like-this-copy h3 a {
    color: #08090b;
}

.more-like-this-copy h3 a:hover {
    color: #0ae2f6;
}

.more-like-this-copy time,
.more-like-this-copy p {
    display: block;
    margin: 0;
    color: #5f6670;
    font-size: 10px;
    line-height: 1.4;
}

.more-like-this-copy p {
    margin-top: 3px;
}

/* Featured trailer above Latest Videos */
.featured-trailer-card {
    position: relative;
    min-height: 190px;
    margin-bottom: 34px;
    overflow: hidden;
    border-radius: 6px;
    background: #0b141d;
    color: #ffffff;
}

.featured-trailer-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.featured-trailer-card__content {
    position: relative;
    z-index: 2;
    max-width: 440px;
    padding: 24px 24px 22px;
}

.featured-trailer-card__eyebrow {
    display: block;
    margin-bottom: 7px;
    color: #0ae2f6;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.featured-trailer-card h2 {
    margin: 0 0 10px;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.05;
}

.featured-trailer-card p {
    margin: 0;
    max-width: 390px;
    color: rgba(255,255,255,.92);
    font-size: 13px;
    line-height: 1.5;
}

.featured-trailer-card__button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 135px;
    height: 42px;
    margin-top: 17px;
    padding: 0 18px;
    border-radius: 4px;
    background: #ffffff;
    color: #08090b;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.featured-trailer-card__button:hover {
    color: #0ae2f6;
}

.featured-trailer-card__play {
    position: absolute;
    z-index: 2;
    left: 55%;
    top: 50%;
    width: 76px;
    height: 76px;
    transform: translate(-50%, -50%);
    border: 0;
    border-radius: 50%;
    background: rgba(4,12,18,.72);
    color: #ffffff;
    font-size: 31px;
    cursor: pointer;
    transition: .2s ease;
}

.featured-trailer-card__play:hover {
    background: #0ae2f6;
    color: #08090b;
}

.featured-trailer-card__play span {
    display: inline-block;
    transform: translateX(3px);
}

.featured-trailer-card__tag {
    position: absolute;
    z-index: 2;
    right: 12px;
    bottom: 10px;
    padding: 5px 8px;
    border-radius: 3px;
    background: rgba(8,9,11,.82);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

@media (max-width: 700px) {
    .featured-trailer-card {
        min-height: 260px;
    }

    .featured-trailer-card__content {
        max-width: none;
        padding-right: 90px;
    }

    .featured-trailer-card__play {
        left: auto;
        right: 18px;
        top: 24px;
        width: 58px;
        height: 58px;
        transform: none;
        font-size: 24px;
    }
}

.detail-screenshots{margin-bottom:34px}
.detail-screenshot-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:12px}
.detail-shot{display:block;overflow:hidden;border-radius:5px;background:#e9edf1}
.detail-shot img{display:block;width:100%;height:120px;object-fit:cover;transition:transform .2s}
.detail-shot:hover img{transform:scale(1.03)}
@media(max-width:900px){.detail-screenshot-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:600px){.detail-screenshot-grid{grid-template-columns:repeat(2,1fr)}}

/* About the Game */
.about-game-section {
    margin-bottom: 34px;
}

.about-game-section p {
    margin: 0;
    max-width: 900px;
    color: #4d545d;
    font-size: 14px;
    line-height: 1.7;
}

/* Game detail tabs: no underline on active or hover */
.game-detail-tabs a::after,
.game-detail-tabs a:hover::after,
.game-detail-tabs a:focus-visible::after,
.game-detail-tabs a.active::after,
.game-detail-tabs a[aria-current="page"]::after {
    display: none !important;
    content: none !important;
    height: 0 !important;
    background: transparent !important;
}


/* Game detail tab links: remove browser text underline */
.game-detail-tabs a,
.game-detail-tabs a:link,
.game-detail-tabs a:visited,
.game-detail-tabs a:hover,
.game-detail-tabs a:focus,
.game-detail-tabs a:focus-visible,
.game-detail-tabs a:active {
    text-decoration: none !important;
}


/* Larger view-all links with no underline */
.detail-view-all,
.detail-view-all:link,
.detail-view-all:visited,
.detail-view-all:hover,
.detail-view-all:focus,
.detail-view-all:focus-visible,
.detail-view-all:active {
    text-decoration: none !important;
    font-size: 16px !important;
    font-weight: 700;
}


/* View all links */
.detail-view-all,
.detail-view-all:link,
.detail-view-all:visited,
.detail-view-all:hover,
.detail-view-all:focus,
.detail-view-all:focus-visible,
.detail-view-all:active {
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 750;
}

/* Review links on sidebar */
.review-link,
.review-link:link,
.review-link:visited,
.review-link:hover,
.review-link:focus,
.review-link:focus-visible,
.review-link:active,
.view-full-review,
.view-full-review:link,
.view-full-review:visited,
.view-full-review:hover,
.view-full-review:focus,
.view-full-review:focus-visible,
.view-full-review:active{
    text-decoration:none !important;
}


/* Sidebar score links */
.score-review-button,
.score-review-button:link,
.score-review-button:visited,
.score-review-button:hover,
.score-review-button:focus,
.score-review-button:active,
.score-full-review,
.score-full-review:link,
.score-full-review:visited,
.score-full-review:hover,
.score-full-review:focus,
.score-full-review:active{
    text-decoration:none !important;
}


/* =========================================================
   Responsive game-detail layout
   ========================================================= */

/* Prevent wide media and long text from overflowing */
.game-detail-page,
.game-detail-hero,
.game-detail-body,
.game-detail-main,
.game-detail-sidebar,
.detail-content-section,
.about-game-section {
    min-width: 0;
}

.game-detail-page img,
.game-detail-page iframe,
.game-detail-page video {
    max-width: 100%;
}

/* Tablet */
@media (max-width: 1100px) {
    .game-detail-hero,
    .game-detail-body {
        width: calc(100% - 32px);
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .game-detail-body {
        grid-template-columns: minmax(0, 1fr) 270px !important;
        gap: 20px !important;
    }

    .game-detail-cover,
    .game-detail-hero-cover,
    .detail-game-cover {
        width: 190px !important;
        max-width: 28vw;
    }

    .detail-screenshot-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .detail-news-grid,
    .detail-video-grid,
    .latest-news-grid,
    .latest-videos-grid,
    .guides-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* Mobile / small tablet */
@media (max-width: 820px) {
    .game-detail-hero,
    .game-detail-body {
        width: calc(100% - 24px);
    }

    .game-detail-body {
        display: block !important;
    }

    .game-detail-main,
    .game-detail-sidebar {
        width: 100% !important;
        max-width: none !important;
    }

    .game-detail-sidebar {
        margin-top: 34px;
    }

    .game-detail-hero-inner,
    .game-detail-hero-content,
    .game-detail-banner-content,
    .detail-hero-content {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 18px !important;
    }

    .game-detail-cover,
    .game-detail-hero-cover,
    .detail-game-cover {
        width: 150px !important;
        max-width: 45vw;
    }

    .game-detail-tabs {
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        gap: 22px !important;
        padding-left: 12px;
        padding-right: 12px;
    }

    .game-detail-tabs a {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .detail-screenshot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .detail-news-grid,
    .detail-video-grid,
    .latest-news-grid,
    .latest-videos-grid,
    .guides-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .featured-trailer,
    .featured-trailer-card,
    .detail-featured-trailer {
        min-height: 0 !important;
    }

    .featured-trailer img,
    .featured-trailer-card img,
    .detail-featured-trailer img {
        height: auto !important;
        min-height: 220px;
        object-fit: cover;
    }

    .score-card,
    .game-info-card,
    .more-like-this {
        width: 100% !important;
    }
}

/* Phones */
@media (max-width: 560px) {
    .game-detail-hero,
    .game-detail-body {
        width: calc(100% - 20px);
    }

    .game-detail-hero {
        min-height: 0 !important;
    }

    .game-detail-title,
    .game-detail-hero h1,
    .detail-hero-title {
        font-size: clamp(28px, 9vw, 42px) !important;
        line-height: 1.05 !important;
        overflow-wrap: anywhere;
    }

    .game-detail-summary,
    .game-detail-hero p,
    .about-game-section p {
        font-size: 14px !important;
        line-height: 1.65 !important;
    }

    .game-detail-cover,
    .game-detail-hero-cover,
    .detail-game-cover {
        width: 130px !important;
        max-width: 52vw;
    }

    .detail-screenshot-grid,
    .detail-news-grid,
    .detail-video-grid,
    .latest-news-grid,
    .latest-videos-grid,
    .guides-grid {
        grid-template-columns: 1fr !important;
    }

    .detail-shot img {
        height: 180px !important;
    }

    .detail-section-heading {
        align-items: flex-end;
        gap: 12px;
    }

    .detail-section-heading h2 {
        font-size: 24px !important;
    }

    .detail-view-all {
        font-size: 14px !important;
        white-space: nowrap;
    }

    .featured-trailer img,
    .featured-trailer-card img,
    .detail-featured-trailer img {
        min-height: 190px;
    }

    .more-like-this-item,
    .related-game-item {
        grid-template-columns: 58px minmax(0, 1fr) !important;
    }

    .score-review-button,
    .score-full-review {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
}


/* ESRB rating in Game Info sidebar */
.game-info-esrb dd {
    margin-top: 10px;
}

.esrb-rating-wrap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.esrb-rating-wrap img {
    width: 58px;
    height: auto;
    flex: 0 0 58px;
    display: block;
}

.esrb-rating-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 2px;
}

.esrb-rating-copy strong {
    color: #111820;
    font-size: 13px;
    line-height: 1.25;
}

.esrb-rating-copy span {
    color: #646c75;
    font-size: 11px;
    line-height: 1.45;
}

@media (max-width: 820px) {
    .esrb-rating-wrap img {
        width: 64px;
        flex-basis: 64px;
    }

    .esrb-rating-copy strong {
        font-size: 14px;
    }

    .esrb-rating-copy span {
        font-size: 12px;
    }
}


/* Adjust ESRB rating alignment and image size */
.game-info-esrb dd {
    margin-left: 0 !important;
}

.esrb-rating-wrap {
    justify-content: flex-start !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    gap: 10px !important;
}

.esrb-rating-wrap img {
    width: 48px !important;
    flex: 0 0 48px !important;
    margin-left: 0 !important;
}

@media (max-width: 820px) {
    .esrb-rating-wrap img {
        width: 52px !important;
        flex-basis: 52px !important;
    }
}


/* Align ESRB image directly beneath the ESRB Rating title */
.game-info-card dl .game-info-esrb {
    display: block !important;
}

.game-info-card .game-info-esrb dt,
.game-info-card .game-info-esrb dd {
    width: 100% !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    text-align: left !important;
}

.game-info-card .game-info-esrb dd {
    margin-top: 10px !important;
}

.game-info-card .game-info-esrb .esrb-rating-wrap {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    margin: 0 !important;
    padding: 0 !important;
}

.game-info-card .game-info-esrb .esrb-rating-wrap img {
    width: 46px !important;
    flex: 0 0 46px !important;
    margin: 0 !important;
}


/* Remove the divider line from the ESRB Rating row */
.game-info-card .game-info-esrb {
    border-bottom: none !important;
    border-top: none !important;
    box-shadow: none !important;
}

.game-info-card .game-info-esrb::before,
.game-info-card .game-info-esrb::after {
    display: none !important;
    content: none !important;
}


/* Keep dividers on all Game Info rows except ESRB Rating */
.game-info-card dl > div {
    border-bottom: 1px solid #d9dde2;
}

.game-info-card dl > div.game-info-esrb {
    border-bottom: none !important;
}


/* Remove borders from the ESRB row and its nested content only */
.game-info-card dl > .game-info-esrb,
.game-info-card dl > .game-info-esrb > dd,
.game-info-card dl > .game-info-esrb .esrb-rating-wrap,
.game-info-card dl > .game-info-esrb .esrb-rating-copy {
    border: 0 !important;
    border-bottom: 0 !important;
    border-top: 0 !important;
    box-shadow: none !important;
}

.game-info-card dl > .game-info-esrb .esrb-rating-wrap,
.game-info-card dl > .game-info-esrb .esrb-rating-copy {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}


/* =========================================================
   Header live-search dropdown
   ========================================================= */
.site-header {
    position: relative;
    z-index: 1200;
}

.search-button[aria-expanded="true"] {
    color: #0ae2f6;
}

.header-search-dropdown {
    position: absolute;
    z-index: 1150;
    top: var(--header-height, 78px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #edf0f3;
    box-shadow: 0 18px 40px rgba(8, 18, 26, .18);
    animation: headerSearchDrop .18s ease-out;
}

.header-search-dropdown[hidden] {
    display: none !important;
}

@keyframes headerSearchDrop {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.header-search-dropdown__inner {
    width: min(1450px, calc(100% - 40px));
    margin: 0 auto;
    padding: 22px 0 28px;
}

.header-live-search {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 54px;
    background: #f4f6f8;
    border: 1px solid #dfe4e8;
    border-radius: 5px;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.header-live-search:focus-within {
    background: #fff;
    border-color: #0ae2f6;
    box-shadow: 0 0 0 3px rgba(10, 226, 246, .16);
}

.header-live-search > i {
    margin-left: 18px;
    color: #66717b;
    font-size: 17px;
}

.header-live-search input {
    width: 100%;
    min-width: 0;
    height: 52px;
    padding: 0 48px 0 13px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #111820;
    font: inherit;
    font-size: 16px;
}

.header-live-search input::-webkit-search-cancel-button {
    display: none;
}

.header-search-clear {
    position: absolute;
    right: 10px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #5f6973;
    cursor: pointer;
}

.header-search-clear:hover {
    background: #e6eaed;
    color: #111820;
}

.header-search-hint,
.header-search-empty {
    margin: 18px 0 0;
    color: #737d86;
    font-size: 14px;
}

.header-search-results {
    padding-top: 5px;
}

.header-search-section {
    padding: 19px 0 21px;
    border-bottom: 1px solid #e4e8eb;
}

.header-search-section:last-of-type {
    border-bottom: 0;
    padding-bottom: 4px;
}

.header-search-section[hidden] {
    display: none !important;
}

.header-search-section__heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 12px;
}

.header-search-section__heading h2 {
    margin: 0;
    color: #111820;
    font-size: 13px;
    line-height: 1;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.header-search-section__heading a {
    color: #5d6770;
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
}

.header-search-section__heading a:hover {
    color: #00bfd2;
}

.header-search-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 13px;
}

.header-search-card {
    min-width: 0;
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    padding: 8px;
    border: 1px solid #e4e8eb;
    border-radius: 5px;
    background: #fff;
    color: #111820;
    text-decoration: none;
    transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.header-search-card:hover,
.header-search-card:focus-visible,
.header-search-card.is-keyboard-active {
    transform: translateY(-2px);
    border-color: #0ae2f6;
    box-shadow: 0 7px 18px rgba(14, 29, 39, .10);
    outline: none;
}

.header-search-card__image {
    width: 66px;
    height: 55px;
    overflow: hidden;
    border-radius: 4px;
    background: #dce2e6;
}

.header-search-card--game .header-search-card__image,
.header-search-card--review .header-search-card__image {
    width: 48px;
    height: 64px;
}

.header-search-card--game,
.header-search-card--review {
    grid-template-columns: 48px minmax(0, 1fr);
}

.header-search-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.header-search-card__content {
    min-width: 0;
}

.header-search-card__eyebrow {
    display: block;
    margin-bottom: 4px;
    color: #00afc2;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.header-search-card__title {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: #111820;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.header-search-card__meta {
    display: block;
    margin-top: 4px;
    color: #7a838c;
    font-size: 10px;
    line-height: 1.3;
}

.header-search-card__score {
    display: inline-flex;
    align-items: center;
    margin-top: 5px;
    padding: 2px 6px;
    border-radius: 3px;
    background: #0ae2f6;
    color: #071217;
    font-size: 10px;
    font-weight: 900;
}

body.header-search-open {
    overflow-x: hidden;
}

@media (max-width: 980px) {
    .header-search-dropdown {
        top: var(--header-height, 70px);
    }

    .header-search-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .header-search-dropdown__inner {
        width: calc(100% - 22px);
        padding-top: 14px;
        max-height: calc(100vh - 76px);
        overflow-y: auto;
    }

    .header-live-search {
        min-height: 48px;
    }

    .header-live-search input {
        height: 46px;
        font-size: 14px;
    }

    .header-search-row {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 5px;
        scroll-snap-type: x proximity;
    }

    .header-search-card {
        flex: 0 0 245px;
        scroll-snap-align: start;
    }

    .header-search-section {
        padding: 16px 0 17px;
    }
}
