.site-footer {
  margin-top: 45px;
  margin-bottom: 0;
  border: 1px solid rgba(210, 243, 101, 0.2);
  border-radius: 16px;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(15, 15, 17, 0.86), rgba(12, 12, 13, 0.8));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body.is-embedded-webview .site-footer {
  display: none;
}

.site-footer-main {
  display: grid;
  gap: 3px;
}

.site-footer-brand {
  margin: 0;
  font-weight: 700;
  font-family: "Sora", "Manrope", sans-serif;
  letter-spacing: 0.2px;
}

.site-footer-copy {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.site-footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
}

.site-footer-links a:hover {
  color: var(--primary);
}

.site-footer-links .text-link-btn {
  color: var(--text);
  font-size: 13px;
}

.site-footer-links .text-link-btn:hover {
  color: var(--primary);
}

.text-link-btn {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  color: var(--primary);
  font: inherit;
  cursor: pointer;
}

.text-link-btn:hover {
  text-decoration: underline;
}

.feed.is-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.feed.is-list .card {
  --card-pad: 0px;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  grid-template-areas:
    "image meta"
    "image header"
    "image summary"
    "image chips";
  align-items: start;
  column-gap: 14px;
  row-gap: 8px;
  padding: 0;
  min-height: 0;
  overflow: hidden;
  width: 100%;
  max-width: 700px;
  margin-inline: auto;
  justify-self: center;
  height: 100%;
}

@media (max-width: 900px) {
  .feed.is-list {
    grid-template-columns: 1fr;
  }
}

.feed.is-list .card.no-image {
  grid-template-columns: 1fr;
  grid-template-areas:
    "meta"
    "header"
    "summary"
    "chips";
}

.feed.is-list .card-image {
  grid-area: image;
  margin: 0;
  width: 100%;
  min-height: 190px;
  object-fit: cover;
  border-radius: 0;
  border: 0;
  border-right: 1px solid var(--line);
}

.feed.is-list .card-headline {
  grid-area: header;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  margin: 0;
  padding-right: 12px;
  min-width: 0;
}

.feed.is-list .card-options-btn {
  position: static;
  top: auto;
  right: auto;
  margin-left: auto;
  width: 34px;
  height: 34px;
  min-width: 34px;
  font-size: 18px;
  border-radius: 10px;
  z-index: auto;
}

.feed.is-list .title {
  white-space: normal;
  overflow-wrap: anywhere;
}

.feed.is-list .meta {
  grid-column: 1 / -1;
  width: 100%;
  display: block;
  white-space: normal;
  overflow-wrap: anywhere;
}

.feed.is-list .card-summary {
  grid-area: summary;
  margin: 0;
}

.feed.is-list .card-floating-meta {
  position: static;
  grid-area: meta;
  max-width: none;
  margin: 12px 12px 0 0;
  padding: 0 0 0 0;
  background: transparent;
  backdrop-filter: none;
  pointer-events: auto;
  display: flex;
  justify-content: flex-start;
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.feed.is-list .card-owner {
  max-width: 100%;
  min-width: 0;
}

.feed.is-list .card-floating-meta .city {
  margin-left: auto;
}

.feed.is-list .owner-name {
  color: var(--text-muted);
}

.feed.is-list .card .chips {
  grid-area: chips;
  padding: 0 12px 12px 0;
}

.feed.is-list .card.no-image .card-floating-meta {
  margin: 12px 12px 0;
}

.feed.is-list .card.no-image .card-headline {
  padding: 0 12px;
}

.feed.is-list .card.no-image .card-summary {
  padding: 0 12px;
}

.feed.is-list .card.no-image .chips {
  padding: 0 12px 12px;
}

.feed-day-divider {
  grid-column: 1 / -1;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.2px;
  padding: 6px 2px 2px;
  margin-top: 25px;
  border-top: 1px solid rgba(210, 243, 101, 0.2);
}

.card {
  --card-pad: var(--sp-4);
  position: relative;
  background:
    radial-gradient(circle at 12% 0%, rgba(236, 253, 178, 0.08), transparent 44%),
    linear-gradient(180deg, rgba(16, 16, 18, 0.74), rgba(10, 10, 11, 0.7));
  border: 1px solid rgba(240, 241, 239, 0.14);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  padding: var(--card-pad);
  transition: border-color 0.24s ease, transform 0.24s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.24s ease, background 0.24s ease;
  animation: fade-up 0.22s ease both;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 12px 26px rgba(6, 7, 2, 0.34);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  opacity: 0.75;
}

.card.card-ad::before {
  display: none;
}

.card.menu-open {
  overflow: visible;
  position: relative;
  z-index: 22;
}

.feed.is-list .card.menu-open {
  overflow: visible;
}

.card-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  border-radius: 13px;
  border: 1px solid rgba(242, 242, 241, 0.14);
  margin-bottom: var(--sp-3);
}

