:root {
  --bg: #f3f5f9;
  --surface: #ffffff;
  --surface-soft: #f7f9fc;
  --text: #12141b;
  --muted: #5c6475;
  --line: #d7dce7;
  --heading: "Teko", "Segoe UI", sans-serif;
  --body: "Manrope", "Segoe UI", sans-serif;
  --accent: #ff3b30;
  --accent-2: #ff6a3d;
  --green: #0e9f6e;
  --shadow: 0 18px 44px rgba(12, 16, 28, 0.1);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  line-height: 1.5;
  background:
    radial-gradient(circle at 3% 0%, rgba(255, 59, 48, 0.12), transparent 33%),
    radial-gradient(circle at 96% 5%, rgba(255, 106, 61, 0.1), transparent 30%),
    linear-gradient(180deg, #f9fbff, var(--bg));
  min-height: 100vh;
}

.container {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
}

.ambient-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 100%;
  pointer-events: none;
  z-index: -1;
  filter: blur(120px);
  opacity: 0.2;
}

.ambient-glow-a {
  left: -140px;
  top: -120px;
  background: #ff3b30;
}

.ambient-glow-b {
  right: -140px;
  bottom: 3%;
  background: #ff7a18;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(13, 15, 20, 0.93);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(8, 10, 18, 0.45);
  backdrop-filter: blur(12px);
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 0;
  color: #d8deea;
  font-size: 0.8rem;
}

.topbar-date,
.topbar-tag {
  margin: 0;
  font-weight: 700;
  color: #aeb8cc;
}

.topbar-live {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  padding: 0.22rem 0.55rem;
}

.live-dot {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: #ff4f4f;
  box-shadow: 0 0 0 0 rgba(255, 79, 79, 0.7);
  animation: pulse 1.8s infinite;
}

.live-label {
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

#liveTickerText {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #d5deee;
}

#liveTickerText.ticker-fade {
  animation: tickerFade 0.5s ease;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 79, 79, 0.7);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(255, 79, 79, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 79, 79, 0);
  }
}

@keyframes tickerFade {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.78rem 0 0.9rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  text-decoration: none;
  color: #ffffff;
}

.logo-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 24px rgba(255, 59, 48, 0.33);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text strong {
  font-family: var(--heading);
  letter-spacing: 0.02em;
  font-size: 1.7rem;
  font-weight: 600;
}

.logo-text small {
  font-size: 0.69rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca5b8;
  margin-top: 0.06rem;
}

.nav-menu {
  display: flex;
  gap: 1rem;
}

.nav-menu a {
  text-decoration: none;
  color: #d9deea;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: color 0.16s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: #ffffff;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border-radius: 0.6rem;
  padding: 0.5rem 0.75rem;
  font-weight: 700;
}

.hero {
  margin-top: 1.25rem;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid #2a3142;
  background:
    linear-gradient(130deg, rgba(15, 18, 28, 0.93), rgba(20, 24, 36, 0.96)),
    radial-gradient(circle at 84% 9%, rgba(255, 59, 48, 0.25), transparent 33%);
  color: #f8fbff;
  box-shadow: 0 28px 52px rgba(12, 16, 28, 0.45);
  padding: 1.9rem;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.05), transparent 50%),
    repeating-linear-gradient(
      -35deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px,
      transparent 12px
    );
  pointer-events: none;
}

.hero-main,
.hero-side {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #b8c2d6;
}

.hero h1 {
  margin: 0.35rem 0;
  font-family: var(--heading);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 0.95;
}

.hero p {
  margin: 0.45rem 0 0.8rem;
  color: #e2e9f8;
  max-width: 64ch;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.95rem;
  color: #d1daef;
  font-size: 0.9rem;
  font-weight: 600;
}

.badge {
  border-radius: 999px;
  padding: 0.26rem 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.7rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #f8fbff;
}

.hero-side {
  display: grid;
  gap: 0.7rem;
}

.metric-card {
  margin: 0;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.78rem 0.85rem;
}

.metric-card p {
  margin: 0;
  color: #bec8dd;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.metric-card h3 {
  margin: 0.26rem 0 0.05rem;
  font-family: var(--heading);
  letter-spacing: 0.01em;
  font-size: 1.75rem;
  line-height: 1;
}

.metric-card span {
  color: #e1e8f8;
  font-size: 0.84rem;
}

