:root {
  --v1-blue: #2f7bff;
  --v1-blue-dark: #1763df;
  --v1-blue-soft: #eaf2ff;
  --v1-page: #f7faff;
  --v1-ink: #14213d;
  --v1-muted: #7a8499;
  --v1-weak: #a8b0c3;
  --v1-line: #eef2f7;
  --v1-success: #28c76f;
  --v1-danger: #ff4d4f;
  --v1-radius: 18px;
  --v1-shadow: 0 8px 24px rgba(32, 96, 180, 0.06);
}

body.community-v1 {
  display: grid;
  place-items: center;
  background: #edf4ff;
  color: var(--v1-ink);
}

body.community-v1 .community-v1-phone {
  width: min(430px, 100vw);
  height: 100dvh;
  min-height: 100dvh;
  background: var(--v1-page);
  box-shadow: 0 20px 60px rgba(30, 76, 143, 0.14);
  overflow: hidden;
}

body.community-v1 .community-v1-header {
  position: relative;
  z-index: 30;
  padding: max(13px, env(safe-area-inset-top)) 16px 12px;
  background: rgba(247, 250, 255, 0.96);
  border-bottom: 1px solid rgba(238, 242, 247, 0.94);
  backdrop-filter: blur(16px);
}

.v1-topline {
  height: 35px;
  display: grid;
  grid-template-columns: 64px 1fr 64px;
  align-items: center;
  margin-bottom: 10px;
}

.v1-header-control {
  border: 0;
  min-height: 30px;
  background: transparent;
  color: var(--v1-muted);
  font-size: 13px;
  font-weight: 700;
  padding: 0;
}

.v1-header-control:first-child {
  text-align: left;
}

.v1-header-control:last-child {
  text-align: right;
}

.v1-header-logo {
  display: grid;
  place-items: center;
  height: 35px;
}

.v1-header-logo img {
  display: block;
  width: 105px;
  height: 35px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.v1-search-button {
  width: 100%;
  min-height: 39px;
  border: 0;
  border-radius: 999px;
  padding: 0 15px;
  background: #fff;
  color: var(--v1-weak);
  box-shadow: 0 3px 12px rgba(45, 81, 137, 0.06);
  text-align: left;
  font-size: 13px;
}

.v1-search-button::before {
  content: "⌕";
  display: inline-block;
  margin-right: 8px;
  color: var(--v1-blue);
  font-size: 18px;
  line-height: 0;
  vertical-align: -1px;
}

body.community-v1 .community-v1-view {
  height: calc(100dvh - 151px);
  padding: 0 0 86px;
  background: var(--v1-page);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
}

body.community-v1 .community-v1-view::-webkit-scrollbar {
  display: none;
}

body.community-v1 .community-v1-nav {
  position: absolute;
  z-index: 40;
  left: 12px;
  right: 12px;
  bottom: max(10px, env(safe-area-inset-bottom));
  height: 62px;
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
  padding: 5px;
  border: 1px solid rgba(238, 242, 247, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(31, 76, 140, 0.12);
  backdrop-filter: blur(18px);
}

.community-v1-nav button {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 0;
  border: 0;
  border-radius: 18px;
  color: var(--v1-muted);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
}

.community-v1-nav button.active {
  color: var(--v1-blue);
  background: var(--v1-blue-soft);
}

.v1-nav-icon {
  height: 19px;
  font-size: 18px;
  line-height: 17px;
  font-weight: 900;
}

.v1-page {
  min-height: 100%;
  padding: 18px 16px 10px;
}

.v1-page--detail {
  padding: 0 0 88px;
  min-height: 100%;
  background: #fff;
}

.v1-section {
  margin-top: 28px;
}

.v1-section:first-child {
  margin-top: 0;
}

.v1-section-heading,
.v1-list-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 0 2px 12px;
}

.v1-section-heading h2,
.v1-list-heading h2 {
  margin: 0;
  color: var(--v1-ink);
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: 0;
}

.v1-section-heading p,
.v1-list-heading p,
.v1-text-link {
  margin: 0;
  color: var(--v1-muted);
  font-size: 12px;
}

.v1-text-link {
  border: 0;
  background: transparent;
  color: var(--v1-blue);
  font-weight: 700;
  padding: 4px 0;
}

.v1-feature-banner {
  position: relative;
  min-height: 205px;
  overflow: hidden;
  border-radius: 23px;
  color: #fff;
  background: #1a488d;
  box-shadow: var(--v1-shadow);
}

.v1-feature-banner img,
.v1-wide-image img,
.v1-post-image img,
.v1-news-image img,
.v1-circle-cover img,
.v1-help-article img,
.v1-deal-card img,
.v1-circle-item img,
.v1-activity-card img,
.v1-hot-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v1-feature-banner > img {
  position: absolute;
  inset: 0;
}

.v1-feature-banner::after,
.v1-circle-hero::after,
.v1-news-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(11, 26, 58, 0.72) 0%, rgba(11, 26, 58, 0.3) 68%, rgba(11, 26, 58, 0.05) 100%);
}