.card.card-clickable .card-image {
  width: calc(100% + (var(--card-pad) * 2));
  margin-left: calc(var(--card-pad) * -1);
  margin-top: calc(var(--card-pad) * -1);
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
}

.card-owner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 8px;
  min-width: 0;
}

.card-owner-media {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0;
  min-width: 36px;
}

.card-owner-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
  align-items: start;
  padding-top: 2px;
}

.card-floating-meta {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 6;
  display: grid;
  gap: 4px;
  max-width: calc(100% - 64px);
  padding: 4px 5px;
  border-radius: 12px;
  background: rgba(11, 11, 12, 0.48);
  backdrop-filter: blur(9px);
  pointer-events: auto;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  border: 1px solid transparent;
}

.card-floating-meta.card-floating-meta-profile {
  position: relative;
  top: auto;
  left: auto;
  width: fit-content;
  max-width: 100%;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.card-floating-meta:hover,
.card-floating-meta:focus-visible {
  background: rgba(17, 17, 19, 0.72);
  border-color: rgba(220, 251, 116, 0.28);
  box-shadow: 0 8px 18px rgba(7, 8, 3, 0.34);
  outline: none;
}

.card-floating-meta.card-floating-meta-profile:hover,
.card-floating-meta.card-floating-meta-profile:focus-visible {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.owner-avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: rgba(16, 16, 18, 0.9);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.card-floating-meta.is-live .owner-avatar {
  border-color: rgba(255, 93, 93, 0.95);
  box-shadow: 0 0 0 2px rgba(255, 53, 53, 0.22), 0 0 18px rgba(255, 74, 74, 0.24);
}

.card-floating-meta.is-live:hover .owner-avatar,
.card-floating-meta.is-live:focus-visible .owner-avatar {
  transform: scale(1.02);
}

.owner-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  justify-self: center;
  width: fit-content;
  margin-top: -8px;
  padding: 2px 7px;
  border-radius: 999px;
  border: 1px solid rgba(255, 92, 92, 0.7);
  background: linear-gradient(180deg, rgba(255, 78, 78, 0.96), rgba(200, 23, 23, 0.92));
  color: #fff4f4;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  box-shadow: 0 10px 20px rgba(126, 8, 8, 0.28);
  pointer-events: none;
  text-transform: uppercase;
}

.owner-live-badge i {
  font-size: 7px;
  color: #fff;
  animation: owner-live-pulse 1.5s ease-in-out infinite;
}

.card-now-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  justify-self: start;
  width: fit-content;
  padding: 2px 7px;
  border-radius: 999px;
  border: 1px solid rgba(255, 170, 120, 0.72);
  background: linear-gradient(180deg, rgba(255, 120, 92, 0.96), rgba(220, 70, 42, 0.92));
  color: #fff6f2;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  box-shadow: 0 10px 20px rgba(126, 39, 8, 0.24);
  pointer-events: none;
  text-transform: uppercase;
}

.card-now-badge i {
  font-size: 8px;
  color: #fff;
}

.public-profile-meta-chip {
  z-index: 1;
  isolation: isolate;
}

.public-profile-meta-chip.public-profile-avatar-wrap {
  position: relative;
  overflow: visible;
}

.public-profile-live-ring {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.public-profile-meta-chip .public-profile-avatar-wrap,
.public-profile-meta-chip .public-profile-avatar,
.public-profile-meta-chip .public-profile-avatar-fallback {
  position: relative;
  z-index: 1;
}

.public-profile-meta-chip.public-profile-avatar-wrap .public-profile-avatar,
.public-profile-meta-chip.public-profile-avatar-wrap .public-profile-avatar-fallback {
  position: relative;
  z-index: 1;
}

.public-profile-meta-chip .owner-live-badge {
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  margin-top: 0;
  justify-self: auto;
  z-index: 4;
  gap: 4px;
  padding: 2px 8px;
  font-size: 9px;
  letter-spacing: 0.04em;
  border-color: rgba(255, 124, 124, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 96, 96, 0.98), rgba(214, 28, 28, 0.96));
  box-shadow:
    0 8px 18px rgba(126, 8, 8, 0.24),
    0 0 0 2px rgba(11, 11, 12, 0.82);
}