.primary-btn,
.secondary-btn {
  border: 0;
  border-radius: 999px;
  padding: 0.68rem 1.16rem;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.primary-btn {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 11px 28px rgba(255, 59, 48, 0.35);
}

.secondary-btn {
  color: #1f2a3d;
  background: #f0f4fa;
  border: 1px solid #d8dfec;
}

.primary-btn:hover,
.secondary-btn:hover,
.primary-btn:focus-visible,
.secondary-btn:focus-visible {
  transform: translateY(-1px);
}

.controls {
  margin-top: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 10px 28px rgba(12, 16, 28, 0.08);
}

.controls-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.search-field {
  flex: 1;
}

.search-field input,
.sort-field select,
.newsletter-form input {
  width: 100%;
  border: 1px solid #d3d9e7;
  border-radius: 10px;
  background: #fdfdff;
  color: var(--text);
  font: inherit;
  padding: 0.64rem 0.72rem;
}

.search-field input:focus,
.sort-field select:focus,
.newsletter-form input:focus {
  outline: 2px solid rgba(255, 59, 48, 0.25);
  border-color: var(--accent);
}

.sort-field {
  min-width: 190px;
}

.sort-field span {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.44rem;
  margin-top: 0.75rem;
}

.chip {
  border: 1px solid #d8deea;
  background: #ffffff;
  border-radius: 999px;
  padding: 0.35rem 0.72rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: #525a6e;
  cursor: pointer;
}

.chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.results-count {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-weight: 700;
}

.review-hub {
  margin-top: 1rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid #cfd6e3;
  background: linear-gradient(180deg, #fefeff, #f5f8fc);
  padding: 1rem;
  box-shadow: 0 14px 34px rgba(12, 16, 28, 0.09);
}

.review-hub-header h2 {
  margin: 0.25rem 0 0.35rem;
  font-family: var(--heading);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
}

.review-hub-header p {
  margin: 0 0 0.8rem;
  color: var(--muted);
}

.review-eyebrow {
  color: #7d1010;
}

.review-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.panel {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 1rem;
  box-shadow: 0 10px 26px rgba(12, 16, 28, 0.07);
}

.review-column {
  background: #fbfcff;
}

.review-column h3 {
  margin: 0 0 0.75rem;
  font-family: var(--heading);
  font-size: 1.45rem;
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.review-grid {
  display: grid;
  gap: 0.78rem;
}

.review-card {
  border: 1px solid #d8dfeb;
  border-radius: 13px;
  background: #ffffff;
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 0.68rem;
  padding: 0.62rem;
}

.review-thumb {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 9px;
  border: 1px solid #d8dfeb;
  background: #eef3fb;
}

.review-body {
  display: grid;
  gap: 0.35rem;
  align-content: start;
}

.review-top {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: flex-start;
}

.review-top h4 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 800;
}

.platform-pill {
  border-radius: 999px;
  padding: 0.16rem 0.56rem;
  font-size: 0.69rem;
  font-weight: 800;
  color: #47526b;
  border: 1px solid #d8deeb;
  background: #f3f6fc;
  white-space: nowrap;
}

.review-summary {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.35;
}

.dual-score {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.score-box {
  border: 1px solid #d5dcec;
  border-radius: 10px;
  padding: 0.35rem 0.44rem;
  background: #f7f9fd;
  display: grid;
  gap: 0.08rem;
}

.score-box .score-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 800;
  color: #59657f;
}

.score-box strong {
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 800;
}

.score-box small {
  font-size: 0.74rem;
  color: #556079;
  font-weight: 700;
}

.score-box.gamespot strong {
  color: #b10800;
}

.score-box.metacritic strong {
  color: #12654a;
}

.score-box.metacritic.mid strong {
  color: #9a5d00;
}

.score-box.metacritic.low strong {
  color: #941f1f;
}

.score-box.metacritic.na strong {
  color: #4f5d7a;
}

.review-meta-row {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: #49556f;
  font-size: 0.78rem;
  font-weight: 700;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.review-link {
  text-decoration: none;
  font-size: 0.79rem;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.34rem 0.72rem;
}

.review-link.primary-link {
  color: #ffffff;
  background: linear-gradient(135deg, #fb5b3f, #e42121);
}

.review-link.ghost-link {
  color: #364760;
  border: 1px solid #d2dbea;
  background: #f7faff;
}

.review-source-note {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 700;
}

.top-lists {
  margin-top: 1rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid #cfd6e3;
  background: linear-gradient(180deg, #fffefe, #f5f8fc);
  padding: 1rem;
  box-shadow: 0 14px 34px rgba(12, 16, 28, 0.09);
}

.top-lists-header h2 {
  margin: 0.2rem 0 0.35rem;
  font-family: var(--heading);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
}

.top-lists-header p {
  margin: 0 0 0.75rem;
  color: var(--muted);
}

.top-tabs {
  display: inline-flex;
  gap: 0.5rem;
  border: 1px solid #d8deea;
  border-radius: 999px;
  padding: 0.24rem;
  background: #f7faff;
}

.top-tab-btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  background: transparent;
  color: #4a5772;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.top-tab-btn.active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
}

.top-panel {
  margin-top: 0.9rem;
}

.rank-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.rank-card {
  text-decoration: none;
  color: inherit;
  border: 1px solid #d6ddea;
  border-radius: 13px;
  background: #ffffff;
  padding: 0.52rem;
  display: grid;
  gap: 0.46rem;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.rank-card:hover,
.rank-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(12, 16, 28, 0.1);
}

.rank-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #d9dfeb;
}

.rank-number {
  width: fit-content;
  border-radius: 999px;
  padding: 0.15rem 0.56rem;
  font-size: 0.74rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #f85f3f, #dd1f1f);
}

.rank-content h4 {
  margin: 0.3rem 0 0.18rem;
  font-size: 0.98rem;
  line-height: 1.2;
  font-weight: 800;
}

.rank-content p {
  margin: 0;
  font-size: 0.83rem;
  color: var(--muted);
}

.rank-meta {
  margin-top: 0.3rem;
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #30405f;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.95fr) minmax(0, 1fr);
  gap: 1rem;
  margin-top: 1rem;
  align-items: start;
}

.posts-area {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 1rem;
}

.posts-header h2 {
  margin: 0;
  font-family: var(--heading);
  font-size: 1.7rem;
  line-height: 0.95;
}

.posts-header p {
  margin: 0.28rem 0 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.story-card {
  width: 100%;
  text-align: left;
  color: inherit;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.story-card:hover,
.story-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(12, 16, 28, 0.1);
}

.story-cover {
  position: relative;
  height: 150px;
  background: #dce3f1;
}

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

.story-cover .badge {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
}

.story-content {
  padding: 0.74rem;
}

.story-content h3 {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.2;
  font-weight: 800;
}

.story-content p {
  margin: 0.46rem 0 0.62rem;
  color: var(--muted);
}

.story-meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  color: #4c5670;
  font-size: 0.81rem;
  font-weight: 700;
}

#loadMoreBtn {
  width: 100%;
  margin-top: 0.9rem;
}

.sidebar {
  display: grid;
  gap: 0.9rem;
}

.panel h2 {
  margin: 0 0 0.75rem;
  font-family: var(--heading);
  font-size: 1.5rem;
  line-height: 0.95;
}

.trending-list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.68rem;
}

.trend-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
}