.v1-feature-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 205px;
  padding: 22px;
}

.v1-feature-kicker {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 700;
}

.v1-feature-copy h1 {
  max-width: 270px;
  margin: 0;
  font-size: 27px;
  line-height: 1.18;
  letter-spacing: 0;
}

.v1-feature-copy p {
  max-width: 245px;
  margin: 9px 0 13px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.55;
}

.v1-feature-meta {
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
}

.v1-button,
.v1-button-quiet,
.v1-mini-button {
  border: 0;
  font-weight: 800;
}

.v1-button {
  min-height: 40px;
  border-radius: 999px;
  padding: 0 18px;
  color: #fff;
  background: var(--v1-blue);
  box-shadow: 0 7px 16px rgba(47, 123, 255, 0.24);
}

.v1-button--light {
  color: var(--v1-ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: none;
}

.v1-button--wide {
  width: 100%;
}

.v1-button--small {
  min-height: 31px;
  padding: 0 13px;
  font-size: 12px;
}

.v1-button-quiet {
  min-height: 36px;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--v1-blue);
  background: var(--v1-blue-soft);
}

.v1-button:disabled,
.v1-button-quiet:disabled {
  cursor: default;
  color: #94a0b6;
  background: #edf1f6;
  box-shadow: none;
}

.v1-horizontal-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  margin: 0 -16px;
  padding: 0 16px 4px;
  scrollbar-width: none;
}

.v1-horizontal-scroll::-webkit-scrollbar {
  display: none;
}

.v1-browse-section {
  margin-top: 0;
}

.v1-browse-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  margin: 0 -16px;
  padding: 0 16px 5px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.v1-browse-carousel::-webkit-scrollbar {
  display: none;
}

.v1-browse-card {
  flex: 0 0 calc(100% - 40px);
  min-height: 218px;
  scroll-snap-align: start;
}

.v1-discovery-section {
  padding-bottom: 4px;
}

.v1-discovery-feed {
  column-count: 2;
  column-gap: 10px;
}

.v1-discovery-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 11px;
  overflow: hidden;
  break-inside: avoid;
  border-radius: 16px;
  color: var(--v1-ink);
  background: #fff;
  box-shadow: 0 8px 22px rgba(32, 96, 180, 0.08);
}

.v1-discovery-image {
  display: block;
  width: 100%;
  object-fit: cover;
  background: #edf3fb;
}

.v1-discovery-card--tall .v1-discovery-image {
  aspect-ratio: 0.78;
}

.v1-discovery-card--square .v1-discovery-image {
  aspect-ratio: 1;
}

.v1-discovery-card--wide .v1-discovery-image {
  aspect-ratio: 1.22;
}

.v1-discovery-copy {
  padding: 10px 10px 11px;
}

.v1-discovery-copy h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--v1-ink);
  font-size: 14px;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.v1-discovery-copy > p {
  display: -webkit-box;
  overflow: hidden;
  margin: 6px 0 0;
  color: var(--v1-muted);
  font-size: 11px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.v1-discovery-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  margin-top: 10px;
  color: var(--v1-weak);
  font-size: 10px;
}

.v1-discovery-sender {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 5px;
}

.v1-discovery-sender b {
  display: block;
  overflow: hidden;
  max-width: 94px;
  color: var(--v1-muted);
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v1-avatar--tiny {
  width: 19px;
  height: 19px;
  font-size: 9px;
}

.v1-hot-circle {
  flex: 0 0 154px;
  min-height: 174px;
  position: relative;
  overflow: hidden;
  border-radius: 17px;
  color: #fff;
  background: #264572;
}

.v1-hot-circle::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(9, 21, 43, 0.03) 28%, rgba(9, 21, 43, 0.84) 100%);
}

.v1-hot-circle > img {
  position: absolute;
  inset: 0;
}

.v1-hot-circle-copy {
  position: absolute;
  z-index: 1;
  inset: auto 12px 12px;
}

.v1-hot-circle h3,
.v1-nearby-card h3,
.v1-activity-card h3,
.v1-circle-item h3,
.v1-post-title,
.v1-news-copy h3,
.v1-help-article h3,
.v1-deal-card h3 {
  margin: 0;
  color: inherit;
  letter-spacing: 0;
}

.v1-hot-circle h3 {
  font-size: 15px;
  line-height: 1.2;
}

.v1-hot-circle p {
  margin: 5px 0 9px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
}

