body {
  background: #0a0e16;
  overflow-x: hidden;
}

body::before {
  background:
    radial-gradient(ellipse 55% 36% at 10% 0%, rgba(0, 212, 255, 0.06) 0%, transparent 56%),
    radial-gradient(ellipse 34% 24% at 92% 100%, rgba(0, 212, 255, 0.04) 0%, transparent 50%);
}

.n-page {
  min-height: 100vh;
  padding: 0;
}

.n-page,
.n-page *,
.n-join-modal,
.n-join-modal * {
  box-sizing: border-box;
}

.n-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.n-page :focus-visible,
.n-join-modal :focus-visible {
  outline: 2px solid #7fe3ff;
  outline-offset: 3px;
}

.n-shell {
  width: min(1480px, 100vw);
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 256px minmax(0, 880px) 344px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
  background: #0a0e16;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.8);
}

@media (min-width: 1025px) {
  body {
    overflow: hidden;
  }

  .n-shell {
    height: 100vh;
    min-height: 0;
  }

  .n-side,
  .n-rail,
  main.n-main {
    height: 100vh;
  }

  main.n-main {
    overflow-y: auto;
    scrollbar-color: #1d2735 transparent;
  }
}

.n-side,
.n-rail {
  background: #0c1119;
}

.n-side {
  display: flex;
  flex-direction: column;
  padding: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.n-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 20px 20px 18px;
  text-decoration: none;
}

.n-brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00d4ff, #0a8fb0);
  color: #04121a;
  font: 400 24px/1 'Bebas Neue', sans-serif;
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.45);
}

.n-brand-copy {
  display: flex;
  flex-direction: column;
}

.n-brand-copy strong {
  color: #fff;
  font: 400 21px/1 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
}

.n-brand-copy strong span {
  color: #00d4ff;
}

.n-brand-copy small {
  margin-top: 3px;
  color: #5b6b7d;
  font: 600 8.5px/1.4 'Barlow Condensed', sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.n-side-label,
.n-telegram-kicker {
  margin: 0;
  padding: 8px 24px;
  color: #566576;
  font: 600 9.5px/1 'Barlow Condensed', sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.n-side-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 12px;
}

.n-side-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #9fb0c3;
  text-decoration: none;
  font: 500 14px 'Barlow', sans-serif;
  transition: background 0.15s ease, color 0.15s ease;
}

.n-side-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.n-side-link.is-active {
  background: rgba(0, 212, 255, 0.1);
  color: #00d4ff;
  font-weight: 600;
}

.n-side-link.is-active::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  border-radius: 0 3px 3px 0;
  background: #00d4ff;
}

.n-side-icon {
  display: inline-flex;
}

.n-side-badge {
  margin-left: auto;
  padding: 2px 7px;
  border-radius: 999px;
  background: #00d4ff;
  color: #04121a;
  font: 700 10px 'Barlow Condensed', sans-serif;
  letter-spacing: 0.06em;
}

.n-side-telegram {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 14px 2px;
  padding: 10px 12px;
  border: 1px solid rgba(42, 171, 238, 0.32);
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(42, 171, 238, 0.15), #0e1622);
  color: #d8f4ff;
  text-decoration: none;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.n-side-telegram:hover {
  transform: translateY(-1px);
  border-color: rgba(42, 171, 238, 0.55);
  background: linear-gradient(135deg, rgba(42, 171, 238, 0.22), #101c2a);
}

.n-side-telegram-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  color: #fff;
  background: linear-gradient(135deg, #2aabee, #1787c0);
  box-shadow: 0 0 14px rgba(42, 171, 238, 0.3);
}

.n-side-telegram-copy {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
}

.n-side-telegram-copy strong {
  color: #fff;
  font: 700 13px/1.05 'Barlow', sans-serif;
}

.n-side-telegram-copy small {
  margin-top: 2px;
  color: #7fd9ff;
  font: 500 9.5px/1 'Barlow Condensed', sans-serif;
  letter-spacing: 0.04em;
}

.n-side-telegram-arrow {
  display: inline-flex;
  color: #8fdfff;
  flex: none;
}

.n-side-playing-head {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 18px 24px 8px;
  color: #566576;
  font: 600 9.5px/1 'Barlow Condensed', sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.n-side-playing-head i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #5eff9f;
  box-shadow: 0 0 10px rgba(94, 255, 159, 0.85);
}

.n-side-playing-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 12px;
}

.n-side-playing-item {
  display: block;
  padding: 7px 10px;
  border-radius: 10px;
  color: inherit;
  text-decoration: none;
  transition: background .15s ease, transform .15s ease;
}

.n-side-playing-item:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.04);
}

.n-side-playing-main {
  display: flex;
  align-items: center;
  gap: 9px;
}

.n-side-playing-cover {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  flex: none;
  object-fit: cover;
  background: #182332;
}

.n-side-playing-copy {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.n-side-playing-copy strong {
  color: #dde6ef;
  font: 600 13px/1.12 'Barlow', sans-serif;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.n-side-playing-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.n-side-playing-meta small {
  color: #5eff9f;
  font: 600 9px/1 'Barlow Condensed', sans-serif;
  letter-spacing: 0.04em;
}

.n-side-playing-avatars {
  display: flex;
  align-items: center;
  min-width: 0;
}

.n-side-playing-avatar {
  width: 15px;
  height: 17px;
  margin-left: -5px;
  border: 2px solid #0c1119;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--avatar-color, #00d4ff);
  color: #06121b;
  font: 800 6px/1 'Barlow', sans-serif;
}

.n-side-playing-avatar:first-child {
  margin-left: 0;
}

.n-side-playing-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.n-side-library {
  display: block;
  padding: 10px 24px 0;
  color: #61738a;
  text-decoration: none;
  font: 500 12px/1 'Barlow', sans-serif;
}

.n-side-library:hover {
  color: #00d4ff;
}

.n-side-spacer {
  flex: 1;
}

.n-side-join,
.n-side-week,
.n-side-user {
  position: relative;
  margin: 16px 2px 0;
  border-radius: 16px;
  border: 1px solid rgba(0, 212, 255, 0.18);
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.055), rgba(255, 255, 255, 0.018)), #10161f;
}