.trend-link:hover,
.trend-link:focus-visible {
  color: #9a1212;
}

.trending-list span {
  display: block;
  color: var(--muted);
  font-size: 0.81rem;
  margin-top: 0.13rem;
}

.release-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.release-list li {
  border: 1px solid #d8deea;
  border-radius: 11px;
  background: #f8faff;
  padding: 0.65rem;
}

.release-list h3 {
  margin: 0 0 0.2rem;
  font-size: 0.98rem;
}

.release-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.newsletter-panel p {
  margin-top: 0;
  color: var(--muted);
}

.newsletter-form {
  display: grid;
  gap: 0.55rem;
}

.newsletter-form .primary-btn {
  width: 100%;
}

.newsletter-message {
  margin-bottom: 0;
  min-height: 1.2rem;
  color: var(--green);
  font-weight: 800;
}

.empty-message {
  margin: 0;
  border: 1px dashed #d1d8e7;
  border-radius: 12px;
  padding: 1rem;
  background: #f8fbff;
  color: var(--muted);
  text-align: center;
}

.article-page .site-header {
  position: sticky;
}

.article-hero {
  margin-top: 1rem;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid #d6dce9;
  background: linear-gradient(150deg, #ffffff, #f6f9ff);
  padding: 1.1rem;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
  gap: 1rem;
}

.article-chip {
  margin: 0;
  width: fit-content;
  border-radius: 999px;
  background: #f5f8ff;
  border: 1px solid #d6dded;
  padding: 0.2rem 0.6rem;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #4a5872;
  font-weight: 700;
}

.article-hero h1 {
  margin: 0.42rem 0;
  font-family: var(--heading);
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 0.95;
}

.article-meta {
  margin: 0.25rem 0 0.7rem;
  font-size: 0.9rem;
  color: #55607a;
  font-weight: 700;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.article-cover-visual {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border-radius: 14px;
  border: 1px solid #d5ddeb;
  box-shadow: 0 18px 38px rgba(12, 16, 28, 0.16);
  object-fit: cover;
  display: block;
}

.article-body {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
}

.article-block h2 {
  margin: 0 0 0.45rem;
  font-family: var(--heading);
  font-size: 1.7rem;
  line-height: 0.95;
}

.article-block p {
  margin: 0;
  color: var(--muted);
}

.article-paragraphs {
  display: grid;
  gap: 0.9rem;
}

.article-paragraphs p {
  margin: 0;
  text-align: left;
}

.article-review-links,
.article-top-links {
  display: grid;
  gap: 0.7rem;
}

.article-mini-card {
  border: 1px solid #d6deec;
  border-radius: 12px;
  background: #fafcff;
  padding: 0.6rem;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 0.6rem;
}

.article-mini-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #d8dfeb;
}

.article-mini-card h3 {
  margin: 0;
  font-size: 0.98rem;
}

.article-mini-card p {
  margin: 0.2rem 0 0.4rem;
  font-size: 0.82rem;
}

.article-mini-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.article-top-link {
  text-decoration: none;
  color: inherit;
  border: 1px solid #d6deec;
  border-radius: 12px;
  background: #ffffff;
  padding: 0.5rem;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 0.55rem;
  align-items: center;
}

.article-top-link img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
}

