:root {
  --feed-bg: #090a0d;
  --feed-panel: rgba(20, 21, 25, 0.88);
  --feed-panel-strong: rgba(27, 28, 33, 0.96);
  --feed-line: rgba(255, 255, 255, 0.1);
}

.feed-body {
  background:
    radial-gradient(circle at 50% -8rem, rgba(255, 255, 255, 0.065), transparent 35rem),
    linear-gradient(180deg, #101115 0%, var(--feed-bg) 48%, #07080a 100%);
  background-attachment: fixed;
}

.pc-shared-topbar .top-nav a.is-active {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #f5f5f7;
}

.feed-page {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 88px;
}

.feed-page-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 0 4px 18px;
}

.feed-page-head h1,
.feed-page-head p {
  margin: 0;
}

.feed-page-head h1 {
  font-size: 25px;
  font-weight: 820;
  letter-spacing: 0;
}

.feed-page-head .feed-beta-label {
  display: inline-flex;
  width: fit-content;
  min-height: 22px;
  align-items: center;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.065);
  color: rgba(245, 245, 247, 0.78);
  font-size: 10px;
  font-weight: 760;
}

.feed-stories-section {
  margin-bottom: 18px;
}

.feed-stories {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 3px 4px 10px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.feed-stories::-webkit-scrollbar {
  display: none;
}

.feed-story,
.feed-story-skeleton {
  width: 76px;
  flex: 0 0 76px;
  scroll-snap-align: start;
}

.feed-story {
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: center;
}

.feed-story-ring {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  padding: 3px;
  border-radius: 50%;
  background: conic-gradient(from 205deg, #2f80ed, #74b4ff, #d5e8ff, #2f80ed);
  box-shadow: 0 8px 24px rgba(17, 86, 190, 0.2);
}

.feed-story-visual {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  overflow: hidden;
  border: 3px solid #111216;
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    #24262c;
  color: #f0f0f2;
  font-size: 19px;
  font-weight: 850;
}

.feed-story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feed-story-visual.is-team img {
  padding: 9px;
  object-fit: contain;
}

.feed-story-title {
  width: 100%;
  overflow: hidden;
  font-size: 11px;
  font-weight: 720;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feed-story-skeleton {
  height: 94px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 34px, rgba(255, 255, 255, 0.09) 0 30px, transparent 31px),
    linear-gradient(90deg, rgba(255,255,255,0.025), rgba(255,255,255,0.07), rgba(255,255,255,0.025));
  background-size: auto, 220% 100%;
  animation: feed-shimmer 1.2s linear infinite;
}

.feed-notice {
  margin: 0 0 14px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  color: #c6c7cb;
  font-size: 12px;
  line-height: 1.5;
}

.feed-notice.is-error {
  border-color: rgba(255, 130, 130, 0.16);
  background: rgba(159, 55, 55, 0.1);
  color: #ffc2c2;
}

.feed-posts {
  display: grid;
  gap: 14px;
}

.feed-post-card {
  overflow: hidden;
  border: 1px solid var(--feed-line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.042), transparent 8rem),
    var(--feed-panel);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  animation: feed-card-in 360ms ease both;
}

.feed-post-card.is-skeleton {
  min-height: 260px;
  background: linear-gradient(90deg, rgba(255,255,255,0.028), rgba(255,255,255,0.075), rgba(255,255,255,0.028));
  background-size: 220% 100%;
  animation: feed-shimmer 1.2s linear infinite;
}

.feed-post-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 68px;
  padding: 12px 15px;
}

.feed-post-author {
  display: flex;
  flex: 0 1 auto;
  min-width: 0;
  align-items: center;
  gap: 11px;
  overflow: hidden;
  color: var(--text);
}

.feed-post-author-wrap {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  align-items: center;
  gap: 7px;
  overflow: hidden;
}

.feed-post-author-avatar {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: #24262c;
  color: #ececef;
  font-size: 11px;
  font-weight: 850;
}

.feed-post-author-avatar::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: inherit;
  content: '';
  pointer-events: none;
}

.feed-post-author-avatar img,
.feed-post-author-avatar-fallback {
  width: 100%;
  height: 100%;
}

.feed-post-author-avatar img {
  object-fit: cover;
}

.feed-post-author-avatar.is-team img,
.feed-post-author-avatar.is-brand img {
  padding: 7px;
  object-fit: contain;
}

.feed-post-author-avatar-fallback {
  display: grid;
  place-items: center;
}

.feed-post-author-copy {
  display: block;
  min-width: 0;
}