.n-side-join {
  padding: 18px 16px;
}

.n-side-join h2,
.n-side-week h2 {
  margin: 0;
  color: #fff;
  font: 900 14px/1 'Barlow Condensed', sans-serif;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.n-side-join p {
  margin: 8px 0 14px;
  color: #9ab1ca;
  font: 500 13px/1.35 'Barlow', sans-serif;
}

.n-side-join-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.n-side-join-primary,
.n-side-join-secondary {
  min-height: 42px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font: 900 13px 'Barlow', sans-serif;
}

.n-side-join-primary {
  background: linear-gradient(135deg, #00d4ff, #11bfe1);
  color: #04121a;
  box-shadow: 0 0 22px rgba(0, 212, 255, 0.18);
}

.n-side-join-secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
  color: #d8e6f5;
}

.n-side-week {
  margin: 14px 14px 0;
  padding: 11px 12px;
  border-radius: 13px;
}

.n-side-week-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
  margin-top: 9px;
}

.n-side-week-grid span {
  min-width: 0;
  padding: 8px 2px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  gap: 3px;
  background: rgba(255, 255, 255, 0.045);
}

.n-side-week-grid strong {
  color: #00d4ff;
  font: 700 16px/.95 'Barlow', sans-serif;
}

.n-side-week-grid span:nth-child(2) strong { color: #b794ff; }
.n-side-week-grid span:nth-child(3) strong { color: #ffb020; }
.n-side-week-grid span:nth-child(4) strong { color: #33e6a1; }

.n-side-week-grid small {
  max-width: 100%;
  color: #7f8fa2;
  font: 500 7px/1 'Barlow Condensed', sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
}

.n-side-user {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 0;
  margin: 14px;
  padding: 11px;
  border-radius: 13px;
  border-color: rgba(255, 255, 255, 0.07);
  background: #10161f;
}

.n-side-user--logged {
  align-items: center;
}

.n-side-user .gp-cmt-hex {
  flex: none;
  width: 38px !important;
  height: 44px !important;
  filter: drop-shadow(0 0 5px var(--lvl-color, #00d4ff));
}

.n-side-profile-hex {
  position: relative;
  flex: none;
  width: 38px;
  height: 44px;
  --lbo: 2px;
  filter: drop-shadow(0 0 5px var(--lco, #00d4ff));
}

.n-side-profile-hex-shape,
.n-side-profile-hex-in {
  position: absolute;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.n-side-profile-hex-shape {
  inset: 0;
  background: var(--lco, #00d4ff);
}

.n-side-profile-hex-in {
  inset: var(--lbo);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a2436, #0a0e14);
  color: #fff;
  font: 800 11px 'Barlow', sans-serif;
}

.n-side-profile-hex-in img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.n-side-rolechip {
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  padding: 1px 5px;
  border-radius: 4px;
  background: var(--lco, #00d4ff);
  color: #04121a;
  font: 700 7px/1 'Barlow', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
}

.n-side-usercopy {
  flex: 1;
  min-width: 0;
}

.n-side-usercopy strong {
  display: block;
  color: #fff;
  font: 700 13px/1.05 'Barlow', sans-serif;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.n-side-usercopy small {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #00d4ff;
  margin-top: 1px;
  font: 700 10px/1 'Barlow Condensed', sans-serif;
  letter-spacing: 0.04em;
}

.n-side-usercopy em {
  display: block;
  max-width: none;
  margin-top: 3px;
  color: #566576;
  font: 500 9px/1.3 'Inter', sans-serif;
  font-style: normal;
}

.n-side-notif {
  position: relative;
  right: auto;
  top: auto;
  grid-column: 3;
  grid-row: 1;
  justify-self: center;
  align-self: start;
  margin: 0;
}

.n-side-notif-btn {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.06);
  color: #cfefff;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}

.n-side-notif-btn:hover,
.n-side-notif.is-open .n-side-notif-btn {
  transform: translateY(-1px);
  border-color: rgba(0, 212, 255, 0.55);
  background: rgba(0, 212, 255, 0.14);
  color: #fff;
}

.n-side-notif-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 17px;
  padding: 3px 5px;
  border-radius: 999px;
  border: 2px solid #10161f;
  background: #ff4b5f;
  color: #fff;
  font: 900 9px/1 'Barlow', sans-serif;
  text-align: center;
  box-shadow: 0 0 13px rgba(255, 75, 95, 0.38);
}

.n-side-notif-badge[hidden] {
  display: none;
}

.n-side-notif-dropdown {
  position: absolute;
  left: calc(100% + 12px);
  bottom: auto;
  top: -10px;
  z-index: 80;
  width: 340px;
  max-width: min(340px, calc(100vw - 285px));
  border-radius: 16px;
  border: 1px solid rgba(0, 212, 255, 0.22);
  background: linear-gradient(145deg, rgba(18, 24, 32, 0.98), rgba(8, 11, 17, 0.99));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55), 0 0 28px rgba(0, 212, 255, 0.08);
  overflow: hidden;
}

.n-side-notif.is-open .n-side-notif-dropdown {
  display: block !important;
}

.n-side-notif-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.n-side-notif-head strong {
  color: #fff;
  font: 800 13px 'Barlow', sans-serif;
}

.n-side-notif-head button {
  border: 0;
  background: transparent;
  color: #00d4ff;
  cursor: pointer;
  font: 900 10px 'Barlow Condensed', sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.n-side-notif-list {
  max-height: 385px;
  overflow-y: auto;
}

.n-side-notif-empty {
  margin: 0;
  padding: 22px 14px;
  color: #75869a;
  text-align: center;
  font: 600 12px 'Barlow', sans-serif;
}

.n-side-notif-item {
  display: flex;
  gap: 10px;
  padding: 11px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #aeb9c6;
  text-decoration: none;
  transition: background .16s ease, color .16s ease;
}

.n-side-notif-item:hover,
.n-side-notif-item.is-unread {
  background: rgba(0, 212, 255, 0.055);
}

.n-side-notif-avatar {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  background: rgba(0, 212, 255, 0.16);
  color: #fff;
  font: 900 11px 'Barlow', sans-serif;
}

.n-side-notif-avatar.is-badge {
  background: linear-gradient(135deg, #ffd24d, #c98a00);
  color: #0b0d12;
}

.n-side-notif-avatar.is-system {
  background: linear-gradient(135deg, #00d4ff, #0098c4);
  color: #04121a;
}

.n-side-notif-avatar.is-alert {
  background: linear-gradient(135deg, #ff9f43, #ff5f73);
  color: #12070a;
}

.n-side-notif-text {
  min-width: 0;
  flex: 1;
  font: 600 12px/1.35 'Barlow', sans-serif;
}

.n-side-notif-text strong {
  color: #fff;
}

.n-side-notif-time {
  display: block;
  margin-top: 2px;
  color: #617186;
  font: 500 10px 'Barlow Condensed', sans-serif;
  letter-spacing: .04em;
}

.n-side-notif-all {
  display: block;
  padding: 11px;
  text-align: center;
  color: #00d4ff;
  text-decoration: none;
  font: 900 11px 'Barlow Condensed', sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.n-side-settings {
  position: relative;
  right: auto;
  bottom: auto;
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7f8fa2;
  text-decoration: none;
  transition: background .16s ease, color .16s ease, transform .16s ease;
}

.n-side-settings:hover {
  transform: rotate(18deg);
  background: rgba(255, 255, 255, 0.055);
  color: #cfefff;
}

main.n-main {
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #0a0e16;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.n-topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 30px 12px;
}

.n-mobile-brand {
  display: none;
}

.n-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
  color: #566576;
  font: 600 10px 'Barlow Condensed', sans-serif;
  letter-spacing: 0.06em;
}

.n-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.n-topbar h1 {
  margin: 0;
  color: #fff;
  font: 400 27px/1 'Bebas Neue', sans-serif;
  letter-spacing: 0.03em;
}

.n-topbar-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.n-topbar-bell {
  display: none;
  position: relative;
  width: 38px;
  height: 38px;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(16, 22, 31, 0.72);
  color: #9fb0c3;
  text-decoration: none;
}

.n-topbar-bell span {
  position: absolute;
  top: 6px;
  right: 6px;
  min-width: 15px;
  height: 15px;
  padding: 0 4px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 2px solid #0a0e16;
  background: #ff5d78;
  color: #fff;
  font: 800 9px/1 'Barlow', sans-serif;
}

.n-search {
  width: 270px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #10161f;
  color: #566576;
}

.n-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: 400 13px 'Inter', sans-serif;
}

.n-search:focus-within {
  border-color: rgba(0, 212, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.12);
}

.n-search input::placeholder {
  color: #566576;
}

.n-ticker {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: #0c1119;
}

.n-ticker-label {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px 0 30px;
  color: #00d4ff;
  background: linear-gradient(90deg, #0c1119 78%, transparent);
  font: 700 9.5px 'Barlow Condensed', sans-serif;
  letter-spacing: 0.1em;
}

.n-ticker-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00d4ff;
}

.n-ticker-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #00d4ff;
  animation: newsPing 1.8s infinite;
}

.n-ticker-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  padding: 9px 0 9px 120px;
  animation: newsTicker 34s linear infinite;
}

.n-ticker.is-paused .n-ticker-track {
  animation-play-state: paused;
}

.n-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  color: #8a99ab;
  text-decoration: none;
  font: 500 11.5px 'Inter', sans-serif;
}

.n-ticker-cat {
  font: 700 8px 'Barlow', sans-serif;
  letter-spacing: 0.06em;
}

@keyframes newsPing {
  0% { transform: scale(.7); opacity: .7; }
  80%, 100% { transform: scale(2.4); opacity: 0; }
}

@keyframes newsTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .n-page *,
  .n-join-modal * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .n-ticker-track {
    animation: none !important;
    transform: none !important;
  }

  .n-ticker-dot::after {
    display: none;
  }
}

.n-chip-row,
.n-featured,
.n-gamepass,
.n-list-head,
.n-list,
.n-pagination {
  width: 100%;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.n-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 18px 30px 0;
}

.n-chip {
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--chip-color) 30%, transparent);
  color: var(--chip-color);
  text-decoration: none;
  background: transparent;
  font: 600 12.5px 'Barlow', sans-serif;
  white-space: nowrap;
}

.n-chip.is-active {
  background: var(--chip-color);
  border-color: var(--chip-color);
  color: #04121a;
  box-shadow: 0 0 14px color-mix(in srgb, var(--chip-color) 40%, transparent);
}

.n-featured {
  display: grid;
  grid-template-columns: 1.62fr 1fr;
  gap: 16px;
  padding: 18px 30px 0;
  margin-bottom: 28px;
}

.n-featured-hero,
.n-secondary-card,
.n-list-row,
.n-widget,
.n-gamepass,
.n-join-card {
  background: #14181f;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.n-featured-hero {
  display: block;
  border-radius: 14px;
  overflow: hidden;
}

.n-featured-media {
  position: relative;
  display: block;
  height: 212px;
  overflow: hidden;
}

.n-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.n-featured-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(20, 24, 31, 0.9));
}

.n-featured-cat,
.n-list-cat,
.n-list-flag,
.n-featured-hot,
.n-gamepass-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font: 700 10px 'Barlow', sans-serif;
}

.n-featured-cat {
  position: absolute;
  top: 13px;
  left: 13px;
  z-index: 1;
  padding: 5px 10px;
  border-radius: 6px;
  color: var(--cat-color);
  border: 1px solid color-mix(in srgb, var(--cat-color) 50%, transparent);
  background: color-mix(in srgb, var(--cat-color) 18%, transparent);
  backdrop-filter: blur(6px);
}

.n-featured-hot {
  position: absolute;
  top: 13px;
  right: 13px;
  z-index: 1;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
}

.n-featured-body {
  padding: 14px 16px 15px;
}

.n-featured-body h2 {
  margin: 0 0 8px;
  font: 800 23px/1.16 'Barlow', sans-serif;
  letter-spacing: -0.01em;
}

.n-featured-body h2 a,
.n-list-body h4 a {
  color: #eef3f8;
  text-decoration: none;
}

.n-featured-body p {
  margin: 0 0 12px;
  color: #9fb0c3;
  font: 400 13px/1.55 'Inter', sans-serif;
}

.n-featured-foot,
.n-list-foot {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}

.n-author-badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.16);
  color: #04121a;
  font: 700 9px 'Barlow', sans-serif;
}

.n-author-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.n-author-badge--small {
  width: 21px;
  height: 21px;
  font-size: 8px;
}

.n-author-hex,
.n-top-comment-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.n-author-hex .gp-cmt-hex {
  width: 24px !important;
  height: 27px !important;
}

.n-author-hex--small .gp-cmt-hex {
  width: 21px !important;
  height: 24px !important;
}

.n-featured-author,
.n-list-author {
  color: #aeb9c6;
  font: 600 11px 'Inter', sans-serif;
}

.n-featured-stamp,
.n-list-rank {
  color: #566576;
  font: 500 10px 'Barlow Condensed', sans-serif;
  letter-spacing: 0.04em;
}

.n-list-dot {
  color: #566576;
  font: 700 10px/1 'Barlow', sans-serif;
}

.n-list-tags {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  flex-wrap: wrap;
}

.n-list-tag {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(0, 212, 255, 0.08);
  background: rgba(92, 124, 157, 0.10);
  color: #8edfff;
  text-decoration: none;
  font: 800 10px/1 'Barlow', sans-serif;
  letter-spacing: 0.01em;
  transition: border-color .16s ease, background .16s ease, color .16s ease, transform .16s ease;
}

.n-list-tag:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 212, 255, 0.28);
  background: rgba(0, 212, 255, 0.13);
  color: #d9f8ff;
}