.article-top-link span {
  font-size: 0.9rem;
  font-weight: 700;
}

.site-footer {
  margin-top: 1.8rem;
  border-top: 1px solid #d6dbe8;
  background: rgba(247, 250, 255, 0.94);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0 1.5rem;
}

.footer-inner h2 {
  margin: 0;
  font-family: var(--heading);
  font-size: 1.55rem;
  line-height: 1;
}

.footer-inner p {
  margin: 0.3rem 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 1060px) {
  .review-card {
    grid-template-columns: 94px minmax(0, 1fr);
  }
}

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

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

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

  .content-layout {
    grid-template-columns: 1fr;
  }

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

  .article-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .topbar {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    font-size: 0.76rem;
  }

  .topbar-tag {
    display: none;
  }

  .navbar {
    flex-wrap: wrap;
    row-gap: 0.7rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-menu {
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 0.52rem;
    background: #171a24;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 0.72rem;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu.static-menu {
    display: flex;
    width: auto;
    border: 0;
    padding: 0;
    background: transparent;
    flex-direction: row;
  }

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

  .sort-field {
    min-width: 100%;
  }

  .review-card {
    grid-template-columns: 1fr;
  }

  .review-thumb {
    max-width: 190px;
  }

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

  .dual-score {
    grid-template-columns: 1fr;
  }

  .article-mini-card {
    grid-template-columns: 1fr;
  }

  .article-mini-card img {
    max-width: 150px;
  }

  .footer-inner {
    flex-direction: column;
  }
}
:root {
  --electric: #00d4ff;
  --electric-2: #5eff9b;
  --ink-900: #0f1524;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff6a3d, #ff3b30 45%, #00d4ff);
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 90;
  box-shadow: 0 8px 18px rgba(18, 28, 48, 0.4);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  opacity: 0.22;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 35%),
    repeating-linear-gradient(
      125deg,
      rgba(0, 78, 122, 0.22),
      rgba(0, 78, 122, 0.22) 1px,
      transparent 1px,
      transparent 22px
    );
  animation: meshFloat 22s linear infinite;
}

body.modal-open {
  overflow: hidden;
}