.public-profile-meta-chip.is-live .public-profile-avatar,
.public-profile-meta-chip.is-live .public-profile-avatar-wrap {
  border-color: transparent;
  box-shadow: none;
}

.public-profile-meta-chip .owner-live-badge i {
  font-size: 7px;
}

.public-profile-meta-chip::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  border: 2px solid transparent;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.public-profile-meta-chip.is-live::after {
  opacity: 1;
  border-color: rgba(255, 69, 69, 0.96);
  background: transparent;
  box-shadow:
    0 0 0 2px rgba(255, 40, 40, 0.18),
    0 8px 16px rgba(73, 8, 8, 0.18);
}

.public-profile-meta-chip.is-live .public-profile-avatar-wrap {
  padding: 2px;
  background: #0b0b0c;
  position: relative;
  z-index: 1;
}

.public-profile-meta-chip.is-live .public-profile-avatar,
.public-profile-meta-chip.is-live .public-profile-avatar-fallback {
  border: 0;
  background: rgba(13, 13, 15, 0.96);
  box-shadow: none;
}

.public-profile-meta-chip.is-live.public-profile-avatar-wrap {
  border-color: transparent !important;
  box-shadow: none !important;
  background: transparent !important;
}

.public-profile-meta-chip.is-live.public-profile-avatar-wrap .public-profile-live-ring {
}

.public-profile-meta-chip.is-live.public-profile-avatar-wrap .public-profile-avatar,
.public-profile-meta-chip.is-live.public-profile-avatar-wrap .public-profile-avatar-fallback {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  border: 3px solid #090909 !important;
  background: rgba(13, 13, 15, 0.96);
  box-shadow: none !important;
}