.v1-hot-circle .v1-button {
  min-height: 28px;
  padding: 0 11px;
  color: #fff;
  background: rgba(47, 123, 255, 0.95);
  box-shadow: none;
  font-size: 11px;
}

.v1-nearby-list,
.v1-circle-list,
.v1-news-list,
.v1-help-list,
.v1-comments,
.v1-admin-list {
  display: flex;
  flex-direction: column;
}

.v1-all-circles-page {
  padding: 22px 16px 42px;
}

.v1-detail-page-heading {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 22px;
}

.v1-detail-page-heading h1 {
  margin: 3px 0 0;
  color: var(--v1-ink);
  font-size: 25px;
  line-height: 1.2;
}

.v1-detail-page-heading p {
  margin: 7px 0 0;
  color: var(--v1-muted);
  font-size: 13px;
}

.v1-all-circle-group {
  margin-top: 25px;
}

.v1-all-circle-group:first-of-type {
  margin-top: 0;
}

.v1-all-circle-group h2 {
  margin: 0 0 7px;
  color: var(--v1-ink);
  font-size: 18px;
}

.v1-nearby-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--v1-line);
}

.v1-nearby-card:last-child,
.v1-circle-item:last-child,
.v1-news-item:last-child,
.v1-help-article:last-child {
  border-bottom: 0;
}

.v1-nearby-card img {
  width: 58px;
  height: 58px;
  border-radius: 15px;
  object-fit: cover;
}

.v1-nearby-card h3 {
  color: var(--v1-ink);
  font-size: 15px;
}

.v1-nearby-card p,
.v1-nearby-card small {
  margin: 5px 0 0;
  color: var(--v1-muted);
  font-size: 12px;
}

.v1-nearby-card small {
  display: block;
}

.v1-mini-button {
  min-width: 48px;
  min-height: 29px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--v1-blue);
  background: var(--v1-blue-soft);
  font-size: 11px;
}

.v1-activity-card {
  flex: 0 0 216px;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--v1-shadow);
}

.v1-activity-image {
  height: 103px;
  position: relative;
}

.v1-activity-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(12, 31, 57, 0) 50%, rgba(12, 31, 57, 0.36));
}

.v1-activity-copy {
  padding: 11px 12px 12px;
}

.v1-activity-card h3 {
  color: var(--v1-ink);
  font-size: 14px;
  line-height: 1.35;
}

.v1-activity-card p,
.v1-activity-card small {
  display: block;
  margin: 6px 0 0;
  color: var(--v1-muted);
  font-size: 11px;
  line-height: 1.35;
}

.v1-activity-card small {
  color: var(--v1-blue);
  font-weight: 700;
}

.v1-circle-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 13px;
  padding: 14px 0;
  border-bottom: 1px solid var(--v1-line);
}

.v1-circle-item-image {
  width: 92px;
  height: 104px;
  overflow: hidden;
  border-radius: 17px;
}

.v1-circle-item-copy {
  min-width: 0;
}

.v1-circle-item h3 {
  overflow: hidden;
  color: var(--v1-ink);
  font-size: 16px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v1-circle-item p {
  display: -webkit-box;
  overflow: hidden;
  margin: 7px 0 6px;
  color: var(--v1-muted);
  font-size: 12px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.v1-circle-meta,
.v1-post-meta,
.v1-comment-meta,
.v1-news-meta,
.v1-caption-meta,
.v1-labels,
.v1-inline-tags {
  color: var(--v1-weak);
  font-size: 11px;
  line-height: 1.4;
}

.v1-circle-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
}

.v1-tags,
.v1-inline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.v1-tag {
  color: var(--v1-blue);
  font-size: 11px;
  line-height: 1.35;
}

.v1-empty {
  padding: 30px 14px;
  color: var(--v1-muted);
  text-align: center;
  font-size: 13px;
  line-height: 1.65;
}

.v1-back-button,
.v1-round-button {
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--v1-ink);
  box-shadow: 0 4px 15px rgba(8, 29, 60, 0.1);
}

.v1-back-button {
  width: 36px;
  height: 36px;
  font-size: 22px;
}

.v1-round-button {
  width: 38px;
  height: 38px;
  font-size: 17px;
}

.v1-circle-hero,
.v1-news-hero {
  position: relative;
  min-height: 268px;
  overflow: hidden;
  color: #fff;
  background: #1e4d96;
}

.v1-circle-hero > img,
.v1-news-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v1-detail-top-actions {
  position: absolute;
  z-index: 3;
  inset: max(14px, env(safe-area-inset-top)) 16px auto;
  display: flex;
  justify-content: space-between;
}

.v1-circle-hero-copy,
.v1-news-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 268px;
  padding: 78px 20px 23px;
}