.hero {
  --hero-pointer-x: 50%;
  --hero-pointer-y: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -18%;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--hero-pointer-x) var(--hero-pointer-y),
    rgba(94, 255, 155, 0.24),
    rgba(0, 212, 255, 0.14) 22%,
    transparent 52%
  );
  mix-blend-mode: screen;
  opacity: 0.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.hero-trailer-btn {
  color: #e9f4ff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28);
}

.trailer-hub {
  margin-top: 1rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid #cdd9eb;
  background:
    linear-gradient(155deg, #0f1524, #17253d 55%, #11263a),
    radial-gradient(circle at 80% 0, rgba(94, 255, 155, 0.18), transparent 38%);
  color: #f0f7ff;
  box-shadow: 0 24px 44px rgba(7, 11, 20, 0.45);
  padding: 1rem;
  overflow: hidden;
  position: relative;
}

.trailer-hub::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 40%);
}

.trailer-hub-header,
.trailer-feature,
.trailer-rail {
  position: relative;
  z-index: 1;
}

.trailer-hub-header h2 {
  margin: 0.25rem 0 0.4rem;
  font-family: var(--heading);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 0.95;
}

.trailer-hub-header p {
  margin: 0;
  color: #bfd0eb;
}

.trailer-feature {
  margin-top: 0.9rem;
}

.trailer-feature-card {
  margin: 0;
  border: 1px solid rgba(217, 230, 247, 0.22);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.72rem;
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(0, 1.3fr);
  gap: 0.8rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.trailer-feature-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(207, 224, 245, 0.27);
  background: #1d2a44;
}

.trailer-feature-body {
  display: grid;
  align-content: start;
  gap: 0.45rem;
}

.trailer-feature-body h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1;
  letter-spacing: 0.01em;
}

.trailer-feature-body p {
  margin: 0;
  color: #d5e4f8;
}

.trailer-meta-row {
  margin-top: 0.15rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: #d1e3fa;
  font-size: 0.9rem;
  font-weight: 700;
}

.trailer-feature-actions {
  margin-top: 0.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.trailer-rail {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.6rem;
}

.trailer-rail-btn {
  text-align: left;
  border: 1px solid rgba(211, 227, 246, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #f2f7ff;
  padding: 0.5rem;
  display: grid;
  gap: 0.35rem;
  cursor: pointer;
}

.trailer-rail-btn img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 9px;
  border: 1px solid rgba(218, 232, 248, 0.26);
}

.trailer-rail-btn h3 {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.2;
}

.trailer-rail-btn p {
  margin: 0;
  font-size: 0.77rem;
  color: #c5d5ea;
  min-height: 1.9em;
}

.trailer-rail-btn small {
  color: #9ac6ff;
  font-size: 0.72rem;
  font-weight: 700;
}

.trailer-rail-btn.active {
  border-color: rgba(94, 255, 155, 0.7);
  box-shadow: 0 0 0 1px rgba(94, 255, 155, 0.25), 0 14px 24px rgba(8, 16, 31, 0.4);
}

.trailer-chip {
  width: fit-content;
  border-radius: 999px;
  padding: 0.12rem 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 800;
  color: #072033;
  background: linear-gradient(120deg, var(--electric), var(--electric-2));
}

.game-lab {
  margin-top: 1rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid #d0d9ea;
  background:
    linear-gradient(180deg, #ffffff, #f4f8ff),
    radial-gradient(circle at 96% 0, rgba(0, 212, 255, 0.11), transparent 36%);
  padding: 1rem;
  box-shadow: 0 18px 34px rgba(12, 16, 28, 0.1);
}

.game-lab-header h2 {
  margin: 0.2rem 0 0.35rem;
  font-family: var(--heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 0.95;
}

.game-lab-header p {
  margin: 0;
  color: var(--muted);
}

.catalog-toolbar {
  margin-top: 0.8rem;
}

.game-catalog-grid {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.74rem;
}

.game-catalog-card {
  margin: 0;
  border: 1px solid #d6deeb;
  border-radius: 13px;
  background: #ffffff;
  display: grid;
  grid-template-columns: 106px minmax(0, 1fr);
  gap: 0.62rem;
  padding: 0.58rem;
  box-shadow: 0 12px 28px rgba(12, 16, 28, 0.08);
}

.catalog-thumb {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #d2dbea;
  background: #f2f7ff;
}

.catalog-body {
  display: grid;
  gap: 0.4rem;
  align-content: start;
}

.catalog-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.48rem;
}

.catalog-top h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.2;
}

.status-pill {
  border-radius: 999px;
  padding: 0.14rem 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 800;
  border: 1px solid #d8dfe8;
  background: #eff3fa;
  color: #354055;
  white-space: nowrap;
}

.status-pill.cikti {
  background: rgba(17, 139, 90, 0.12);
  color: #0f6f4a;
  border-color: rgba(15, 111, 74, 0.24);
}

.status-pill.yolda {
  background: rgba(214, 116, 0, 0.13);
  color: #8a4f00;
  border-color: rgba(138, 79, 0, 0.26);
}

.status-pill.canli {
  background: rgba(0, 95, 179, 0.12);
  color: #0b4b86;
  border-color: rgba(11, 75, 134, 0.28);
}

.catalog-pitch {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.35;
}

.catalog-meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
  color: #4a5771;
  font-size: 0.74rem;
  font-weight: 700;
}