.owner-name {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@keyframes owner-live-pulse {
  0%,
  100% {
    opacity: 0.65;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.card:hover {
  border-color: rgba(210, 243, 101, 0.42);
  transform: translateY(-5px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 22px 40px rgba(7, 8, 2, 0.44),
    0 0 0 1px rgba(210, 243, 101, 0.14);
}

.card.card-clickable:active {
  transform: translateY(-1px) scale(0.994);
  transition-duration: 0.08s;
}

.card.card-clickable .card-image {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.card.card-clickable:hover .card-image {
  transform: scale(1.045);
}

.card-header {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-3);
}

.card-header > div:first-child {
  min-width: 0;
  width: 100%;
}

.card-headline {
  margin-bottom: var(--sp-2);
  align-items: flex-start;
}

.title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 19px;
  line-height: 1.25;
  color: rgba(248, 248, 247, 0.94);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.city {
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.city i {
  font-size: 11px;
  margin-right: 5px;
  opacity: 0.9;
}

.meta {
  margin-top: var(--sp-2);
  font-size: 14px;
  color: rgba(226, 227, 224, 0.82);
  text-align: left;
}

.card-summary {
  margin: 4px 0 2px;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(229, 233, 213, 0.84);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.feed:not(.is-list) .card-summary {
  display: none;
}

.feed:not(.is-list) .card.card-ad .card-summary {
  display: block;
  height: 100%;
  min-height: 100%;
  margin: 0;
  position: absolute;
  inset: 0;
  border-radius: 0;
}

.feed:not(.is-list) .card.card-ad {
  min-height: calc(clamp(210px, 44vh, 320px) + 110px);
  align-self: stretch;
  height: auto;
  position: relative;
  overflow: hidden;
}

.feed:not(.is-list) .card.card-ad .card-header,
.feed:not(.is-list) .card.card-ad .card-ad-helper,
.feed:not(.is-list) .card.card-ad .card-ad-bottom-note {
  display: none !important;
}

.feed:not(.is-list) .card.card-ad .card-ad-click-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.feed:not(.is-list) .card.card-ad .card-ad-hero-image {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  max-height: none !important;
  object-fit: cover;
  object-position: center;
  aspect-ratio: auto !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

.desc {
  margin: var(--sp-3) 0;
  font-size: 15px;
  color: var(--text);
  line-height: 1.45;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.chips span {
  font-size: 12px;
  color: #ececea;
  border-radius: 999px;
  border: 1px solid rgba(239, 253, 192, 0.24);
  background: rgba(255, 255, 255, 0.045);
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.card.card-clickable:hover .chips span:not(.chip-like) {
  border-color: rgba(239, 253, 192, 0.34);
  background: rgba(255, 255, 255, 0.06);
}

.card .chips {
  flex-wrap: nowrap;
  overflow: hidden;
}

.card .chips span {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 0 1 auto;
}

.card .chips .chip-like {
  margin-left: auto;
  flex: 0 0 auto;
}

.card .chips .chip-like.is-liked {
  background: rgb(255, 0, 0);
  border-color: rgb(255, 0, 0);
  color: #ffffff;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
}

.actions button {
  padding: 8px 12px;
  font-size: 13px;
  background: rgba(210, 243, 101, 0.11);
  border-color: rgba(210, 243, 101, 0.27);
}

.actions button:hover {
  background: rgba(210, 243, 101, 0.2);
}

.card-clickable {
  position: relative;
  cursor: pointer;
}

.feed:not(.is-list) .card.card-clickable {
  display: flex;
  flex-direction: column;
}

.feed:not(.is-list) .card.card-clickable .chips {
  margin-top: auto;
}

.card-footer {
  margin-top: var(--sp-3);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: var(--sp-2);
}

.card-hint {
  font-size: 13px;
  color: var(--text-soft);
}

.feed.is-list .card.card-ad {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  grid-template-areas:
    "image meta"
    "image header"
    "image summary"
    "image chips";
  align-items: stretch;
  column-gap: 14px;
  row-gap: 8px;
  min-height: 0;
  padding: 0 !important;
  width: 100%;
  max-width: 700px;
  margin-inline: auto;
  justify-self: center;
  height: 100%;
  align-items: start;
}

.feed.is-list .card.card-ad .card-summary {
  grid-area: image;
  position: relative;
  inset: auto;
  min-height: 190px;
  height: auto;
  align-self: stretch;
  border-right: 1px solid var(--line);
  border-radius: 0 !important;
}

.feed.is-list .card.card-ad .card-ad-click-cover {
  position: relative;
  inset: auto;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  border-radius: 0 !important;
}

.feed.is-list .card.card-ad .card-ad-hero-image {
  position: static;
  inset: auto;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
  transform-origin: center;
  border-radius: 0 !important;
}

.feed.is-list .card.card-ad .card-header {
  grid-area: header;
  padding: 0 12px 0 0;
  align-self: start;
  min-width: 0;
}

.feed.is-list .card.card-ad .chips {
  grid-area: chips;
  margin: 0;
  padding: 0 12px 12px 0;
  align-self: end;
  min-height: 44px;
  align-content: end;
}

.feed.is-list .card.card-ad .card-header .title,
.feed.is-list .card.card-ad .card-header .meta,
.feed.is-list .card.card-ad .card-header .card-ad-inline-note {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.card.card-ad .chips:empty {
  display: none;
}

.feed.is-list .card.card-ad .card-ad-bottom-note {
  display: none;
}

.feed.is-list .card.card-ad .card-ad-disclosure {
  display: none;
}

.card-options-btn {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  padding: 0;
  font-size: 20px;
  line-height: 1;
  display: grid;
  place-items: center;
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 6;
  background: rgba(13, 13, 15, 0.8);
  backdrop-filter: blur(6px);
}

.card-side {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.card-menu {
  position: absolute;
  right: 14px;
  top: 52px;
  width: 210px;
  z-index: 30;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(10, 10, 11, 0.97);
  box-shadow: var(--shadow);
  display: grid;
  gap: 6px;
}

.card-menu button {
  width: 100%;
  text-align: left;
  background: rgba(210, 243, 101, 0.12);
  border-color: rgba(210, 243, 101, 0.22);
  padding: 8px 10px;
  font-size: 13px;
}

.card-menu button:hover {
  background: rgba(210, 243, 101, 0.18);
}

.card .desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.detail-panel .desc {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
  white-space: pre-line;
}

@media (min-width: 760px) {
  .detail-panel .desc {
    max-height: min(38vh, 280px);
    overflow-y: auto;
    padding-right: 4px;
  }
}

.hidden {
  display: none !important;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  justify-content: center;
  align-items: center;
  background:
    radial-gradient(circle at 14% 6%, rgba(225, 252, 135, 0.1), transparent 34%),
    rgba(5, 6, 2, 0.66);
  backdrop-filter: blur(8px);
  overflow-y: auto;
  opacity: 1;
  transition: opacity 0.22s ease, backdrop-filter 0.22s ease, background 0.22s ease;
}

#publicProfileModal {
  z-index: 58;
}

#authModal {
  z-index: 60;
}

#authModal.modal {
  box-sizing: border-box;
  padding: 16px;
  align-items: center;
  justify-content: center;
}

#detailModal {
  z-index: 52;
}

#reportModal {
  z-index: 56;
  box-sizing: border-box;
  padding: 16px;
  align-items: center;
  justify-content: center;
}

#reportModal .panel {
  width: min(100%, 480px);
  max-width: 480px;
  max-height: 80dvh;
  overflow-y: auto;
}

#profileSettingsHubModal.modal {
  box-sizing: border-box;
  padding: 16px;
  align-items: center;
  justify-content: center;
}

#profileSettingsHubModal .profile-settings-hub-panel {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  max-width: 500px;
  height: auto;
  min-height: 0;
  max-height: min(calc(100dvh - 32px), 80dvh);
  padding: 22px 18px 18px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(145, 166, 78, 0.34);
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(161, 189, 68, 0.14), transparent 44%),
    linear-gradient(180deg, rgba(13, 16, 22, 0.98), rgba(10, 13, 18, 0.98));
}

#publicProfileFollowListModal {
  z-index: 59;
}

.modal .panel {
  transform-origin: center center;
  transform: translateY(0) scale(1);
  opacity: 1;
  will-change: transform, opacity, filter;
}

.modal.modal-enter {
  animation: modalOverlayIn 0.36s ease both;
}

.modal.modal-enter .panel {
  animation: spyPanelIn 0.36s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.modal.modal-leave {
  animation: modalOverlayOut 0.36s ease both;
}

.modal.modal-leave .panel {
  animation: spyPanelOut 0.36s cubic-bezier(0.4, 0, 0.8, 0.2) both;
}

@keyframes modalOverlayIn {
  0% {
    opacity: 0;
    backdrop-filter: blur(2px);
  }
  100% {
    opacity: 1;
    backdrop-filter: blur(8px);
  }
}

@keyframes modalOverlayOut {
  0% {
    opacity: 1;
    backdrop-filter: blur(8px);
  }
  100% {
    opacity: 0;
    backdrop-filter: blur(2px);
  }
}

@keyframes spyPanelIn {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
    filter: saturate(0.9);
  }
  55% {
    opacity: 1;
    transform: translateY(-1px) scale(1.005);
    filter: saturate(1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: saturate(1);
  }
}

@keyframes spyPanelOut {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: saturate(1);
  }
  100% {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
    filter: saturate(0.92);
  }
}

@media (prefers-reduced-motion: reduce) {
  .modal,
  .modal .panel {
    transition: none !important;
  }

  .card.card-clickable:hover .card-image,
  .card.card-clickable:active {
    transform: none !important;
  }

  .feed-live-story-now-event .feed-live-story-ring,
  .feed-live-story-now-event .feed-live-story-badge,
  .feed-live-story-soon-event .feed-live-story-ring,
  .feed-live-story-soon-event .feed-live-story-badge,
  .feed-live-story-live-radio .feed-live-story-ring,
  .feed-live-story-live-radio .feed-live-story-badge {
    animation: none !important;
  }
}

.public-profile-follow-list-panel {
  position: relative;
  width: min(560px, calc(100vw - 24px));
  height: min(78vh, 760px);
  padding: 22px 18px 18px;
  border-radius: 24px;
  border: 1px solid rgba(145, 166, 78, 0.34);
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(161, 189, 68, 0.14), transparent 44%),
    linear-gradient(180deg, rgba(13, 16, 22, 0.98), rgba(10, 13, 18, 0.98));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 14px;
}