.v1-circle-hero-copy h1,
.v1-news-hero-copy h1 {
  max-width: 320px;
  margin: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1.2;
}

.v1-circle-hero-copy p,
.v1-news-hero-copy p {
  margin: 9px 0 10px;
  color: rgba(255, 255, 255, 0.87);
  font-size: 13px;
  line-height: 1.55;
}

.v1-circle-summary {
  padding: 19px 16px 0;
  background: #fff;
}

.v1-circle-summary p {
  margin: 0;
  color: var(--v1-muted);
  font-size: 14px;
  line-height: 1.7;
}

.v1-circle-summary-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.v1-owner-inline {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  gap: 9px;
}

.v1-avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: #6a90e9;
  font-size: 14px;
  font-weight: 800;
}

.v1-avatar--large {
  width: 58px;
  height: 58px;
  font-size: 22px;
}

.v1-owner-inline strong,
.v1-author-line strong {
  display: block;
  color: var(--v1-ink);
  font-size: 13px;
}

.v1-owner-inline span,
.v1-author-line small {
  display: block;
  overflow: hidden;
  color: var(--v1-muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v1-detail-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 22px 16px 0;
  border-bottom: 1px solid var(--v1-line);
}

.v1-detail-tabs button,
.v1-news-tabs button {
  min-height: 42px;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--v1-muted);
  background: transparent;
  font-size: 14px;
  font-weight: 700;
}

.v1-detail-tabs button.active,
.v1-news-tabs button.active {
  border-color: var(--v1-blue);
  color: var(--v1-blue);
}

.v1-circle-detail-content {
  padding: 4px 16px 0;
}

.v1-pinned-post {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 9px;
  padding: 15px 0;
  border-bottom: 1px solid var(--v1-line);
}

.v1-pinned-mark {
  align-self: start;
  padding: 3px 6px;
  border-radius: 7px;
  color: var(--v1-blue);
  background: var(--v1-blue-soft);
  font-size: 10px;
  font-weight: 800;
}

.v1-pinned-post h3 {
  margin: 0 0 5px;
  color: var(--v1-ink);
  font-size: 14px;
  line-height: 1.35;
}

.v1-pinned-post p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--v1-muted);
  font-size: 12px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.v1-post-row {
  padding: 17px 0;
  border-bottom: 1px solid var(--v1-line);
}

.v1-post-row-head,
.v1-author-row {
  display: flex;
  align-items: center;
  gap: 9px;
}

.v1-post-row-head {
  margin-bottom: 10px;
}

.v1-post-row-head .v1-avatar {
  width: 32px;
  height: 32px;
  font-size: 12px;
}

.v1-author-line {
  min-width: 0;
  flex: 1;
}

.v1-post-title {
  color: var(--v1-ink);
  font-size: 16px;
  line-height: 1.4;
}

.v1-post-excerpt {
  display: -webkit-box;
  overflow: hidden;
  margin: 7px 0 0;
  color: var(--v1-muted);
  font-size: 13px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.v1-post-thumb-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
  margin-top: 11px;
}

.v1-post-thumb-row img {
  aspect-ratio: 1 / 0.68;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.v1-post-row-bottom,
.v1-post-detail-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 11px;
}

.v1-reaction-summary,
.v1-reaction-button {
  color: var(--v1-muted);
  font-size: 12px;
}

.v1-detail-image-carousel {
  position: relative;
  display: flex;
  overflow-x: auto;
  width: 100%;
  height: min(94vw, 430px);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  background: #e9edf3;
}

.v1-detail-image-carousel::-webkit-scrollbar {
  display: none;
}

.v1-detail-image-carousel img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  scroll-snap-align: start;
}

.v1-image-count {
  position: absolute;
  z-index: 1;
  top: 14px;
  right: 16px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.42);
  font-size: 12px;
}

.v1-post-detail-copy {
  padding: 16px 16px 0;
}

.v1-post-detail-copy .v1-author-row {
  margin-bottom: 18px;
}

.v1-post-detail-copy h1 {
  margin: 0;
  color: var(--v1-ink);
  font-size: 21px;
  line-height: 1.42;
}

.v1-post-body {
  margin: 11px 0 0;
  color: #3e4c65;
  font-size: 14px;
  line-height: 1.8;
  white-space: pre-line;
}

.v1-source-circle {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  margin-top: 15px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  color: var(--v1-blue);
  background: var(--v1-blue-soft);
  font-size: 12px;
  font-weight: 700;
}

.v1-post-detail-actions {
  justify-content: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--v1-line);
}

.v1-reaction-button {
  min-height: 34px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-weight: 700;
}