.catalog-meta span {
  border: 1px solid #dce3ef;
  border-radius: 999px;
  padding: 0.12rem 0.44rem;
  background: #f8fbff;
}

.catalog-score {
  border-radius: 10px;
  border: 1px solid #d6deea;
  background: #f7faff;
  width: fit-content;
  padding: 0.26rem 0.56rem;
  display: grid;
  gap: 0.03rem;
}

.catalog-score span {
  font-size: 0.66rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 800;
  color: #5a6884;
}

.catalog-score strong {
  font-size: 1rem;
  line-height: 1;
  font-weight: 800;
}

.catalog-score.score-high strong {
  color: #0b7142;
}

.catalog-score.score-mid strong {
  color: #8a5500;
}

.catalog-score.score-low strong {
  color: #8a1d1d;
}

.catalog-score.score-na strong {
  color: #505f7f;
}

.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.trailer-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.trailer-modal[hidden] {
  display: none;
}

.trailer-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(6, 9, 15, 0.78);
}

.trailer-dialog {
  position: relative;
  z-index: 1;
  width: min(940px, 100%);
  border-radius: 15px;
  border: 1px solid rgba(216, 228, 246, 0.3);
  background: linear-gradient(170deg, #0f1524, #15243a);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.48);
  padding: 0.9rem;
  color: #ecf5ff;
}

.trailer-dialog-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
}

.trailer-dialog-top h3 {
  margin: 0;
  font-size: 1.1rem;
}

.trailer-close-btn {
  border: 1px solid rgba(216, 228, 246, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 0.34rem 0.72rem;
  font-weight: 700;
  cursor: pointer;
}

#trailerPlayer {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  border: 1px solid rgba(215, 227, 244, 0.36);
  background: #0c101a;
  display: block;
}

#trailerExternalLink {
  margin-top: 0.62rem;
  display: inline-flex;
  color: #d9e8fa;
  border-color: rgba(221, 232, 247, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.985);
  filter: blur(4px);
  transition:
    opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.68s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--stagger-delay, 0ms);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.tilt-card {
  position: relative;
  transform-style: preserve-3d;
  transform: perspective(950px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
  will-change: transform;
  overflow: hidden;
}

.tilt-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255, 255, 255, 0.18), transparent 42%);
  transition: opacity 180ms ease;
}

.tilt-card:hover::after,
.tilt-card:focus-visible::after {
  opacity: 1;
}

.tilt-card:hover,
.tilt-card:focus-visible {
  transform: perspective(950px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-3px);
}

.review-card,
.story-card,
.rank-card,
.top-tab-btn,
.primary-btn,
.secondary-btn,
.trailer-rail-btn,
.game-catalog-card {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease;
}

@keyframes meshFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-2%, -1.5%, 0) scale(1.04);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (max-width: 1060px) {
  .game-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trailer-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .trailer-feature-card {
    grid-template-columns: 1fr;
  }

  .trailer-feature-image {
    max-width: 260px;
  }

  .trailer-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .trailer-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .game-catalog-card {
    grid-template-columns: 1fr;
  }

  .catalog-thumb {
    max-width: 190px;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .primary-btn,
  .hero-actions .secondary-btn {
    width: 100%;
  }

  .trailer-rail {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  .live-dot,
  .reveal,
  .tilt-card,
  .ambient-glow {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}