.public-profile-follow-list-head {
  display: grid;
  gap: 4px;
  padding-right: 42px;
}

.public-profile-follow-list-eyebrow {
  margin: 0;
  font-size: 12px;
  color: #b1bc8c;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.public-profile-follow-list-head h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.04;
  color: #f8f8f7;
}

.public-profile-follow-list-meta {
  margin: 0;
  font-size: 14px;
  color: #cdd4b5;
}

.public-profile-follow-list-body {
  display: grid;
  grid-auto-rows: max-content;
  align-content: start;
  gap: 0;
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding-right: 2px;
  border-top: 1px solid rgba(221, 250, 124, 0.12);
}

.public-profile-follow-list-empty {
  min-height: 180px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 6px;
  border-radius: 18px;
  border: 1px solid rgba(221, 250, 124, 0.14);
  background: rgba(255, 255, 255, 0.02);
  padding: 18px;
}

.public-profile-follow-list-empty h4,
.public-profile-follow-list-empty p {
  margin: 0;
}

.public-profile-follow-list-empty h4 {
  color: #f6f6f6;
  font-size: 18px;
}

.public-profile-follow-list-empty p {
  color: #c2caa6;
  font-size: 14px;
}

.public-profile-follow-list-item {
  border: 0;
  border-bottom: 1px solid rgba(221, 250, 124, 0.12);
  background: transparent;
  color: inherit;
  width: 100%;
  border-radius: 0;
  padding: 8px 4px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
  min-height: 58px;
  max-height: 70px;
  outline: none;
}