.n-featured-spacer,
.n-list-spacer {
  flex: 1;
}

.n-pulso-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 25px;
  padding: 1px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  color: #7e8c9c;
  font: 700 11.5px 'Barlow', sans-serif;
  cursor: pointer;
}

.n-pulso-btn.is-reacted {
  border-color: rgba(0, 212, 255, 0.4);
  background: rgba(0, 212, 255, 0.14);
  color: #00d4ff;
}

.n-pulso-btn .pulso-label {
  white-space: nowrap;
}

.n-pulso-count {
  color: currentColor;
}

.n-pulse-duel {
  position: relative;
  display: inline-grid;
  grid-template-columns: 30px minmax(36px, auto) 30px;
  align-items: center;
  min-height: 30px;
  border-radius: 12px;
  border: 1px solid rgba(146, 164, 188, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    #10161f;
  color: #9fb0c3;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.n-pulse-duel::after {
  content: attr(data-pulse-error);
  position: absolute;
  right: 0;
  bottom: calc(100% + 7px);
  z-index: 3;
  width: max-content;
  max-width: 220px;
  padding: 7px 9px;
  border-radius: 8px;
  background: #ff5f73;
  color: #fff;
  font: 700 10.5px 'Barlow', sans-serif;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity .16s ease, transform .16s ease;
}

.n-pulse-duel.has-error::after {
  opacity: 1;
  transform: translateY(0);
}

.n-pulse-vote {
  width: 30px;
  height: 30px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #7d8da0;
  cursor: pointer;
  transition: background .16s ease, box-shadow .16s ease, color .16s ease, opacity .16s ease, transform .16s ease;
}

.n-pulse-vote:hover {
  transform: translateY(-1px);
}

.n-pulse-vote-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 13px;
  height: 13px;
  line-height: 0;
  transform-origin: 50% 50%;
}