.v1-reaction-button.active {
  color: var(--v1-blue);
  background: var(--v1-blue-soft);
}

.v1-comment-section {
  padding: 21px 16px 95px;
}

.v1-comment-section h2 {
  margin: 0 0 13px;
  color: var(--v1-ink);
  font-size: 17px;
}

.v1-comment {
  display: grid;
  grid-template-columns: 35px minmax(0, 1fr);
  gap: 10px;
  padding: 13px 0;
}

.v1-comment .v1-avatar {
  width: 35px;
  height: 35px;
  font-size: 12px;
}

.v1-comment-content strong {
  color: var(--v1-ink);
  font-size: 13px;
}

.v1-comment-content p {
  margin: 5px 0 5px;
  color: #3e4c65;
  font-size: 13px;
  line-height: 1.6;
}

.v1-comment-sub {
  margin-left: 45px;
  padding-top: 0;
}

.v1-comment-bottom {
  display: flex;
  justify-content: space-between;
  color: var(--v1-weak);
  font-size: 11px;
}

.v1-comment-dock {
  position: fixed;
  z-index: 60;
  left: 50%;
  bottom: 0;
  display: flex;
  gap: 8px;
  width: min(430px, 100vw);
  padding: 10px 14px max(10px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  border-top: 1px solid var(--v1-line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.v1-comment-dock input {
  min-width: 0;
  flex: 1;
  min-height: 39px;
  border: 0;
  border-radius: 999px;
  padding: 0 14px;
  outline: 0;
  color: var(--v1-ink);
  background: #f3f6fb;
  font-size: 13px;
}

.v1-comment-dock button {
  min-width: 48px;
  min-height: 39px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--v1-blue);
  font-size: 12px;
  font-weight: 800;
}

.v1-news-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 -16px;
  padding: 0 16px;
  border-bottom: 1px solid var(--v1-line);
}

.v1-news-banner {
  position: relative;
  height: 172px;
  overflow: hidden;
  margin-top: 17px;
  border-radius: 20px;
  color: #fff;
  background: #2756a0;
}

.v1-news-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v1-news-banner::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(12, 34, 71, 0.78), rgba(12, 34, 71, 0.08));
}

.v1-news-banner-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  height: 100%;
  padding: 17px;
}

.v1-news-banner h2 {
  max-width: 255px;
  margin: 0;
  font-size: 21px;
  line-height: 1.25;
}

.v1-news-banner p {
  max-width: 250px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  line-height: 1.5;
}

.v1-news-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--v1-line);
}

.v1-news-image {
  width: 112px;
  height: 84px;
  overflow: hidden;
  border-radius: 14px;
}

.v1-news-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.v1-news-copy h3 {
  display: -webkit-box;
  overflow: hidden;
  color: var(--v1-ink);
  font-size: 15px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.v1-news-copy p {
  display: -webkit-box;
  overflow: hidden;
  margin: 5px 0;
  color: var(--v1-muted);
  font-size: 12px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.v1-news-label {
  color: var(--v1-blue);
  font-size: 11px;
  font-weight: 700;
}

.v1-news-detail-copy {
  padding: 21px 18px 90px;
}

.v1-news-detail-copy h1 {
  margin: 0;
  color: var(--v1-ink);
  font-size: 25px;
  line-height: 1.35;
}

.v1-news-detail-summary {
  margin: 11px 0 12px;
  color: var(--v1-muted);
  font-size: 15px;
  line-height: 1.65;
}

.v1-news-publisher {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0 17px;
  border-bottom: 1px solid var(--v1-line);
  color: var(--v1-muted);
  font-size: 12px;
}

.v1-news-publisher .v1-avatar {
  width: 30px;
  height: 30px;
  background: var(--v1-blue);
  font-size: 11px;
}

.v1-article-body {
  margin: 20px 0;
  color: #3d4a61;
  font-size: 15px;
  line-height: 1.9;
  white-space: pre-line;
}

.v1-event-info {
  margin: 20px 0;
  padding: 15px 0;
  border-top: 1px solid var(--v1-line);
  border-bottom: 1px solid var(--v1-line);
}

.v1-event-info h3 {
  margin: 0 0 10px;
  color: var(--v1-ink);
  font-size: 16px;
}

.v1-event-info p {
  margin: 6px 0;
  color: var(--v1-muted);
  font-size: 13px;
  line-height: 1.55;
}

.v1-help-hero {
  position: relative;
  min-height: 146px;
  overflow: hidden;
  border-radius: 21px;
  color: #fff;
  background: #2865c5;
}

.v1-help-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(100deg, rgba(19, 68, 151, 0.95), rgba(47, 123, 255, 0.5));
}

.v1-help-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v1-help-hero-copy {
  position: relative;
  z-index: 1;
  padding: 22px;
}

.v1-help-hero h1 {
  margin: 0;
  font-size: 26px;
  line-height: 1.25;
}

.v1-help-hero p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.v1-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px 8px;
}

