.game-page {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.game-hero {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 960px) {
  .game-hero {
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    align-items: flex-start;
  }
}

.game-hero__media {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.game-hero__cover {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(135deg, #161A20, #000);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.9);
}
.game-hero__cover img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.02);
  transition: transform 0.25s ease-out, filter 0.25s ease-out;
  filter: saturate(1.1) contrast(1.05);
}
.game-hero__cover:hover img {
  transform: scale(1.06);
  filter: saturate(1.25) contrast(1.1) brightness(1.05);
}

.game-hero__video {
  background: #161A20;
  border-radius: 18px;
  padding: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

.game-hero__video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.game-hero__video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.game-hero__video-label {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: rgba(226, 232, 240, 0.8);
}

.game-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.game-hero__title {
  font-size: clamp(2.3rem, 3.2vw, 2.8rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.game-hero__meta-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
@media (min-width: 720px) {
  .game-hero__meta-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    gap: 1.5rem;
  }
}

.game-hero__meta {
  color: rgba(226, 232, 240, 0.8);
  font-size: 0.9rem;
}
.game-hero__meta strong {
  color: #ffffff;
}

.game-hero__platforms,
.game-hero__tags,
.game-hero__modes {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.game-hero__tags {
  gap: 0.75rem;
}

.section-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(226, 232, 240, 0.8);
  font-weight: 600;
}

.chip-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.chip-list--tight {
  gap: 0.25rem;
}

.chip-list__item {
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: #ffffff;
  white-space: nowrap;
}

.chip-list__item--soft {
  background: rgba(148, 163, 184, 0.12);
  border-color: rgba(148, 163, 184, 0.28);
  color: rgba(226, 232, 240, 0.8);
}

.game-hero__ratings {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.25rem;
}
@media (max-width: 720px) {
  .game-hero__ratings {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.rating-card {
  position: relative;
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  background: #161A20;
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

.rating-card--global {
  background: radial-gradient(circle at top left, rgba(254, 231, 11, 0.16) 0, #161A20 55%);
  border-color: rgba(254, 231, 11, 0.6);
}

.rating-card--user {
  background: radial-gradient(circle at top, rgba(70, 172, 194, 0.18) 0, #161A20 55%);
  border-color: rgba(70, 172, 194, 0.7);
}

.rating-card--critic {
  background: radial-gradient(circle at top, rgba(230, 0, 18, 0.18) 0, #161A20 55%);
  border-color: rgba(230, 0, 18, 0.7);
}

.rating-card__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(226, 232, 240, 0.8);
}

.rating-card__value {
  font-size: 1.6rem;
  font-weight: 800;
}

.rating-card__sub {
  font-size: 0.78rem;
  color: rgba(226, 232, 240, 0.8);
}

.game-hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.18s ease-out, border-color 0.18s ease-out, transform 0.18s ease-out, box-shadow 0.18s ease-out;
  white-space: nowrap;
}

.btn--primary {
  background: #00FFFF;
  color: #020617;
  border-color: rgba(0, 255, 255, 0.95);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}
.btn--primary:hover {
  background: rgb(15.3, 255, 255);
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.9);
}
.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
}

.btn--ghost {
  background: rgba(15, 23, 42, 0.85);
  border-color: rgba(148, 163, 184, 0.4);
  color: #ffffff;
}
.btn--ghost:hover {
  background: rgba(30, 41, 59, 0.95);
  border-color: rgba(148, 163, 184, 0.9);
  transform: translateY(-1px);
}
.btn--ghost:active {
  transform: translateY(0);
}

.game-layout {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .game-layout {
    grid-template-columns: minmax(0, 2fr) minmax(260px, 0.9fr);
    align-items: flex-start;
  }
}

.game-layout__main {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.game-layout__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.game-section {
  background: #161A20;
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

.game-section__title {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.game-description,
.game-storyline {
  margin-bottom: 1rem;
}
.game-description:last-child,
.game-storyline:last-child {
  margin-bottom: 0;
}

.game-description__subtitle {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(226, 232, 240, 0.8);
  margin-bottom: 0.45rem;
}

.game-description p,
.game-storyline p {
  margin: 0;
  color: #ffffff;
  line-height: 1.6;
  font-size: 0.95rem;
}

.game-points {
  margin-top: 0.9rem;
}
.game-points ul {
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
}
.game-points ul li {
  margin-bottom: 0.25rem;
}
.game-points--strong ul li::marker {
  color: #00FFFF;
}
.game-points--weak ul li::marker {
  color: rgb(230, 0, 18);
}

.game-gallery {
  position: relative;
}
.game-gallery .swiper-wrapper {
  align-items: stretch;
}

.media-slide {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #222024;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}
.media-slide img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.02);
  transition: transform 0.25s ease-out, filter 0.25s ease-out;
  filter: saturate(1.05);
}
.media-slide:hover img {
  transform: scale(1.06);
  filter: saturate(1.2) brightness(1.03);
}

.game-gallery__pagination {
  margin-top: 0.75rem;
}
.game-gallery__pagination .swiper-pagination-bullet {
  background: rgba(148, 163, 184, 0.6);
  opacity: 1;
}
.game-gallery__pagination .swiper-pagination-bullet-active {
  background: #00FFFF;
}

.game-gallery__nav {
  color: #00FFFF;
}
.game-gallery__nav.swiper-button-disabled {
  opacity: 0.3;
}

.game-videos-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .game-videos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.game-video-card {
  background: #161A20;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

.game-video-card__iframe-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  background: #000;
}
.game-video-card__iframe-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.game-video-card__title {
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  color: #ffffff;
}

.sidebar-card {
  background: #161A20;
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

.sidebar-card__title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(226, 232, 240, 0.8);
  margin-bottom: 0.7rem;
}

.meta-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.meta-list__item {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.88rem;
}

.meta-list__label {
  color: rgba(226, 232, 240, 0.8);
}

.meta-list__value {
  color: #ffffff;
  text-align: right;
}

@media (max-width: 600px) {
  .game-section,
  .sidebar-card {
    padding: 1.1rem 1rem;
  }
  .meta-list__item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .meta-list__value {
    text-align: left;
  }
}/*# sourceMappingURL=game.css.map */