.n-pulse-vote-icon svg {
  display: block;
  width: 13px;
  height: 13px;
}

.n-pulse-vote--up:hover {
  background: rgba(0, 212, 255, 0.10);
  color: #00d4ff;
}

.n-pulse-duel.is-up .n-pulse-vote--up {
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.30), rgba(0, 150, 190, 0.18));
  color: #00d4ff;
  box-shadow: inset 0 0 0 1px rgba(0, 212, 255, 0.16), 0 0 18px rgba(0, 212, 255, 0.12);
}

.n-pulse-vote--down:hover {
  background: rgba(255, 95, 115, 0.10);
  color: #ff6b7a;
}

.n-pulse-duel.is-down .n-pulse-vote--down {
  background: linear-gradient(180deg, rgba(255, 95, 115, 0.31), rgba(154, 43, 58, 0.20));
  color: #ff6b7a;
  box-shadow: inset 0 0 0 1px rgba(255, 95, 115, 0.18), 0 0 18px rgba(255, 95, 115, 0.10);
}

.n-pulse-vote--down .n-pulse-vote-icon {
  transform: rotate(180deg);
}

.n-pulse-vote:disabled {
  cursor: default;
  transform: none;
}

.n-pulse-duel.is-reacted .n-pulse-vote {
  opacity: .42;
}

.n-pulse-duel.is-up .n-pulse-vote--up,
.n-pulse-duel.is-down .n-pulse-vote--down {
  opacity: 1;
}

.n-pulse-net {
  min-width: 36px;
  padding: 0 7px;
  border-inline: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  color: #93a6bb;
  font: 900 13px/1 'Barlow', sans-serif;
  letter-spacing: .01em;
}

.n-pulse-duel.has-positive .n-pulse-net {
  color: #00d4ff;
  text-shadow: 0 0 14px rgba(0, 212, 255, 0.20);
}