.feed-post-author-copy strong {
  display: block;
  overflow: hidden;
  font-size: 13px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feed-follow-badge {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: #777a82;
  cursor: pointer;
  transition: color 150ms ease, background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.feed-follow-badge svg {
  width: 14px;
  height: 14px;
}

.feed-follow-badge:hover,
.feed-follow-badge:focus-visible {
  border-color: rgba(245, 197, 83, 0.38);
  color: #e8c66e;
  outline: none;
  transform: translateY(-1px);
}

.feed-follow-badge.is-active {
  border-color: rgba(245, 197, 83, 0.32);
  background: rgba(245, 197, 83, 0.12);
  color: #f3c75b;
}

.feed-follow-badge.is-active svg {
  fill: currentColor;
}

.feed-follow-badge:disabled {
  cursor: wait;
  opacity: 0.55;
}

.feed-post-time {
  flex: 0 0 auto;
  color: var(--quiet);
  font-size: 10px;
  font-weight: 650;
}

.feed-post-copy {
  padding: 3px 17px 16px;
}

.feed-post-copy h2,
.feed-post-copy p {
  margin: 0;
}

.feed-post-copy h2 {
  font-size: 14px;
  font-weight: 520;
  letter-spacing: 0;
  line-height: 1.55;
}

.feed-post-copy h2 a {
  margin-right: 4px;
  color: #f3f3f5;
  font-weight: 820;
}

.feed-post-copy p {
  margin-top: 5px;
  color: #c7c7cb;
  font-size: 13px;
  font-weight: 480;
  line-height: 1.58;
  white-space: pre-line;
}

.feed-player-game-card {
  display: grid;
  grid-template-columns: minmax(132px, 0.68fr) minmax(270px, 1fr);
  align-items: center;
  gap: 16px;
  margin: 0 15px 15px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.feed-player-game-card:hover,
.feed-player-game-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.065);
  outline: none;
  transform: translateY(-1px);
}

.feed-player-game-summary {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.feed-player-game-summary time {
  color: var(--quiet);
  font-size: 10px;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}

.feed-player-game-stats {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.feed-game-player-line {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.feed-game-player-line strong {
  color: #efeff1;
  font-size: 13px;
  font-weight: 800;
}

.feed-game-role-icon {
  display: grid;
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.06);
  color: #d9d9dd;
}

.feed-game-role-icon.is-pitcher {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.09);
  color: #f0f0f2;
}

.feed-game-role-icon.is-batter {
  color: #e4e4e7;
}

.feed-game-role-icon svg {
  width: 15px;
  height: 15px;
}

.feed-game-bat-icon {
  fill: currentColor;
  stroke: none;
}

.feed-game-hr-badge {
  display: inline-grid;
  min-width: 25px;
  height: 19px;
  padding: 0 6px;
  place-items: center;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.17);
  color: #ff8b8b;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}

.feed-game-scoreline {
  display: grid;
  grid-template-columns: minmax(58px, 1fr) auto auto auto minmax(58px, 1fr);
  min-width: 0;
  align-items: center;
  gap: 8px;
  justify-self: stretch;
  color: #f5f5f7;
  font-size: 18px;
  font-variant-numeric: tabular-nums;
}

.feed-game-scoreline > strong {
  font-weight: 900;
}

.feed-game-scoreline > strong.is-loser {
  color: #74747b;
}

.feed-game-score-team {
  display: grid;
  min-width: 0;
  justify-items: center;
  gap: 3px;
}

.feed-game-score-team img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.feed-game-score-team span {
  display: block;
  width: 100%;
  overflow: hidden;
  color: #a2a2a8;
  font-size: 8px;
  font-weight: 780;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feed-game-vs {
  color: #797980;
  font-size: 10px;
  font-weight: 780;
}

.feed-post-media {
  display: block;
  width: 100%;
  max-height: 620px;
  aspect-ratio: 4 / 5;
  background: #0b0c0f;
  object-fit: cover;
  object-position: center top;
}

.feed-post-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 48px;
  padding: 7px 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.feed-action-button {
  display: inline-flex;
  min-width: 44px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 9px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  font-weight: 760;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.feed-action-button:hover,
.feed-action-button:focus-visible {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  outline: none;
}

.feed-action-button:active {
  transform: scale(0.94);
}

.feed-action-button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.feed-action-button svg {
  width: 20px;
  height: 20px;
}

.feed-like-button.is-active {
  color: #ff7085;
}

.feed-like-button.is-active svg {
  fill: currentColor;
}

.feed-comments-panel {
  overflow: hidden;
  border-top: 1px solid var(--feed-line);
  background: rgba(0, 0, 0, 0.18);
}

.feed-comments-panel[hidden] {
  display: none;
}

.feed-comment-list {
  display: grid;
  margin: 0;
  padding: 5px 17px 0;
  list-style: none;
}

.feed-comment {
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr);
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.feed-comment:last-child {
  border-bottom: 0;
}

.feed-comment-avatar {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  color: #ededf0;
  font-size: 10px;
  font-weight: 850;
}

.feed-comment-main {
  min-width: 0;
}

.feed-comment-meta {
  display: flex;
  align-items: center;
  gap: 7px;
}

.feed-comment-meta strong {
  font-size: 11px;
  font-weight: 800;
}

.feed-comment-meta time {
  color: var(--quiet);
  font-size: 9px;
}

.feed-comment-main p {
  margin: 4px 0 0;
  color: #c9c9cd;
  font-size: 12px;
  line-height: 1.5;
  overflow-wrap: anywhere;
  white-space: pre-line;
}

.feed-comments-empty {
  padding: 18px 17px;
  color: var(--quiet);
  font-size: 11px;
  text-align: center;
}

.feed-comment-form {
  display: flex;
  gap: 8px;
  padding: 12px 13px 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.feed-comment-form input {
  min-width: 0;
  flex: 1;
  height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font: inherit;
  font-size: 12px;
  outline: none;
}

.feed-comment-form input:focus {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.075);
}

.feed-comment-form button,
.feed-comment-login {
  min-width: 54px;
  height: 38px;
  padding: 0 12px;
  border: 0;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.11);
  color: #f5f5f7;
  cursor: pointer;
  font-size: 11px;
  font-weight: 820;
}

.feed-comment-login-wrap {
  padding: 12px 13px 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.feed-comment-login {
  width: 100%;
  background: rgba(255, 255, 255, 0.065);
  color: #e4e4e7;
}

.feed-empty {
  padding: 44px 20px;
  border: 1px solid var(--feed-line);
  border-radius: 18px;
  background: var(--feed-panel);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.feed-story-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: 14px;
}

.feed-story-modal.is-open {
  display: grid;
}

.feed-story-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.feed-story-viewer {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: min(430px, 100%);
  height: min(92vh, 780px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: #0b0c0f;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

.feed-story-progress {
  position: absolute;
  top: 10px;
  right: 10px;
  left: 10px;
  z-index: 7;
  display: flex;
  gap: 4px;
}

.feed-story-progress-track {
  height: 2px;
  flex: 1;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
}

.feed-story-progress-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #fff;
}

.feed-story-progress-fill.is-complete {
  width: 100%;
}

.feed-story-progress-fill.is-active {
  animation: feed-story-progress var(--story-duration, 5s) linear forwards;
}

.feed-story-viewer-head {
  position: absolute;
  top: 22px;
  right: 12px;
  left: 14px;
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.feed-story-author {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
}

.feed-story-author-avatar {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(28, 29, 34, 0.92);
  font-size: 10px;
  font-weight: 850;
}

.feed-story-author-avatar img,
.feed-story-author-avatar-fallback {
  width: 100%;
  height: 100%;
}

.feed-story-author-avatar img {
  object-fit: cover;
}

.feed-story-author-avatar.is-team img,
.feed-story-author-avatar.is-brand img {
  padding: 6px;
  object-fit: contain;
}

.feed-story-author-avatar-fallback {
  display: grid;
  place-items: center;
}

.feed-story-author-copy {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 7px;
}

.feed-story-author-copy strong {
  overflow: hidden;
  font-size: 12px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feed-story-author-copy time {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
}

.feed-story-close {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.34);
  color: #fff;
  cursor: pointer;
}

.feed-story-close svg {
  width: 20px;
  height: 20px;
}

.feed-story-modal-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0b0c0f;
}

.feed-story-modal-visual {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.feed-story-modal-media.is-plate-3d .feed-story-modal-visual::before {
  display: none;
}

.feed-story-modal-media.is-plate-3d .feed-story-nav {
  width: 12%;
}

.feed-story-viewer.is-story-paused .feed-story-progress-fill.is-active {
  animation-play-state: paused;
}

.plate-appearance-3d {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.055), transparent 36%),
    #080a0c;
  touch-action: none;
  user-select: none;
}

.plate-appearance-3d::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.22), transparent 24%),
    linear-gradient(0deg, rgba(5, 6, 8, 0.78), transparent 38%);
  content: '';
  pointer-events: none;
}

.plate-appearance-3d canvas {
  display: block;
  width: 100%;
  height: 100%;
  cursor: grab;
  outline: none;
}

.plate-appearance-3d canvas:active {
  cursor: grabbing;
}

.plate-3d-hud {
  position: absolute;
  top: 70px;
  left: 16px;
  z-index: 3;
  display: flex;
  max-width: calc(100% - 80px);
  align-items: center;
  gap: 8px;
  pointer-events: none;
}

.plate-3d-mark,
.plate-3d-pitch {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 13, 16, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.plate-3d-mark {
  justify-content: center;
  padding: 0 8px;
  border-radius: 999px;
  color: #fff;
  font-size: 9px;
  font-weight: 850;
}

.plate-3d-pitch {
  min-width: 0;
  overflow: hidden;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.plate-3d-reset {
  position: absolute;
  top: 68px;
  right: 16px;
  z-index: 4;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background: rgba(12, 13, 16, 0.58);
  color: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.plate-3d-reset:hover,
.plate-3d-reset:focus-visible {
  border-color: rgba(255, 255, 255, 0.26);
  color: #fff;
}

.plate-3d-reset svg {
  width: 16px;
  height: 16px;
}

.plate-3d-loading,
.plate-3d-fallback {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 10px;
  padding: 24px;
  background: #080a0c;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  text-align: center;
}

.plate-3d-loading span:first-child {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-top-color: rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  animation: plate-3d-spin 700ms linear infinite;
}

.plate-3d-fallback strong {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.plate-3d-fallback span {
  max-width: 240px;
  line-height: 1.5;
}

@keyframes plate-3d-spin {
  to { transform: rotate(360deg); }
}

.feed-story-modal-visual::before {
  position: absolute;
  inset: -24px;
  background: var(--story-image) center / cover no-repeat;
  content: '';
  filter: blur(30px) brightness(0.42);
  opacity: 0.75;
  transform: scale(1.08);
}

.feed-story-modal-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.feed-story-modal-media.is-team .feed-story-modal-visual img {
  width: min(220px, 60%);
  height: auto;
  object-fit: contain;
}

.feed-story-modal-placeholder {
  position: relative;
  z-index: 1;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #efeff1;
  font-size: 30px;
  font-weight: 850;
}

.feed-story-modal-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 6;
  padding: 96px 22px 24px;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 7, 0.88) 58%, rgba(5, 5, 7, 0.97));
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.feed-story-modal-media.is-plate-3d + .feed-story-modal-copy {
  padding-top: 136px;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 7, 0.9) 54%, rgba(5, 5, 7, 0.98));
}

.feed-story-modal-copy h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.3;
}