.public-profile-follow-list-item:hover,
.public-profile-follow-list-item:focus-visible {
  background: rgba(221, 250, 124, 0.05);
  border-bottom-color: rgba(221, 250, 124, 0.22);
  box-shadow: none;
}

.public-profile-follow-list-media {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.public-profile-follow-list-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(221, 250, 124, 0.2);
}

.public-profile-follow-list-avatar-fallback {
  background: rgba(221, 250, 124, 0.08);
  color: #e4e4e2;
  font-size: 20px;
}

.public-profile-follow-list-copy {
  min-width: 0;
  display: grid;
  gap: 1px;
  text-align: left;
  padding-top: 0;
  align-content: center;
}

.public-profile-follow-list-copy strong {
  color: #f8f8f7;
  font-size: 14px;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.public-profile-follow-list-relation {
  color: #e3eacd;
  font-size: 11px;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.public-profile-follow-list-copy small {
  color: #b1b89a;
  font-size: 11px;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.public-profile-follow-list-open {
  color: #dbf87d;
  font-size: 13px;
  opacity: 0.92;
  align-self: center;
  min-width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(221, 250, 124, 0.18);
  background: rgba(221, 250, 124, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.public-profile-follow-list-loadmore {
  padding: 10px 4px 2px;
  display: flex;
  justify-content: center;
}

.public-profile-follow-list-loadmore span {
  min-height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(221, 250, 124, 0.18);
  background: rgba(14, 14, 15, 0.82);
  color: #d3daba;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

@media (max-width: 760px) {
  .modal .panel {
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .public-profile-follow-list-panel {
    width: 100vw;
    height: 100vh;
    padding: 18px 12px 12px;
    border-radius: 0;
    max-width: 100vw;
    max-height: 100vh;
  }

  .public-profile-follow-list-body {
    padding-right: 0;
  }

  .public-profile-follow-list-item {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 8px;
    padding: 7px 2px;
    min-height: 54px;
  }

  .public-profile-follow-list-media,
  .public-profile-follow-list-avatar {
    width: 44px;
    height: 44px;
  }

  .public-profile-follow-list-copy strong {
    font-size: 13px;
  }

  .public-profile-follow-list-relation {
    font-size: 10px;
  }

  .public-profile-follow-list-copy small {
    font-size: 10px;
  }
}

body.loading-locked {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
  height: 100vh;
}

.global-loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(3px);
}

.global-loading-box {
  min-width: 220px;
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 18px 22px;
  border-radius: 14px;
  border: 1px solid rgba(210, 243, 101, 0.38);
  background: linear-gradient(180deg, rgba(16, 16, 18, 0.96), rgba(10, 10, 11, 0.96));
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
}

.global-loading-spinner {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 3px solid rgba(210, 243, 101, 0.25);
  border-top-color: #ddfa7c;
  animation: spin 0.9s linear infinite;
}

.global-loading-box p {
  margin: 0;
  font-size: 14px;
  color: var(--text);
}

#legalModal.modal {
  z-index: 55;
}

.panel {
  width: min(620px, 100%);
  display: grid;
  gap: var(--sp-2);
  /* Same treatment as #communityLiveWatchModal's panel: a cooler charcoal base
     with a soft green highlight in the top-right corner, instead of a flat
     green-tinted fill. Applied globally so every modal reads as one family. */
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(161, 189, 68, 0.14), transparent 44%),
    linear-gradient(180deg, rgba(13, 16, 22, 0.98), rgba(10, 13, 18, 0.98));
  position: relative;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(145, 166, 78, 0.34);
}

/* Si el panel es en versión movil quita el borde*/
@media (max-width: 760px) {
  .panel {
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
}

.panel h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 22px;
}

.panel label {
  font-size: 13px;
  color: var(--text-muted);
}

.panel-sub {
  margin: 0 0 var(--sp-2);
  font-size: 13px;
  color: rgba(226, 231, 209, 0.78);
}

.panel.wide {
  width: min(1200px, 100%);
  max-height: calc(100vh - 24px);
  overflow-y: auto;
}