.v1-service-grid button {
  min-width: 0;
  border: 0;
  color: var(--v1-ink);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
}

.v1-service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 7px;
  border-radius: 16px;
  color: var(--v1-blue);
  background: var(--v1-blue-soft);
}

.v1-service-icon img {
  width: 23px;
  height: 23px;
  filter: invert(39%) sepia(92%) saturate(2835%) hue-rotate(203deg) brightness(102%) contrast(101%);
}

.v1-help-article {
  display: grid;
  grid-template-columns: 95px minmax(0, 1fr);
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--v1-line);
}

.v1-help-article img {
  width: 95px;
  height: 72px;
  border-radius: 13px;
  object-fit: cover;
}

.v1-help-article h3 {
  display: -webkit-box;
  overflow: hidden;
  color: var(--v1-ink);
  font-size: 14px;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.v1-help-article p {
  display: -webkit-box;
  overflow: hidden;
  margin: 5px 0;
  color: var(--v1-muted);
  font-size: 12px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.v1-deal-card {
  flex: 0 0 174px;
  position: relative;
  min-height: 148px;
  overflow: hidden;
  border-radius: 17px;
  color: #fff;
  background: #2353a0;
}

.v1-deal-card > img {
  position: absolute;
  inset: 0;
}

.v1-deal-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(8, 28, 61, 0.04), rgba(8, 28, 61, 0.82));
}

.v1-deal-copy {
  position: absolute;
  z-index: 1;
  inset: auto 12px 12px;
}

.v1-deal-card h3 {
  font-size: 15px;
}

.v1-deal-card p {
  margin: 5px 0 9px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 11px;
}

.v1-deal-card .v1-button {
  min-height: 29px;
  padding: 0 11px;
  box-shadow: none;
  font-size: 11px;
}

.v1-detail-help-header {
  position: relative;
  min-height: 235px;
  overflow: hidden;
  color: #fff;
  background: #2865c5;
}

.v1-detail-help-header img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v1-detail-help-header::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(20, 65, 138, 0.8), rgba(20, 65, 138, 0.2));
}

.v1-detail-help-header > div:last-child {
  position: relative;
  z-index: 2;
  padding: 140px 20px 22px;
}

.v1-detail-help-header h1 {
  margin: 0;
  font-size: 27px;
}

.v1-detail-help-header p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.v1-help-detail-body,
.v1-form-page {
  padding: 22px 16px 95px;
}

.v1-three-points {
  display: grid;
  gap: 10px;
  margin: 0 0 23px;
  padding: 0;
  list-style: none;
}

.v1-three-points li {
  position: relative;
  padding-left: 18px;
  color: var(--v1-muted);
  font-size: 13px;
  line-height: 1.5;
}

.v1-three-points li::before {
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--v1-blue);
}

.v1-form-page h1 {
  margin: 0;
  color: var(--v1-ink);
  font-size: 25px;
}

.v1-form-page > p {
  margin: 9px 0 22px;
  color: var(--v1-muted);
  font-size: 14px;
  line-height: 1.6;
}

.v1-form {
  display: grid;
  gap: 15px;
}

.v1-field {
  display: grid;
  gap: 7px;
}

.v1-field label {
  color: var(--v1-ink);
  font-size: 13px;
  font-weight: 750;
}

.v1-field input,
.v1-field textarea,
.v1-field select {
  width: 100%;
  border: 0;
  border-radius: 13px;
  padding: 12px 13px;
  outline: 0;
  color: var(--v1-ink);
  background: #f3f6fb;
  font-size: 14px;
}

.v1-field textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.55;
}

.v1-form-note {
  margin: 0;
  color: var(--v1-weak);
  font-size: 11px;
  line-height: 1.55;
}

.v1-auth-page {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 68px 27px 40px;
  background: #fff;
}

.v1-auth-mark {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
  border-radius: 22px;
  color: #fff;
  background: var(--v1-blue);
  box-shadow: 0 10px 24px rgba(47, 123, 255, 0.25);
  font-size: 23px;
  font-weight: 850;
}

.v1-auth-page h1 {
  margin: 0;
  color: var(--v1-ink);
  font-size: 27px;
}

.v1-auth-page > p {
  margin: 9px 0 28px;
  color: var(--v1-muted);
  font-size: 14px;
}

.v1-auth-toggle {
  display: flex;
  gap: 20px;
  margin: 20px 0 0;
}

.v1-auth-toggle button {
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 5px 0;
  color: var(--v1-muted);
  background: transparent;
  font-size: 13px;
  font-weight: 750;
}