.feed-story-modal-copy p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.6;
  white-space: pre-line;
}

.feed-story-detail-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) minmax(0, 1.25fr);
  overflow: hidden;
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(10, 11, 14, 0.7);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  text-shadow: none;
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  backdrop-filter: blur(18px) saturate(135%);
}

.feed-story-detail-item span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  font-weight: 650;
  line-height: 1.2;
  white-space: nowrap;
}

.feed-story-detail-item {
  display: grid;
  min-width: 0;
  gap: 5px;
  align-content: center;
  padding: 11px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(10, 11, 14, 0.76);
}

.feed-story-detail-item:last-child {
  border-right: 0;
}

.feed-story-detail-item strong {
  min-width: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 680;
  line-height: 1.38;
  overflow-wrap: anywhere;
}

.feed-story-detail-item.is-score strong {
  color: #fff;
  font-weight: 760;
}

.feed-story-viewer.is-group-enter-from-right .feed-story-progress,
.feed-story-viewer.is-group-enter-from-right .feed-story-author,
.feed-story-viewer.is-group-enter-from-right .feed-story-modal-visual,
.feed-story-viewer.is-group-enter-from-right .feed-story-modal-copy {
  animation: feed-story-group-enter-right 300ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.feed-story-viewer.is-group-enter-from-left .feed-story-progress,
.feed-story-viewer.is-group-enter-from-left .feed-story-author,
.feed-story-viewer.is-group-enter-from-left .feed-story-modal-visual,
.feed-story-viewer.is-group-enter-from-left .feed-story-modal-copy {
  animation: feed-story-group-enter-left 300ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes feed-story-group-enter-right {
  from {
    opacity: 0;
    transform: translate3d(44px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes feed-story-group-enter-left {
  from {
    opacity: 0;
    transform: translate3d(-44px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.feed-story-modal-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(20, 20, 23, 0.58);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.feed-story-nav {
  position: absolute;
  top: 76px;
  bottom: 88px;
  z-index: 5;
  width: 35%;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.feed-story-nav.is-prev { left: 0; }
.feed-story-nav.is-next { right: 0; }

.feed-story-nav svg {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  padding: 5px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.26);
  opacity: 0;
  transition: opacity 160ms ease;
}

.feed-story-nav.is-prev svg { left: 10px; }
.feed-story-nav.is-next svg { right: 10px; }

.feed-story-viewer:hover .feed-story-nav svg,
.feed-story-nav:focus-visible svg {
  opacity: 1;
}

.feed-story.is-viewed .feed-story-ring {
  background: rgba(147, 160, 180, 0.4);
  box-shadow: none;
}

.feed-toast {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 100;
  max-width: min(360px, calc(100% - 36px));
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(24, 25, 29, 0.96);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.34);
  color: #e5e5e7;
  font-size: 12px;
  line-height: 1.45;
}

@keyframes feed-shimmer {
  from { background-position: 100% 0; }
  to { background-position: -120% 0; }
}

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

@keyframes feed-story-progress {
  from { width: 0; }
  to { width: 100%; }
}

@media (max-width: 700px) {
  .feed-page {
    width: 100%;
    padding: 20px 10px 116px;
  }

  .feed-page-head {
    padding: 0 5px 15px;
  }

  .feed-page-head h1 {
    font-size: 23px;
  }

  .feed-page-head p {
    font-size: 11px;
  }

  .feed-stories {
    margin: 0 -10px;
    padding: 3px 14px 10px;
  }

  .feed-posts {
    gap: 10px;
  }

  .feed-post-card {
    border-radius: 15px;
  }

  .feed-post-head {
    min-height: 64px;
    padding: 11px 13px;
  }

  .feed-post-copy {
    padding: 0 14px 14px;
  }

  .feed-post-copy h2 {
    font-size: 13px;
  }

  .feed-post-copy p {
    font-size: 13px;
  }

  .feed-player-game-card {
    grid-template-columns: minmax(112px, 0.9fr) minmax(150px, 1.1fr);
    gap: 8px;
    margin: 0 12px 12px;
    padding: 12px 10px;
  }

  .feed-game-player-line {
    gap: 4px;
  }

  .feed-game-player-line strong {
    font-size: clamp(11px, 3.2vw, 13px);
  }

  .feed-game-role-icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
    font-size: 6px;
  }

  .feed-game-scoreline {
    grid-template-columns: minmax(34px, 1fr) auto auto auto minmax(34px, 1fr);
    gap: 3px;
    font-size: 14px;
  }

  .feed-game-score-team img {
    width: 25px;
    height: 25px;
  }

  .feed-game-score-team span {
    font-size: 6px;
  }

  .feed-game-vs {
    font-size: 7px;
  }

  .feed-story-modal {
    padding: 0;
  }

  .feed-story-viewer {
    width: 100%;
    height: 100dvh;
    border: 0;
    border-radius: 0;
  }

  .feed-story-modal-copy {
    padding-right: 18px;
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
    padding-left: 18px;
  }

  .feed-story-modal-media.is-plate-3d + .feed-story-modal-copy {
    padding-top: 122px;
  }

  .plate-3d-hud {
    top: calc(66px + env(safe-area-inset-top));
    left: 14px;
  }

  .plate-3d-reset {
    top: calc(64px + env(safe-area-inset-top));
    right: 14px;
  }

  .feed-story-nav svg {
    display: none;
  }

  .feed-comment-list {
    padding-right: 14px;
    padding-left: 14px;
  }

  .feed-mobile-nav.mobile-bottom-nav {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .feed-mobile-nav .mobile-bottom-icon {
    width: 27px;
    height: 27px;
  }

  .feed-mobile-nav .mobile-bottom-label {
    font-size: 11px;
  }

  .feed-toast {
    right: 12px;
    bottom: calc(92px + env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  .feed-post-card,
  .feed-story-skeleton,
  .feed-post-card.is-skeleton {
    animation: none;
  }

  .feed-story-progress-fill.is-active {
    animation-duration: 1ms;
  }

  .feed-story-viewer.is-group-enter-from-right .feed-story-progress,
  .feed-story-viewer.is-group-enter-from-right .feed-story-author,
  .feed-story-viewer.is-group-enter-from-right .feed-story-modal-visual,
  .feed-story-viewer.is-group-enter-from-right .feed-story-modal-copy,
  .feed-story-viewer.is-group-enter-from-left .feed-story-progress,
  .feed-story-viewer.is-group-enter-from-left .feed-story-author,
  .feed-story-viewer.is-group-enter-from-left .feed-story-modal-visual,
  .feed-story-viewer.is-group-enter-from-left .feed-story-modal-copy {
    animation: none;
  }

  .plate-3d-loading span:first-child {
    animation: none;
  }
}