.n-pulse-duel.has-negative .n-pulse-net {
  color: #ff6b7a;
  text-shadow: 0 0 14px rgba(255, 95, 115, 0.18);
}

.n-pulse-duel--small {
  grid-template-columns: 28px minmax(32px, auto) 28px;
  min-height: 28px;
}

.n-pulse-duel--small .n-pulse-vote {
  width: 28px;
  height: 28px;
}

.n-pulse-duel--small .n-pulse-net {
  min-width: 32px;
  padding-inline: 6px;
  font-size: 12px;
}

.n-pulse-duel.is-busy {
  opacity: .75;
}

.n-pulse-duel.is-locked {
  cursor: pointer;
}

.n-pulse-balance {
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 10px;
}

.n-pulse-balance-label {
  white-space: nowrap;
  font: 800 10.5px/1 'Barlow', sans-serif;
  letter-spacing: .01em;
}

.n-pulse-balance-label.is-up {
  color: #00d4ff;
}

.n-pulse-balance-label.is-down {
  color: #ff6374;
}

.n-pulse-balance-track {
  position: relative;
  height: 7px;
  display: flex;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.n-pulse-balance-up,
.n-pulse-balance-down {
  display: block;
  height: 100%;
  min-width: 3px;
  transition: width .28s ease;
}

.n-pulse-balance-up {
  background: linear-gradient(90deg, #00d4ff, #29e6ff);
}

.n-pulse-balance-down {
  background: linear-gradient(90deg, #ff6374, #ff8a8a);
}

.n-pulse-balance.is-empty .n-pulse-balance-track {
  background:
    linear-gradient(90deg, rgba(0, 212, 255, 0.16), rgba(255, 255, 255, 0.07), rgba(255, 99, 116, 0.16));
}

.n-pulse-balance.is-empty .n-pulse-balance-up,
.n-pulse-balance.is-empty .n-pulse-balance-down {
  opacity: 0;
}

.n-pulse-balance--hero {
  margin-top: 12px;
}

.n-pulse-balance--list {
  margin-top: auto;
  padding-top: 9px;
}

.n-featured-comments,
.n-list-comments {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #7e8c9c;
  text-decoration: none;
  font: 600 11px 'Inter', sans-serif;
}

.n-list-comments.is-hot {
  color: #ff8e53;
}

.n-featured-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.n-secondary-card {
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
}

.n-secondary-thumb {
  width: 112px;
  height: 88px;
  flex: none;
  border-radius: 9px;
  overflow: hidden;
}

.n-secondary-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.n-secondary-copy {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.n-secondary-meta,
.n-list-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
  color: #566576;
  font: 500 9px 'Barlow Condensed', sans-serif;
  letter-spacing: 0.04em;
}

.n-secondary-copy strong {
  margin: 0 0 auto;
  color: #dfe7ef;
  font: 700 13.5px/1.28 'Barlow', sans-serif;
}

.n-secondary-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: #7e8c9c;
  font: 500 10px 'Inter', sans-serif;
}

.n-secondary-pulse {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #00d4ff;
  font: 700 10px 'Barlow', sans-serif;
}

.n-gamepass {
  border-radius: 16px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.06), rgba(10, 14, 22, 0));
  padding: 16px 16px 18px;
  margin-bottom: 28px;
}

.n-gamepass-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
}

.n-gamepass-title {
  display: flex;
  align-items: center;
  gap: 9px;
}

.n-gamepass-icon {
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00d4ff;
  color: #04121a;
}

.n-gamepass-title h3 {
  margin: 0;
  color: #fff;
  font: 400 19px/1 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
}

.n-gamepass-title small {
  color: #6aa3bd;
  font: 600 10px 'Barlow Condensed', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.n-gamepass-link {
  margin-left: auto;
  color: #00d4ff;
  text-decoration: none;
  font: 600 11.5px 'Barlow', sans-serif;
}

.n-gamepass-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.n-gamepass-card {
  position: relative;
  display: block;
  border-radius: 13px;
  overflow: hidden;
  background: #14181f;
  text-decoration: none;
}

.n-gamepass-media {
  position: relative;
  display: block;
  height: 104px;
  overflow: hidden;
}

.n-gamepass-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.n-gamepass-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 12, 18, 0.6));
}

.n-gamepass-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  padding: 3px 7px;
  border-radius: 5px;
  color: #04121a;
  background: #ffb020;
  font-size: 8px;
}

.n-gamepass-tag.is-green {
  background: #5eff9f;
}

.n-gamepass-copy {
  display: block;
  padding: 10px 11px 12px;
}

.n-gamepass-copy strong {
  display: block;
  min-height: 33px;
  color: #dfe7ef;
  font: 700 12.5px/1.3 'Barlow', sans-serif;
}

.n-gamepass-copy span {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
}

.n-gamepass-copy small {
  color: #566576;
  font: 500 9.5px 'Barlow Condensed', sans-serif;
  letter-spacing: 0.05em;
}

.n-gamepass-copy em {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #00d4ff;
  font: 700 10px 'Barlow', sans-serif;
  font-style: normal;
}

.n-mobile-pulse {
  display: none;
}

.n-list-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 4px;
  padding: 0 30px;
}

.n-list-head h3 {
  margin: 0;
  color: #fff;
  font: 400 19px/1 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
}