.v1-auth-toggle button.active {
  border-color: var(--v1-blue);
  color: var(--v1-blue);
}

body.community-v1 .profile-drawer,
body.community-v1 .message-panel {
  position: fixed;
  z-index: 90;
  inset: 0 auto 0 0;
  display: block;
  width: min(345px, 84vw);
  padding: max(22px, env(safe-area-inset-top)) 20px 24px;
  overflow-y: auto;
  color: var(--v1-ink);
  background: #fff;
  box-shadow: 0 10px 38px rgba(15, 42, 83, 0.18);
  transition: transform 180ms ease;
}

body.community-v1 .profile-drawer {
  left: 0;
  transform: translateX(-105%);
}

body.community-v1 .message-panel {
  inset: 0 0 0 auto;
  transform: translateX(105%);
}

body.community-v1 .profile-drawer:not(.open),
body.community-v1 .message-panel:not(.open) {
  visibility: hidden;
  pointer-events: none;
}

body.community-v1 .profile-drawer.open,
body.community-v1 .message-panel.open {
  transform: translateX(0);
}

body.community-v1 .profile-drawer::after,
body.community-v1 .message-panel::after {
  position: fixed;
  z-index: -1;
  inset: 0;
  display: none;
  width: 100vw;
  content: "";
  background: rgba(20, 33, 61, 0.25);
}

.v1-drawer-close {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-left: auto;
  border: 0;
  border-radius: 50%;
  color: var(--v1-muted);
  background: #f3f6fb;
}

.v1-profile-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 24px;
}

.v1-profile-head h2 {
  margin: 0;
  font-size: 19px;
}

.v1-profile-head p {
  margin: 4px 0 0;
  color: var(--v1-muted);
  font-size: 12px;
}

.v1-profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 15px 0;
  border-top: 1px solid var(--v1-line);
  border-bottom: 1px solid var(--v1-line);
}

.v1-profile-stats div {
  text-align: center;
}

.v1-profile-stats strong {
  display: block;
  color: var(--v1-ink);
  font-size: 18px;
}

.v1-profile-stats span {
  display: block;
  margin-top: 5px;
  color: var(--v1-muted);
  font-size: 11px;
}

.v1-drawer-menu {
  display: grid;
  gap: 0;
  margin-top: 18px;
}

.v1-drawer-menu button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 49px;
  border: 0;
  border-bottom: 1px solid var(--v1-line);
  color: var(--v1-ink);
  background: transparent;
  text-align: left;
  font-size: 14px;
}

.v1-drawer-menu button::after {
  content: "›";
  color: var(--v1-weak);
  font-size: 21px;
  font-weight: 400;
}

.v1-drawer-footer {
  margin-top: 35px;
  color: var(--v1-weak);
  font-size: 11px;
  line-height: 1.8;
}

.v1-message-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.v1-message-head h2 {
  margin: 0;
  font-size: 20px;
}

.v1-notice-tabs {
  display: flex;
  gap: 17px;
  margin: 21px 0 7px;
  color: var(--v1-muted);
  font-size: 13px;
}

.v1-notice-item {
  padding: 15px 0;
  border-bottom: 1px solid var(--v1-line);
}

.v1-notice-item strong {
  display: block;
  color: var(--v1-ink);
  font-size: 14px;
}

.v1-notice-item p {
  margin: 6px 0;
  color: var(--v1-muted);
  font-size: 12px;
  line-height: 1.55;
}

.v1-notice-item time {
  color: var(--v1-weak);
  font-size: 11px;
}

.v1-search-page-head {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 18px 16px;
  background: #fff;
}

.v1-search-page-head input {
  min-width: 0;
  flex: 1;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 14px;
  outline: 0;
  color: var(--v1-ink);
  background: #f3f6fb;
  font-size: 14px;
}

.v1-search-page-head button:last-child {
  border: 0;
  padding: 0;
  color: var(--v1-blue);
  background: transparent;
  font-size: 13px;
  font-weight: 750;
}

.v1-search-body {
  padding: 20px 16px 86px;
}

.v1-hot-searches {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
}

.v1-hot-searches button {
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--v1-muted);
  background: #f0f4fa;
  font-size: 12px;
}

.v1-fab {
  position: absolute;
  z-index: 25;
  right: 20px;
  bottom: 95px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--v1-blue);
  box-shadow: 0 10px 22px rgba(47, 123, 255, 0.3);
  font-size: 29px;
  line-height: 1;
}

.v1-circle-activity-list {
  padding: 11px 0;
}

.v1-circle-activity-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--v1-line);
}

.v1-circle-activity-item img {
  width: 72px;
  height: 65px;
  border-radius: 13px;
  object-fit: cover;
}