.n-list-rule {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.n-sort {
  display: flex;
  align-items: center;
  gap: 5px;
}

.n-sort span {
  margin-right: 3px;
  color: #566576;
  font: 600 10px 'Barlow Condensed', sans-serif;
  letter-spacing: 0.1em;
}

.n-sort-chip {
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: #00d4ff;
  text-decoration: none;
  font: 600 11px 'Barlow', sans-serif;
}

.n-sort-chip.is-active {
  color: #04121a;
  background: #00d4ff;
  border-color: #00d4ff;
}

.n-list {
  padding: 0 30px;
}

.n-list-row {
  display: flex;
  gap: 15px;
  padding: 15px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 8px;
}

.n-list-thumb {
  position: relative;
  width: 148px;
  height: 96px;
  flex: none;
  border-radius: 10px;
  overflow: hidden;
}

.n-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.n-list-cat {
  position: absolute;
  top: 7px;
  left: 7px;
  padding: 3px 6px;
  border-radius: 5px;
  color: #fff;
  background: color-mix(in srgb, var(--cat-color) 22%, rgba(0, 0, 0, 0.74));
  border: 1px solid color-mix(in srgb, var(--cat-color) 44%, white 4%);
}

.n-list-flag {
  position: absolute;
  top: 7px;
  right: 7px;
  padding: 3px 6px;
  border-radius: 5px;
  color: #fff;
}

.n-list-flag--hot {
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
}

.n-list-flag--new {
  background: #7df0d0;
  color: #03131b;
}

.n-list-body {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.n-list-body h4 {
  margin: 0 0 5px;
  color: #e7eef5;
  font: 700 16.5px/1.3 'Barlow', sans-serif;
}

.n-list-body p {
  margin: 0 0 7px;
  color: #8a99ab;
  font: 400 12.5px/1.5 'Inter', sans-serif;
}

.n-top-comment {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 9px;
  padding: 7px 11px;
  border-radius: 8px;
  border-left: 2px solid rgba(0, 212, 255, 0.4);
  background: rgba(255, 255, 255, 0.025);
  color: inherit;
  text-decoration: none;
}

.n-top-comment .gp-cmt-hex {
  width: 19px !important;
  height: 22px !important;
}

.n-top-comment--hero .gp-cmt-hex {
  width: 24px !important;
  height: 27px !important;
}

.n-top-comment strong {
  color: #9fb0c3;
  font: 700 11px 'Inter', sans-serif;
  flex: none;
}

.n-top-comment .n-top-comment-text {
  min-width: 0;
  flex: 1;
  color: #7e8c9c;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font: 400 11.5px 'Inter', sans-serif;
}

.n-top-comment--hero {
  margin-top: 12px;
  background:
    linear-gradient(90deg, rgba(0, 212, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.025);
}

.n-top-comment--hero strong {
  color: #dfe7ef;
}

.n-top-comment--empty {
  border-left-color: rgba(255, 176, 32, 0.48);
  background:
    linear-gradient(90deg, rgba(255, 176, 32, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.02);
}

.n-top-comment--empty strong {
  color: #ffcf78;
}

.n-top-comment-spark {
  width: 22px;
  height: 22px;
  flex: none;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffcf78;
  background: rgba(255, 176, 32, 0.12);
}

.n-top-comment em {
  color: #566576;
  font: 600 10px 'Barlow Condensed', sans-serif;
  letter-spacing: 0.04em;
  font-style: normal;
  flex: none;
}

.n-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  padding: 26px 30px 4px;
}

.n-page-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #10161f;
  color: #9fb0c3;
  text-decoration: none;
  font: 700 13px 'Barlow', sans-serif;
}

.n-page-btn.is-active {
  color: #04121a;
  background: #00d4ff;
  border-color: #00d4ff;
}

.n-page-gap {
  color: #566576;
  font: 700 13px 'Barlow', sans-serif;
  padding: 0 4px;
}

.n-rail {
  padding: 18px 18px 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow-y: auto;
  scrollbar-width: none;
}

.n-rail::-webkit-scrollbar {
  width: 0;
}

.n-widget {
  border-radius: 14px;
  padding: 15px;
  background: #10161f;
}

.n-widget--accent,
.n-widget--telegram {
  border-color: rgba(0, 212, 255, 0.2);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), #10161f);
}

.n-widget-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}

.n-widget h2 {
  margin: 0;
  color: #fff;
  font: 400 17px/1 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
}

.n-widget-head small {
  color: #5b6b7d;
  font: 500 10px 'Barlow Condensed', sans-serif;
}

.n-widget h3 {
  margin: 0 0 12px;
  color: #fff;
  font: 400 34px/0.98 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
}

.n-widget p {
  margin: 6px 0 0;
  color: #9fb0c3;
  font: 400 11.5px/1.5 'Inter', sans-serif;
}

.n-widget--gamepass {
  padding: 15px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #10161f;
}

.n-gp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 13px;
}

.n-gp-head > div {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.n-gp-head h2 {
  margin-bottom: 0;
  font: 400 17px/1 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
}

.n-gp-head small {
  display: block;
  max-width: none;
  color: #5b6b7d;
  font: 500 10px/1 'Barlow Condensed', sans-serif;
}

.n-gp-head a {
  flex: none;
  color: #00d4ff;
  text-decoration: none;
  font: 600 11px 'Barlow', sans-serif;
}

.n-gp-block {
  display: grid;
  gap: 9px;
}

.n-gp-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #5eff9f;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font: 600 9.5px 'Barlow Condensed', sans-serif;
}

.n-gp-label span {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.n-gp-label--out {
  color: #ff6b75;
}

.n-gp-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.n-gp-card,
.n-gp-leave-row {
  color: inherit;
  text-decoration: none;
}

.n-gp-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
}

.n-gp-card img {
  flex: none;
  width: 42px;
  height: 54px;
  border-radius: 7px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.05);
}

.n-gp-card-copy {
  min-width: 0;
  display: block;
}

.n-gp-date {
  margin-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 1px 5px;
  border-radius: 4px;
  background: #5eff9f;
  color: #04121a;
  font: 700 8px/1 'Barlow', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.n-gp-card strong,
.n-gp-leave-row strong {
  color: #e8f2fb;
  font: 600 11px/1.2 'Barlow', sans-serif;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.n-gp-badges {
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-top: 4px;
}

.n-gp-badge {
  width: 13px;
  height: 13px;
  max-width: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #061018;
  font: 900 7px/1 'Barlow', sans-serif;
}

.n-gp-badge svg {
  width: 8px;
  height: 8px;
  display: block;
}

.n-gp-badge--day { background: #5eff9f; }
.n-gp-badge--ultimate { background: #00d4ff; }
.n-gp-badge--premium { background: #a985ff; }
.n-gp-badge--pc { background: #ffb020; }

.n-gp-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 11px;
  margin-top: 11px;
  padding-top: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.n-gp-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  flex: none;
  color: #8da0b8;
  font: 600 9px 'Barlow Condensed', sans-serif;
  letter-spacing: 0.03em;
}

.n-gp-legend b {
  min-width: 13px;
  max-width: none;
  height: 13px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.n-gp-leaving {
  display: grid;
  gap: 7px;
}

.n-gp-leave-row {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
}

.n-gp-leave-row img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.05);
}

.n-gp-leave-row span {
  color: #566576;
  font: 600 9px 'Barlow Condensed', sans-serif;
  letter-spacing: 0.06em;
}

.n-month-row {
  display: flex;
  align-items: center;
  gap: 7px;
}

.n-month-row span {
  width: 46px;
  flex: none;
  color: #5eff9f;
  font: 700 9px 'Barlow Condensed', sans-serif;
  letter-spacing: 0.08em;
}

.n-month-row .is-out {
  color: #ff8a8a;
}

.n-month-row strong {
  color: #cdd8e4;
  font: 500 11.5px/1.35 'Barlow', sans-serif;
  min-width: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.n-month-divider {
  height: 1px;
  margin: 10px 0;
  background: rgba(255, 255, 255, 0.06);
}

.n-month-btn,
.n-telegram-btn {
  width: 100%;
  margin-top: 13px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  background: rgba(0, 212, 255, 0.08);
  color: #7fe3ff;
  text-decoration: none;
  font: 700 11.5px 'Barlow', sans-serif;
}

.n-ranked-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.n-ranked-item {
  display: flex;
  gap: 12px;
  text-decoration: none;
}

.n-ranked-num {
  width: 22px;
  flex: none;
  color: #2a3848;
  font: 400 27px/.8 'Bebas Neue', sans-serif;
}

.n-ranked-copy {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 4px;
}

.n-ranked-copy strong {
  color: #cdd8e4;
  font: 600 12.5px/1.35 'Barlow', sans-serif;
}

.n-ranked-copy small {
  color: #566576;
  font: 500 9px 'Barlow Condensed', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.n-ranked-copy small::before {
  content: '';
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 7px;
  border-radius: 2px;
  background: var(--dot-color, #00d4ff);
}

.n-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.n-tag-pill {
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
  color: #6aa3bd;
  text-decoration: none;
  font: 600 11px 'Barlow', sans-serif;
}

.n-widget--split {
  border-color: rgba(255, 99, 116, 0.18);
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 212, 255, 0.08), transparent 38%),
    radial-gradient(circle at 100% 100%, rgba(255, 99, 116, 0.09), transparent 40%),
    #10161f;
}

.n-split-list {
  display: grid;
  gap: 12px;
}

.n-split-item {
  display: grid;
  gap: 7px;
  padding: 9px 0 10px;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.n-split-item:last-child {
  border-bottom: 0;
}

.n-split-item strong {
  color: #dfe7ef;
  font: 700 12.5px/1.35 'Barlow', sans-serif;
}

.n-split-item small {
  color: #7e8c9c;
  font: 600 10px 'Barlow', sans-serif;
}

.n-split-item b:first-child {
  color: #00d4ff;
}

.n-split-item b:last-child {
  color: #ff6374;
}

.n-split-meter {
  height: 6px;
  display: flex;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.n-split-meter-up,
.n-split-meter-down {
  min-width: 3px;
}

.n-split-meter-up {
  background: #00d4ff;
}

.n-split-meter-down {
  background: #ff6374;
}

.n-telegram-btn {
  border: 0;
  background: linear-gradient(135deg, #00d4ff, #00a8cc);
  color: #04121a;
  cursor: pointer;
}

.n-join-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

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

.n-join-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 10, 0.72);
  backdrop-filter: blur(6px);
}

.n-join-card {
  position: relative;
  z-index: 1;
  width: min(430px, calc(100vw - 32px));
  margin: 14vh auto 0;
  padding: 26px;
  border-radius: 20px;
  background: #0e141d;
  border-color: rgba(0, 212, 255, 0.25);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.65);
}

.n-join-mark {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00d4ff, #0a8fb0);
  color: #04121a;
  font: 400 26px/1 'Bebas Neue', sans-serif;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.n-join-card h2 {
  margin: 0 0 7px;
  color: #fff;
  font: 400 24px/1 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
}

.n-join-card p {
  margin: 0 0 16px;
  color: #9fb0c3;
  font: 400 13px/1.5 'Inter', sans-serif;
}

.n-join-actions {
  display: grid;
  gap: 9px;
}

.n-join-primary,
.n-join-secondary,
.n-join-close {
  min-height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font: 700 13px 'Barlow', sans-serif;
}

.n-join-primary {
  background: linear-gradient(135deg, #00d4ff, #00a8cc);
  color: #04121a;
  box-shadow: 0 0 22px rgba(0, 212, 255, 0.4);
}

.n-join-secondary,
.n-join-close {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cdd8e4;
}

.n-join-close {
  width: 100%;
  margin-top: 10px;
  cursor: pointer;
}

@media (max-width: 1199px) {
  .n-shell {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .n-rail {
    grid-column: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .n-widget--telegram {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1024px) {
  body {
    overflow: auto;
  }

  .n-shell {
    width: calc(100vw - 16px);
    grid-template-columns: 1fr;
    min-height: auto;
    height: auto;
    max-height: none;
  }

  .n-side {
    display: none;
  }

  main.n-main {
    border-right: 0;
    height: auto;
    overflow: visible;
  }

  .n-rail {
    grid-column: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .n-page {
    padding: 0;
  }

  .n-shell {
    width: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .n-topbar {
    order: 1;
    position: sticky;
    top: 0;
    z-index: 30;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 16px 10px;
    background: rgba(10, 14, 20, 0.86);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .n-mobile-brand {
    width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
  }

  .n-mobile-brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #13dfff, #08a9cf);
    box-shadow: 0 0 22px rgba(0, 212, 255, 0.38);
    color: #061018;
    font: 400 22px/1 'Bebas Neue', sans-serif;
  }

  .n-mobile-brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .n-mobile-brand-copy strong {
    color: #fff;
    font: 400 22px/0.9 'Bebas Neue', sans-serif;
    letter-spacing: 0.04em;
  }

  .n-mobile-brand-copy strong span {
    color: #00d4ff;
  }

  .n-mobile-brand-copy small {
    color: #6d7d8f;
    font: 700 8px/1 'Barlow Condensed', sans-serif;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .n-topbar h1 {
    font-size: 24px;
  }

  .n-topbar-actions {
    gap: 8px;
  }

  .n-search {
    width: 38px;
    height: 38px;
    flex: none;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
    background: rgba(16, 22, 31, 0.72);
  }

  .n-search input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }

  .n-topbar-bell {
    display: inline-flex;
  }

  .n-ticker {
    order: 3;
  }

  .n-ticker-label {
    padding-left: 16px;
    padding-right: 12px;
  }

  .n-ticker-track {
    padding-left: 160px;
  }

  .n-chip-row,
  .n-featured,
  .n-gamepass,
  .n-list-head,
  .n-list,
  .n-pagination {
    max-width: none;
  }

  .n-chip-row {
    order: 2;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 2px 16px 10px;
    background: rgba(10, 14, 20, 0.86);
    scrollbar-width: none;
  }

  .n-chip-row::-webkit-scrollbar {
    display: none;
  }

  .n-chip {
    min-height: 34px;
    padding: 7px 14px;
    white-space: nowrap;
  }

  .n-featured {
    order: 4;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 16px 0;
    margin-bottom: 20px;
  }

  .n-featured-media {
    height: 200px;
  }

  .n-featured-body h2 {
    font-size: 19px;
  }

  .n-gamepass {
    order: 5;
    margin-bottom: 20px;
    padding: 16px;
  }

  .n-gamepass-grid {
    display: flex;
    gap: 11px;
    overflow-x: auto;
  }

  .n-gamepass-card {
    flex: none;
    width: 150px;
  }

  .n-mobile-pulse {
    order: 6;
    display: block;
    padding: 0 16px;
    margin: 0 0 22px;
  }

  .n-mobile-pulse-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
  }

  .n-mobile-pulse-head h3 {
    margin: 0;
    color: #fff;
    font: 400 20px/1 'Bebas Neue', sans-serif;
    letter-spacing: 0.04em;
  }

  .n-mobile-pulse-head a {
    margin-left: auto;
    color: #00d4ff;
    text-decoration: none;
    font: 700 11px 'Barlow', sans-serif;
  }

  .n-mobile-pulse-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 0 4px;
    scrollbar-width: none;
  }

  .n-mobile-pulse-track::-webkit-scrollbar {
    display: none;
  }

  .n-mobile-pulse-card {
    width: 156px;
    flex: 0 0 156px;
    border-radius: 13px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #111821;
    color: inherit;
    text-decoration: none;
  }

  .n-mobile-pulse-media {
    position: relative;
    display: block;
    height: 120px;
  }

  .n-mobile-pulse-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .n-mobile-pulse-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 12, 18, 0) 26%, rgba(8, 12, 18, 0.94) 100%);
  }

  .n-mobile-pulse-rank {
    position: absolute;
    top: -9px;
    left: 8px;
    z-index: 1;
    color: rgba(255, 255, 255, 0.17);
    font: 400 58px/1 'Bebas Neue', sans-serif;
  }

  .n-mobile-pulse-score {
    position: absolute;
    top: 9px;
    right: 9px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 3px 7px;
    border-radius: 7px;
    background: rgba(8, 11, 17, 0.62);
    color: #00d4ff;
    font: 800 11px 'Barlow', sans-serif;
  }

  .n-mobile-pulse-card strong {
    position: absolute;
    left: 11px;
    right: 11px;
    bottom: 10px;
    z-index: 2;
    color: #fff;
    font: 800 12.5px/1.25 'Barlow', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .n-list-head {
    order: 7;
    flex-wrap: wrap;
    padding: 0 16px;
  }

  .n-list {
    order: 8;
    padding: 0 16px;
  }

  .n-list-row {
    gap: 12px;
    padding: 13px 4px;
  }

  .n-list-thumb {
    width: 104px;
    height: 74px;
  }

  .n-list-body h4 {
    font-size: 14px;
  }

  .n-list-body p,
  .n-pulso-btn .pulso-label {
    display: none;
  }

  .n-pagination {
    order: 9;
    padding: 20px 16px 30px;
  }

  .n-rail {
    grid-column: 1;
    order: 10;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 8px 14px 24px;
  }

  .n-widget--telegram {
    order: -1;
  }
}

.n-bottomnav,
.n-bottomnav-homebar {
  display: none;
}

@media (max-width: 767px) {
  .n-bottomnav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: flex;
    align-items: flex-start;
    height: calc(78px + env(safe-area-inset-bottom));
    padding: 11px 4px env(safe-area-inset-bottom);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(8, 11, 16, 0.92);
    box-shadow: 0 -18px 36px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .n-bottomnav-item {
    flex: 1;
    min-height: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    color: #5b6b7d;
    text-decoration: none;
    font: 600 9.5px 'Barlow', sans-serif;
  }

  .n-bottomnav-item svg {
    width: 21px;
    height: 21px;
    flex: none;
  }

  .n-bottomnav-item.is-active {
    color: #00d4ff;
  }

  .n-bottomnav-item.is-active svg {
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.55));
  }

  .n-bottomnav-homebar {
    position: fixed;
    left: 50%;
    bottom: calc(9px + env(safe-area-inset-bottom));
    z-index: 81;
    display: block;
    width: 128px;
    height: 5px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.32);
    pointer-events: none;
  }
}