.v1-circle-activity-item h3 {
  margin: 0;
  color: var(--v1-ink);
  font-size: 14px;
}

.v1-circle-activity-item p {
  margin: 5px 0 0;
  color: var(--v1-muted);
  font-size: 11px;
  line-height: 1.45;
}

.v1-member-info {
  padding: 18px 0;
}

.v1-member-info h3 {
  margin: 21px 0 10px;
  color: var(--v1-ink);
  font-size: 16px;
}

.v1-member-info h3:first-child {
  margin-top: 0;
}

.v1-member-info p,
.v1-member-info li {
  color: var(--v1-muted);
  font-size: 13px;
  line-height: 1.7;
}

.v1-member-info ul {
  margin: 0;
  padding-left: 18px;
}

.v1-admin-page {
  width: min(1150px, 100%);
  min-height: 100%;
  margin: 0 auto;
  padding: 28px;
  background: #f7faff;
}

.v1-admin-page h1 {
  margin: 0;
  color: var(--v1-ink);
  font-size: 29px;
}

.v1-admin-page > p {
  margin: 8px 0 24px;
  color: var(--v1-muted);
  font-size: 14px;
}

.v1-admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.v1-admin-stat {
  padding: 18px;
  border-radius: 17px;
  background: #fff;
  box-shadow: var(--v1-shadow);
}

.v1-admin-stat strong {
  display: block;
  color: var(--v1-ink);
  font-size: 26px;
}

.v1-admin-stat span {
  display: block;
  margin-top: 7px;
  color: var(--v1-muted);
  font-size: 12px;
}

.v1-admin-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-bottom: 16px;
  scrollbar-width: none;
}

.v1-admin-tabs::-webkit-scrollbar {
  display: none;
}

.v1-admin-tabs button {
  flex: 0 0 auto;
  min-height: 37px;
  border: 0;
  border-radius: 999px;
  padding: 0 14px;
  color: var(--v1-muted);
  background: #edf2fa;
  font-size: 13px;
  font-weight: 750;
}

.v1-admin-tabs button.active {
  color: #fff;
  background: var(--v1-blue);
}

.v1-admin-panel {
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--v1-shadow);
}

.v1-admin-panel h2 {
  margin: 0 0 14px;
  color: var(--v1-ink);
  font-size: 18px;
}

.v1-admin-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--v1-line);
}

.v1-admin-row:last-child {
  border-bottom: 0;
}

.v1-admin-row strong {
  display: block;
  color: var(--v1-ink);
  font-size: 14px;
}

.v1-admin-row p {
  margin: 5px 0 0;
  color: var(--v1-muted);
  font-size: 12px;
  line-height: 1.5;
}

.v1-admin-row-actions {
  display: flex;
  gap: 7px;
  align-items: center;
}

.v1-status {
  display: inline-block;
  margin-top: 5px;
  color: var(--v1-blue);
  font-size: 11px;
  font-weight: 750;
}

.v1-admin-login {
  width: min(430px, 100%);
  min-height: 100%;
  margin: 0 auto;
  padding: 80px 28px 40px;
  background: #fff;
}

.v1-admin-login h1 {
  margin: 0;
  color: var(--v1-ink);
  font-size: 28px;
}

.v1-admin-login p {
  margin: 10px 0 26px;
  color: var(--v1-muted);
  font-size: 14px;
  line-height: 1.6;
}

body.community-v1[data-v1-detail="true"] .community-v1-header,
body.community-v1[data-v1-detail="true"] .community-v1-nav {
  display: none;
}

body.community-v1[data-v1-detail="true"] .community-v1-view {
  height: 100dvh;
  padding-bottom: 0;
}

body.community-v1[data-v1-admin="true"] {
  display: block;
  background: #f7faff;
}

body.community-v1[data-v1-admin="true"] .community-v1-phone {
  width: min(1180px, 100vw);
  height: 100dvh;
  margin: 0 auto;
  box-shadow: none;
}

body.community-v1[data-v1-admin="true"] .community-v1-header,
body.community-v1[data-v1-admin="true"] .community-v1-nav {
  display: none;
}

body.community-v1[data-v1-admin="true"] .community-v1-view {
  height: 100dvh;
  padding: 0;
}

body.community-v1 .toast {
  z-index: 120;
  bottom: 90px;
  color: #fff;
  background: rgba(20, 33, 61, 0.92);
}

@media (max-width: 520px) {
  body.community-v1 {
    background: var(--v1-page);
  }

  body.community-v1 .community-v1-phone {
    box-shadow: none;
  }

  .v1-admin-page {
    padding: 22px 16px;
  }

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

  .v1-admin-panel {
    padding: 16px;
  }
}
