:root {
  --bg: #f8fafc;
  --text: #0f172a;
  --sub: #64748b;
  --line: #e2e8f0;
  --accent: #6366f1;
  --accent-light: #818cf8;
  --accent-dark: #4f46e5;
  --home-top-start: #2ec0bb;
  --home-top-end: #1a9c98;
  --home-top: #aef0ee;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --card-shadow: 0 4px 16px rgba(99, 102, 241, 0.08);
  --card-shadow-hover: 0 8px 32px rgba(99, 102, 241, 0.15);
  --press: 0.98;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --font-xs: 11px;
  --font-sm: 13px;
  --font-md: 15px;
  --font-lg: 17px;
  --font-xl: 20px;
  --font-2xl: 24px;
}

/* ===== Toast 通知 ===== */
.toast-container {
  position: fixed;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.toast {
  position: absolute;
  left: 50%;
  bottom: 118px;
  transform: translateX(-50%);
  z-index: 50;
  max-width: calc(100% - 56px);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
  animation: toast-in 0.3s ease, toast-out 0.3s ease 2.2s forwards;
  pointer-events: auto;
  white-space: nowrap;
  text-align: center;
}

.toast.success { background: linear-gradient(135deg, #10b981, #059669); }
.toast.error { background: linear-gradient(135deg, #ef4444, #dc2626); }
.toast.info { background: rgba(17, 24, 39, .88); }

@keyframes toast-in {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes toast-out {
  from { opacity: 1; transform: translateX(-50%) translateY(0); }
  to { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ===== 骨架�?===== */
.skeleton {
  background: linear-gradient(90deg, #eef0f3 25%, #f7f8fa 50%, #eef0f3 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.skeleton-line { height: 14px; border-radius: 7px; }
.skeleton-line.short { width: 60%; }
.skeleton-line.medium { width: 80%; }
.skeleton-block { height: 160px; border-radius: var(--radius-md); }

/* ===== 页面过渡 ===== */
.page {
  animation: page-in 0.28s ease;
}

@keyframes page-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== 下拉刷新 ===== */
.pull-refresh-indicator {
  text-align: center;
  padding: 8px 0 4px;
  font-size: var(--font-sm);
  color: #b0b8c2;
  transition: all var(--transition-fast);
  user-select: none;
}

.pull-refresh-indicator.pulling { color: var(--accent); }
.pull-refresh-indicator.refreshing {
  color: var(--accent);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== 空�?===== */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  gap: 14px;
  color: #b0b8c2;
}

.empty-state-icon {
  font-size: 52px;
  opacity: 0.6;
}

.empty-state-text {
  font-size: var(--font-md);
  color: #8f96a1;
}

.empty-state-action {
  margin-top: 8px;
  padding: 10px 24px;
  border-radius: 20px;
  border: 1px solid var(--accent);
  background: #fff;
  color: var(--accent-dark);
  font-size: var(--font-md);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.empty-state-action:active {
  background: rgba(24,216,215,0.08);
  transform: scale(var(--press));
}

/* ===== 错误�?===== */
.error-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  gap: 12px;
}

.error-state-icon { font-size: 44px; }
.error-state-text { font-size: var(--font-md); color: #8f96a1; }
.error-retry-btn {
  padding: 8px 20px;
  border-radius: 18px;
  border: 1px solid #e0e3e8;
  background: #fff;
  color: #4a5260;
  font-size: var(--font-sm);
  cursor: pointer;
}

/* ===== 加载更多 ===== */
.load-more {
  text-align: center;
  padding: 18px 0 32px;
  color: #bcc2ca;
  font-size: var(--font-sm);
}

.load-more-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid #e0e3e8;
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-right: 6px;
  vertical-align: middle;
}

.home-tabs-more-btn {
  border: 0;
  background: transparent;
  color: #606977;
  font-size: 20px;
  min-height: 30px;
  padding: 0 3px;
  flex: 0 0 auto;
}

.home-tabs-more-btn:active {
  transform: scale(var(--press));
}

.mini-btn,
.edit-profile-mini,
.profile-topbar-actions {
  display: none !important;
}

.sys-nav {
  display: none !important;
}

.home-category-mask {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 31, 0.54);
  z-index: 30;
}

.home-category-sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 22px 22px 0 0;
  padding: 14px 14px 18px;
  max-height: calc(100% - 170px);
  overflow-y: auto;
  z-index: 31;
  animation: home-category-sheet-in 0.2s ease-out;
}

@keyframes home-category-sheet-in {
  from {
    transform: translateY(18px);
    opacity: 0.92;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.home-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.home-category-head h3 {
  font-size: 19px;
  font-weight: 700;
}

.home-category-close {
  border: 0;
  background: transparent;
  color: #959daa;
  font-size: 34px;
  min-height: 30px;
  width: 30px;
  line-height: 1;
}

.home-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.home-category-item {
  border: 1px solid #f2f3f6;
  background: #fff;
  border-radius: 7px;
  color: #4a5260;
  font-size: 15px;
  min-height: 44px;
  padding: 0 6px;
  font-weight: 500;
}

.home-category-item:active {
  transform: scale(var(--press));
  background: #f7f8fa;
}

.home-date-mask {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 31, 0.42);
  z-index: 80;
}

.home-sort-mask {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 31, 0.42);
  z-index: 30;
}

.home-sort-sheet {
  position: absolute;
  left: 0;
  right: 0;
  top: 294px;
  background: #fff;
  border-radius: 0 0 18px 18px;
  z-index: 31;
  padding: 18px 0 20px;
  box-shadow: 0 18px 28px rgba(17, 25, 35, 0.08);
}

.home-sort-option {
  width: 100%;
  border: 0;
  background: transparent;
  min-height: 68px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222a33;
  font-size: 16px;
  font-weight: 600;
}

.home-sort-option.active {
  color: #1fbdbd;
}

.home-sort-loading {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #98a1ad;
  font-size: 14px;
}

.home-date-sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 18px 18px 0 0;
  z-index: 81;
  padding: 16px 0 18px;
  animation: home-category-sheet-in 0.2s ease-out;
  box-shadow: 0 -18px 36px rgba(17, 25, 35, 0.16);
}

.home-date-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 14px;
}

.home-date-head h3 {
  font-size: 17px;
  font-weight: 700;
  color: #222a33;
}

.home-date-close-btn {
  border: 0;
  background: transparent;
  color: #b4bbc4;
  font-size: 34px;
  line-height: 1;
  width: 28px;
  min-height: 28px;
}

.home-date-weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  padding: 0 18px 14px;
  border-bottom: 1px solid #eef0f3;
}

.home-date-weekdays span {
  text-align: center;
  font-size: 15px;
  color: #46505d;
}

.home-date-weekdays .weekend {
  color: #ec7b75;
}

.home-date-body {
  padding: 14px 18px 0;
  max-height: 620px;
  overflow-y: auto;
}

.home-date-month-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.home-date-month-nav {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 16px;
  background: #f4f6f8;
  color: #4a5360;
  font-size: 24px;
  line-height: 1;
}

.home-date-month-label {
  font-size: 16px;
  font-weight: 700;
  color: #232b35;
}

.home-date-clear-btn {
  border: 1px solid #e8edf0;
  background: #fff;
  color: #7d8792;
  border-radius: 18px;
  min-height: 34px;
  padding: 0 14px;
  font-size: 12px;
  margin-bottom: 10px;
}

.home-date-clear-btn.active {
  border-color: rgba(46, 204, 203, 0.4);
  background: rgba(46, 204, 203, 0.1);
  color: #22bdbc;
}

.home-date-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px 0;
  min-height: 312px;
}

.home-date-day {
  border: 0;
  background: transparent;
  min-height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: #222a33;
  border-radius: 18px;
  padding-top: 4px;
}

.home-date-day.empty {
  min-height: 70px;
}

.home-date-day.selected {
  background: rgba(46, 204, 203, 0.12);
}

.home-date-day-label {
  min-height: 17px;
  font-size: 11px;
  color: #7a838f;
  margin-bottom: 6px;
}

.home-date-day-number {
  font-size: 17px;
  line-height: 1;
  color: #2b333d;
}

.home-date-loading {
  grid-column: 1 / -1;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #98a1ad;
  font-size: 14px;
}

.home-date-confirm-btn {
  width: calc(100% - 36px);
  height: 52px;
  margin: 16px 18px 0;
  border: 0;
  border-radius: 26px;
  background: linear-gradient(180deg, #38d2d1, #2fc9c8);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(47, 201, 200, 0.2);
}

.home-empty-date {
  margin-top: 14px;
  background: #fff;
  border-radius: 22px;
  min-height: 184px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #98a2ad;
  font-size: 15px;
  box-shadow: 0 8px 26px rgba(16, 29, 42, 0.06);
}

.home-no-more {
  text-align: center;
  padding: 20px 0 32px;
  color: #bcc2ca;
  font-size: 13px;
}

.event-detail-page {
  background: #f5f6f8;
  min-height: calc(100vh - 46px);
  padding-bottom: 112px;
}

.event-detail-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px 7px;
  background: #fff;
}

.event-detail-back-btn {
  border: 0;
  background: transparent;
  font-size: 36px;
  line-height: 1;
  color: #1f2933;
  width: 22px;
}

.event-detail-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.event-detail-brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff7f7, #da2a2a 56%, #a90000 100%);
  position: relative;
  box-shadow: 0 5px 12px rgba(180, 25, 25, 0.18);
  overflow: hidden;
}

.event-detail-brand-logo span {
  position: absolute;
  inset: 9px;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(20deg);
}

.event-detail-brand-logo::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 10px;
  right: 3px;
  top: 7px;
  border-top: 3px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  transform: rotate(28deg);
}

.event-detail-brand-text strong {
  display: block;
  font-size: 15px;
  color: #202833;
  line-height: 1.1;
}

.event-detail-brand-text span {
  display: inline-flex;
  margin-top: 1px;
  padding: 1px 7px;
  border-radius: 7px;
  background: #1f2b15;
  color: #f0d85a;
  font-size: 10px;
}

.event-detail-feedback-btn {
  border: 1px solid #bfeeee;
  background: #f2ffff;
  color: #59c9c8;
  border-radius: 7px;
  min-height: 26px;
  padding: 0 7px;
  font-size: 11px;
}

.event-detail-head-actions {
  display: flex;
  gap: 6px;
}

.event-detail-circle-btn {
  width: 34px;
  height: 34px;
  border-radius: 17px;
  border: 1px solid rgba(28, 37, 46, 0.08);
  background: rgba(255, 255, 255, 0.88);
  color: #1f252b;
  font-size: 14px;
  min-height: 34px;
}

.event-detail-hero {
  padding: 0;
}

.event-detail-cover-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.36;
  overflow: hidden;
  background: #95b6cc;
}

.event-detail-cover-top-space {
  width: 100%;
  height: 190px;
  background: linear-gradient(180deg, #8fb6d0 0%, #9dbbd0 100%);
}

.event-detail-cover {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.event-detail-cover-bottom-space {
  width: 100%;
  height: 152px;
  background: linear-gradient(180deg, #738280 0%, #7c8683 100%);
}

.event-detail-price {
  position: absolute;
  right: 16px;
  bottom: 18px;
  min-width: 84px;
  min-height: 84px;
  border-radius: 43% 57% 52% 48% / 47% 39% 61% 53%;
  background: #5fe3da;
  color: #143f3c;
  font-size: 17px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-12deg);
  box-shadow: 0 10px 18px rgba(73, 212, 205, 0.24);
  z-index: 2;
}

.event-detail-price::before,
.event-detail-price::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 10% 25%, #5fe3da 0 8px, transparent 8px),
    radial-gradient(circle at 22% 6%, #5fe3da 0 8px, transparent 8px),
    radial-gradient(circle at 43% 2%, #5fe3da 0 8px, transparent 8px),
    radial-gradient(circle at 67% 5%, #5fe3da 0 8px, transparent 8px),
    radial-gradient(circle at 88% 20%, #5fe3da 0 8px, transparent 8px),
    radial-gradient(circle at 95% 48%, #5fe3da 0 8px, transparent 8px),
    radial-gradient(circle at 86% 78%, #5fe3da 0 8px, transparent 8px),
    radial-gradient(circle at 63% 95%, #5fe3da 0 8px, transparent 8px),
    radial-gradient(circle at 36% 96%, #5fe3da 0 8px, transparent 8px),
    radial-gradient(circle at 13% 82%, #5fe3da 0 8px, transparent 8px),
    radial-gradient(circle at 4% 54%, #5fe3da 0 8px, transparent 8px);
  z-index: -1;
}

.event-detail-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 7px 0 11px;
  background: #fff;
}

.event-detail-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cfd7db;
}

.event-detail-dots i.active {
  background: #50d4d0;
}

.event-detail-body {
  background: #fff;
  padding: 4px 18px 20px;
}

.event-detail-title {
  font-size: 17px;
  line-height: 1.45;
  color: #202833;
  font-weight: 700;
  margin-bottom: 9px;
}

.event-detail-badge-row {
  margin-bottom: 9px;
}

.event-detail-badge {
  display: inline-flex;
  min-height: 22px;
  padding: 0 9px;
  border-radius: 6px;
  background: #eefcff;
  color: #58b7d4;
  font-size: 11px;
  align-items: center;
}

.event-detail-time-row {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #444d58;
  font-size: 15px;
  padding-bottom: 0;
  border-bottom: 0;
}

.event-detail-info-entry {
  margin-top: 18px;
  padding: 18px 0;
  border-top: 1px solid #f0f2f4;
  border-bottom: 1px solid #f0f2f4;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.event-detail-info-entry-left {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #2c3440;
  font-size: 15px;
}

.event-detail-square-icon {
  width: 18px;
  height: 18px;
  border: 2px solid #5f6873;
  border-radius: 4px;
  display: inline-block;
}

.event-detail-chevron {
  color: #7e8893;
  font-size: 22px;
  line-height: 1;
}

.event-detail-scroll-content {
  background: #f5f6f8;
  padding: 10px 0 0;
}

.event-detail-host-card,
.event-detail-people-card,
.event-detail-intro-section {
  background: #fff;
  margin-top: 10px;
  padding: 14px 18px;
}

.event-detail-host-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f3f5f7;
  border-bottom: 1px solid #f3f5f7;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.event-detail-host-main {
  display: flex;
  align-items: center;
  gap: 10px;
}

.event-detail-brand-logo.small {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

.event-detail-host-copy strong {
  display: block;
  font-size: 16px;
  color: #202833;
}

.event-detail-host-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-detail-host-badge {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 0 6px;
  border-radius: 9px;
  background: #eef1f5;
  color: #7a8591;
  font-size: 10px;
}

.event-detail-host-copy p {
  margin-top: 4px;
  font-size: 13px;
  color: #8b95a1;
}

.event-detail-host-subline {
  margin-top: 2px;
  font-size: 12px;
  color: #a0a9b3;
}

.event-detail-host-actions {
  display: flex;
  gap: 10px;
}

.event-detail-host-action {
  border: 0;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 18px;
  font-size: 13px;
  background: #fff;
  color: #58616d;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 10px rgba(20, 32, 43, 0.05);
}

.event-detail-host-action .icon {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
}

.event-detail-host-action .label {
  font-style: normal;
  font-size: 13px;
  font-weight: 500;
}

.event-detail-host-action.gift {
  color: #9f6ae3;
}

.event-detail-host-action.wx {
  color: #33b565;
}

.event-detail-host-action.wx .icon {
  font-size: 11px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #33b565;
  color: #fff;
}

.event-detail-people-card {
  border-top: 1px solid #f3f5f7;
  border-bottom: 1px solid #f3f5f7;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.event-detail-people-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: #5b6570;
}

.event-detail-people-right {
  color: #46c8c4;
}

.event-detail-avatar-row {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.event-detail-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-block;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(25, 37, 48, 0.1);
  position: relative;
}

.event-detail-avatar i {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ff79b5;
  border: 2px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-style: normal;
  font-size: 8px;
  font-weight: 700;
}

.event-detail-avatar.a1 { background: linear-gradient(180deg, #f7c0d1, #8c5364); }
.event-detail-avatar.a2 { background: linear-gradient(180deg, #e4d0c9, #81645f); }
.event-detail-avatar.a3 { background: linear-gradient(180deg, #8ad3df, #43697d); }
.event-detail-avatar.a4 { background: linear-gradient(180deg, #6cc4e2, #4e4fa4); }
.event-detail-avatar.a5 { background: linear-gradient(180deg, #f1d0de, #6e4958); }
.event-detail-avatar.a6 { background: linear-gradient(180deg, #d6d0bd, #887d63); }
.event-detail-avatar.a7 { background: linear-gradient(180deg, #f6e0c7, #8d6b49); }
.event-detail-avatar.a8 { background: linear-gradient(180deg, #d9cfe8, #6f5d8e); }

.event-detail-ticket-banner {
  margin-top: 16px;
  min-height: 46px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f0fcfe, #eef9fb);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  color: #54bfc0;
  font-size: 14px;
}

.event-detail-ticket-left {
  color: #6f7a85;
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-detail-ticket-left b {
  font-weight: 600;
}

.event-detail-ticket-right {
  color: #47c8c4;
}

.event-detail-intro-section h3 {
  font-size: 32px;
  transform: scale(0.5);
  transform-origin: left center;
  color: #6b737d;
  margin: 0 0 2px -8px;
  font-weight: 700;
}

.event-detail-intro-section p {
  font-size: 16px;
  line-height: 1.95;
  color: #2b323c;
  margin-bottom: 9px;
}

.event-detail-intro-section {
  padding-bottom: 24px;
  border-top: 1px solid #f3f5f7;
}

.event-detail-intro-ellipsis {
  color: #9ca5af;
  letter-spacing: 2px;
  margin-top: 2px;
}

.event-detail-expand-btn {
  border: 0;
  background: transparent;
  color: #45c8c3;
  font-size: 28px;
  transform: scale(0.5);
  transform-origin: center;
  margin: -8px auto 0;
  display: block;
}

.event-detail-location-section {
  background: #fff;
  margin-top: 10px;
  padding: 14px 18px;
  border-radius: 14px;
}

.event-detail-location-section h3 {
  font-size: 32px;
  transform: scale(0.5);
  transform-origin: left center;
  width: 200%;
  margin-bottom: 8px;
  color: #1f252d;
  font-weight: 700;
}

.event-detail-location-card {
  display: flex;
  align-items: center;
  gap: 12px;
}

.event-detail-location-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.event-detail-location-info {
  flex: 1;
}

.event-detail-location-info strong {
  display: block;
  font-size: 16px;
  color: #1f252d;
  margin-bottom: 3px;
}

.event-detail-location-info p {
  font-size: 13px;
  color: #8f98a3;
}

.event-detail-location-nav {
  font-size: 14px;
  color: #a78bfa;
  font-weight: 600;
  white-space: nowrap;
}

.event-detail-gallery-section,
.event-detail-recommend-section-2 {
  background: #fff;
  margin-top: 10px;
  padding: 12px 18px;
}

.event-detail-recommend-section-2 {
  padding-bottom: 100px;
}

.event-detail-gallery-section h3,
.event-detail-recommend-section-2 h3 {
  font-size: 32px;
  color: #6b737d;
  transform: scale(0.5);
  transform-origin: left center;
  margin: 0 0 2px -8px;
  font-weight: 700;
}

.event-detail-gallery-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.event-detail-gallery-list img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-top: 1px solid #f3f5f7;
  max-height: 260px;
}

.event-detail-gallery-list img:nth-child(1) {
  height: 248px;
}

.event-detail-gallery-list img:nth-child(2) {
  height: 296px;
}

.event-detail-gallery-list img:nth-child(3) {
  height: 212px;
}

.event-detail-gallery-list img:nth-child(4) {
  height: 232px;
}

.event-detail-gallery-list img:first-child {
  border-top: 0;
}

.event-detail-recommend-item {
  background: #fff;
  border: 1px solid #f0f2f4;
  border-radius: 10px;
  min-height: 84px;
  display: flex;
  overflow: hidden;
  margin-top: 8px;
  box-shadow: 0 1px 2px rgba(19, 30, 42, 0.04);
}

.event-detail-recommend-thumb-2 {
  width: 88px;
  flex: 0 0 88px;
  background: linear-gradient(180deg, #d5dde1, #b8c4cb);
  position: relative;
}

.event-detail-recommend-thumb-2::before {
  content: "报名�?;
  position: absolute;
  left: 0;
  top: 6px;
  min-width: 44px;
  min-height: 17px;
  border-radius: 0 8px 8px 0;
  background: #35c9c7;
  color: #fff;
  font-size: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.event-detail-recommend-body {
  padding: 9px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.event-detail-recommend-body strong {
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
  color: #2b323c;
}

.event-detail-recommend-body p {
  font-size: 13px;
  font-weight: 500;
  color: #6f7984;
}

.event-detail-recommend-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-detail-mini-avatars {
  display: inline-flex;
  align-items: center;
}

.event-detail-mini-avatars i {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -6px;
  background: linear-gradient(180deg, #d8dde5, #6d7785);
  box-shadow: 0 1px 2px rgba(18, 29, 39, 0.12);
}

.event-detail-mini-avatars i:first-child {
  margin-left: 0;
}

.event-detail-mini-avatars i:nth-child(2) { background: linear-gradient(180deg, #f2d8cb, #8a6555); }
.event-detail-mini-avatars i:nth-child(3) { background: linear-gradient(180deg, #d0e6ef, #4f7287); }
.event-detail-mini-avatars i:nth-child(4) { background: linear-gradient(180deg, #ece5cf, #8b7b55); }

.event-detail-time-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border: 1.8px solid #7c8591;
  border-radius: 50%;
  font-size: 11px;
  color: #7c8591;
  position: relative;
}

.event-detail-time-icon::before {
  content: "";
  position: absolute;
  width: 1.8px;
  height: 6px;
  background: #7c8591;
  top: 4px;
  left: 10px;
  border-radius: 2px;
}

.event-detail-time-icon::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 1.8px;
  background: #7c8591;
  top: 10px;
  left: 10px;
  border-radius: 2px;
}

.event-detail-bottom-bar {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(476px, 100%);
  background: #fff;
  border-top: 1px solid #edf0f3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 20px;
}

.event-detail-actions {
  display: flex;
  gap: 10px;
  flex: 1;
  justify-content: flex-start;
}

.event-detail-actions button {
  border: 0;
  background: transparent;
  color: #525b66;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-height: auto;
}

.event-detail-actions button span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: transparent;
  color: #4b5561;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.event-detail-actions button em {
  font-style: normal;
  font-weight: 500;
}

.event-detail-share-btn {
  border: 1.5px solid #72dcd8;
  background: #fff;
  color: #39c9c4;
  min-width: 94px;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(57, 201, 196, 0.08);
  min-height: 46px;
}

.event-detail-join-btn {
  border: 0;
  background: linear-gradient(180deg, #38d2d1, #2fc9c8);
  color: #fff;
  min-width: 124px;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 10px 18px rgba(47, 201, 200, 0.2);
  min-height: 46px;
}

.event-detail-join-btn.joined {
  background: #1f252b;
}

.event-detail-gallery-track {
  display: flex;
  transition: transform 0.3s ease;
  width: 100%;
}

.event-detail-gallery-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.event-detail-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cfd7db;
  border: 0;
  padding: 0;
  min-height: 6px;
  cursor: pointer;
}

.event-detail-dot.active {
  background: #50d4d0;
}

.event-detail-rich-images {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.event-detail-rich-images img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-top: 1px solid #f3f5f7;
  max-height: 260px;
}

.event-detail-recommend-section {
  background: #fff;
  margin-top: 10px;
  padding: 12px 18px 100px;
}

.event-detail-recommend-section h3 {
  font-size: 32px;
  color: #6b737d;
  transform: scale(0.5);
  transform-origin: left center;
  margin: 0 0 2px -8px;
  font-weight: 700;
}

.event-detail-recommend-card {
  background: #fff;
  border: 1px solid #f0f2f4;
  border-radius: 10px;
  min-height: 84px;
  display: flex;
  overflow: hidden;
  margin-top: 8px;
  box-shadow: 0 1px 2px rgba(19, 30, 42, 0.04);
  cursor: pointer;
}

.event-detail-recommend-card img {
  width: 88px;
  flex: 0 0 88px;
  object-fit: cover;
}

.event-detail-recommend-card > div {
  padding: 9px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.event-detail-recommend-card b {
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
  color: #2b323c;
}

.event-detail-recommend-card p {
  font-size: 13px;
  font-weight: 500;
  color: #6f7984;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  background: #e7eaee;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  height: 100vh;
  overflow: hidden;
  touch-action: manipulation;
}

.phone {
  width: 390px;
  min-width: 390px;
  max-width: 390px;
  height: 844px;
  min-height: 844px;
  max-height: 844px;
  background: var(--bg);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 28px rgba(26, 40, 52, 0.12);
}

button {
  min-height: 38px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
.action-btn:focus-visible {
  outline: 2px solid rgba(24, 216, 215, 0.5);
  outline-offset: 2px;
}

.status {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 600;
  color: #2d333c;
  position: relative;
  z-index: 5;
}

.status > * {
  visibility: hidden;
}

/* Home & Alliance visual polish */
.home-page {
  background: #ffffff !important;
}

.home-top {
  padding: 24px 18px 18px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.92) 0 18%, transparent 42%),
    radial-gradient(circle at 85% 8%, rgba(59,227,219,.24) 0 18%, transparent 44%),
    linear-gradient(180deg, #aef0ee 0%, #d8f7f4 100%);
  border-radius: 0 0 26px 26px;
  box-shadow: 0 14px 34px rgba(37, 184, 180, .12);
}

.home-header {
  margin-bottom: 13px;
}

.home-title {
  font-size: 32px;
  letter-spacing: -1px;
  color: #10212b;
}

.home-search {
  height: 46px;
  margin-bottom: 17px;
  border: 1px solid rgba(255,255,255,.82);
  background: rgba(255,255,255,.9);
  box-shadow: 0 10px 24px rgba(30, 132, 135, .12);
  color: #7b8793;
  font-size: 15px;
}

.hero-grid {
  gap: 12px;
  grid-template-columns: 1.08fr .92fr;
}

.hot-card,
.chat-card,
.alliance-card {
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.66));
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: 0 14px 30px rgba(12, 97, 104, .11);
  backdrop-filter: blur(12px);
}

.hot-card {
  min-height: 190px;
  padding: 16px 14px;
}

.hot-card h4 {
  margin-bottom: 14px;
  font-size: 24px;
  letter-spacing: -1px;
  text-shadow: 2px 2px 0 rgba(32, 213, 211, .55);
}

.hot-card ul {
  gap: 11px;
}

.hot-card li {
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.hot-card li b {
  display: inline-grid;
  place-items: center;
  width: 19px;
  height: 19px;
  margin-right: 4px;
  border-radius: 8px;
  background: #15222b;
  color: #2be0dc;
  font-size: 11px;
}

.hot-card em {
  font-size: 12px;
  white-space: nowrap;
}

.hero-right {
  gap: 12px;
}

.chat-card,
.alliance-card {
  min-height: 89px;
  padding: 16px 14px;
  position: relative;
  overflow: hidden;
}

.chat-card::after,
.alliance-card::after {
  content: "";
  position: absolute;
  right: -16px;
  bottom: -20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(37, 208, 207, .18);
}

.chat-card b,
.promotion-contact-card b {
  font-size: 16px;
  color: #171d22;
}

.chat-card p,
.alliance-card p {
  font-size: 12px;
  line-height: 1.35;
}

.chat-card button,
.alliance-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  height: 30px;
  margin-top: 10px;
  border-radius: 15px;
  background: #121b22;
  color: #2ee1dd;
  padding: 0 13px;
  font-size: 12px;
  font-weight: 900;
}

.home-tabs {
  padding: 19px 18px 10px;
  gap: 18px;
  background: transparent;
}

.home-tabs button,
.home-filters button {
  font-size: 16px;
}

.home-tabs .active {
  text-decoration: none;
  position: relative;
}

.home-tabs .active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 24px;
  height: 5px;
  border-radius: 999px;
  background: #21d4d0;
  transform: translateX(-50%);
}

.home-filters {
  padding: 5px 18px 15px;
  gap: 10px;
  background: transparent;
}

.home-filters button {
  height: 34px;
  border: 1px solid #edf1f4;
  background: #fff;
  color: #27323b;
  box-shadow: 0 8px 18px rgba(23, 37, 48, .045);
}

.home-event-list.restored {
  padding: 0 18px 22px;
}

.home-feature-event {
  border-radius: 22px;
  padding: 16px;
  border: 1px solid rgba(230,236,240,.88);
  box-shadow: 0 16px 34px rgba(16, 31, 43, .075);
}

.home-feature-event h3 {
  padding-top: 0;
  font-size: 18px;
  line-height: 1.42;
  color: #101a22;
}

.home-feature-event p {
  color: #687682;
  font-size: 13px;
}

.home-feature-event p span {
  color: #17c9c5;
}

.feature-meta {
  margin-bottom: 13px;
  font-size: 13px;
}

.feature-meta b {
  border-radius: 9px;
  background: linear-gradient(135deg, #22d7d4, #10bdbb);
  font-weight: 800;
}

.feature-images {
  gap: 4px;
  border-radius: 16px;
  margin-bottom: 14px;
}

.feature-images img {
  height: 108px;
}

.feature-bottom {
  font-size: 13px;
}

.feature-bottom .join-btn {
  min-width: 88px;
  height: 40px;
  border: 0;
  box-shadow: 0 9px 18px rgba(13, 21, 27, .16);
  font-size: 16px;
}

.alliance-hall-page {
  background: linear-gradient(180deg, #e6fbf8 0, #f6f8fb 335px, #f6f8fb 100%);
}

.alliance-top {
  min-height: 312px;
  padding: 26px 16px 0;
  background:
    radial-gradient(circle at 88% 34%, rgba(255,255,255,.64) 0 16%, transparent 36%),
    linear-gradient(180deg, #a9efec 0%, #d6f8f3 68%, rgba(246,248,251,0) 100%);
}

.alliance-head h2 {
  font-weight: 800;
  letter-spacing: -1px;
}

.alliance-notice {
  height: 42px;
  margin-top: 13px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: 0 10px 24px rgba(25, 145, 148, .1);
  font-size: 14px;
}

.alliance-hero {
  height: 148px;
  margin-top: 16px;
  padding: 0 2px 0 4px;
}

.alliance-hero-copy h1 {
  margin-top: 0;
  font-size: 29px;
  line-height: 35px;
  letter-spacing: -1.5px;
}

.alliance-hero-copy {
  padding-left: 6px;
}

.alliance-stats {
  gap: 12px;
}

.alliance-stats div {
  min-width: 54px;
}

.alliance-stats b {
  font-size: 19px;
}

.alliance-stats span {
  color: #526069;
  font-size: 12px;
}

.alliance-coin-illus {
  width: 140px;
  height: 118px;
  margin-right: 0;
  background: radial-gradient(circle at 34% 34%, #e6fff9 0 11%, #baf0e5 35%, transparent 67%), linear-gradient(135deg, #d4fff5, #b7e7ff);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.54), 0 18px 30px rgba(29, 121, 132, .13);
}

.alliance-coin-illus b {
  left: 26px;
  top: 31px;
  font-size: 58px;
}

.alliance-panel {
  margin: -8px 0 0;
  padding: 13px 12px 0;
  border-radius: 24px 24px 0 0;
  background: rgba(246,248,251,.96);
}

.alliance-tabs {
  height: 44px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.alliance-tabs button {
  flex: none;
  height: 36px;
  border-radius: 18px;
  padding: 0 13px;
  background: #fff;
  color: #606b73;
  font-size: 15px;
  box-shadow: 0 6px 14px rgba(15, 28, 39, .04);
}

.alliance-tabs button.active {
  background: #121b22;
  color: #2ee1dd;
}

.alliance-tabs button.active::after {
  display: none;
}

.alliance-tabs button span {
  font-size: 17px;
}

.alliance-filter-row {
  height: auto;
  padding: 7px 0 12px;
  gap: 8px;
}

.alliance-filters {
  gap: 7px;
  min-width: 0;
  overflow-x: auto;
}

.alliance-filters button,
.alliance-search {
  height: 34px;
  border: 1px solid #edf1f3;
  background: #fff;
  font-size: 13px;
  box-shadow: 0 6px 14px rgba(18, 31, 42, .04);
}

.alliance-filters button {
  padding: 0 11px;
  flex: none;
}

.alliance-search {
  width: 118px;
  flex: none;
  padding: 0 10px;
}

.alliance-search input {
  font-size: 13px;
}

.alliance-list {
  gap: 14px;
}

.alliance-card-item {
  min-height: 0;
  padding: 15px;
  border-radius: 22px;
  border: 1px solid rgba(229,235,240,.9);
  box-shadow: 0 15px 32px rgba(17, 31, 43, .07);
}

.alliance-card-body h3 {
  margin-bottom: 7px;
  font-size: 18px;
  line-height: 25px;
}

.alliance-owner {
  margin-bottom: 10px;
  gap: 5px;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
}

.alliance-owner img {
  width: 22px;
  height: 22px;
  flex: none;
}

.alliance-card-meta {
  margin-bottom: 12px;
  gap: 8px;
}

.alliance-card-meta b {
  border-radius: 8px;
  padding: 2px 8px;
  background: linear-gradient(135deg, #22d7d4, #10bebb);
  font-weight: 800;
}

.alliance-card-meta span {
  font-size: 13px;
  color: #3e4952;
}

.alliance-card-covers {
  height: 112px;
  gap: 4px;
  border-radius: 15px;
}

.alliance-card-covers img {
  height: 112px;
}

.alliance-card-bottom {
  height: 58px;
}

.alliance-promote-btn {
  width: 132px;
  height: 40px;
  border-radius: 20px;
  box-shadow: 0 9px 18px rgba(13, 21, 27, .16);
  font-size: 13px;
}

.alliance-bottom-tabs {
  width: calc(390px - 40px);
  height: 50px;
  bottom: 18px;
  border-radius: 25px;
  box-shadow: 0 14px 28px rgba(7, 14, 19, .24);
}

.phone.profile-page .status {
  color: #eef4fa;
}

.status-right {
  display: flex;
  gap: 6px;
  align-items: center;
}

.dot,
.pill {
  height: 8px;
  border-radius: 8px;
  background: rgba(31, 37, 46, 0.76);
}

.phone.profile-page .dot,
.phone.profile-page .pill {
  background: rgba(232, 239, 245, 0.85);
}

.dot {
  width: 8px;
}

.pill {
  width: 20px;
}

#pageContainer {
  padding-bottom: 116px;
  min-height: calc(844px - 46px);
  max-height: calc(844px - 46px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

#pageContainer::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.page {
  min-height: 100%;
}

.home-page {
  position: relative;
}

.pull-refresh-indicator {
  position: absolute;
  top: -44px;
  left: 0;
  right: 0;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #8f98a3;
  transition: top 0.25s ease;
  z-index: 3;
}

.pull-refresh-indicator.releasing {
  top: 8px;
}

.pull-refresh-indicator.refreshing {
  top: 8px;
  color: #a78bfa;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.home-top {
  background: linear-gradient(180deg, var(--home-top) 0%, #b7eaeb 60%, #d3f3f3 100%);
  padding: 4px 14px 12px;
}

.home-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
}

.home-title {
  font-size: 39px;
  font-weight: 700;
  letter-spacing: 0;
}

.mini-btn {
  width: 124px;
  height: 43px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.58);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
  font-size: 16px;
  box-shadow: 0 1px 2px rgba(19, 34, 45, 0.08) inset;
}

.more-dots {
  letter-spacing: 1px;
}

.mini-target {
  width: 22px;
  height: 22px;
  border: 2px solid #1f252b;
  border-radius: 50%;
  position: relative;
}

.mini-target::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1f252b;
  position: absolute;
  right: 4px;
  top: 4px;
}

.home-search {
  height: 48px;
  border-radius: 24px;
  background: #f4fbfb;
  border: 1px solid #e6f2f3;
  display: flex;
  align-items: center;
  padding: 0 15px;
  color: #a1a9b4;
  margin-bottom: 0;
  font-size: 14px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  cursor: pointer;
}

.search-icon {
  font-size: 20px;
  margin-right: 6px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 8px;
  align-items: stretch;
}

.hot-card,
.chat-card,
.alliance-card {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow: var(--card-shadow);
}

.hot-card {
  padding: 11px 12px;
  min-height: 204px;
}

.hot-card h4 {
  font-size: 17px;
  margin-bottom: 9px;
  text-shadow: 1px 1px 0 #34d7d8;
}

.hot-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.hot-card li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #2a3139;
  line-height: 1.15;
}

.hot-card em {
  font-style: normal;
  color: #6d7480;
  font-size: 12px;
}

.hot-card em i {
  color: #f14e67;
  font-style: normal;
}

.hero-right {
  display: grid;
  gap: 8px;
}

.chat-card {
  padding: 11px 12px;
  min-height: 116px;
}

.chat-card b,
.alliance-card b {
  font-size: 15px;
}

.chat-card p,
.alliance-card p {
  margin-top: 3px;
  color: #7d8590;
  font-size: 12px;
}

.chat-avatars {
  margin-top: 7px;
  display: flex;
}

.chat-avatars span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #fff;
  margin-right: -5px;
  display: inline-block;
}

.chat-avatars span:nth-child(1) {
  background: #6f83cc;
}

.chat-avatars span:nth-child(2) {
  background: #9ec08e;
}

.chat-avatars span:nth-child(3) {
  background: #738aa4;
}

.chat-card button {
  margin-top: 9px;
  border: 0;
  border-radius: 16px;
  padding: 7px 13px;
  background: #1f252b;
  color: #fff;
  font-size: 12px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.alliance-card {
  padding: 11px 12px;
  min-height: 80px;
}

.open-alliance-hall-btn {
  margin-top: 7px;
  border: 0;
  border-radius: 14px;
  padding: 6px 9px;
  background: #222a32;
  color: #fff;
  font-size: 12px;
}

.home-content {
  margin-top: -2px;
  background: #f2f4f7;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  padding-top: 10px;
}

.home-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 14px 0;
  font-size: 15px;
  color: #626b78;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  position: sticky;
  top: 0;
  z-index: 4;
  background: #f2f4f7;
  padding-top: 2px;
}

.home-tabs::-webkit-scrollbar {
  display: none;
}

.home-tab-item {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: #626b78;
  font-size: 15px;
  line-height: 30px;
  padding: 0 0 7px;
  min-width: fit-content;
}

.home-tab-item:active {
  transform: scale(var(--press));
}

.home-tab-item.active {
  color: #11181f;
  font-weight: 700;
  border-bottom: 2px solid var(--accent);
}

.home-filters {
  display: flex;
  gap: 8px;
  padding: 9px 14px 8px;
  position: sticky;
  top: 34px;
  z-index: 4;
  background: #f2f4f7;
  box-shadow: 0 2px 6px rgba(23, 34, 44, 0.04);
}

.home-filters span {
  background: #eef0f3;
  color: #3a424c;
  border-radius: 16px;
  font-size: 14px;
  padding: 7px 13px;
  border: 1px solid #f0f2f5;
  min-height: 33px;
}

.home-events-list {
  padding-bottom: 10px;
}

.event-card {
  margin: 4px 12px 11px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 14px 14px 14px;
  box-shadow: var(--card-shadow);
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
  cursor: pointer;
}

.event-card:active {
  transform: scale(0.985);
  box-shadow: var(--card-shadow-hover);
}

.event-card h3 {
  font-size: var(--font-xl);
  margin-bottom: 6px;
  line-height: 1.35;
  font-weight: 700;
  color: #1a2129;
}

.skeleton-card {
  pointer-events: none;
}

.skeleton-line {
  height: 14px;
  border-radius: 7px;
  background: linear-gradient(90deg, #eef0f3 25%, #f5f6f8 50%, #eef0f3 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  margin-bottom: 8px;
}

.skeleton-block {
  border-radius: 10px;
  background: linear-gradient(90deg, #eef0f3 25%, #f5f6f8 50%, #eef0f3 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.skeleton-title {
  width: 70%;
  height: 20px;
  border-radius: 10px;
}

.skeleton-meta {
  width: 55%;
}

.skeleton-time {
  width: 40%;
}

.skeleton-gallery {
  height: 144px;
  margin-bottom: 8px;
}

.skeleton-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.skeleton-avatars {
  width: 120px;
  margin-bottom: 0;
}

.skeleton-btn {
  width: 72px;
  height: 34px;
  border-radius: 17px;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.event-meta {
  color: #6a7481;
  font-size: 13px;
  margin-bottom: 6px;
}

.event-meta a {
  color: #11b6ba;
  text-decoration: none;
}

.event-dist {
  float: right;
  color: #8f98a3;
  font-size: 12px;
  background: #f0f3f5;
  padding: 2px 8px;
  border-radius: 10px;
}

.event-time {
  margin-bottom: 8px;
  font-size: 14px;
  color: #2a3139;
}

.event-time span {
  color: #fff;
  background: #16cdcb;
  border-radius: 4px;
  padding: 3px 10px;
  margin-right: 8px;
  font-size: 12px;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
}

.event-gallery {
  height: 144px;
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 8px;
  position: relative;
}

.event-card.gallery-layout-a .event-gallery {
  grid-template-columns: 2fr 1fr;
}

.event-card.gallery-layout-a .event-gallery img:first-child {
  grid-row: 1 / span 2;
}

.event-card.gallery-layout-a .event-gallery img:nth-child(2),
.event-card.gallery-layout-a .event-gallery img:nth-child(3) {
  height: 72px;
}

.event-card.gallery-layout-b .event-gallery {
  grid-template-columns: 1fr 2fr;
}

.event-card.gallery-layout-b .event-gallery img:first-child,
.event-card.gallery-layout-b .event-gallery img:nth-child(2) {
  height: 72px;
}

.event-card.gallery-layout-b .event-gallery img:nth-child(3) {
  grid-row: 1 / span 2;
  grid-column: 2;
}

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

.event-gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.08));
  pointer-events: none;
}

.event-gallery span:nth-child(1) {
  background: linear-gradient(140deg, #62bcff, #9ec8ee);
}

.event-gallery span:nth-child(2) {
  background: linear-gradient(140deg, #f2f2f2, #d8d8d8);
}

.event-gallery span:nth-child(3) {
  background: linear-gradient(140deg, #30b4dd, #174268);
}

.event-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #4b5460;
}

.avatars {
  display: flex;
  align-items: center;
  gap: 0;
  font-weight: 600;
}

.avatars i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-right: -10px;
  display: inline-block;
}

.avatars i:nth-child(1) { background: #6f83cc; }
.avatars i:nth-child(2) { background: #9ec08e; }
.avatars i:nth-child(3) { background: #738aa4; }
.avatars i:nth-child(4) { background: #7b6fc6; }

.btn-dark {
  border: 0;
  border-radius: 24px;
  background: #1f252b;
  color: #fff;
  padding: 10px 26px;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.15s ease, opacity 0.15s ease;
  min-height: 44px;
  min-width: 92px;
  letter-spacing: 0.5px;
}

.btn-dark:active,
.chat-card button:active,
.action-btn:active {
  transform: scale(var(--press));
}

.join-btn.joined {
  background: #e9fbfb;
  color: #0eb8b5;
  border: 1px solid #11cbca;
}

.search-page {
  background: #f6f7f9;
  min-height: calc(100% + 1px);
  padding: 0 14px 18px;
}

.search-head {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-head-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-head h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}

.icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid #e8eaee;
  background: rgba(255, 255, 255, 0.75);
  color: #444f5a;
  font-size: 20px;
  display: grid;
  place-items: center;
}

.search-back-btn {
  font-size: 24px;
  line-height: 1;
}

.search-home-btn {
  font-size: 16px;
}

.search-head .mini-btn {
  width: 116px;
  height: 38px;
  border-radius: 19px;
}

.search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}

.search-input-wrap {
  flex: 1;
  height: 42px;
  border-radius: 21px;
  background: #eceef1;
  display: flex;
  align-items: center;
  padding: 0 13px;
  color: #adb3bd;
  border: 1px solid #eceef1;
}

.search-input {
  border: 0;
  outline: 0;
  background: transparent;
  width: 100%;
  font-size: 15px;
  color: #1e2430;
}

.search-input::placeholder {
  color: #b7bcc5;
}

.search-submit {
  border: 0;
  background: transparent;
  color: #2a323b;
  font-size: 30px;
  min-height: 42px;
  padding: 0 6px;
}

.search-submit:active {
  transform: scale(var(--press));
}

.search-history {
  margin-top: 18px;
}

.search-history-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-history-title h3 {
  font-size: 34px;
}

.history-clear-btn {
  border: 0;
  background: transparent;
  color: #8f97a3;
  font-size: 22px;
}

.search-history-list {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.history-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.history-item {
  border: 0;
  background: transparent;
  color: #6e7784;
  font-size: 15px;
  padding: 8px 0;
  text-align: left;
  min-height: 30px;
}

.history-delete-btn {
  border: 0;
  background: transparent;
  color: #b0b6bf;
  font-size: 18px;
  width: 24px;
  min-height: 24px;
}

.search-result {
  margin-top: 14px;
}

.search-tip {
  color: #9aa3af;
  font-size: 14px;
}

.result-group {
  margin-bottom: 14px;
}

.result-group h4 {
  font-size: 14px;
  margin-bottom: 8px;
  color: #7f8996;
}

.result-group p {
  font-size: 14px;
  color: #1f252d;
  margin-bottom: 8px;
  line-height: 1.4;
}

.location-page {
  background: #f5f6f8;
  min-height: calc(100% + 1px);
  padding: 0 0 12px;
  position: relative;
  max-height: calc(829px - 46px - 32px);
  overflow-y: auto;
}

.location-head {
  height: 58px;
  display: grid;
  grid-template-columns: 36px 1fr 116px;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
}

.location-back-btn {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #2f3945;
  font-size: 40px;
  line-height: 1;
  padding: 0;
}

.location-head h2 {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
}

.location-head .mini-btn {
  width: 116px;
  height: 38px;
  border-radius: 19px;
}

.location-scope-tabs {
  display: flex;
  justify-content: center;
  gap: 54px;
  margin-top: 4px;
}

.location-scope-btn {
  border: 0;
  background: transparent;
  color: #272f3a;
  font-size: 18px;
  font-weight: 700;
  min-height: 34px;
  padding: 0;
}

.location-scope-btn.active {
  color: #3dcfcb;
  border-bottom: 2px solid #39ceca;
}

.location-search-box {
  margin: 10px 14px 0;
  height: 40px;
  border-radius: 20px;
  background: #eceef1;
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: #a2a9b4;
}

.location-search-box input {
  border: 0;
  outline: 0;
  background: transparent;
  width: 100%;
  font-size: 14px;
  color: #2a313a;
  margin-left: 4px;
}

.location-search-box input::placeholder {
  color: #b2b8c1;
}

.location-current {
  margin-top: 10px;
  padding: 0 14px 10px;
  border-bottom: 1px solid #e6e8eb;
}

.location-current h4,
.location-hot h4 {
  color: #8d95a0;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.location-current-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.location-current-city {
  border: 0;
  background: transparent;
  color: #262d36;
  font-size: 34px;
  font-weight: 700;
}

.location-relocate-btn {
  border: 0;
  background: transparent;
  color: #33ccc8;
  font-size: 16px;
}

.location-hot {
  margin-top: 10px;
  padding: 0 14px;
}

.location-recent {
  margin-top: 10px;
  padding: 0 14px;
}

.location-recent h4 {
  color: #8d95a0;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.location-recent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px 10px;
  padding-right: 30px;
}

.location-hot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px 10px;
  padding-right: 30px;
}

.location-hot-item {
  border: 1px solid #eef0f3;
  background: #f1f3f5;
  border-radius: 4px;
  color: #363e49;
  font-size: 16px;
  min-height: 38px;
}

.location-hot-item:active,
.location-city-row:active,
.location-current-city:active,
.location-relocate-btn:active,
.location-scope-btn:active,
.location-back-btn:active {
  transform: scale(var(--press));
}

.location-list {
  margin-top: 10px;
  padding: 0 14px;
  padding-right: 40px;
}

.location-group {
  margin-bottom: 2px;
}

.location-letter-title {
  color: #8f97a2;
  font-size: 35px;
  margin-bottom: 3px;
}

.location-city-row {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #eceef2;
  background: transparent;
  text-align: left;
  color: #303843;
  font-size: 16px;
  min-height: 54px;
}

.location-empty-tip {
  color: #9ca4af;
  font-size: 14px;
  min-height: 52px;
  display: flex;
  align-items: center;
}

.location-loading-tip {
  color: #97a0ab;
  font-size: 14px;
  min-height: 52px;
  display: flex;
  align-items: center;
}

.location-pagination-tip {
  color: #9aa3ae;
  font-size: 12px;
  padding: 10px 0 2px;
}

.location-letter-index {
  position: absolute;
  right: 8px;
  top: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #7f8894;
  font-size: 12px;
  line-height: 1.1;
}

.location-index-btn {
  border: 0;
  background: transparent;
  color: #7f8894;
  font-size: 12px;
  min-height: 14px;
  line-height: 1.1;
  padding: 0;
}

.location-index-btn.active {
  color: #31c9c5;
  font-weight: 700;
}

.location-index-btn:active {
  transform: scale(var(--press));
}

.alliance-page {
  background: #f6f7f9;
  min-height: calc(100% + 1px);
  padding-bottom: 96px;
}

.alliance-head {
  height: 58px;
  background: #c6edef;
  display: grid;
  grid-template-columns: 36px 1fr 116px;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
}

.alliance-back {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #2f3945;
  font-size: 40px;
  line-height: 1;
  padding: 0;
}

.alliance-head h2 {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
}

.alliance-head .mini-btn {
  width: 116px;
  height: 38px;
  border-radius: 19px;
}

.alliance-notice {
  margin: 9px 14px;
  height: 40px;
  border-radius: 20px;
  background: #e3f4f5;
  color: #6f7884;
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-size: 14px;
}

.alliance-hero {
  margin: 0 14px;
  border-radius: 14px;
  background: linear-gradient(120deg, #bdf2f0, #d9f7f6);
  padding: 15px 14px 13px;
  position: relative;
  overflow: hidden;
}

.alliance-hero::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 10px;
  width: 120px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffd8e7, #9fdcf0);
  opacity: 0.7;
}

.alliance-hero h3 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.hero-stats {
  display: flex;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.hero-stats span {
  display: flex;
  flex-direction: column;
}

.hero-stats b {
  font-size: 36px;
  line-height: 1;
}

.hero-stats em {
  font-style: normal;
  color: #5d6571;
  font-size: 13px;
}

.alliance-content {
  margin-top: 10px;
  background: #fff;
  border-radius: 16px 16px 0 0;
  padding: 11px 12px 12px;
}

.alliance-tabs {
  display: flex;
  gap: 14px;
  align-items: center;
  overflow-x: auto;
  white-space: nowrap;
}

.alliance-tabs span {
  font-size: 16px;
  color: #59626f;
}

.alliance-tabs .active {
  font-size: 18px;
  color: #1f252d;
  font-weight: 700;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
}

.alliance-filters {
  margin-top: 11px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.alliance-filters span {
  height: 33px;
  border-radius: 17px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  background: #f2f3f6;
  color: #3f4752;
  font-size: 14px;
}

.alliance-filters .alliance-filter-search {
  margin-left: auto;
  color: #a0a7b2;
}

.alliance-list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.alliance-item {
  background: #fff;
  border-radius: 14px;
  padding: 12px 12px 13px;
  box-shadow: 0 2px 8px rgba(25, 35, 44, 0.05);
}

.alliance-item h4 {
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 6px;
}

.alliance-meta {
  font-size: 13px;
  color: #6f7783;
  margin-bottom: 8px;
}

.alliance-meta a {
  color: #12b9bb;
  text-decoration: none;
}

.alliance-time {
  font-size: 14px;
  color: #2f3741;
  margin-bottom: 9px;
}

.alliance-time span {
  margin-right: 8px;
  background: #18d4d3;
  color: #fff;
  border-radius: 5px;
  padding: 2px 8px;
  font-size: 12px;
  min-height: 22px;
  display: inline-flex;
  align-items: center;
}

.alliance-cover {
  height: 128px;
  border-radius: 10px;
  margin-bottom: 10px;
  background: linear-gradient(130deg, #ececec, #c7c7c7);
}

.alliance-cover.a {
  background: linear-gradient(130deg, #e4e4e4, #bebebe);
}

.alliance-cover.b {
  background: linear-gradient(130deg, #d7dce7, #f0e1c8);
}

.alliance-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.alliance-want-btn {
  border: 0;
  background: transparent;
  color: #59616f;
  font-size: 14px;
}

.alliance-want-btn.on {
  color: #16b9bb;
  font-weight: 600;
}

.alliance-promote-btn {
  border: 0;
  border-radius: 18px;
  background: #1f252d;
  color: #2ce2de;
  font-size: 15px;
  font-weight: 700;
  padding: 8px 15px;
}

.alliance-promote-btn.on {
  background: #e9fcfc;
  color: #0ab9b6;
  border: 1px solid #83dfde;
}

.alliance-bottom-tabs {
  position: sticky;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 52px;
  border-radius: 24px;
  background: linear-gradient(180deg, #2fdad8, #18cfcf);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 18px;
  z-index: 20;
}

.alliance-bottom-tabs::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 13px;
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.45);
}

.alliance-bottom-tabs button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 700;
}

.alliance-bottom-tabs button.active {
  color: #fff;
}

.chat-square-page {
  background: #f6f7f9;
  min-height: calc(100% + 1px);
  padding: 0 14px 16px;
}

.chat-square-head {
  height: 56px;
  display: grid;
  grid-template-columns: 36px 1fr auto 116px;
  gap: 10px;
  align-items: center;
}

.chat-square-back {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #37414d;
  font-size: 40px;
  line-height: 1;
  padding: 0;
}

.chat-square-search {
  height: 38px;
  border-radius: 19px;
  background: #eceef2;
  color: #9ea6b2;
  font-size: 16px;
  display: flex;
  align-items: center;
  padding: 0 12px;
}

.chat-square-create {
  border: 0;
  background: transparent;
  color: #3b4450;
  font-size: 36px;
  min-height: 38px;
  padding: 0;
}

.chat-square-head .mini-btn {
  width: 116px;
  height: 38px;
  border-radius: 19px;
}

.chat-square-title {
  margin-top: 8px;
  font-size: 42px;
  line-height: 1.2;
}

.chat-square-subtitle {
  margin-top: 3px;
  color: #8f97a2;
  font-size: 18px;
}

.chat-square-tabs {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.chat-square-tabs span {
  flex: 0 0 auto;
  padding: 9px 14px;
  border-radius: 18px;
  background: #f0f2f5;
  color: #323a44;
  font-size: 16px;
}

.chat-square-tabs .active {
  background: #fff;
  box-shadow: 0 2px 6px rgba(36, 45, 57, 0.08);
  font-weight: 700;
}

.featured-groups {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.featured-card {
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  min-height: 190px;
}

.featured-card h3 {
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.featured-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  color: #5d6775;
  font-size: 13px;
}

.featured-meta span:last-child {
  border: 1px solid #ecedf0;
  border-radius: 12px;
  padding: 2px 8px;
  color: #7c8593;
}

.featured-card p {
  color: #5a6370;
  font-size: 14px;
  line-height: 1.45;
}

.chat-square-section-title {
  margin-top: 16px;
  margin-bottom: 10px;
  color: #7f8896;
  font-size: 16px;
}

.category-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(78px, 1fr);
  gap: 8px;
  overflow-x: auto;
}

.category-card {
  background: #fff;
  border-radius: 10px;
  min-height: 96px;
  padding: 9px 8px;
}

.category-icon {
  font-size: 28px;
  margin-bottom: 2px;
}

.category-card b {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.category-card p {
  color: #8a929d;
  font-size: 12px;
}

.recommend-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.recommend-item {
  background: transparent;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 10px;
}

.recommend-cover {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(130deg, #c8d2df, #8b9bb0);
}

.recommend-cover.a {
  background: linear-gradient(130deg, #9eb5cf, #c79d7e);
}

.recommend-cover.b {
  background: linear-gradient(130deg, #d6dbe5, #8797b1);
}

.recommend-cover.c {
  background: linear-gradient(130deg, #ad916f, #d6b18e);
}

.recommend-main h5 {
  font-size: 17px;
  margin-bottom: 4px;
}

.recommend-main p {
  font-size: 14px;
  color: #66707d;
  margin-bottom: 3px;
}

.recommend-main .preview {
  color: #4f5763;
}

.wechat-tag {
  display: inline-block;
  background: #24c46b;
  color: #fff;
  border-radius: 10px;
  font-size: 11px;
  padding: 1px 7px;
  vertical-align: middle;
}

.chat-join-btn {
  min-height: 34px;
  border: 1px solid #86dedc;
  border-radius: 17px;
  color: #67c9c7;
  background: transparent;
  padding: 0 16px;
  font-size: 16px;
  font-weight: 600;
}

.chat-join-btn:active {
  transform: scale(var(--press));
}

.chat-join-btn.joined {
  border-color: #cfd4da;
  color: #a1a9b4;
}

.discover-top {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  padding-top: 2px;
  position: sticky;
  top: 0;
  z-index: 6;
}

.discover-tabs,
.discover-cates {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 14px;
}

.discover-tabs {
  height: 48px;
  justify-content: center;
  position: relative;
  font-size: 18px;
  color: #68717d;
  font-weight: 500;
}

.discover-tab {
  border: 0;
  background: transparent;
  color: #8a929d;
  font-size: 18px;
  font-weight: 500;
  padding: 0 4px 8px;
  position: relative;
}

.discover-tabs .active,
.discover-cates .active {
  color: #1f252d;
  font-weight: 700;
  position: relative;
}

.discover-tabs .active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateX(-50%);
}

.discover-mini {
  position: absolute;
  right: 10px;
  top: 7px;
}

.discover-cates .active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}

.discover-cates {
  height: 42px;
  color: #6a727f;
  border-top: 1px solid var(--line);
  font-size: 14px;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.discover-cates::-webkit-scrollbar {
  display: none;
}

.discover-cates button {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: #536070;
  font-size: 14px;
  padding: 0 0 8px;
}

.discover-follow-empty {
  min-height: calc(100vh - 188px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 112px;
  background: #fff;
}

.follow-empty-icon {
  width: 92px;
  height: 70px;
  position: relative;
  margin-bottom: 18px;
  opacity: 0.72;
}

.follow-empty-icon::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 5px;
  width: 42px;
  height: 48px;
  border: 2px solid #d6dadd;
  border-radius: 8px;
  background: linear-gradient(#fff, #fafafa);
}

.follow-empty-icon::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 13px;
  bottom: 4px;
  height: 2px;
  background: #e8eaec;
  box-shadow: 22px -53px 0 -1px #d6dadd, 33px -48px 0 -1px #d6dadd;
}

.follow-empty-icon span {
  position: absolute;
  left: 36px;
  top: 26px;
  width: 23px;
  height: 16px;
  border-radius: 2px;
  background: linear-gradient(135deg, transparent 45%, #d9dddf 46% 64%, transparent 65%), linear-gradient(45deg, transparent 42%, #d9dddf 43% 62%, transparent 63%);
}

.discover-follow-empty p {
  color: #c3c7cc;
  font-size: 14px;
  margin-bottom: 22px;
}

.follow-empty-btn {
  border: 0;
  min-width: 104px;
  height: 42px;
  border-radius: 22px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(31, 213, 210, 0.28);
}

.feed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 8px;
  padding: 8px 6px 104px;
  background: #f4f5f7;
}

.feed-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: none;
  border: 1px solid rgba(20, 31, 43, 0.04);
  break-inside: avoid;
}

.feed-pic {
  width: 100%;
  background: #e8edf2;
  overflow: hidden;
}

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

.feed-body {
  padding: 9px 10px 10px;
}

.feed-body h4 {
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 6px;
  font-weight: 600;
}

.feed-meta {
  color: #8f97a2;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.feed-author {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feed-author img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

.feed-actions {
  display: flex;
  gap: 6px;
  margin-top: 7px;
}

.action-btn {
  border: 1px solid #dfe3e8;
  border-radius: 13px;
  background: #fff;
  color: #5f6874;
  font-size: 11px;
  padding: 4px 9px;
  min-height: 26px;
  transition: all 0.15s ease;
}

.action-btn:active {
  transform: scale(0.96);
}

.action-btn.on {
  border-color: #a78bfa;
  color: #0fadaa;
  background: #ecfbfb;
}

.feed-comments {
  margin-top: 7px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feed-comments p {
  background: #f5f7f9;
  border-radius: 9px;
  padding: 5px 7px;
  font-size: 11px;
  color: #55606c;
  line-height: 1.4;
}

.messages-page {
  padding: 8px 18px 10px;
  background: #f5f6f8;
  min-height: 100%;
}

.messages-header {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.messages-header h2 {
  font-size: 32px;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 16px 0 22px;
  padding: 2px 0;
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 25px;
  position: relative;
  flex-shrink: 0;
}

.green { background: #c8f8e1; }
.red { background: #ffe0e0; }
.blue { background: #dfeaf9; }

.list-item h4 {
  font-size: 19px;
  margin-bottom: 4px;
  color: #1f252d;
}

.list-item p {
  color: #9ca4ae;
  font-size: 14px;
}

.list-item-body {
  flex: 1;
}

.icon-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  background: #f44;
  border-radius: 50%;
  border: 2px solid #fff;
}

.unread-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  background: #f44;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  margin-left: 8px;
  padding: 0 6px;
}

.bottom-nav button {
  position: relative;
}

.nav-badge {
  position: absolute;
  top: 2px;
  right: 6px;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  background: #f44;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

.profile-page-bg {
  background: radial-gradient(140% 120% at 0% 0%, rgba(129, 92, 246, 0.35) 0%, transparent 52%), linear-gradient(180deg, #6366f1 0%, #4f46e5 50%, #7c3aed 100%);
  color: #fff;
  padding: 0 20px 16px;
}

.profile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  z-index: 30;
}

.profile-side-menu {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 74%;
  background: #f7f7f8;
  z-index: 31;
  padding: 58px 16px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.profile-side-sections {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.profile-side-card {
  background: #fff;
  border-radius: 16px;
  padding: 4px 0;
  box-shadow: 0 8px 24px rgba(30, 36, 42, 0.04);
}

.profile-side-item {
  width: 100%;
  min-height: 58px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  color: #232932;
  text-align: left;
}

.profile-side-item span {
  width: 22px;
  flex-shrink: 0;
  font-size: 22px;
  color: #343a43;
  text-align: center;
}

.profile-side-item b {
  font-size: 16px;
  font-weight: 600;
}

.profile-side-item small {
  margin-left: auto;
  font-size: 12px;
  color: #8f97a3;
}

.profile-side-tag {
  margin-left: auto;
  height: 26px;
  line-height: 26px;
  padding: 0 12px;
  border-radius: 13px;
  background: #2ed7d5;
  color: #fff;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.profile-side-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 54px;
  padding-top: 18px;
}

.profile-side-round {
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #8c939d;
}

.profile-side-round span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #eef0f3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #6a717b;
}

.profile-side-round em {
  font-style: normal;
  font-size: 12px;
  color: #333;
}

.edit-profile-page {
  min-height: 100%;
  background: #f5f5f5;
  color: #202124;
  padding-bottom: 96px;
  position: relative;
}

.edit-profile-top {
  height: 66px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 8;
}

.edit-profile-top h2 {
  font-size: 18px;
  font-weight: 700;
}

.edit-profile-back {
  position: absolute;
  left: 18px;
  top: 11px;
  width: 38px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 44px;
  line-height: 34px;
  font-weight: 300;
}

.edit-profile-mini {
  position: absolute;
  right: 12px;
  top: 13px;
  height: 38px;
  min-width: 96px;
  border-radius: 21px;
  border: 1px solid rgba(230, 230, 230, 0.8);
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: #111;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.035);
}

.edit-profile-mini span {
  font-size: 19px;
  letter-spacing: 2px;
  transform: translateY(-2px);
}

.edit-profile-mini b {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.edit-profile-avatar-area {
  height: 74px;
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.edit-profile-avatar {
  margin-top: -7px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='640' height='420' viewBox='0 0 640 420'%3E%3Crect width='640' height='420' fill='%23e8f3ff'/%3E%3Ctext x='320' y='220' text-anchor='middle' fill='%23667885' font-size='34' font-family='Arial, sans-serif'%3E%E9%9A%85%E7%95%94%3C/text%3E%3C/svg%3E") center/cover;
  position: relative;
}

.edit-profile-camera {
  position: absolute;
  right: -3px;
  bottom: 2px;
  width: 31px;
  height: 31px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #3a3a3a;
  color: #fff;
  font-size: 14px;
}

.edit-profile-card {
  margin: 12px 20px 0;
  background: #fff;
  border-radius: 13px;
  overflow: hidden;
}

.edit-profile-card.single {
  margin-top: 14px;
}

.edit-profile-row {
  width: 100%;
  min-height: 61px;
  border: 0;
  background: #fff;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 116px 1fr 24px;
  align-items: center;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
}

.edit-profile-row:last-child {
  border-bottom: 0;
}

.edit-profile-row span {
  color: #8e8e8e;
  font-size: 18px;
  font-weight: 400;
}

.edit-profile-row strong {
  color: #222;
  font-size: 18px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.edit-profile-row strong.muted {
  color: #c7c7c7;
  font-weight: 500;
}

.edit-profile-row em {
  color: #d7d7d7;
  font-size: 32px;
  line-height: 1;
  font-style: normal;
  justify-self: end;
  font-weight: 300;
}

.edit-profile-row i {
  color: #26c7c4;
  font-size: 18px;
  font-style: normal;
  justify-self: end;
}

.edit-profile-save-wrap {
  position: fixed;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: min(476px, 100%);
  padding: 0 20px;
  z-index: 7;
}

.edit-profile-save {
  width: 100%;
  height: 50px;
  border: 0;
  border-radius: 25px;
  background: #2fd0cd;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 5px 14px rgba(47, 208, 205, 0.22);
}

.edit-profile-modal-mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  z-index: 20;
}

.edit-profile-portrait-dialog {
  position: absolute;
  left: 29px;
  right: 29px;
  top: 242px;
  z-index: 21;
  background: #fff;
  border-radius: 16px;
  min-height: 358px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 32px 28px;
}

.edit-profile-portrait-dialog h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 30px;
}

.edit-profile-portrait-icon {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}

.edit-profile-portrait-dialog p {
  color: #969696;
  font-size: 18px;
  line-height: 1.45;
  text-align: center;
  margin-bottom: 28px;
}

.edit-profile-upload-now {
  width: 278px;
  height: 50px;
  border: 0;
  border-radius: 25px;
  background: #2fd0cd;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.edit-profile-modal-close {
  position: absolute;
  left: 50%;
  top: 633px;
  transform: translateX(-50%);
  z-index: 22;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.95);
  background: transparent;
  color: #fff;
  font-size: 34px;
  line-height: 35px;
  font-weight: 300;
}

.invite-card-page {
  min-height: 100%;
  background: linear-gradient(180deg, #f8f8f8 0%, #f3f3f3 100%);
  color: #1f1f1f;
  padding: 0 18px 52px;
}

.invite-top {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  background: rgba(248, 248, 248, 0.98);
  z-index: 8;
}

.invite-top h2 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.invite-back {
  position: absolute;
  left: 2px;
  top: 11px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 44px;
  line-height: 36px;
  font-weight: 300;
}

.invite-mini {
  position: absolute;
  right: 0;
  top: 14px;
  width: 94px;
  height: 36px;
  border-radius: 18px;
  border: 1px solid rgba(230, 230, 230, 0.95);
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: #111;
}

.invite-mini span {
  font-size: 18px;
  letter-spacing: 2px;
  transform: translateY(-2px);
}

.invite-mini b {
  font-size: 18px;
}

.invite-card-box {
  margin: 26px auto 0;
  width: min(100%, 394px);
  background: #fff;
  border-radius: 26px;
  padding: 34px 22px 24px;
  box-shadow: 0 14px 28px rgba(33, 33, 33, 0.04);
}

.invite-brand {
  width: 100%;
  min-height: 92px;
  border-radius: 20px;
  background: linear-gradient(180deg, #dafcff 0%, #f8ffff 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.invite-brand h1 {
  font-size: 29px;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 7px;
}

.invite-brand h1 em {
  font-style: normal;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

.invite-brand h1 i {
  display: inline-block;
  width: 4px;
  height: 27px;
  margin: 0 4px -4px 2px;
  border-radius: 6px;
  background: #36ded8;
  transform: skew(-8deg);
}

.invite-brand p {
  font-size: 12px;
  letter-spacing: 7px;
  padding-left: 7px;
  color: #313131;
}

.invite-qr-panel {
  display: flex;
  justify-content: center;
  padding: 26px 0 18px;
}

.invite-qr {
  width: 182px;
  height: 182px;
  background: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.invite-qr i {
  position: absolute;
  left: 89px;
  top: 8px;
  width: 4px;
  background: #111;
  border-radius: 999px;
  transform-origin: 2px 83px;
}

.invite-qr::before,
.invite-qr::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 4px solid #111;
  border-radius: 50%;
  background: #fff;
}

.invite-qr::before {
  left: 18px;
  top: 36px;
}

.invite-qr::after {
  right: 22px;
  top: 32px;
}

.invite-qr-center {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: linear-gradient(180deg, #141414 0 58%, #47dcd7 58% 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 7px #fff;
}

.invite-qr-center strong {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}

.invite-qr-center em {
  font-style: normal;
  color: #111;
  font-size: 16px;
  font-weight: 800;
}

.invite-wx-dot {
  position: absolute;
  right: 21px;
  bottom: 28px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #2fd66d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  z-index: 2;
}

.invite-tip {
  text-align: center;
  font-size: 13px;
  color: #979797;
  margin-bottom: 18px;
}

.invite-code-line {
  text-align: center;
  margin-bottom: 24px;
}

.invite-code-line span {
  font-size: 15px;
  color: #2d2d2d;
}

.invite-code-line strong {
  font-size: 23px;
  color: #1f1f1f;
  letter-spacing: 1px;
  margin-left: 6px;
}

.invite-divider {
  height: 1px;
  background: #efefef;
  margin-bottom: 18px;
}

.invite-card-actions {
  min-height: 38px;
  border-radius: 19px;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #868686;
}

.invite-card-actions button {
  border: 0;
  background: transparent;
  color: #555;
  font-size: 14px;
  font-weight: 600;
  padding: 0 14px;
}

.invite-card-actions span {
  color: #b5b5b5;
  font-size: 20px;
  transform: translateY(-1px);
}

.invite-bottom-actions {
  margin-top: 24px;
  display: flex;
  justify-content: space-around;
}

.invite-action-btn {
  width: 92px;
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #222;
}

.invite-action-btn span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
  font-size: 24px;
  margin-bottom: 10px;
}

.invite-action-btn em {
  font-style: normal;
  font-size: 14px;
  color: #2a2a2a;
}

.profile-topbar {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.profile-icon-btn,
.profile-chip-btn,
.profile-square-btn,
.profile-pill-btn,
.profile-circle-btn,
.profile-outline-btn,
.profile-outline-icon-btn,
.profile-publish-btn {
  border: 0;
  background: transparent;
}

.profile-menu-btn {
  color: rgba(245, 248, 250, 0.95);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-topbar-center,
.profile-topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.profile-chip-btn,
.profile-square-btn,
.profile-pill-btn,
.profile-circle-btn {
  height: 30px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(245, 248, 250, 0.95);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.profile-chip-btn {
  padding: 0 12px;
}

.profile-square-btn,
.profile-circle-btn {
  width: 30px;
  justify-content: center;
}

.profile-pill-btn {
  min-width: 56px;
  padding: 0 14px;
  justify-content: center;
}

.profile-user {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  align-items: center;
}

.profile-avatar-wrap {
  position: relative;
}

.profile-avatar {
  width: 102px;
  height: 102px;
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='640' height='420' viewBox='0 0 640 420'%3E%3Crect width='640' height='420' fill='%23e8f3ff'/%3E%3Ctext x='320' y='220' text-anchor='middle' fill='%23667885' font-size='34' font-family='Arial, sans-serif'%3E%E9%9A%85%E7%95%94%3C/text%3E%3C/svg%3E") center/cover;
  border: 2px solid rgba(255, 255, 255, 0.72);
  flex-shrink: 0;
}

.profile-avatar-edit {
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #42a5ff;
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
}

.profile-user-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.profile-name {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
}

.profile-level-badge {
  align-self: flex-start;
  padding: 2px 9px;
  border-radius: 11px;
  background: rgba(235, 240, 248, 0.92);
  color: #566782;
  font-size: 12px;
  font-weight: 600;
}

.profile-desc-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.profile-desc {
  color: rgba(245, 248, 250, 0.95);
  font-size: 14px;
}

.profile-desc-edit {
  color: rgba(245, 248, 250, 0.72);
  font-size: 13px;
}

.profile-badge-row {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  padding: 5px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(245, 248, 250, 0.9);
  font-size: 12px;
}

.profile-summary-row {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.profile-stats {
  display: flex;
  gap: 26px;
}

.profile-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(245, 248, 250, 0.9);
}

.profile-stat strong {
  font-size: 18px;
  line-height: 1.1;
}

.profile-stat span {
  margin-top: 4px;
  font-size: 13px;
}

.profile-actions-row {
  display: flex;
  gap: 10px;
}

.profile-outline-btn,
.profile-outline-icon-btn {
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.profile-outline-btn {
  padding: 0 22px;
  font-size: 15px;
}

.profile-outline-icon-btn {
  width: 40px;
  font-size: 18px;
}

.profile-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.profile-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 12px 12px 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-card b {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  color: #f3f7fa;
}

.profile-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  line-height: 1.35;
}

.profile-panel {
  background: #fff;
  border-radius: 24px 24px 0 0;
  margin-top: 10px;
  min-height: 385px;
}

.profile-tabs {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0 20px;
  color: #8b939f;
  font-size: 15px;
}

.profile-tabs .active {
  color: #222730;
  font-weight: 700;
  position: relative;
}

.profile-tabs .active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: #2fd0cf;
  transform: translateX(-50%);
}

.profile-tabs-more {
  margin-left: auto;
  font-size: 18px;
  color: #424b57;
}

.profile-empty-state {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.profile-empty-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-empty-text {
  color: #2b3138;
  font-size: 15px;
}

.profile-publish-btn {
  min-width: 92px;
  height: 36px;
  border-radius: 18px;
  border: 1px solid #e1e5ea;
  background: #fff;
  color: #38404a;
  font-size: 16px;
}

.bottom-nav button:not(.plus):active {
  transform: scale(var(--press));
}

.empty {
  min-height: 228px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #8d94a0;
  gap: 14px;
}

.bottom-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 84px;
  background: #fff;
  border-top: 1px solid #e7e9ec;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: 0 -2px 12px rgba(17, 26, 31, 0.05);
}

.bottom-nav button {
  border: 0;
  background: transparent;
  color: #757b84;
  font-size: 14px;
}

.bottom-nav button.active {
  color: #1f2429;
  font-weight: 700;
}

.bottom-nav .plus {
  width: 56px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(180deg, #30e1e1, #10c9c8);
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-top: -6px;
  box-shadow: 0 6px 16px rgba(16, 201, 200, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.bottom-nav .plus:active {
  transform: scale(0.93);
  box-shadow: 0 3px 8px rgba(16, 201, 200, 0.25);
}

.sys-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 32px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #77808a;
  font-size: 15px;
  letter-spacing: 16px;
}

.create-page {
  background:
    radial-gradient(circle at 18% 0%, rgba(24, 216, 215, 0.28), transparent 32%),
    linear-gradient(180deg, #eefcfc 0%, #f6f7fb 230px, #f6f7fb 100%);
  min-height: 100%;
  padding-bottom: 100px;
}

.create-head {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
}

.create-head h2 {
  font-size: 18px;
  font-weight: 700;
}

.create-close-btn {
  border: 0;
  background: transparent;
  font-size: 28px;
  color: #555;
  width: 36px;
  min-height: 36px;
}

.create-draft-btn {
  border: 1px solid rgba(24, 216, 215, 0.28);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 16px;
  padding: 5px 14px;
  font-size: 13px;
  color: #20aaa9;
  font-weight: 700;
}

.create-hero {
  margin: 14px 16px 0;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(24, 216, 215, 0.98), rgba(83, 228, 177, 0.92));
  color: #fff;
  box-shadow: 0 16px 34px rgba(24, 188, 186, 0.24);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.create-hero span {
  display: inline-flex;
  font-size: 12px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  margin-bottom: 8px;
}

.create-hero h3 {
  font-size: 21px;
  margin-bottom: 5px;
  letter-spacing: -0.3px;
}

.create-hero p {
  font-size: 13px;
  opacity: 0.88;
}

.create-hero strong {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.create-form {
  padding: 16px;
}

.create-field {
  margin-bottom: 18px;
}

.create-card-field {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(232, 236, 241, 0.95);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 10px 24px rgba(31, 43, 56, 0.045);
}

.create-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.create-field input,
.create-field textarea {
  width: 100%;
  border: 1px solid #edf0f4;
  border-radius: 14px;
  padding: 12px 13px;
  font-size: 15px;
  background: #fbfcfd;
  color: #222;
  outline: none;
}

.create-inline-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 10px;
}

.create-field input:focus,
.create-field textarea:focus {
  border-color: #a78bfa;
}

.create-field input::placeholder,
.create-field textarea::placeholder {
  color: #b0b7c0;
}

.create-type-pick {
  display: flex;
  gap: 10px;
}

.create-type-pick span {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid #e0e3e7;
  background: #fff;
  font-size: 14px;
  color: #666;
}

.create-type-pick span.active {
  background: #a78bfa;
  color: #fff;
  border-color: #a78bfa;
}

.create-img-upload {
  width: 100%;
  border: 2px dashed #d8f1f1;
  border-radius: 16px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0a8b2;
  font-size: 14px;
  background: #fff;
}

.create-bottom {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(476px, 100%);
  padding: 12px 16px 28px;
  background: rgba(255, 255, 255, 0.88);
  border-top: 1px solid rgba(232, 236, 241, 0.9);
  backdrop-filter: blur(16px);
}

.create-publish-btn {
  width: 100%;
  border: 0;
  border-radius: 24px;
  background: linear-gradient(180deg, #38d2d1, #2fc9c8);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  min-height: 48px;
  box-shadow: 0 6px 16px rgba(47, 201, 200, 0.25);
}

.create-publish-btn:disabled {
  opacity: 0.72;
}

.mini-toast {
  position: fixed;
  left: 50%;
  bottom: 120px;
  transform: translateX(-50%) translateY(20px);
  background: rgba(31, 37, 43, 0.92);
  color: #fff;
  padding: 10px 22px;
  border-radius: 22px;
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  white-space: nowrap;
}

.mini-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.comment-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
}

.comment-modal-mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.comment-modal-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  padding: 10px 14px 28px;
  display: flex;
  gap: 10px;
  align-items: center;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}

.comment-modal-input {
  flex: 1;
  border: 1px solid #e5e7ea;
  border-radius: 20px;
  padding: 10px 16px;
  font-size: 15px;
  outline: none;
  background: #f7f8fa;
}

.comment-modal-input:focus {
  border-color: #a78bfa;
  background: #fff;
}

.comment-modal-send {
  border: 0;
  border-radius: 20px;
  background: #a78bfa;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  white-space: nowrap;
}

.comment-modal-send:disabled {
  opacity: 0.6;
}

.post-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
}

.post-detail-mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.post-detail-sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 60px;
  background: #f5f6f8;
  border-radius: 20px 20px 0 0;
  overflow-y: auto;
}

.post-detail-head {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 20px 20px 0 0;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 2;
}

.post-detail-head h3 {
  font-size: 17px;
  font-weight: 700;
}

.post-detail-close {
  position: absolute;
  left: 12px;
  border: 0;
  background: transparent;
  font-size: 28px;
  color: #555;
}

.post-detail-pic {
  height: 240px;
  background: linear-gradient(135deg, #d6baa3, #8f6f57);
}

.post-detail-body {
  padding: 16px;
  background: #fff;
}

.post-detail-body h2 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}

.post-detail-meta {
  display: flex;
  justify-content: space-between;
  color: #8f98a3;
  font-size: 13px;
  margin-bottom: 12px;
}

.post-detail-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.post-detail-comments p {
  background: #f5f7f9;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 13px;
  color: #3a4149;
  margin-bottom: 6px;
  line-height: 1.5;
}

@media (max-width: 500px) {
  body {
    padding: 0;
    background: #fff;
    align-items: flex-start;
  }

  .phone {
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }

  #pageContainer {
    min-height: calc(100vh - 46px);
    max-height: calc(100vh - 46px);
  }

  .home-title {
    font-size: 44px;
  }

  .home-tabs {
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

.post-detail-page {
  background: #fff;
  padding-bottom: 74px;
  overflow-y: auto;
}

.post-detail-topbar {
  height: 56px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(20, 31, 43, 0.05);
}

.post-detail-back-btn,
.post-share-top {
  border: 0;
  background: transparent;
  font-size: 34px;
  color: #111820;
  width: 34px;
  height: 42px;
}

.post-share-top {
  font-size: 22px;
}

.post-detail-topbar img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.post-detail-author {
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 5px;
}

.post-detail-author b {
  font-size: 17px;
  color: #151a21;
  white-space: nowrap;
}

.post-detail-author span {
  border-radius: 8px;
  background: #fff4cf;
  color: #a57914;
  font-size: 10px;
  padding: 2px 5px;
  white-space: nowrap;
}

.post-follow-btn {
  border: 1px solid #9cf0ee;
  background: #f5ffff;
  color: #18c9c8;
  border-radius: 18px;
  height: 34px;
  padding: 0 17px;
  font-size: 15px;
  font-weight: 700;
}

.post-hero {
  position: relative;
  background: #07131e;
}

.post-hero img {
  width: 100%;
  max-height: 586px;
  display: block;
  object-fit: cover;
}

.post-image-count {
  position: absolute;
  right: 12px;
  top: 12px;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  padding: 5px 9px;
  font-size: 14px;
  font-weight: 700;
}

.post-want-bar {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  background: #082033;
  color: #fff;
}

.post-want-avatars i {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-left: -7px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: linear-gradient(135deg, #dfe8ff, #6578a7);
}

.post-want-avatars i:first-child {
  margin-left: 0;
}

.post-want-bar span {
  flex: 1;
  font-size: 14px;
}

.post-want-bar button {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 15px;
}

.post-detail-content {
  padding: 16px 18px 20px;
}

.post-gift-tip,
.post-related-list button {
  width: 100%;
  border: 0;
  background: #f7f7f7;
  border-radius: 8px;
  min-height: 38px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8c9299;
  font-size: 14px;
  margin-bottom: 12px;
}

.post-detail-content h1 {
  font-size: 23px;
  line-height: 1.35;
  margin: 8px 0 18px;
  color: #171d24;
}

.post-detail-content p {
  color: #252b32;
  font-size: 18px;
  line-height: 1.78;
  margin-bottom: 18px;
}

.post-related-list button {
  color: #333a43;
  margin-bottom: 8px;
}

.post-related-list em {
  margin-left: auto;
  color: #a0a6ad;
  font-style: normal;
  padding-right: 6px;
}

.post-time {
  color: #a2a8af;
  font-size: 14px;
  margin: 22px 0;
}

.post-gifts {
  display: flex;
  justify-content: space-around;
  border-bottom: 1px solid #f0f1f3;
  padding-bottom: 24px;
}

.post-gifts div {
  text-align: center;
  color: #9ca2a9;
  font-size: 13px;
}

.post-gifts b {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fafafa;
  font-size: 23px;
  margin-bottom: 8px;
}

.post-gifts em {
  color: var(--accent);
  font-style: normal;
}

.post-detail-content h2 {
  font-size: 17px;
  margin: 22px 0 18px;
}

.post-comment-input {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.post-comment-input img,
.post-comments-list img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.post-comment-input span {
  flex: 1;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  background: #f6f6f6;
  color: #b0b4b9;
  padding: 0 16px;
}

.post-comments-list article {
  display: flex;
  gap: 11px;
  margin-bottom: 22px;
}

.post-comments-list div {
  flex: 1;
}

.post-comments-list h3 {
  color: #a0a6ad;
  font-size: 14px;
  margin-bottom: 6px;
}

.post-comments-list p {
  font-size: 16px;
  line-height: 1.45;
  margin: 0 0 4px;
}

.post-comments-list small {
  color: #a0a6ad;
}

.post-comments-list article > button {
  border: 0;
  background: transparent;
  color: #8f969e;
  font-size: 22px;
}

.post-bottom-actions {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 64px;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid #eff1f3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  z-index: 22;
}

.post-bottom-actions button {
  border: 0;
  background: transparent;
  color: #1d252d;
  font-size: 27px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.post-bottom-actions span {
  font-size: 12px;
  margin-top: 3px;
}

.post-comment-entry {
  flex: 1;
  height: 40px;
  border-radius: 20px !important;
  background: #f7f7f7 !important;
  color: #9299a1 !important;
  font-size: 15px !important;
  align-items: flex-start !important;
  justify-content: center;
  padding-left: 16px;
}

.interaction-notice-page {
  background: #f7f8fb;
  min-height: 100%;
  padding-bottom: 0;
}

.interaction-notice-top {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #fff;
}

.interaction-back-btn {
  position: absolute;
  left: 14px;
  top: 5px;
  width: 38px;
  height: 46px;
  border: 0;
  background: transparent;
  color: #101720;
  font-size: 42px;
  line-height: 42px;
  font-weight: 300;
}

.interaction-notice-top h2 {
  font-size: 20px;
  font-weight: 800;
  color: #111820;
  letter-spacing: 0.5px;
}

.interaction-mini {
  position: absolute;
  right: 10px;
  top: 10px;
}

.interaction-notice-tabs {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 20px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
}

.interaction-notice-tabs button {
  border: 0;
  background: transparent;
  color: #8a9099;
  font-size: 16px;
  height: 42px;
  padding: 0;
  position: relative;
}

.interaction-notice-tabs button.active {
  color: #1c232b;
  font-weight: 800;
}

.interaction-notice-tabs button.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 36px;
  height: 5px;
  border-radius: 999px;
  background: rgba(31, 213, 210, 0.85);
  transform: translateX(-50%);
  z-index: -1;
}

.interaction-filter-btn {
  margin-left: auto;
  color: #262d35 !important;
  font-size: 23px !important;
  transform: rotate(90deg);
}

.interaction-notice-body {
  min-height: calc(100vh - 100px);
  background: #f7f8fb;
  position: relative;
}

.interaction-empty {
  position: absolute;
  left: 0;
  right: 0;
  top: 374px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #c9cdd2;
  font-size: 14px;
}

.interaction-empty-icon {
  width: 92px;
  height: 68px;
  position: relative;
  margin-bottom: 12px;
}

.interaction-empty-icon::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 2px;
  width: 38px;
  height: 48px;
  border: 2px solid #d7dbe0;
  border-radius: 7px;
  background: #f7f8fb;
}

.interaction-empty-icon::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 12px;
  bottom: 9px;
  height: 2px;
  background: #dee2e7;
  box-shadow: 56px -51px 0 -1px #d7dbe0, 62px -46px 0 -1px #d7dbe0;
}

.interaction-empty-icon span {
  position: absolute;
  left: 37px;
  top: 25px;
  width: 22px;
  height: 14px;
  border-radius: 2px;
  background: linear-gradient(135deg, transparent 44%, #d9dde2 45% 63%, transparent 64%), linear-gradient(45deg, transparent 42%, #d9dde2 43% 62%, transparent 63%);
}

.interaction-item {
  margin: 10px 14px;
  padding: 12px;
  border-radius: 14px;
  background: #fff;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.interaction-item img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.interaction-item div {
  flex: 1;
  min-width: 0;
}

.interaction-item h3 {
  font-size: 15px;
  color: #17202a;
  margin-bottom: 4px;
}

.interaction-item p,
.interaction-item time {
  color: #8e96a0;
  font-size: 13px;
}

.simple-notice-page {
  min-height: 100%;
  background: #f7f7f8;
}

.simple-notice-top {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #fff;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
}

.simple-notice-back-btn {
  position: absolute;
  left: 14px;
  top: 5px;
  width: 38px;
  height: 46px;
  border: 0;
  background: transparent;
  color: #101720;
  font-size: 42px;
  line-height: 42px;
  font-weight: 300;
}

.simple-notice-top h2 {
  font-size: 21px;
  line-height: 58px;
  color: #111820;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.simple-notice-mini {
  position: absolute;
  right: 10px;
  top: 10px;
}

.simple-notice-body {
  min-height: calc(100vh - 58px);
  background: #f7f7f8;
  position: relative;
}

.simple-notice-empty {
  position: absolute;
  left: 0;
  right: 0;
  top: 397px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #c7cbd0;
  font-size: 14px;
}

.simple-notice-empty.system-empty {
  top: 397px;
}

.simple-notice-empty.system-empty p {
  width: 100%;
  text-align: center;
  padding: 0 42px;
  white-space: nowrap;
  font-size: 13px;
}

.message-clear-open {
  width: 22px;
  height: 22px;
  border: 0;
  background: transparent;
  color: #3a4d43;
  font-size: 18px;
  line-height: 20px;
  vertical-align: 2px;
  margin-left: 2px;
}

.message-clear-mask {
  position: absolute;
  inset: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.45);
}

.message-clear-dialog {
  position: absolute;
  left: 30px;
  right: 30px;
  top: 298px;
  z-index: 41;
  background: #fff;
  border-radius: 9px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
}

.message-clear-dialog h3 {
  margin: 40px 0 22px;
  color: #151a20;
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
}

.message-clear-dialog p {
  margin: 0 0 36px;
  color: #7b8189;
  font-size: 18px;
}

.message-clear-actions {
  height: 68px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #edf0f2;
}

.message-clear-actions button {
  border: 0;
  background: #fff;
  color: #111820;
  font-size: 20px;
  font-weight: 800;
}

.message-clear-actions button + button {
  border-left: 1px solid #edf0f2;
  color: #52647f;
}

.messages-empty {
  text-align: center;
  color: #b9bec5;
  margin-top: 180px;
  font-size: 15px;
}

.home-date-sheet-open .home-date-mask {
  position: fixed;
  top: 10px;
  bottom: 10px;
  left: 50%;
  width: min(476px, calc(100vw - 20px));
  transform: translateX(-50%);
  border-radius: 24px;
  z-index: 900;
}

.home-date-sheet-open .home-date-sheet {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 10px;
  width: min(476px, calc(100vw - 20px));
  max-height: min(690px, calc(100vh - 72px));
  transform: translateX(-50%);
  z-index: 901;
  display: flex;
  flex-direction: column;
}

.home-date-sheet-open .home-date-body {
  flex: 1;
  max-height: none;
  overflow-y: auto;
}

.home-date-sheet-open .home-date-confirm-btn {
  flex: 0 0 auto;
}

@media (max-width: 520px) {
  .home-date-sheet-open .home-date-mask {
    top: 0;
    bottom: 0;
    width: 100vw;
    border-radius: 0;
  }

  .home-date-sheet-open .home-date-sheet {
    bottom: 0;
    width: 100vw;
  }
}

.location-page.oversea {
  background: #fff;
}

.location-page.oversea .location-search-box {
  margin-top: 10px;
  background: #f1f1f2;
}

.location-page.oversea .location-hot {
  margin-top: 10px;
  padding-top: 22px;
  border-top: 8px solid #f5f6f8;
}

.location-page.oversea .location-hot h4 {
  margin-bottom: 14px;
  color: #8d95a0;
}

.location-page.oversea .location-hot-grid {
  gap: 10px 16px;
  padding-right: 36px;
}

.location-page.oversea .location-hot-item {
  min-height: 44px;
  border: 0;
  border-radius: 4px;
  background: #f4f4f5;
  color: #17202a;
  font-size: 18px;
}

.location-page.oversea .location-list {
  margin-top: 20px;
  padding-left: 20px;
  padding-right: 44px;
}

.location-page.oversea .location-letter-title {
  font-size: 20px;
  color: #9aa1aa;
  margin: 0 0 12px;
}

.location-page.oversea .location-city-row {
  min-height: 60px;
  font-size: 18px;
  color: #101820;
  border-bottom-color: #edf0f2;
}

.location-page.oversea .location-letter-index {
  top: 344px;
  right: 10px;
  padding: 4px 3px 6px;
  border-radius: 14px;
  background: rgba(246, 247, 249, 0.94);
  gap: 5px;
}

.location-index-recommend {
  font-size: 10px;
  color: #222b35;
  writing-mode: horizontal-tb;
  white-space: nowrap;
  transform: scale(0.9);
}

.location-page.oversea .location-index-btn.active {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
}

.report-page {
  min-height: 100%;
  background: #f5f5f6;
  padding-bottom: 88px;
  overflow-y: auto;
}

.report-head {
  height: 78px;
  display: grid;
  grid-template-columns: 44px 1fr 116px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  background: #f7f7f8;
}

.report-back-btn {
  width: 38px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #111820;
  font-size: 34px;
  line-height: 1;
}

.report-head h2 {
  text-align: center;
  color: #111820;
  font-size: 19px;
  font-weight: 600;
}

.report-content {
  padding: 0 20px 16px;
}

.report-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px 22px 16px;
  margin-bottom: 16px;
}

.report-type-card {
  padding-top: 14px;
  padding-bottom: 0;
}

.report-type-row {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 72px;
  padding: 0;
  text-align: left;
}

.report-type-row + .report-type-row {
  border-top: 1px solid #edf0f2;
}

.report-type-row b {
  display: block;
  color: #111820;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
}

.report-type-row em {
  display: block;
  margin-top: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: #f5f5f6;
  color: #8d949d;
  font-style: normal;
  font-size: 16px;
  line-height: 1.35;
}

.report-type-row i {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #d7dbe0;
  display: grid;
  place-items: center;
  color: #fff;
  font-style: normal;
  font-weight: 800;
}

.report-type-row.active i {
  background: #102d33;
  border-color: #102d33;
  color: var(--accent);
}

.report-card h3 {
  color: #111820;
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 18px;
}

.report-card h3 span {
  color: #e54b4b;
}

.report-reason-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.report-reason-chip {
  border: 0;
  background: #f4f4f5;
  color: #56606b;
  border-radius: 4px;
  min-height: 54px;
  padding: 0 24px;
  font-size: 18px;
}

.report-reason-chip.active {
  background: rgba(24, 216, 215, 0.14);
  color: #0faead;
  font-weight: 700;
}

.report-desc-card {
  min-height: 278px;
  position: relative;
}

.report-desc-card textarea {
  width: 100%;
  height: 180px;
  border: 0;
  outline: 0;
  resize: none;
  color: #202832;
  font-size: 18px;
  line-height: 1.6;
}

.report-desc-card textarea::placeholder {
  color: #b8bec7;
}

.report-count {
  position: absolute;
  right: 22px;
  bottom: 14px;
  color: #9ca3ad;
  font-size: 18px;
}

.report-upload-card h3 {
  display: flex;
  justify-content: space-between;
}

.report-upload-card h3 span {
  color: #8f97a2;
}

.report-upload-btn {
  width: 110px;
  height: 110px;
  border: 0;
  border-radius: 8px;
  background: #f4f4f5;
  color: #c8ccd1;
  font-size: 46px;
}

.report-upload-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.report-image-preview {
  width: 110px;
  height: 110px;
  border-radius: 8px;
  position: relative;
  border: 1px solid #e5e7eb;
}

.report-image-remove-btn {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: 0;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  cursor: pointer;
  z-index: 10;
}

.report-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 22px 10px;
  background: #fff;
  z-index: 20;
}

.report-submit-btn {
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 28px;
  background: #27cdca;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

.report-submit-btn:disabled {
  opacity: 0.65;
}

.event-detail-gallery-track {
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.28s ease;
  will-change: transform;
}

.event-detail-gallery-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.event-detail-dot {
  width: 6px;
  height: 6px;
  min-height: 6px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: #cfd7db;
}

.event-detail-dot.active {
  background: #50d4d0;
}

.create-menu-overlay {
  position: absolute;
  inset: 0;
  z-index: 90;
  overflow: hidden;
}

.create-menu-blur {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(14px);
}

.create-menu-panel {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.create-menu-slogan {
  color: #202832;
  font-size: 30px;
  line-height: 1.35;
  font-weight: 800;
  margin-bottom: 255px;
}

.create-menu-slogan::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: #27cdca;
  margin-top: 28px;
}

.create-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.create-menu-item,
.create-menu-row {
  border: 0;
  background: #fff;
  color: #202832;
  box-shadow: 0 10px 28px rgba(28, 36, 46, 0.08);
}

.create-menu-item {
  height: 80px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.create-menu-item span {
  font-size: 28px;
}

.create-menu-item b,
.create-menu-row b {
  font-size: 20px;
  font-weight: 800;
}

.create-menu-row {
  height: 104px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 54px;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  text-align: left;
  padding: 20px 18px;
}

.create-menu-row b {
  align-self: end;
}

.create-menu-row em {
  color: #a0a7b0;
  font-size: 14px;
  font-style: normal;
  align-self: start;
  margin-top: 4px;
}

.create-menu-row span {
  grid-row: 1 / span 2;
  grid-column: 2;
  justify-self: end;
  color: #203039;
  font-size: 34px;
}

.create-menu-close {
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: #303842;
  font-size: 30px;
  align-self: center;
  margin-top: 24px;
}

.create-menu-item:active,
.create-menu-row:active,
.create-menu-close:active {
  transform: scale(var(--press));
}

.event-detail-gallery-track {
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.28s ease;
  will-change: transform;
}

.event-detail-gallery-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.event-detail-dot {
  width: 6px;
  height: 6px;
  min-height: 6px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: #cfd7db;
}

.event-detail-dot.active {
  background: #50d4d0;
}

.create-group-page {
  min-height: 100%;
  background: #f5f5f6;
  padding: 0 20px 92px;
  overflow-y: auto;
}

.create-group-head {
  height: 78px;
  display: grid;
  grid-template-columns: 46px 1fr 116px;
  align-items: center;
  gap: 10px;
}

.create-group-back {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111820;
  font-size: 34px;
  line-height: 1;
}

.create-group-head h2 {
  font-size: 28px;
  font-weight: 800;
  color: #111820;
}

.create-group-tabs {
  height: 60px;
  padding: 5px;
  border-radius: 16px;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-bottom: 14px;
}

.create-group-tabs button {
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #060b12;
  font-size: 20px;
  font-weight: 800;
  position: relative;
}

.create-group-tabs button.active {
  background: #58e0d2;
}

.create-group-tabs em {
  position: absolute;
  top: 4px;
  right: 54px;
  padding: 1px 5px;
  border-radius: 7px 7px 7px 0;
  background: #ff3564;
  color: #fff;
  font-size: 10px;
  font-style: normal;
  transform: rotate(-7deg);
}

.create-group-card,
.create-group-row {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(31, 37, 46, 0.03);
}

.create-group-card.main {
  height: 440px;
  padding: 20px 22px;
  margin-bottom: 12px;
}

.create-group-cover {
  width: 138px;
  height: 138px;
  border: 1px solid #e8eaee;
  border-radius: 8px;
  background: #f4f4f5;
  color: #c4c9d0;
  font-size: 18px;
  line-height: 1.4;
}

#groupTitleInput,
#groupDescInput {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
}

#groupTitleInput {
  margin-top: 30px;
  height: 34px;
  color: #ff6a2a;
  font-size: 20px;
}

#groupTitleInput::placeholder {
  color: #ff6a2a;
}

#groupDescInput {
  margin-top: 18px;
  height: 126px;
  resize: none;
  color: #202832;
  font-size: 19px;
}

#groupDescInput::placeholder {
  color: #c0c5cd;
}

.create-group-chips {
  display: flex;
  gap: 10px;
}

.group-chip {
  border: 0;
  border-radius: 22px;
  background: #f5f5f6;
  color: #19232e;
  min-height: 42px;
  padding: 0 14px;
  font-size: 16px;
}

.create-group-row {
  min-height: 78px;
  margin-bottom: 12px;
  padding: 0 22px;
  border: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #111820;
  font-size: 20px;
  text-align: left;
}

.create-group-row span {
  font-size: 20px;
}

.create-group-row em {
  color: #c6c8ce;
  font-style: normal;
}

.create-group-row label {
  margin-left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #222933;
}

.create-group-row input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #2ec0bb;
  cursor: pointer;
}

.create-group-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 20px 10px;
  background: #f5f5f6;
}

.create-group-submit {
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 28px;
  background: #262626;
  color: #a78bfa;
  font-size: 21px;
  font-weight: 700;
}

.host-landing-page {
  min-height: 100%;
  background: linear-gradient(180deg, #f7fbff 0%, #eef5ff 38%, #eaf1ff 100%);
  color: #1d2430;
  overflow-y: auto;
  padding-bottom: 0;
}

.host-topbar {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 8;
  background: rgba(248, 251, 255, 0.74);
  backdrop-filter: blur(8px);
}

.host-back-btn {
  border: 0;
  background: transparent;
  color: #111820;
  font-size: 44px;
  line-height: 1;
}

.host-hero {
  min-height: 280px;
  padding: 34px 22px 24px;
  text-align: center;
  background: radial-gradient(circle at 82% 5%, rgba(255,255,255,.95) 0 96px, transparent 98px), radial-gradient(circle at 50% 72%, rgba(0, 163, 255, 0.12), transparent 45%);
}

.host-hero h1 {
  font-size: 38px;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.host-hero h1 span {
  color: #03aee9;
}

.host-join-btn {
  border: 0;
  min-width: 176px;
  height: 56px;
  border-radius: 28px;
  background: linear-gradient(90deg, #16d5d1, #0e8cff);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(16, 143, 255, 0.22);
}

.host-join-btn b {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-left: 8px;
  border-radius: 50%;
  background: #fff;
  color: #128eef;
}

.host-card {
  margin: 16px 22px;
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  position: relative;
}

.host-card h2,
.host-excellent-section h2,
.host-bottom-cta h2 {
  font-size: 28px;
  font-weight: 900;
  color: #111820;
  margin-bottom: 14px;
}

.host-card-tag {
  position: absolute;
  right: 0;
  top: 0;
  padding: 7px 12px;
  background: #ff4d5b;
  color: #fff;
  border-radius: 0 14px 0 10px;
  font-size: 16px;
}

.host-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.host-benefit-grid div {
  min-height: 72px;
  border-radius: 8px;
  background: #f2fbf8;
  padding: 10px;
}

.host-benefit-grid div:nth-child(1) { background: #eef5ff; color: #276df0; }
.host-benefit-grid div:nth-child(2) { background: #eefbec; color: #20b85a; }
.host-benefit-grid div:nth-child(3) { background: #f7efff; color: #8a55ff; }

.host-benefit-grid i {
  font-style: normal;
  font-size: 20px;
  margin-right: 4px;
}

.host-benefit-grid span {
  color: #ff4e5d;
  font-size: 13px;
}

.host-benefit-grid b {
  display: block;
  font-size: 16px;
  margin-top: 7px;
}

.host-card p {
  color: #4b5563;
  font-size: 17px;
  line-height: 1.65;
}

.host-compare-table {
  display: grid;
  grid-template-columns: 24% 50% 26%;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff8f5, #fbf7ff);
  border: 1px solid #f1e9e5;
}

.host-compare-table div {
  min-height: 74px;
  padding: 14px 10px;
  border-right: 1px solid rgba(235, 225, 218, .8);
  border-bottom: 1px solid rgba(235, 225, 218, .8);
  font-size: 14px;
  line-height: 1.55;
}

.host-compare-table .head {
  min-height: 48px;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}

.host-compare-table .label {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  font-weight: 700;
}

.host-compare-table .old {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  font-size: 22px;
  font-weight: 900;
}

.host-income-list {
  margin-top: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff8f4, #fff);
  padding: 8px 16px;
}

.host-income-list div {
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto;
  gap: 2px 12px;
  padding: 14px 0;
}

.host-income-list span {
  grid-row: 1 / span 2;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #4285ff;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.host-income-list b {
  font-size: 18px;
  color: #333;
}

.host-income-list em {
  font-style: normal;
  color: #8a929d;
  font-size: 14px;
  line-height: 1.5;
}

.host-excellent-section {
  padding: 42px 0 56px;
  text-align: center;
}

.host-excellent-section p {
  color: #596271;
  font-size: 16px;
  margin-bottom: 48px;
}

.host-card-carousel {
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateX(-54px);
  width: max-content;
}

.host-person-card {
  width: 210px;
  height: 270px;
  border-radius: 16px;
  background: #fff;
  padding: 18px;
  text-align: left;
  box-shadow: 0 18px 40px rgba(45, 84, 150, 0.08);
}

.host-person-card.main {
  width: 240px;
  height: 320px;
}

.host-person-card img {
  float: right;
  width: 106px;
  height: 130px;
  object-fit: cover;
  border-radius: 14px;
}

.host-person-card b {
  display: block;
  font-size: 20px;
  margin-bottom: 52px;
}

.host-person-card strong {
  display: block;
  color: #7d8793;
  font-size: 30px;
}

.host-person-card em,
.host-person-card p {
  color: #8a929d;
  font-style: normal;
  font-size: 14px;
  line-height: 1.55;
}

.host-bottom-cta {
  background: linear-gradient(180deg, #dceaff, #edf4ff);
  text-align: center;
  padding: 44px 22px 88px;
}

.host-bottom-cta h2 {
  font-size: 36px;
}

.host-bottom-cta p {
  font-size: 20px;
  margin: 12px 0 34px;
  color: #111820;
}

.host-bottom-cta > div {
  display: flex;
  justify-content: center;
  gap: 26px;
}

.host-policy-btn {
  min-width: 176px;
  height: 56px;
  border-radius: 28px;
  border: 1px solid #0c9bea;
  background: transparent;
  color: #0c9bea;
  font-size: 20px;
  font-weight: 700;
}

.host-contract-page {
  min-height: 100%;
  background: #f5f5f5;
  color: #071421;
  padding-bottom: 88px;
  overflow-y: auto;
}

.host-contract-head {
  height: 74px;
  background: #fff;
  display: grid;
  grid-template-columns: 44px 1fr 116px;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
}

.host-contract-back {
  border: 0;
  background: transparent;
  color: #071421;
  font-size: 42px;
  line-height: 1;
}

.host-contract-head h2 {
  text-align: center;
  font-size: 22px;
  font-weight: 500;
}

.host-contract-hero {
  height: 230px;
  padding-top: 34px;
  background: radial-gradient(circle at 50% 58%, rgba(0,0,0,.06) 0 60px, transparent 61px), linear-gradient(180deg, #21d8d4 0%, #5ce1d7 72%, #f5f5f5 100%);
  position: relative;
  overflow: hidden;
}

.host-contract-hero::before {
  content: "BD";
  position: absolute;
  left: 22px;
  top: 42px;
  color: rgba(255,255,255,.24);
  font-size: 122px;
  font-weight: 900;
  letter-spacing: 18px;
}

.host-contract-logo {
  width: 154px;
  height: 42px;
  margin: 0 auto 28px;
  border-radius: 22px;
  background: #fff;
  display: grid;
  place-items: center;
  color: #1a2733;
  font-size: 24px;
  font-weight: 900;
  position: relative;
  z-index: 2;
}

.host-contract-steps {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,.78);
  font-size: 20px;
  font-weight: 700;
}

.host-contract-steps span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.host-contract-steps b {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  color: #31d3ca;
  font-size: 16px;
}

.host-contract-steps .active {
  color: #fff;
}

.host-contract-steps i {
  width: 72px;
  border-top: 2px dashed rgba(255,255,255,.86);
}

.host-contract-card {
  margin: -68px 20px 18px;
  background: #fff;
  border-radius: 14px;
  padding: 20px 16px;
  position: relative;
  z-index: 3;
}

.host-contract-card.form {
  margin-top: 0;
  padding: 8px 16px;
}

.host-contract-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 18px;
}

.host-contract-radios {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.host-contract-radios label {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
  white-space: nowrap;
}

.host-contract-radios input {
  width: 20px;
  height: 20px;
  accent-color: #333;
}

.host-contract-card.form label {
  min-height: 72px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
}

.host-contract-card.form label:last-child {
  border-bottom: 0;
}

.host-contract-card.form span,
.host-license-row b {
  width: 136px;
  color: #111820;
  font-size: 20px;
  font-weight: 400;
}

.host-contract-card.form input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  text-align: right;
  color: #111820;
  font-size: 19px;
}

.host-contract-card.form input::placeholder {
  color: #c5c9d0;
}

.host-license-row {
  padding: 24px 0 28px;
  border-bottom: 1px solid #f0f0f0;
}

.host-license-row > div {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 14px;
}

.host-license-row em {
  color: #8e96a2;
  font-size: 13px;
  font-style: normal;
}

.host-license-upload {
  width: 235px;
  height: 158px;
  border: 0;
  border-radius: 4px;
  background: #f4f4f5;
  color: #8f97a2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 34px;
}

.host-license-upload span {
  width: auto;
  color: #8f97a2;
  font-size: 16px;
}

.host-contract-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  padding: 12px 22px 10px;
}

.host-contract-next {
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 28px;
  background: #27cdca;
  color: #fff;
  font-size: 22px;
}

.create-post-page {
  min-height: 100%;
  background: #fff;
  color: #111820;
  padding: 0 22px 92px;
  overflow-y: auto;
}

.create-post-head {
  height: 74px;
  display: grid;
  grid-template-columns: 38px 1fr 116px;
  align-items: center;
  gap: 8px;
}

.create-post-back {
  border: 0;
  background: transparent;
  color: #071421;
  font-size: 34px;
  line-height: 1;
}

.create-post-head h2 {
  font-size: 28px;
  font-weight: 900;
  color: #060b12;
}

.create-post-main {
  min-height: 520px;
  padding-top: 60px;
}

.create-post-cover {
  width: 110px;
  height: 110px;
  border: 1px solid #e4e6ea;
  border-radius: 8px;
  background: #f4f4f5;
  color: #c5c8cd;
  font-size: 42px;
  margin-bottom: 30px;
}

#postTitleInput,
#postContentInput {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111820;
}

#postTitleInput {
  height: 44px;
  font-size: 23px;
  margin-bottom: 4px;
}

#postContentInput {
  height: 300px;
  resize: none;
  font-size: 20px;
  line-height: 1.6;
}

#postTitleInput::placeholder,
#postContentInput::placeholder {
  color: #c1c6ce;
}

.create-post-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.create-post-tools button {
  border: 0;
  border-radius: 20px;
  background: #f4f4f5;
  color: #303842;
  min-height: 36px;
  padding: 0 14px;
  font-size: 17px;
  font-weight: 700;
}

.post-long-text.active {
  color: #16bebb;
}

.create-post-settings {
  border-top: 1px solid #f0f1f3;
}

.create-post-row {
  width: 100%;
  min-height: 74px;
  border: 0;
  border-bottom: 1px solid #f0f1f3;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  color: #101820;
  font-size: 20px;
  text-align: left;
}

.create-post-row span {
  font-size: 20px;
}

.create-post-row em {
  color: #b8bdc5;
  font-size: 17px;
  font-style: normal;
}

.create-post-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 76px;
  background: #fff;
  border-top: 1px solid #f3f4f6;
  display: grid;
  grid-template-columns: 58px 58px 1fr;
  align-items: center;
  gap: 8px;
  padding: 8px 22px 8px;
}

.post-draft-btn,
.post-preview-btn {
  border: 0;
  background: transparent;
  color: #7d8590;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 13px;
}

.post-draft-btn b,
.post-preview-btn b {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f2f3f5;
  display: grid;
  place-items: center;
  color: #68717d;
  font-size: 17px;
}

.post-submit-btn {
  height: 56px;
  border: 0;
  border-radius: 28px;
  background: #27cdca;
  color: #fff;
  font-size: 22px;
}

.create-event-page {
  min-height: 100%;
  background: #f5f5f6;
  color: #111820;
  padding: 0 20px 92px;
  overflow-y: auto;
}

.create-event-head {
  height: 82px;
  display: grid;
  grid-template-columns: 46px 1fr 116px;
  align-items: center;
  gap: 8px;
}

.create-event-head .create-close-btn {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #071421;
  font-size: 30px;
  line-height: 1;
}

.create-event-head h2 {
  text-align: center;
  font-size: 21px;
  font-weight: 500;
}

.create-event-tabs {
  height: 62px;
  padding: 5px;
  border-radius: 15px;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-bottom: 12px;
}

.create-event-tabs button {
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #27313c;
  font-size: 16px;
  font-weight: 700;
}

.create-event-tabs button b {
  font-size: 21px;
}

.create-event-tabs button.active {
  background: #58e0d2;
  color: #071421;
}

.create-event-main-card,
.create-event-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(31, 37, 46, 0.03);
}

.create-event-main-card {
  height: 548px;
  padding: 20px 22px;
  margin-bottom: 10px;
}

.create-event-media {
  width: 138px;
  height: 138px;
  border: 0;
  border-radius: 8px;
  background: #f4f4f5;
  color: #c4c9d0;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 22px;
}

.create-event-main-card input,
.create-event-main-card textarea {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111820;
}

#createTitleInput {
  height: 42px;
  color: #8f97a2;
  font-size: 22px;
  margin-bottom: 8px;
}

#createDescriptionInput {
  height: 205px;
  resize: none;
  color: #111820;
  font-size: 19px;
  line-height: 1.55;
}

#createTitleInput::placeholder,
#createDescriptionInput::placeholder {
  color: #aeb4bd;
}

.create-event-main-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.event-pill {
  justify-self: start;
  border: 0;
  border-radius: 22px;
  background: #f5f5f6;
  color: #1c2632;
  min-height: 42px;
  padding: 0 14px;
  font-size: 16px;
}

.event-pill.lock {
  grid-column: 1;
}

.event-scope-switch {
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  background: #f4f4f5;
}

.event-scope-switch button {
  border: 0;
  min-width: 55px;
  height: 40px;
  background: transparent;
  color: #8b94a0;
  font-size: 16px;
}

.event-scope-switch button.active {
  background: #27cdca;
  color: #fff;
}

.create-event-card {
  padding: 0 22px;
  margin-bottom: 10px;
}

.create-event-row {
  width: 100%;
  min-height: 70px;
  border: 0;
  border-bottom: 1px solid #f0f1f3;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #111820;
  text-align: left;
}

.create-event-row:last-child {
  border-bottom: 0;
}

.create-event-row span {
  font-size: 20px;
}

.create-event-row em {
  color: #c0c5cc;
  font-size: 18px;
  font-style: normal;
}

.create-event-row.qr b {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 6px;
  background: #f4f4f5;
  color: #c4c9d0;
  font-size: 28px;
  margin-right: 10px;
}

.create-event-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 76px;
  background: #fff;
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 14px;
  align-items: center;
  padding: 8px 20px;
}

.event-draft-btn {
  height: 56px;
  border: 1px solid #e8eaee;
  border-radius: 28px;
  background: #fff;
  color: #111820;
  font-size: 20px;
  font-weight: 700;
}

.create-event-bottom .create-publish-btn {
  height: 56px;
  border: 0;
  border-radius: 28px;
  background: #262626;
  color: #a78bfa;
  font-size: 21px;
  font-weight: 700;
}

.event-pro-page {
  min-height: 100%;
  background: linear-gradient(180deg, #bff7f5 0%, #eefafa 34%, #fff 70%);
  color: #1b2430;
  padding: 0 22px 86px;
  overflow-y: auto;
}

.event-pro-head {
  height: 82px;
  display: grid;
  grid-template-columns: 46px 1fr 116px;
  align-items: center;
  gap: 8px;
}

.event-pro-back {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #071421;
  font-size: 30px;
}

.event-pro-head h2 {
  text-align: center;
  font-size: 21px;
  font-weight: 500;
}

.event-pro-tabs {
  height: 62px;
  padding: 5px;
  border-radius: 13px;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.event-pro-tabs button {
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #27313c;
  font-size: 21px;
  font-weight: 900;
}

.event-pro-tabs small {
  font-size: 14px;
  margin-left: 4px;
}

.event-pro-tabs .active {
  background: #58e0d2;
}

.event-pro-hero {
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 38px 8px 28px;
}

.event-pro-hero h1 {
  font-size: 35px;
  font-weight: 900;
  margin-bottom: 10px;
}

.event-pro-hero p {
  color: #4d5866;
  font-size: 19px;
}

.event-pro-v {
  width: 92px;
  height: 92px;
  border-radius: 24px;
  background: radial-gradient(circle at 30% 20%, #eaffff, transparent 28%), linear-gradient(135deg, #0d2730, #1fe0d0 60%, #ffd945);
  color: #ffe040;
  display: grid;
  place-items: center;
  font-size: 56px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .24);
}

.event-pro-card {
  background: #fff;
  border-radius: 14px;
  padding: 34px 0 0;
  overflow: hidden;
}

.event-pro-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 0 26px;
}

.event-pro-benefits div {
  min-height: 166px;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #f7f7f7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.event-pro-benefits i {
  font-style: normal;
  color: #27cdca;
  font-size: 34px;
}

.event-pro-benefits b {
  font-size: 19px;
}

.event-pro-benefits span {
  color: #8b94a0;
  font-size: 15px;
  line-height: 1.35;
  text-align: center;
}

.event-pro-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  margin-bottom: 10px;
}

.event-pro-title span {
  width: 60px;
  height: 1px;
  background: #e3e6ea;
}

.event-pro-sub {
  text-align: center;
  color: #9aa2ad;
  font-size: 15px;
  margin-bottom: 20px;
}

.event-pro-table {
  display: grid;
  grid-template-columns: 31% 34% 35%;
  align-items: stretch;
}

.event-pro-table div {
  min-height: 68px;
  display: grid;
  place-items: center;
  background: #f7f7f8;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  padding: 8px;
}

.event-pro-table .head {
  background: #fff;
  font-size: 22px;
  min-height: 64px;
}

.event-pro-table .pro {
  background: #58e0d2;
  color: #12282a;
}

.event-pro-table .head.pro {
  border-radius: 12px 12px 0 0;
  font-size: 22px;
}

.event-pro-faq {
  padding: 28px 0 18px;
}

.event-pro-faq h3 {
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 24px;
}

.event-pro-faq p {
  font-size: 16px;
  margin: 16px 0 6px;
}

.event-pro-faq b {
  display: inline-block;
  background: #f3f5f7;
  border-radius: 4px;
  padding: 1px 4px;
  margin-right: 6px;
}

.event-pro-faq em {
  display: block;
  color: #111820;
  font-style: normal;
  font-size: 17px;
  line-height: 1.3;
}

.event-pro-faq div {
  text-align: center;
  color: #27313c;
  font-size: 14px;
  margin-top: 28px;
}

.event-pro-faq span {
  color: #16c7c5;
}

.event-pro-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  padding: 10px 22px;
}

.event-pro-claim {
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 28px;
  background: #262626;
  color: #a78bfa;
  font-size: 21px;
  font-weight: 900;
}

.profile-home-page {
  min-height: 100%;
  background: #f6f7f8;
  color: #eef4f4;
  overflow-y: auto;
  padding-bottom: 82px;
  position: relative;
}

.profile-home-hero {
  min-height: 414px;
  background: radial-gradient(circle at 75% 0%, rgba(255,255,255,.08), transparent 34%), linear-gradient(135deg, #263938, #506162);
  padding: 18px 20px 20px;
}

.profile-top-row {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.profile-menu-hamburger,
.profile-grid-btn,
.profile-refresh {
  border: 0;
  background: rgba(255,255,255,.12);
  color: #fff;
  border-radius: 20px;
  min-width: 36px;
  height: 36px;
  font-size: 19px;
}

.profile-tip {
  background: rgba(0,0,0,.45);
  color: #fff;
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 13px;
  flex: 1;
  text-align: center;
}

.profile-more-mask {
  position: absolute;
  inset: 0;
  z-index: 70;
  background: rgba(10, 18, 20, 0.62);
  backdrop-filter: blur(1px);
}

.profile-more-drawer {
  position: absolute;
  z-index: 71;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(78%, 304px);
  background: linear-gradient(180deg, #fbfbfc 0%, #f5f6f7 100%);
  border-radius: 0 24px 24px 0;
  padding: 72px 14px 92px;
  color: #101418;
  box-shadow: 18px 0 42px rgba(0,0,0,0.22);
  animation: profile-more-in 0.22s ease-out;
  overflow-y: auto;
  overscroll-behavior: contain;
}

@keyframes profile-more-in {
  from { transform: translateX(-36px); opacity: 0.2; }
  to { transform: translateX(0); opacity: 1; }
}

.profile-more-groups {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile-more-card {
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(25, 35, 45, 0.05);
}

.profile-more-card button {
  width: 100%;
  min-height: 64px;
  height: auto;
  border: 0;
  background: #fff;
  color: #11161b;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  font-size: 17px;
  text-align: left;
}

.profile-more-card button + button {
  border-top: 1px solid rgba(240,241,242,0.9);
}

.profile-more-card i {
  width: 28px;
  height: 28px;
  color: #34383d;
  font-size: 23px;
  font-style: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.profile-more-card span {
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.profile-more-card small {
  margin-left: 4px;
  color: #8e949a;
  font-size: 12px;
  line-height: 1.25;
  max-width: 74px;
}

.profile-more-card em {
  margin-left: auto;
  min-width: 58px;
  height: 29px;
  border-radius: 16px;
  background: #23ddd6;
  color: #fff;
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.profile-more-bottom {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 22px;
  display: flex;
  justify-content: space-around;
  gap: 24px;
}

.profile-more-bottom button {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: #eef0f3;
  color: #60666c;
  font-size: 24px;
  box-shadow: 0 8px 22px rgba(28, 36, 44, 0.08);
}

.profile-sort-mask {
  position: absolute;
  inset: 0;
  z-index: 82;
  background: rgba(0,0,0,0.64);
}

.profile-sort-sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 83;
  width: 100%;
  max-height: 42%;
  min-height: 318px;
  padding: 24px 27px 38px;
  border-radius: 14px 14px 0 0;
  background: #fff;
  color: #11161b;
  box-shadow: 0 -12px 30px rgba(0,0,0,0.12);
}

.profile-sort-title {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  margin-bottom: 27px;
}

.profile-sort-title h3 {
  margin: 0;
  text-align: center;
  font-size: 20px;
  font-weight: 800;
}

.profile-sort-close {
  border: 0;
  background: transparent;
  color: #c9ccd0;
  font-size: 40px;
  font-weight: 200;
  line-height: 1;
}

.profile-sort-list {
  display: grid;
  gap: 10px;
}

.profile-sort-item {
  height: 49px;
  border-radius: 4px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  font-size: 18px;
}

.profile-sort-item div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b7bbc0;
}

.profile-sort-item button {
  border: 0;
  background: transparent;
  color: #a7abb0;
  font-size: 16px;
}

.profile-sort-item i {
  color: #c7cacf;
  font-style: normal;
  font-size: 24px;
}

.profile-card-type {
  border: 0;
  border-radius: 18px;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 0 10px;
  height: 34px;
  font-size: 12px;
}

.profile-user-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.profile-home-avatar {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 2px solid #fff;
  position: relative;
}

.profile-home-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.profile-home-avatar i {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #4aa8ff;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 13px;
}

.profile-user-row h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.profile-star-badge {
  background: #eaf0ff;
  color: #6680b8;
  border-radius: 10px;
  padding: 2px 8px;
  font-size: 13px;
  font-weight: 700;
}

.profile-bio {
  margin-top: 18px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.profile-medal {
  margin-top: 12px;
  border: 0;
  border-radius: 15px;
  background: rgba(255,255,255,.22);
  color: #fff;
  padding: 6px 12px;
}

.profile-counts {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 20px;
}

.profile-counts div b {
  display: block;
  font-size: 22px;
}

.profile-counts div span {
  color: rgba(255,255,255,.82);
}

.profile-counts button:nth-of-type(1) {
  margin-left: auto;
  border: 1px solid rgba(255,255,255,.75);
  background: transparent;
  color: #fff;
  border-radius: 22px;
  height: 40px;
  padding: 0 24px;
  font-size: 15px;
}

.profile-asset-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.profile-asset-row button {
  min-height: 70px;
  border: 0;
  border-radius: 10px;
  background: rgba(255,255,255,.14);
  color: #fff;
  text-align: left;
  padding: 12px;
}

.profile-asset-row b,
.profile-asset-row span {
  display: block;
}

.profile-asset-row b {
  font-size: 16px;
}

.profile-asset-row span {
  color: rgba(255,255,255,.78);
  font-size: 12px;
  line-height: 1.35;
}

.profile-content-panel {
  margin-top: -1px;
  background: #fff;
  color: #111820;
  border-radius: 16px 16px 0 0;
  min-height: 420px;
}

.profile-tabs {
  height: 52px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) 38px;
  align-items: center;
  border-bottom: 1px solid #edf0f2;
}

.profile-tabs button {
  height: 52px;
  border: 0;
  background: transparent;
  color: #8f97a2;
  font-size: 16px;
  position: relative;
  white-space: nowrap;
}

.profile-tabs button.active {
  color: #111820;
  font-weight: 700;
}

.profile-tabs button.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 7px;
  width: 34px;
  height: 3px;
  border-radius: 2px;
  background: #27cdca;
  transform: translateX(-50%);
}

.profile-sub-tabs {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  color: #8f97a2;
  overflow-x: auto;
  white-space: nowrap;
}

.profile-sub-tabs button {
  border: 0;
  background: transparent;
  font-size: 15px;
  color: #8f97a2;
  flex-shrink: 0;
}

.profile-sub-tabs button.active {
  color: #111820;
}

.profile-sub-tabs .private {
  margin-left: auto;
  background: #f3f3f3;
  border-radius: 14px;
  padding: 4px 11px;
  color: #333;
}

.profile-sub-tabs .private.active {
  background: #e8fbfb;
  color: #1bbfbd;
  font-weight: 700;
}

.profile-tab-body {
  min-height: 308px;
  background: #fafafa;
  display: flex;
  flex-direction: column;
}

.profile-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #c1c7cf;
  font-size: 16px;
}

.profile-empty div {
  color: #d8dce1;
  font-size: 58px;
  margin-bottom: 12px;
}

.profile-content-item {
  margin: 12px 18px 0;
  border-radius: 10px;
  background: #fff;
  padding: 14px;
  box-shadow: 0 1px 3px rgba(16, 24, 32, .04);
}

.profile-content-item b {
  font-size: 17px;
}

.profile-content-item p {
  margin-top: 6px;
  color: #8f97a2;
}

.participation-page {
  min-height: 100%;
  background: #f5f5f5;
  color: #111820;
  overflow-y: auto;
}

.participation-head {
  height: 84px;
  background: #fff;
  display: grid;
  grid-template-columns: 126px 1fr 116px;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
}

.participation-left {
  width: 116px;
  height: 44px;
  border: 1px solid #eceff2;
  border-radius: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.participation-left button {
  border: 0;
  background: #fff;
  color: #35404d;
  font-size: 30px;
}

.participation-type-tabs {
  justify-self: center;
  width: 166px;
  height: 44px;
  border-radius: 4px;
  overflow: hidden;
  background: #f4f4f5;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.participation-type-tabs button {
  border: 0;
  background: transparent;
  color: #111820;
  font-size: 20px;
  font-weight: 800;
}

.participation-type-tabs button.active {
  background: #27cdca;
  color: #fff;
}

.participation-pay-tabs {
  height: 62px;
  background: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.participation-pay-tabs button {
  height: 62px;
  border: 0;
  background: transparent;
  color: #8f97a2;
  font-size: 20px;
  position: relative;
}

.participation-pay-tabs button.active {
  color: #111820;
}

.participation-pay-tabs button.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: #27cdca;
  transform: translateX(-50%);
}

.participation-filter-tabs {
  height: 52px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  overflow-x: auto;
}

.participation-filter-tabs button {
  flex: 0 0 auto;
  min-width: 78px;
  height: 38px;
  border: 0;
  border-radius: 20px;
  background: #f5f6f6;
  color: #8f97a2;
  font-size: 17px;
}

.participation-filter-tabs button.active {
  background: #d7fbf8;
  color: #203039;
}

.participation-body {
  min-height: calc(100% - 198px);
  display: flex;
  flex-direction: column;
}

.participation-empty {
  flex: 1;
  min-height: 610px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #c0c6ce;
  font-size: 16px;
}

.participation-empty div {
  color: #d8dce1;
  font-size: 62px;
  margin-bottom: 14px;
}

.participation-item {
  margin: 12px 16px 0;
  border-radius: 12px;
  background: #fff;
  padding: 16px;
}

.participation-item b {
  font-size: 18px;
}

.participation-item p {
  color: #8f97a2;
  margin-top: 6px;
}

.wallet-page {
  min-height: 100%;
  background: linear-gradient(180deg, #bcf4f1 0%, #f4f4f4 42%);
  color: #111820;
  padding: 0 22px 24px;
  overflow-y: auto;
}

.wallet-head {
  height: 88px;
  display: grid;
  grid-template-columns: 44px 1fr 116px;
  align-items: center;
  gap: 8px;
}

.wallet-back {
  border: 0;
  background: transparent;
  color: #071421;
  font-size: 44px;
  line-height: 1;
}

.wallet-head h2 {
  text-align: center;
  font-size: 22px;
  font-weight: 500;
}

.wallet-summary-card {
  background: #244f52;
  border-radius: 14px;
  color: #fff;
  padding: 28px 22px 26px;
  margin-bottom: 16px;
}

.wallet-summary-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
}

.wallet-summary-card strong {
  display: block;
  font-size: 44px;
  line-height: 1;
  margin-bottom: 28px;
}

.wallet-summary-line {
  height: 1px;
  background: rgba(255,255,255,.2);
  margin-bottom: 18px;
}

.wallet-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.wallet-summary-grid span,
.wallet-summary-grid b {
  display: block;
}

.wallet-summary-grid span {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}

.wallet-summary-grid b {
  font-size: 26px;
}

.wallet-income-card,
.wallet-bill-row {
  background: #fff;
  border-radius: 14px;
}

.wallet-income-card {
  padding: 12px 0;
  margin-bottom: 16px;
}

.wallet-income-row {
  width: 100%;
  min-height: 96px;
  border: 0;
  background: transparent;
  display: grid;
  grid-template-columns: 44px 1fr auto 18px;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  text-align: left;
}

.wallet-income-row i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #19c8c4;
  font-style: normal;
  font-size: 28px;
}

.wallet-income-row span b,
.wallet-income-row span em {
  display: block;
}

.wallet-income-row span b {
  font-size: 22px;
  color: #111820;
  font-weight: 500;
}

.wallet-income-row span em {
  margin-top: 5px;
  color: #8f97a2;
  font-size: 14px;
  font-style: normal;
}

.wallet-income-row strong {
  color: #111820;
  font-size: 25px;
  font-weight: 500;
}

.wallet-income-row small {
  color: #b9bec5;
  font-size: 28px;
}

.wallet-bill-row {
  width: 100%;
  min-height: 66px;
  border: 0;
  padding: 0 16px;
  text-align: left;
  color: #111820;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wallet-bill-row::first-letter {
  color: #a78bfa;
}

.wallet-bill-row span {
  color: #aeb4bc;
  font-weight: 400;
}

.wallet-pending-page,
.wallet-withdraw-page {
  min-height: 100%;
  background: #f5f5f5;
  color: #111820;
  overflow-y: auto;
  padding-bottom: 82px;
}

.wallet-sub-head {
  height: 74px;
  background: #fff;
  display: grid;
  grid-template-columns: 44px 1fr 116px;
  align-items: center;
  padding: 0 16px;
}

.wallet-sub-back {
  border: 0;
  background: transparent;
  color: #071421;
  font-size: 40px;
  line-height: 1;
}

.wallet-sub-head h2 {
  text-align: center;
  font-size: 22px;
  font-weight: 500;
}

.wallet-pending-tip {
  display: inline-block;
  margin: 8px 20px 0;
  padding: 10px 18px;
  border-radius: 22px;
  background: #e1fbf8;
  color: #18c8c4;
  font-size: 13px;
}

.wallet-pending-hero {
  text-align: center;
  padding: 26px 0 42px;
}

.wallet-pending-hero p {
  color: #222a34;
  font-size: 21px;
  margin-bottom: 12px;
}

.wallet-pending-hero strong {
  font-size: 46px;
  color: #303030;
}

.wallet-income-detail-head {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
}

.wallet-income-detail-head h3 {
  font-size: 22px;
  font-weight: 500;
}

.wallet-income-detail-head button {
  border: 0;
  background: #fff;
  border-radius: 22px;
  padding: 10px 18px;
  color: #222a34;
  font-size: 17px;
}

.wallet-sub-empty {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #c0c6ce;
}

.wallet-sub-empty div {
  color: #d8dce1;
  font-size: 62px;
  margin-bottom: 14px;
}

.withdraw-warning {
  margin: 14px 20px 16px;
  border-radius: 8px;
  background: #ffe0d9;
  color: #ff3b30;
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-size: 15px;
}

.withdraw-summary,
.withdraw-card {
  margin: 0 20px 16px;
  background: #fff;
  border-radius: 14px;
}

.withdraw-summary {
  padding: 24px 22px 18px;
  background: #e3f8f6;
}

.withdraw-summary p {
  color: #5b6978;
  font-size: 18px;
}

.withdraw-record-btn {
  float: right;
  border: 0;
  border-radius: 22px;
  background: #fff;
  min-height: 42px;
  padding: 0 16px;
  color: #3f4b58;
  font-size: 16px;
}

.withdraw-summary strong {
  clear: both;
  display: block;
  font-size: 42px;
  margin: 32px 0 28px;
}

.withdraw-summary div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(0,0,0,.05);
  padding-top: 16px;
}

.withdraw-summary span {
  color: #5b6978;
  font-size: 16px;
}

.withdraw-summary b {
  float: right;
  color: #111820;
}

.withdraw-card {
  padding: 24px 22px;
}

.withdraw-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
}

.withdraw-input-row {
  height: 72px;
  border-radius: 8px;
  background: #fafafa;
  display: grid;
  grid-template-columns: 32px 1fr 92px;
  align-items: center;
  padding: 0 18px;
  margin-bottom: 28px;
}

.withdraw-input-row span {
  font-size: 28px;
}

.withdraw-input-row input {
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 22px;
}

.withdraw-input-row input::placeholder {
  color: #c2c6cd;
}

.withdraw-all-btn {
  border: 0;
  background: transparent;
  color: #18c8c4;
  font-size: 17px;
}

.withdraw-disabled-tip {
  display: grid;
  grid-template-columns: 28px 1fr;
  grid-template-rows: auto auto;
  gap: 4px 8px;
  padding-bottom: 26px;
  border-bottom: 1px solid #eef0f3;
}

.withdraw-disabled-tip b {
  grid-row: 1 / span 2;
  color: #21c8c3;
}

.withdraw-disabled-tip span {
  font-size: 19px;
}

.withdraw-disabled-tip em {
  color: #8f97a2;
  font-style: normal;
}

.withdraw-account-row {
  width: 100%;
  height: 74px;
  border: 0;
  border-bottom: 1px solid #eef0f3;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #111820;
  font-size: 19px;
}

.withdraw-account-row span {
  color: #b9bec5;
  font-size: 28px;
}

.withdraw-desc p {
  color: #8f97a2;
  font-size: 16px;
  margin: 18px 0 10px;
}

.withdraw-desc span {
  display: block;
  color: #8f97a2;
  font-size: 16px;
  line-height: 1.7;
  margin-top: 8px;
}

.withdraw-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  padding: 10px 22px;
}

.withdraw-submit-btn {
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 28px;
  background: #27cdca;
  color: #fff;
  font-size: 22px;
}

.wallet-bills-page {
  min-height: 100%;
  background: #f4f6f9;
  color: #111820;
  overflow-y: auto;
  position: relative;
}

.wallet-bills-tabs {
  height: 76px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
}

.wallet-bills-tabs button {
  border: 0;
  border-radius: 22px;
  background: #fff;
  min-width: 82px;
  height: 44px;
  color: #111820;
  font-size: 18px;
}

.wallet-bills-tabs button.active {
  background: #27cdca;
  color: #fff;
}

.wallet-bills-tabs .bill-filter-btn {
  margin-left: auto;
  min-width: 100px;
}

.wallet-bills-body {
  min-height: calc(100% - 150px);
  display: flex;
  flex-direction: column;
}

.wallet-bills-empty {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #c0c6ce;
}

.wallet-bills-empty div {
  color: #d8dce1;
  font-size: 62px;
  margin-bottom: 14px;
}

.wallet-bills-empty p {
  margin-bottom: 14px;
  font-size: 16px;
}

.wallet-bills-empty button {
  border: 1px solid #d8dce1;
  background: transparent;
  color: #333;
  border-radius: 22px;
  min-width: 104px;
  height: 44px;
  font-size: 16px;
}

.bill-item {
  margin: 12px 16px 0;
  border-radius: 10px;
  background: #fff;
  padding: 16px;
  display: flex;
  justify-content: space-between;
}

.bill-date-mask {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.62);
  z-index: 50;
}

.bill-date-sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 51;
  height: 404px;
  background: #fff;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
}

.bill-date-sheet-head {
  height: 76px;
  display: grid;
  grid-template-columns: 90px 1fr 90px;
  align-items: center;
  padding: 0 18px;
}

.bill-date-sheet-head h3 {
  text-align: center;
  font-size: 21px;
  font-weight: 800;
}

.bill-date-sheet-head button {
  border: 0;
  background: transparent;
  color: #27cdca;
  font-size: 18px;
}

.bill-date-sheet-head .bill-date-cancel {
  color: #8f97a2;
  text-align: left;
}

.bill-date-sheet-head .bill-date-confirm {
  text-align: right;
}

.bill-date-wheel {
  height: 260px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
}

.bill-date-wheel::before,
.bill-date-wheel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: #27cdca;
}

.bill-date-wheel::before { top: 108px; }
.bill-date-wheel::after { top: 172px; }

.bill-date-wheel div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  color: #d7dbe0;
  font-size: 22px;
}

.bill-date-wheel b {
  color: #333;
  font-size: 22px;
}

.bill-filter-mask {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.62);
  z-index: 60;
}

.bill-filter-sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 61;
  background: #fff;
  border-radius: 12px 12px 0 0;
  padding: 24px 20px 10px;
}

.bill-filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.bill-filter-head h3 {
  font-size: 20px;
  font-weight: 500;
}

.bill-filter-close {
  border: 0;
  background: transparent;
  color: #b8bec6;
  font-size: 42px;
  line-height: 1;
}

.bill-filter-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.bill-filter-quick button {
  height: 54px;
  border: 0;
  border-radius: 8px;
  background: #f6f7f7;
  color: #3f4b58;
  font-size: 20px;
}

.bill-filter-quick button.active {
  background: #d9fbf8;
  color: #16c7c5;
}

.bill-filter-sheet h4 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 20px;
}

.bill-amount-row {
  display: grid;
  grid-template-columns: 1fr 44px 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
}

.bill-amount-row input {
  height: 62px;
  border: 0;
  border-radius: 8px;
  background: #f6f7f7;
  outline: 0;
  padding: 0 16px;
  font-size: 17px;
}

.bill-amount-row input::placeholder {
  color: #c0c6ce;
}

.bill-amount-row span {
  text-align: center;
  color: #c0c6ce;
  font-size: 28px;
}

.bill-scene-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 34px;
  column-gap: 18px;
  margin-bottom: 34px;
}

.bill-scene-grid button {
  border: 0;
  background: transparent;
  color: #111820;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 17px;
}

.bill-scene-grid i {
  width: 66px;
  height: 66px;
  border-radius: 12px;
  background: #f6f7f7;
  color: #26323d;
  display: grid;
  place-items: center;
  font-size: 30px;
  font-style: normal;
}

.bill-scene-grid button.active i {
  background: #d9fbf8;
  color: #16c7c5;
}

.bill-filter-actions {
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 10px;
  align-items: center;
  padding-top: 12px;
}

.bill-filter-actions button {
  height: 56px;
  border-radius: 28px;
  font-size: 20px;
}

.bill-filter-reset {
  border: 1px solid #eef0f3;
  background: #fff;
  color: #111820;
}

.bill-filter-confirm {
  border: 0;
  background: #27cdca;
  color: #fff;
}

.gift-space-page,
.gift-ranking-page {
  min-height: 100%;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at 60% 40%, rgba(255,255,255,.4), transparent 18%), linear-gradient(180deg, #87939e, #bddce5);
}

.gift-space-page::before,
.gift-ranking-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.9) 0 2px, transparent 3px);
  background-size: 44px 44px;
  opacity: .65;
}

.gift-space-head,
.gift-rank-top {
  position: relative;
  z-index: 2;
  height: 78px;
  display: grid;
  grid-template-columns: 120px 1fr 116px;
  align-items: center;
  padding: 0 20px;
}

.gift-space-head h2,
.gift-rank-top h2 {
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  text-decoration: underline;
}

.gift-left {
  height: 44px;
  border-radius: 22px;
  background: rgba(0,0,0,.22);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.gift-left button {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 34px;
}

.gift-profile {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 20px;
}

.gift-profile img {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}

.gift-profile b,
.gift-profile span {
  display: block;
}

.gift-profile b {
  font-size: 22px;
}

.gift-profile span {
  color: rgba(255,255,255,.86);
  font-size: 16px;
}

.gift-gender-btn,
.gift-rank-entry {
  position: relative;
  z-index: 2;
  border: 0;
  border-radius: 17px;
  background: rgba(0,0,0,.35);
  color: #fff;
  height: 34px;
  padding: 0 12px;
  font-size: 15px;
}

.gift-gender-btn { margin: 14px 0 0 20px; }
.gift-rank-entry { position: absolute; right: 20px; top: 106px; }

.gift-character {
  position: absolute;
  left: 150px;
  right: 0;
  top: 145px;
  bottom: 70px;
  background: radial-gradient(circle at 50% 12%, #f8ffff 0 50px, transparent 52px), linear-gradient(180deg, rgba(238,255,255,.95), rgba(209,255,255,.55));
  clip-path: polygon(48% 0, 61% 13%, 69% 40%, 86% 100%, 18% 100%, 34% 40%, 38% 13%);
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.18));
  opacity: .9;
}

.gift-dynamic-tabs {
  position: absolute;
  z-index: 2;
  left: 20px;
  top: 392px;
  display: flex;
  gap: 14px;
}

.gift-dynamic-tabs button,
.gift-bottom-actions button {
  border: 0;
  border-radius: 22px;
  height: 44px;
  padding: 0 18px;
  color: #16c7c5;
  background: #e8ffff;
  font-size: 16px;
}

.gift-dynamic-tabs button.active,
.gift-bottom-actions .gift-invite-btn {
  background: #27cdca;
  color: #fff;
}

.gift-assist-list {
  position: absolute;
  z-index: 2;
  left: 20px;
  top: 456px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.gift-assist-item {
  display: grid;
  grid-template-columns: 42px auto;
  grid-template-rows: auto auto;
  gap: 4px 12px;
  align-items: center;
}

.gift-assist-item img {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.gift-assist-item span {
  color: #2f3a45;
  font-size: 15px;
}

.gift-assist-item b {
  border-radius: 6px;
  background: rgba(51,64,74,.48);
  color: #ffe233;
  padding: 8px 10px;
  font-size: 16px;
}

.gift-bottom-actions {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 14px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px;
}

.gift-bottom-actions .gift-record-entry {
  background: rgba(225,255,255,.65);
  border: 1px solid #27cdca;
}

.gift-record-page {
  min-height: 100%;
  background: #f4f6f9;
  color: #111820;
}

.gift-record-tabs {
  height: 44px;
  background: #fff;
  display: flex;
  gap: 34px;
  padding: 0 16px;
}

.gift-record-tabs button {
  border: 0;
  background: transparent;
  font-size: 19px;
  color: #4c5663;
  position: relative;
}

.gift-record-tabs button.active {
  color: #111820;
}

.gift-record-tabs button.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 3px;
  border-radius: 2px;
  background: #27cdca;
}

.gift-empty {
  min-height: 650px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #c0c6ce;
}

.gift-empty div {
  color: #d8dce1;
  font-size: 62px;
  margin-bottom: 14px;
}

.gift-rank-panel {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  height: 684px;
  background: linear-gradient(180deg, #fff2bc, #fff 22%);
  border-radius: 16px 16px 0 0;
  color: #111820;
  text-align: center;
  padding-top: 30px;
}

.gift-rank-panel h3 {
  font-size: 22px;
}

.gift-trophy {
  position: absolute;
  right: 38px;
  top: 14px;
  font-size: 76px;
  opacity: .4;
}

.gift-profile.rank,
.gift-gender-btn.rank {
  z-index: 4;
}

.badges-page {
  min-height: 100%;
  background: radial-gradient(circle at 70% 10%, rgba(255,255,255,.08), transparent 18%), linear-gradient(180deg, #25231f, #070809 72%);
  color: #fff;
  overflow-y: auto;
  padding: 0 22px 40px;
}

.badges-head {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.badges-hero {
  position: relative;
  min-height: 184px;
}

.badges-hero h1 {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 2px;
  margin: 8px 0 12px;
}

.badges-hero p {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #f4efe5;
  font-size: 16px;
}

.badges-hero img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.real-medal {
  position: absolute;
  right: 28px;
  top: 32px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #fff0bd, #c59642 54%, #6d451b 100%);
  color: #fff0bd;
  display: grid;
  place-items: center;
  font-size: 32px;
  font-weight: 900;
  text-shadow: 0 2px 2px rgba(0,0,0,.28);
  box-shadow: 0 10px 24px rgba(0,0,0,.38);
}

.real-medal::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  bottom: 14px;
  height: 24px;
  border-radius: 4px;
  background: linear-gradient(90deg, #9b6a2a, #f7d082, #9b6a2a);
  transform: rotate(-6deg);
}

.badges-panel {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 28px 20px 30px;
}

.badges-panel h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #f4efe5;
  font-size: 22px;
  margin-bottom: 34px;
}

.badges-panel h2 span {
  width: 74px;
  height: 1px;
  background: rgba(255,255,255,.16);
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 44px;
  column-gap: 16px;
}

.badge-card {
  text-align: center;
  color: #fff;
}

.badge-card i {
  width: 78px;
  height: 78px;
  margin: 0 auto 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f4f4f4, #9a9a9a 65%, #555 100%);
  display: grid;
  place-items: center;
  color: #d8d8d8;
  font-style: normal;
  font-size: 34px;
  filter: grayscale(1);
  opacity: .78;
}

.badge-card b {
  display: inline-block;
  margin-top: -18px;
  border-radius: 3px;
  background: rgba(255,255,255,.28);
  color: #f3f3f3;
  padding: 3px 8px;
  font-size: 12px;
}

.badge-card p {
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
  margin-top: 10px;
}

.edit-profile-page {
  min-height: 100%;
  background: #f4f4f4;
  color: #111820;
  overflow-y: auto;
  padding: 0 20px 88px;
}

.edit-profile-head {
  height: 82px;
  display: grid;
  grid-template-columns: 44px 1fr 116px;
  align-items: center;
}

.edit-profile-back {
  border: 0;
  background: transparent;
  color: #071421;
  font-size: 42px;
  line-height: 1;
}

.edit-profile-head h2 {
  text-align: center;
  font-size: 22px;
  font-weight: 500;
}

.edit-avatar-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 14px auto 36px;
}

.edit-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.edit-avatar-wrap button {
  position: absolute;
  right: -2px;
  bottom: 0;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: #3c424a;
  color: #fff;
}

.edit-profile-card {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 16px;
  padding: 0 20px;
}

.edit-profile-card label {
  min-height: 60px;
  display: grid;
  grid-template-columns: 130px 1fr 34px;
  align-items: center;
  border-bottom: 1px solid #eef0f3;
}

.edit-profile-card label:last-child {
  border-bottom: 0;
}

.edit-profile-card span {
  color: #8f97a2;
  font-size: 20px;
}

.edit-profile-card input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111820;
  font-size: 20px;
}

.edit-profile-card input::placeholder {
  color: #c1c6cd;
}

.edit-profile-card b {
  color: #d0d4da;
  font-size: 28px;
  font-weight: 400;
  text-align: right;
}

.copy-profile-id {
  border: 0;
  background: transparent;
  color: #16c7c5;
  font-size: 17px;
}

.edit-profile-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  padding: 10px 22px;
}

.edit-profile-save {
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 28px;
  background: #27cdca;
  color: #fff;
  font-size: 22px;
}

.profile-share-mask {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .62);
  z-index: 80;
}

.profile-share-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 81;
  background: #fff;
  color: #111820;
  border-radius: 12px 12px 0 0;
  padding: 24px 20px 8px;
}

.profile-share-title {
  height: 36px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  margin-bottom: 26px;
}

.profile-share-title h3 {
  text-align: center;
  font-size: 21px;
  font-weight: 500;
}

.profile-share-close {
  border: 0;
  background: transparent;
  color: #333;
  font-size: 36px;
  line-height: 1;
}

.profile-share-row {
  display: flex;
  gap: 28px;
  border-bottom: 1px solid #eef0f3;
  padding-bottom: 18px;
  margin-bottom: 16px;
}

.profile-share-row.secondary {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.profile-share-action {
  border: 0;
  background: transparent;
  min-width: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #4b5563;
  font-size: 14px;
}

.profile-share-action i {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f7f8f9;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 30px;
}

.profile-share-row.primary .profile-share-action i {
  background: #15c75b;
  color: #fff;
}


/* Restore original main home UI */
.home-page {
  background: #fff;
  overflow-y: auto;
  padding-bottom: 82px;
}

.home-top {
  background: linear-gradient(180deg, #b8f3f0 0%, #d6f5f3 100%);
  padding: 30px 20px 16px;
}

.home-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.home-title {
  font-size: 28px;
  font-weight: 900;
  color: #1c2833;
}

.home-search {
  height: 45px;
  border-radius: 24px;
  background: rgba(255,255,255,.86);
  display: flex;
  align-items: center;
  padding: 0 18px;
  color: #b0b8c2;
  font-size: 18px;
  margin-bottom: 16px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.hot-card,
.chat-card,
.alliance-card {
  background: rgba(255,255,255,.55);
  border-radius: 8px;
}

.hot-card {
  padding: 18px 15px;
  min-height: 202px;
}

.hot-card h4 {
  font-size: 28px;
  font-weight: 900;
  color: #071421;
  text-shadow: 2px 2px 0 #13d5d3;
  margin-bottom: 18px;
}

.hot-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hot-card li {
  display: flex;
  justify-content: space-between;
  font-size: 17px;
  color: #111820;
}

.hot-card em {
  color: #8c95a0;
  font-style: normal;
  font-size: 16px;
}

.hot-card i {
  color: #fa283f;
  font-style: normal;
}

.hero-right {
  display: grid;
  gap: 18px;
}

.chat-card,
.alliance-card {
  min-height: 94px;
  padding: 20px 16px;
}

.chat-card b,
.alliance-card b {
  display: block;
  font-size: 21px;
  margin-bottom: 6px;
}

.chat-card p,
.alliance-card p {
  color: #8c95a0;
  font-size: 14px;
}

.chat-card button {
  margin-top: 14px;
  border: 0;
  border-radius: 18px;
  background: #202020;
  color: #26d4cf;
  height: 34px;
  padding: 0 17px;
  font-weight: 800;
}

.home-tabs {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 22px 20px 12px;
  overflow-x: auto;
  font-size: 20px;
  background: #fff;
}

.home-tabs button,
.home-filters button {
  border: 0;
  background: transparent;
  color: #7c8590;
  font-size: 20px;
  white-space: nowrap;
}

.home-tabs .active {
  color: #111820;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: #20d2cf;
  text-decoration-thickness: 4px;
  text-underline-offset: 4px;
}

.home-filters {
  display: flex;
  gap: 16px;
  padding: 0 20px 18px;
  background: #fff;
}

.home-filters button {
  height: 38px;
  border-radius: 19px;
  background: #f7f7f7;
  color: #222a34;
  padding: 0 16px;
  font-size: 17px;
}

.home-event-list.restored {
  padding: 0 32px 20px;
}

.home-feature-event {
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 26, 31, .06);
  padding: 0 0 18px;
}

.home-feature-event h3 {
  font-size: 20px;
  line-height: 1.35;
  padding-top: 8px;
  margin-bottom: 8px;
}

.home-feature-event p {
  color: #13c8c4;
  margin-bottom: 12px;
}

.feature-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.feature-meta b {
  background: #27cdca;
  color: #fff;
  border-radius: 2px;
  padding: 3px 8px;
  font-size: 14px;
}

.feature-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 16px;
}

.feature-images img {
  width: 100%;
  height: 122px;
  object-fit: cover;
}

.feature-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #5d6672;
}

.feature-bottom .join-btn {
  border-radius: 24px;
  background: #202020;
  color: #27e1df;
  min-width: 98px;
  height: 46px;
  font-size: 19px;
  font-weight: 900;
}

/* Restore original messages UI */
.messages-page {
  background: #fff;
  padding: 0 20px 82px;
}

.messages-header {
  height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 116px;
  align-items: center;
  gap: 8px;
}

.messages-header h2 {
  grid-column: 1 / 4;
  grid-row: 1;
  text-align: center;
  font-size: 23px;
  font-weight: 500;
}

.message-tool-btn {
  grid-column: 2;
  grid-row: 1;
  z-index: 1;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: #e7fbfa;
  color: #26323d;
  font-size: 16px;
}

.messages-header .mini-btn {
  grid-column: 3;
  grid-row: 1;
  z-index: 1;
}

.message-list {
  margin-top: 18px;
}

.messages-page .list-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 28px;
}

.messages-page .icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 25px;
}

.messages-page .green { background: #c8f8e1; color: #17c978; }
.messages-page .red { background: #ffe0e0; color: #ff4858; }
.messages-page .blue { background: #dfeaff; color: #2f78ff; }

.messages-page .list-item h4 {
  font-size: 20px;
  color: #1f252d;
  font-weight: 500;
}

.messages-page .list-item p {
  margin-top: 4px;
  color: #9ca4ae;
  font-size: 17px;
}

/* Fix discover feed image height back to normal card size */
.feed-card > img {
  width: 100%;
  height: 210px;
  display: block;
  object-fit: cover;
  background: #e8edf2;
}

.feed-card:nth-child(2n) > img {
  height: 250px;
}

.feed-card:nth-child(3n) > img {
  height: 180px;
}

.feed-card-body {
  padding: 9px 10px 10px;
}

.feed-card-body h3 {
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 6px;
  font-weight: 600;
}

.feed-card-body p {
  color: #8f97a2;
  font-size: 12px;
}

.home-feature-event + .home-feature-event {
  margin-top: 18px;
}

.level-benefits-page {
  min-height: 100%;
  background: linear-gradient(180deg, #d4faf6 0%, #eff8f8 36%, #f7f7f7 100%);
  color: #071421;
  overflow-y: auto;
  padding: 0 32px 26px;
}

.level-head {
  height: 86px;
  display: grid;
  grid-template-columns: 116px 1fr 124px;
  align-items: center;
  gap: 8px;
}

.level-left {
  height: 44px;
  border-radius: 22px;
  background: rgba(255,255,255,.7);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.level-left button {
  border: 0;
  background: transparent;
  color: #26323d;
  font-size: 34px;
}

.level-medal-chip {
  justify-self: center;
  border: 0;
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  height: 36px;
  padding: 0 12px;
  color: #4b5563;
}

.level-progress-card {
  height: 102px;
  border-radius: 8px;
  background: linear-gradient(100deg, #c0d4f1, #e6f1ff);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  margin-top: 48px;
  color: #596386;
  position: relative;
}

.level-progress-card::after {
  content: "";
  position: absolute;
  left: 44%;
  bottom: -10px;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-top: 10px solid #dbeaff;
}

.level-progress-card h2 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 6px;
}

.level-progress-card p {
  font-size: 15px;
}

.level-progress-card strong {
  font-size: 36px;
  font-weight: 900;
}

.level-line {
  margin: 38px 0 10px 230px;
  height: 10px;
  background: #dce3ef;
  border-radius: 5px;
  position: relative;
}

.level-line span {
  position: absolute;
  left: 0;
  top: 2px;
  width: 34px;
  height: 6px;
  border-radius: 3px;
  background: #616fa1;
}

.level-line::before,
.level-line::after {
  content: "";
  position: absolute;
  top: -2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #6470a0;
}

.level-line::before { left: 0; }
.level-line::after { right: 0; background: #fff; }

.level-scale {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-left: 190px;
  text-align: center;
  color: #7f8a98;
}

.level-scale b,
.level-scale span {
  display: block;
}

.level-scale b {
  color: #071421;
  font-size: 18px;
}

.level-section-title {
  margin: 34px 0 26px;
  font-size: 22px;
  font-weight: 500;
}

.level-rights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 34px;
}

.level-rights div {
  text-align: center;
  position: relative;
}

.level-rights i {
  width: 68px;
  height: 68px;
  margin: 0 auto 10px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: #ffdccc;
  color: #fff;
  font-size: 36px;
  font-style: normal;
  box-shadow: 0 0 12px rgba(255,255,255,.9);
}

.level-rights .active i {
  background: #b55cff;
}

.level-rights div:nth-child(3) i { background: #ffdcae; }
.level-rights div:nth-child(4) i { background: #7ce4e3; }

.level-rights span {
  position: absolute;
  right: 12px;
  top: 50px;
  color: #ff9f00;
  font-size: 14px;
}

.level-rights b {
  font-size: 16px;
  font-weight: 500;
}

.level-task-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.level-task-head h3 {
  font-size: 22px;
  font-weight: 500;
}

.level-task-head span {
  color: #8b96a3;
  font-size: 15px;
}

.level-task {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.level-task b,
.level-task span {
  display: block;
}

.level-task b {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.level-task span {
  color: #8b96a3;
  font-size: 18px;
}

.level-task button {
  min-width: 104px;
  height: 38px;
  border-radius: 20px;
  border: 1px solid #22cfd0;
  background: transparent;
  color: #13c7c7;
  font-size: 16px;
}

.level-task button.done {
  color: #8ee6e5;
  border-color: #9deeed;
}

.post-detail-page,
.message-detail-page {
  min-height: 100%;
  background: #fff;
  color: #111820;
  overflow-y: auto;
}

.post-detail-head {
  height: 74px;
  display: grid;
  grid-template-columns: 44px 1fr 116px;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid #f0f0f0;
}

.post-detail-back {
  border: 0;
  background: transparent;
  color: #071421;
  font-size: 40px;
  line-height: 1;
}

.post-detail-head h2 {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}

.post-detail-hero img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.post-detail-body {
  padding: 20px 22px;
}

.post-detail-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.post-detail-author img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.post-detail-author span {
  font-size: 16px;
  color: #4b5563;
}

.post-detail-body h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.post-detail-body p {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
}

.post-detail-actions {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #f0f0f0;
}

.post-detail-actions button {
  border: 0;
  background: transparent;
  color: #8f97a2;
  font-size: 16px;
}

.message-detail-body {
  padding: 20px 22px;
}

.message-detail-item {
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}

.message-detail-item b {
  font-size: 18px;
}

.message-detail-item p {
  margin-top: 6px;
  color: #8f97a2;
  font-size: 15px;
}

/* Search page restored 1:1 */
.search-page {
  min-height: 100%;
  background: #fff;
  color: #111;
  padding: 0 20px;
  overflow-y: auto;
}

.search-nav-row {
  height: 79px;
  display: grid;
  grid-template-columns: 116px 1fr 150px;
  align-items: center;
}

.search-nav-row h1 {
  margin: 0;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0;
  color: #020202;
}

.search-left-capsule,
.search-right-capsule {
  height: 43px;
  border: 1px solid #eeeeee;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.search-left-capsule {
  width: 116px;
  gap: 15px;
}

.search-left-capsule button {
  border: 0;
  background: transparent;
  color: #24272b;
  padding: 0;
  display: grid;
  place-items: center;
}

.search-left-capsule i,
.search-right-capsule i {
  width: 1px;
  height: 24px;
  background: #eeeeee;
}

.search-back-btn {
  width: 28px;
  height: 34px;
  font-size: 43px;
  line-height: 25px;
  font-weight: 200;
  transform: translateY(-1px);
}

.search-home-btn {
  width: 34px;
  height: 34px;
  font-size: 0;
  position: relative;
}

.search-home-btn::before {
  content: "";
  width: 19px;
  height: 17px;
  border: 2px solid #24272b;
  border-top: 0;
  border-radius: 5px;
  position: absolute;
  left: 7px;
  top: 12px;
}

.search-home-btn::after {
  content: "";
  width: 13px;
  height: 13px;
  border-left: 2px solid #24272b;
  border-top: 2px solid #24272b;
  transform: rotate(45deg);
  position: absolute;
  left: 10px;
  top: 5px;
  border-radius: 3px 0 0 0;
}

.search-right-capsule {
  justify-self: end;
  width: 149px;
  gap: 14px;
  color: #1c2024;
}

.search-right-capsule span:first-child {
  font-size: 28px;
  letter-spacing: -2px;
  transform: translateY(-3px);
}

.search-right-capsule span:nth-child(3) {
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  transform: translateY(-3px);
}

.search-target-dot {
  width: 19px;
  height: 19px;
  border: 3px solid #1c2024;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.search-target-dot::after {
  content: "";
  width: 5px;
  height: 5px;
  background: #1c2024;
  border-radius: 50%;
  position: absolute;
  left: 4px;
  top: 4px;
}

.search-input-row {
  height: 40px;
  display: grid;
  grid-template-columns: 1fr 51px;
  align-items: center;
  gap: 20px;
  margin-top: 1px;
}

.search-input-box {
  height: 40px;
  border-radius: 22px;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  padding: 0 13px;
  color: #b6b9be;
  overflow: hidden;
}

.search-input-box span {
  font-size: 28px;
  line-height: 1;
  margin-right: 6px;
  color: #b8bbc0;
  transform: translateY(-1px);
}

.search-input-box input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 20px;
  color: #1f2933;
  min-width: 0;
}

.search-input-box input::placeholder {
  color: #c3c6ca;
}

.search-input-row > button {
  border: 0;
  background: transparent;
  color: #111;
  font-size: 20px;
  font-weight: 400;
  padding: 0;
  text-align: right;
}

.search-history-head {
  height: 62px;
  margin-top: 19px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.search-history-head h2 {
  margin: 0;
  color: #111;
  font-size: 20px;
  font-weight: 400;
  line-height: 22px;
}

.search-clear-btn {
  border: 0;
  background: transparent;
  color: #8d8d8d;
  width: 34px;
  height: 34px;
  font-size: 0;
  position: relative;
  margin-right: 2px;
  margin-top: -4px;
}

.search-clear-btn::before {
  content: "";
  width: 15px;
  height: 16px;
  border: 2px solid #8d8d8d;
  border-top: 0;
  border-radius: 0 0 3px 3px;
  position: absolute;
  left: 9px;
  top: 12px;
}

.search-clear-btn::after {
  content: "";
  width: 18px;
  height: 2px;
  background: #8d8d8d;
  position: absolute;
  left: 8px;
  top: 8px;
  box-shadow: 4px -4px 0 -1px #8d8d8d;
}

.search-history-list {
  margin: -28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.search-history-list button {
  border: 0;
  background: transparent;
  min-height: 36px;
  text-align: left;
  color: #5f6670;
  font-size: 16px;
  padding: 7px 0;
}

.search-empty-text,
.search-result-total {
  color: #8b929c;
  font-size: 15px;
  margin-top: 14px;
}

.search-result-section {
  margin-top: 12px;
}

.search-result-group {
  margin-bottom: 4px;
}

.search-result-label {
  font-size: 14px;
  font-weight: 600;
  color: #8b929c;
  padding: 10px 0 6px;
  margin: 0;
}

.search-result-item {
  display: flex;
  align-items: center;
  width: 100%;
  border: 0;
  background: #fff;
  padding: 12px 0;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  gap: 10px;
}

.search-result-item:active {
  background: #f6f7f9;
}

.search-result-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}

.search-result-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.search-result-text b {
  font-size: 16px;
  font-weight: 500;
  color: #1e2430;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-result-text em {
  font-size: 13px;
  color: #8b929c;
  font-style: normal;
}

.search-result-arrow {
  font-size: 20px;
  color: #c3c6ca;
  flex-shrink: 0;
}

/* Search page refined to first reference */
.search-page {
  min-height: 100%;
  background: #fff;
  color: #050505;
  padding: 0 20px;
  overflow-y: auto;
}

.search-nav-row {
  height: 78px;
  display: grid;
  grid-template-columns: 118px 1fr 148px;
  align-items: center;
  padding-top: 0;
}

.search-nav-row h1 {
  margin: 0;
  color: #000;
  text-align: center;
  font-size: 23px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .5px;
  transform: translateX(3px);
}

.search-left-capsule,
.search-right-capsule {
  height: 42px;
  border: 1px solid rgba(0, 0, 0, .07);
  border-radius: 23px;
  background: rgba(255, 255, 255, .98);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .04), inset 0 0 0 .5px rgba(255,255,255,.8);
}

.search-left-capsule {
  width: 116px;
  gap: 16px;
}

.search-right-capsule {
  justify-self: end;
  width: 148px;
  gap: 14px;
}

.search-left-capsule i,
.search-right-capsule i {
  width: 1px;
  height: 25px;
  background: #eeeeee;
}

.search-back-btn {
  width: 30px;
  height: 36px;
  color: #20242a;
  font-size: 45px;
  line-height: 25px;
  font-weight: 180;
  transform: translate(-1px, -1px);
}

.search-home-btn::before {
  width: 18px;
  height: 16px;
  border-width: 2px;
  border-color: #20242a;
  left: 7px;
  top: 13px;
}

.search-home-btn::after {
  width: 13px;
  height: 13px;
  border-width: 2px;
  border-color: #20242a;
  left: 10px;
  top: 6px;
}

.search-right-capsule span:first-child {
  color: #15191f;
  font-size: 29px;
  letter-spacing: -2px;
  transform: translateY(-4px);
}

.search-right-capsule span:nth-child(3) {
  color: #15191f;
  font-size: 34px;
  font-weight: 500;
  transform: translateY(-4px);
}

.search-target-dot {
  width: 20px;
  height: 20px;
  border-width: 3px;
  border-color: #15191f;
}

.search-target-dot::after {
  left: 4px;
  top: 4px;
  width: 6px;
  height: 6px;
  background: #15191f;
}

.search-input-row {
  height: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: center;
  gap: 16px;
  margin-top: 2px;
}

.search-input-box {
  height: 40px;
  border-radius: 22px;
  background: #f3f3f3;
  padding: 0 14px 0 13px;
  color: #b8bcc2;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.68);
}

.search-input-box span {
  margin-right: 7px;
  color: #b8bcc2;
  font-size: 27px;
  transform: translateY(-1px);
}

.search-input-box input {
  height: 40px;
  color: #1f2937;
  font-size: 18px;
  font-weight: 400;
}

.search-input-box input::placeholder {
  color: #c6c9ce;
}

.search-input-row > button {
  color: #111;
  font-size: 18px;
  line-height: 40px;
  font-weight: 400;
  text-align: right;
}

.search-history-head {
  height: auto;
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-history-head h2 {
  margin: 0;
  color: #050505;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
}

.search-clear-btn {
  width: 28px;
  height: 28px;
  margin: -1px 1px 0 0;
  opacity: .88;
}

.search-clear-btn::before {
  width: 12px;
  height: 14px;
  left: 8px;
  top: 11px;
  border-color: #909090;
}

.search-clear-btn::after {
  left: 7px;
  top: 7px;
  width: 16px;
  background: #909090;
  box-shadow: 4px -4px 0 -1px #909090;
}

.search-history-list {
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-history-list button {
  min-height: 34px;
  border-radius: 18px;
  background: #f6f6f6;
  color: #4b5563;
  font-size: 15px;
  padding: 6px 14px;
}

.search-history-empty {
  margin-top: 16px;
  color: #b7bbc2;
  font-size: 15px;
  line-height: 22px;
}

.search-empty-text {
  margin-top: 28px;
  color: #9ca3af;
  font-size: 15px;
  text-align: center;
}

.search-result-section {
  margin-top: 18px;
  padding-bottom: 28px;
}

.search-result-label {
  padding: 12px 0 8px;
  color: #8c929b;
  font-size: 14px;
  font-weight: 600;
}

.search-result-item {
  min-height: 68px;
  padding: 12px 0;
  border-bottom: 1px solid #f2f2f2;
}

.search-result-icon {
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background: #f5f7fa;
  display: grid;
  place-items: center;
  font-size: 18px;
}

.search-result-text b {
  color: #111827;
  font-size: 16px;
  font-weight: 600;
}

.search-result-text em {
  color: #8b929c;
  font-size: 13px;
}

.search-result-total {
  margin-top: 16px;
  color: #9ca3af;
  font-size: 14px;
  text-align: center;
}

/* Chat square screenshot restoration */
.chat-square-page {
  background: #f5f6fa;
  min-height: 100%;
  padding: 22px 20px 28px;
  color: #111827;
  overflow-x: hidden;
}

.chat-square-head {
  height: 47px;
  display: grid;
  grid-template-columns: 35px 180px 83px 148px;
  align-items: center;
  gap: 9px;
}

.chat-square-back {
  width: 32px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #17202b;
  font-size: 48px;
  line-height: 30px;
  font-weight: 200;
  padding: 0;
  transform: translateY(-2px);
}

.chat-square-search {
  height: 37px;
  border-radius: 20px;
  background: #fff;
  color: #a1a8b2;
  display: flex;
  align-items: center;
  padding: 0 16px;
}

.chat-square-search span {
  font-size: 24px;
  margin-right: 6px;
  transform: translateY(-1px);
}

.chat-square-search input {
  border: 0;
  outline: 0;
  background: transparent;
  width: 100%;
  min-width: 0;
  color: #253041;
  font-size: 16px;
}

.chat-square-search input::placeholder {
  color: #9fa6b2;
}

.chat-square-create {
  border: 0;
  background: transparent;
  color: #1d2733;
  font-size: 18px;
  height: 38px;
  padding: 0;
  text-align: left;
  white-space: nowrap;
}

.chat-square-mini {
  width: 148px;
  height: 42px;
  border-radius: 22px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0;
  padding: 0;
  align-items: center;
  justify-items: center;
}

.chat-square-mini span {
  font-size: 27px;
  color: #171b20;
}

.chat-square-mini span:nth-child(2) {
  width: 1px;
  height: 24px;
  background: #e7e7e7;
  font-size: 0;
}

.chat-square-mini span:nth-child(3) {
  font-size: 31px;
  transform: translateY(-4px);
}

.chat-square-title {
  margin: 23px 0 0;
  font-size: 26px;
  line-height: 32px;
  font-weight: 400;
  color: #101722;
}

.chat-square-subtitle {
  margin: 2px 0 0;
  color: #8b929d;
  font-size: 17px;
  line-height: 24px;
}

.chat-square-tabs {
  margin-top: 20px;
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 14px;
}

.chat-square-tabs button {
  flex: 0 0 auto;
  min-width: 88px;
  height: 38px;
  border: 1px solid #edf0f4;
  border-radius: 20px;
  background: #fff;
  color: #111827;
  font-size: 17px;
  padding: 0 18px;
  box-shadow: 0 1px 4px rgba(18, 31, 52, 0.02);
}

.chat-square-tabs button.active {
  color: #000;
  border-color: #fff;
  box-shadow: 0 5px 18px rgba(23, 36, 56, 0.08);
}

.featured-groups {
  margin-top: 1px;
  display: grid;
  grid-template-columns: 260px 260px;
  gap: 17px;
  overflow-x: auto;
  padding-bottom: 24px;
}

.featured-card {
  width: 260px;
  min-height: 238px;
  border-radius: 9px;
  background: #fff;
  padding: 23px 22px 18px;
}

.featured-card h3 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 23px;
  font-weight: 400;
  line-height: 30px;
  height: 60px;
  overflow: hidden;
}

.featured-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 5px;
}

.chat-avatar-stack {
  display: flex;
  align-items: center;
}

.chat-avatar-stack img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #fff;
  object-fit: cover;
  margin-left: -7px;
}

.chat-avatar-stack img:first-child {
  margin-left: 0;
}

.featured-meta span {
  color: #111827;
  border: 1px solid #e6e9ee;
  border-radius: 13px;
  padding: 3px 9px;
  font-size: 13px;
  line-height: 18px;
}

.featured-card em {
  display: inline-block;
  margin-top: 2px;
  background: #f4f7fa;
  color: #1f2937;
  border-radius: 4px;
  font-size: 13px;
  font-style: normal;
  padding: 2px 5px;
}

.featured-card p {
  margin-top: 40px;
  color: #4c5664;
  font-size: 15px;
  line-height: 23px;
}

.chat-square-section-title {
  margin: 0 0 17px;
  color: #8a929e;
  font-size: 16px;
  font-weight: 400;
}

.category-row {
  display: grid;
  grid-template-columns: repeat(5, 106px);
  gap: 0;
  overflow-x: auto;
  padding-bottom: 38px;
}

.category-card {
  width: 106px;
  height: 122px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  padding: 20px 7px 10px;
  box-shadow: -4px -6px 18px rgba(255,255,255,0.92), 0 3px 16px rgba(27,37,57,0.05);
  transform: rotate(0deg);
}

.category-card:nth-child(2),
.category-card:nth-child(4) {
  transform: rotate(4deg) translateY(-3px);
}

.category-card:nth-child(3) {
  transform: translateY(-1px);
}

.category-card.active {
  box-shadow: 0 6px 18px rgba(18, 31, 52, 0.1);
}

.category-icon {
  display: block;
  font-size: 31px;
  line-height: 36px;
  margin-bottom: 10px;
}

.category-card b {
  display: block;
  color: #111827;
  font-size: 17px;
  line-height: 19px;
  font-weight: 400;
}

.category-card p {
  color: #8b929d;
  font-size: 12px;
  margin-top: 2px;
}

.recommend-title {
  margin-top: 0;
}

.recommend-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.recommend-item {
  min-height: 103px;
  display: grid;
  grid-template-columns: 74px 1fr 88px;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid #edf0f4;
  background: transparent;
}

.recommend-cover {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #fff;
}

.recommend-cover .chat-avatar-stack {
  width: 62px;
  height: 62px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.recommend-cover .chat-avatar-stack img {
  width: 31px;
  height: 31px;
  margin: 0;
  border-radius: 0;
  border: 0;
}

.recommend-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recommend-main h5 {
  color: #111827;
  font-size: 21px;
  font-weight: 400;
  line-height: 26px;
  margin: 0 0 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wechat-tag {
  display: inline-block;
  background: #26c968;
  color: #fff;
  border-radius: 11px;
  font-size: 12px;
  line-height: 18px;
  padding: 0 7px;
  vertical-align: 2px;
}

.recommend-main p {
  margin: 0 0 5px;
  color: #5f6875;
  font-size: 15px;
  line-height: 20px;
}

.recommend-main p span {
  display: inline-block;
  margin-right: 9px;
  color: #5f6875;
}

.recommend-main .preview {
  color: #4c5664;
}

.chat-join-btn {
  justify-self: end;
  width: 88px;
  height: 39px;
  border: 1px solid #57d5dd;
  border-radius: 21px;
  color: #11c7d1;
  background: transparent;
  font-size: 15px;
  font-weight: 400;
}

.chat-join-btn.joined {
  border-color: #cfd4da;
  color: #9ba3ae;
}

/* Alliance hall 1:1 restoration override */
.alliance-hall-page {
  background: #f5f5f5;
  min-height: 100%;
  padding: 0 0 78px;
  color: #061018;
  overflow-x: hidden;
}

.alliance-top {
  background: linear-gradient(180deg, #bff3f1 0%, #dff6f3 58%, #edf8f5 100%);
  min-height: 326px;
  padding: 31px 16px 0;
  border-radius: 0 0 0 0;
}

.alliance-head {
  height: 42px;
  display: grid;
  grid-template-columns: 46px 1fr 148px;
  align-items: center;
  gap: 0;
}

.alliance-back {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  position: relative;
  padding: 0;
}

.alliance-back::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 7px;
  width: 17px;
  height: 17px;
  border-left: 3px solid #0a1418;
  border-bottom: 3px solid #0a1418;
  transform: rotate(45deg);
  border-radius: 1px;
}

.alliance-head h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  color: #101010;
  text-align: center;
  transform: translateX(55px);
}

.alliance-mini {
  width: 148px;
  height: 39px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 22px;
  background: rgba(255,255,255,.62);
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: center;
  justify-items: center;
  justify-self: end;
  box-shadow: none;
  padding: 0;
}

.alliance-mini span {
  color: #111;
  font-size: 26px;
  line-height: 1;
}

.alliance-mini span:nth-child(2) {
  width: 1px;
  height: 23px;
  background: #d8dee0;
  font-size: 0;
}

.alliance-mini span:nth-child(3) {
  font-size: 0;
  width: 18px;
  height: 18px;
  border: 3px solid #15191c;
  border-radius: 50%;
  position: relative;
}

.alliance-mini span:nth-child(3)::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #15191c;
}

.alliance-notice {
  margin-top: 11px;
  height: 48px;
  padding: 0 18px;
  border-radius: 25px;
  background: rgba(255,255,255,.72);
  color: #6f777d;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 600;
}

.alliance-notice span {
  color: #00cfd0;
  font-size: 21px;
}

.alliance-hero {
  margin-top: 18px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.alliance-hero-copy h1 {
  margin: 8px 0 12px;
  font-size: 32px;
  line-height: 38px;
  font-weight: 900;
  color: #061015;
  letter-spacing: -1px;
  text-shadow: 2px 2px 0 #20d5d5, -1px -1px 0 #20d5d5;
}

.alliance-stats {
  display: flex;
  gap: 8px;
}

.alliance-stats div {
  min-width: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.alliance-stats b {
  color: #000;
  font-size: 18px;
  line-height: 20px;
  font-weight: 900;
}

.alliance-stats span {
  margin-top: 2px;
  color: #0d171a;
  font-size: 13px;
  white-space: nowrap;
}

.alliance-coin-illus {
  width: 168px;
  height: 132px;
  border-radius: 80px;
  background: radial-gradient(circle at 33% 35%, #d7fff6 0 12%, #bff0e7 34%, transparent 65%), linear-gradient(135deg, #d1fff4, #b6e5ff);
  position: relative;
  margin-right: 3px;
}

.alliance-coin-illus b {
  position: absolute;
  left: 31px;
  top: 36px;
  font-size: 67px;
  transform: rotate(10deg);
  filter: drop-shadow(0 14px 14px rgba(14,55,60,.18));
}

.alliance-coin-illus span,
.alliance-coin-illus i {
  position: absolute;
  font-style: normal;
  font-size: 25px;
}

.alliance-coin-illus span { left: 26px; top: 8px; }
.alliance-coin-illus i { right: 42px; top: 28px; }

.alliance-panel {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  background: #f5f5f5;
  border-radius: 12px 12px 0 0;
  padding: 15px 12px 0;
}

.alliance-tabs {
  height: 41px;
  display: grid;
  grid-template-columns: 73px 82px 82px 82px 46px 37px;
  align-items: center;
  gap: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.alliance-tabs button {
  height: 39px;
  border: 0;
  background: transparent;
  color: #787f83;
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
}

.alliance-tabs button span {
  font-size: 25px;
  color: #061018;
  font-weight: 400;
}

.alliance-tabs button.active {
  color: #071015;
  background: transparent;
}

.alliance-tabs button.active::after {
  content: "";
  position: absolute;
  left: 3px;
  bottom: 2px;
  width: 42px;
  height: 6px;
  border-radius: 3px;
  background: #22d0d0;
}

.alliance-tabs .alliance-category-trigger {
  width: 37px;
  height: 26px;
  min-width: 37px;
  align-self: center;
  justify-content: center;
  border-radius: 6px;
  background: #061018;
  color: #27e3df;
  padding: 0;
}

.alliance-tabs .alliance-category-trigger span {
  color: #27e3df;
  font-size: 18px;
  line-height: 1;
}

.alliance-tabs .alliance-category-trigger::after {
  display: none;
}

.alliance-filter-row {
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.alliance-filters {
  display: flex;
  gap: 12px;
  margin: 0;
}

.alliance-filters button,
.alliance-search {
  height: 38px;
  border: 0;
  border-radius: 20px;
  background: #ededed;
  color: #13181c;
  padding: 0 16px;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.alliance-search {
  width: 165px;
  padding: 0 14px;
  color: #a1a1a1;
  gap: 6px;
}

.alliance-search span {
  font-size: 22px;
  transform: translateY(-1px);
}

.alliance-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #333;
  font-size: 15px;
}

.alliance-search input::placeholder {
  color: #b2b2b2;
}

.alliance-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 0;
}

.alliance-card-item {
  background: #fff;
  border-radius: 14px;
  padding: 18px 16px 16px;
  display: block;
  min-height: 357px;
  box-shadow: none;
}

.alliance-card-body h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 28px;
  color: #071015;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.alliance-owner {
  display: flex;
  align-items: center;
  margin: 0 0 8px;
  color: #7f8589;
  font-size: 16px;
  line-height: 22px;
  gap: 6px;
}

.alliance-owner img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

.alliance-owner em {
  color: #0fcfcf;
  font-style: normal;
}

.alliance-owner span {
  color: #12caca;
}

.alliance-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 15px;
}

.alliance-card-meta b {
  color: #fff;
  background: #25d0cf;
  border-radius: 3px;
  padding: 2px 7px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

.alliance-card-meta span {
  color: #071015;
  font-size: 16px;
  line-height: 22px;
}

.alliance-card-covers {
  height: 126px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  overflow: hidden;
  border-radius: 7px;
}

.alliance-card-covers img {
  width: 100%;
  height: 126px;
  object-fit: cover;
}

.alliance-card-bottom {
  height: 72px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0;
}

.alliance-want-people {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 1px;
}

.alliance-want-people span {
  display: flex;
  align-items: center;
}

.alliance-want-people img {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  border: 1px solid #fff;
  object-fit: cover;
  margin-left: -8px;
}

.alliance-want-people img:first-child {
  margin-left: 0;
}

.alliance-want-people em {
  color: #172025;
  font-size: 16px;
  font-style: normal;
  white-space: nowrap;
}

.alliance-promote-btn {
  width: 153px;
  height: 45px;
  border: 0;
  border-radius: 24px;
  background: #202226;
  color: #24e0d8;
  font-size: 18px;
  font-weight: 900;
  flex: none;
}

.alliance-promote-btn.active {
  background: #202226;
  color: #24e0d8;
}

.alliance-bottom-tabs {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 12px;
  height: 58px;
  background: #2dcccb;
  border-radius: 29px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 20;
  overflow: hidden;
}

.alliance-bottom-tabs button {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  position: relative;
}

.alliance-bottom-tabs button:first-child::after {
  content: "";
  position: absolute;
  right: 0;
  top: 16px;
  width: 1px;
  height: 26px;
  background: rgba(255,255,255,.28);
}

/* Fix alliance bottom tabs inside phone viewport */
.alliance-hall-page {
  position: relative;
  padding-bottom: 86px;
}

.alliance-bottom-tabs {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 12px;
  width: min(444px, calc(100vw - 52px));
  margin: 0;
  height: 58px;
  z-index: 20;
  transform: translateX(-50%);
}

/* Alliance filter sheets */
.alliance-filter-mask {
  position: fixed;
  left: 50%;
  top: 0;
  bottom: 0;
  width: min(476px, 100vw);
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.24);
  z-index: 30;
  display: flex;
  align-items: flex-end;
}

.alliance-filter-sheet {
  width: 100%;
  background: #fff;
  border-radius: 18px 18px 0 0;
  padding: 18px 18px 28px;
  box-shadow: 0 -8px 24px rgba(0,0,0,.08);
}

.alliance-filter-title {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.alliance-filter-title b {
  color: #071015;
  font-size: 19px;
  font-weight: 800;
}

.alliance-filter-title button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 17px;
  background: #f2f3f4;
  color: #8a9096;
  font-size: 24px;
  line-height: 30px;
}

.alliance-filter-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.alliance-filter-options button {
  height: 42px;
  border: 0;
  border-radius: 22px;
  background: #f4f5f6;
  color: #172025;
  font-size: 16px;
}

.alliance-filter-options button:active {
  background: #2dcccb;
  color: #fff;
}

.alliance-category-mask {
  background: rgba(6, 18, 19, 0.68);
  z-index: 80;
}

.alliance-category-sheet {
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
  background: #fff;
  border-radius: 28px 28px 6px 6px;
  padding: 22px 22px 26px;
  box-shadow: 0 -12px 34px rgba(0,0,0,.12);
}

.alliance-category-title {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.alliance-category-title b {
  color: #1b2026;
  font-size: 20px;
  font-weight: 500;
}

.alliance-category-title button {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #999;
  font-size: 38px;
  line-height: 30px;
  font-weight: 200;
}

.alliance-category-grid {
  max-height: calc(85vh - 96px);
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 14px;
  padding: 6px 1px 2px;
}

.alliance-category-grid button {
  height: 44px;
  border: 1px solid #eef0f2;
  border-radius: 5px;
  background: #fff;
  color: #666;
  font-size: 16px;
}

.alliance-category-grid button:active {
  border-color: #25d4d1;
  background: #eaffff;
  color: #11b9b7;
}

/* Alliance original filter pages restoration */
.alliance-city-page {
  background: #fff;
  min-height: 100%;
  padding: 32px 20px 0;
  color: #071015;
}

.alliance-city-head {
  height: 42px;
  display: grid;
  grid-template-columns: 48px 1fr 148px;
  align-items: center;
}

.alliance-city-back {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  position: relative;
  padding: 0;
}

.alliance-city-back::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 7px;
  width: 17px;
  height: 17px;
  border-left: 3px solid #071015;
  border-bottom: 3px solid #071015;
  transform: rotate(45deg);
}

.alliance-city-head h2 {
  margin: 0;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  transform: translateX(55px);
}

.alliance-city-mini {
  width: 148px;
  height: 39px;
  border-radius: 22px;
  border: 1px solid #eee;
  background: rgba(255,255,255,.75);
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: center;
  justify-items: center;
}

.alliance-city-mini span:nth-child(2) {
  width: 1px;
  height: 23px;
  background: #d8dee0;
  font-size: 0;
}

.alliance-city-tabs {
  margin-top: 26px;
  height: 43px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.alliance-city-tabs button {
  border: 0;
  background: transparent;
  color: #071015;
  font-size: 22px;
  font-weight: 800;
  position: relative;
}

.alliance-city-tabs button.active {
  color: #20cfd0;
}

.alliance-city-tabs button.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 55px;
  height: 2px;
  background: #20cfd0;
  transform: translateX(-50%);
}

.alliance-city-search {
  margin-top: 16px;
  height: 39px;
  border-radius: 20px;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: #b9b9b9;
  gap: 8px;
}

.alliance-city-search span {
  font-size: 24px;
}

.alliance-city-search input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 17px;
}

.alliance-city-search input::placeholder {
  color: #bababa;
}

.alliance-current-city {
  margin: 23px 0 28px;
}

.alliance-current-city p,
.alliance-city-label {
  margin: 0 0 13px;
  color: #8b8f94;
  font-size: 17px;
}

.alliance-current-city div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.alliance-current-city b {
  font-size: 18px;
  font-weight: 400;
}

.alliance-current-city button {
  border: 0;
  background: transparent;
  color: #20cfd0;
  font-size: 18px;
}

.alliance-city-list-wrap {
  margin: 0 -20px;
  padding: 23px 42px 24px 20px;
  border-top: 8px solid #f4f5f6;
  position: relative;
}

.alliance-hot-cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 18px;
  margin-bottom: 30px;
}

.alliance-hot-cities button {
  height: 44px;
  border: 0;
  border-radius: 4px;
  background: #f4f4f4;
  color: #071015;
  font-size: 18px;
}

.alliance-city-letter-title {
  color: #8b8f94;
  font-size: 20px;
  margin: 0 0 6px;
}

.alliance-city-list button {
  display: block;
  width: 100%;
  height: 60px;
  border: 0;
  border-bottom: 1px solid #eee;
  background: #fff;
  text-align: left;
  color: #071015;
  font-size: 18px;
}

.alliance-letter-index {
  position: absolute;
  right: 10px;
  top: 54px;
  width: 22px;
  padding: 5px 0;
  border-radius: 12px;
  background: #f4f4f4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #394148;
  font-size: 12px;
}

.alliance-date-mask {
  position: fixed;
  left: 50%;
  top: 0;
  bottom: 0;
  width: min(476px, 100vw);
  max-width: 100vw;
  transform: translateX(-50%);
  background: rgba(0,0,0,.62);
  z-index: 100;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.alliance-date-sheet {
  width: 100%;
  max-width: 100%;
  min-height: 795px;
  max-height: 85vh;
  background: #fff;
  border-radius: 13px 13px 0 0;
  padding: 27px 20px 14px;
  overflow-y: auto;
  box-sizing: border-box;
}

.alliance-date-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
}

.alliance-date-title b {
  font-size: 20px;
  font-weight: 400;
}

.alliance-date-title button {
  border: 0;
  background: transparent;
  color: #c8c8c8;
  font-size: 43px;
  font-weight: 200;
}

.alliance-week-row,
.alliance-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.alliance-week-row {
  margin-top: 31px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  color: #071015;
  font-size: 20px;
}

.alliance-week-row span:first-child,
.alliance-week-row span:last-child {
  color: #ff3b43;
}

.alliance-date-sheet h3 {
  margin: 24px 0 22px 12px;
  font-size: 22px;
  font-weight: 900;
}

.alliance-calendar-grid {
  row-gap: 43px;
}

.alliance-calendar-grid button {
  height: 50px;
  border: 0;
  background: transparent;
  color: #071015;
  font-size: 22px;
  position: relative;
}

.alliance-calendar-grid button.disabled {
  color: #d5d8dc;
}

.alliance-calendar-grid em {
  display: block;
  color: #071015;
  font-size: 13px;
  font-style: normal;
  line-height: 14px;
}

.alliance-date-confirm {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 14px;
  height: 55px;
  border: 0;
  border-radius: 28px;
  background: #2dcccb;
  color: #fff;
  font-size: 21px;
}

.alliance-sort-mask {
  position: fixed;
  left: 50%;
  top: 0;
  bottom: 0;
  width: min(476px, 100vw);
  transform: translateX(-50%);
  background: rgba(0,0,0,.55);
  z-index: 32;
  padding-top: 270px;
}

.alliance-sort-panel {
  background: #fff;
  border-radius: 0 0 20px 20px;
  padding: 11px 0 22px;
}

.alliance-sort-panel button {
  display: block;
  width: 100%;
  height: 67px;
  border: 0;
  background: transparent;
  color: #071015;
  font-size: 20px;
  text-align: center;
}

/* Home original filter pages restoration */
.home-category-mask {
  position: fixed;
  left: 50%;
  top: 0;
  bottom: 0;
  width: min(476px, 100vw);
  transform: translateX(-50%);
  background: rgba(0,0,0,.62);
  z-index: 34;
  display: flex;
  align-items: flex-end;
}

.home-category-sheet {
  width: 100%;
  height: 830px;
  background: #fff;
  border-radius: 18px 18px 0 0;
  padding: 18px 22px 28px;
  overflow-y: auto;
}

.home-category-title {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.home-category-title b {
  color: #071015;
  font-size: 20px;
  font-weight: 400;
}

.home-category-title button {
  border: 0;
  background: transparent;
  color: #9fa3a8;
  font-size: 38px;
  font-weight: 200;
  line-height: 34px;
}

.home-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 14px;
}

.home-category-grid button {
  height: 43px;
  border: 1px solid #eef0f2;
  border-radius: 5px;
  background: #fff;
  color: #666b70;
  font-size: 16px;
}

.home-city-page {
  padding-bottom: 24px;
}

.login-page {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #0b0d0f;
  color: #fff;
}

.login-bg-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 164px;
}

.login-bg-grid div {
  overflow: hidden;
  background: #14181c;
}

.login-bg-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.62);
  transform: scale(1.03);
}

.login-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.28), rgba(0,0,0,0.12) 26%, rgba(0,0,0,0.42) 64%, rgba(0,0,0,0.82));
}

.login-back {
  position: absolute;
  top: 43px;
  left: 25px;
  z-index: 2;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 58px;
  font-weight: 200;
  line-height: 1;
}

.login-mini {
  position: absolute;
  top: 43px;
  right: 11px;
  z-index: 2;
  width: 121px;
  height: 38px;
  border-radius: 22px;
  background: rgba(255,255,255,0.78);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}

.login-mini span {
  font-size: 22px;
  letter-spacing: -2px;
}

.login-mini i {
  width: 24px;
  height: 24px;
  border: 3px solid #181818;
  border-radius: 50%;
  position: relative;
}

.login-mini i::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #181818;
}

.login-brand {
  position: absolute;
  z-index: 2;
  top: 206px;
  left: 0;
  right: 0;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.login-brand h1 {
  margin: 0;
  font-size: 45px;
  line-height: 1;
  letter-spacing: -2px;
  font-weight: 900;
}

.login-brand h1 em {
  font-style: normal;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

.login-brand h1 i {
  display: inline-block;
  width: 5px;
  height: 39px;
  margin: 0 7px -5px 3px;
  border-radius: 8px;
  background: #41eee6;
  transform: skew(-8deg);
}

.login-brand p {
  margin: 17px 0 0;
  color: rgba(255,255,255,0.86);
  font-size: 19px;
  letter-spacing: 8px;
}

.login-bottom {
  position: absolute;
  z-index: 2;
  left: 39px;
  right: 39px;
  bottom: 131px;
}

.login-phone-btn {
  width: 100%;
  height: 62px;
  border: 0;
  border-radius: 34px;
  background: #58e6dd;
  color: #152527;
  font-size: 21px;
  font-weight: 700;
  box-shadow: 0 9px 24px rgba(0,0,0,0.22);
}

.login-agree {
  margin-top: 24px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  line-height: 1.55;
}

.login-agree input {
  appearance: none;
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
  flex: 0 0 auto;
}

.login-agree input:checked {
  background: radial-gradient(circle at 50% 50%, #52e6dc 0 42%, #fff 46% 100%);
}

.login-agree span {
  text-align: left;
}

.login-phone-mask {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: rgba(0,0,0,0.12);
  display: flex;
  align-items: flex-end;
}

.login-phone-sheet {
  width: 100%;
  min-height: 631px;
  padding: 38px 31px 24px;
  border-radius: 13px 13px 0 0;
  background: #f7f7f7;
  color: #111;
}

.login-sheet-brand {
  height: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.login-sheet-brand span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #101116, #48e9df);
  color: #fff;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-sheet-brand b {
  font-size: 20px;
}

.login-sheet-brand i {
  margin-left: auto;
  color: #babec3;
  font-style: normal;
  font-size: 22px;
}

.login-phone-sheet h2 {
  margin: 27px 0 8px;
  font-size: 22px;
  line-height: 1.2;
}

.login-phone-sheet p {
  margin: 0 0 33px;
  color: #9ca1a7;
  font-size: 16px;
}

.login-phone-list {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.login-phone-option {
  width: 100%;
  height: 89px;
  border: 0;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
  color: #23262b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.login-phone-option strong {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.login-phone-option em {
  margin-top: 5px;
  color: #4cbc74;
  font-style: normal;
  font-size: 14px;
}

.login-phone-deny {
  width: 100%;
  height: 89px;
  margin-top: 18px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: #202329;
  font-size: 22px;
  font-weight: 500;
}

.login-manage-phone {
  display: block;
  margin: 69px auto 0;
  border: 0;
  background: transparent;
  color: #4f6783;
  font-size: 16px;
  font-weight: 700;
}

.utility-page {
  min-height: 100%;
  background: #f5f5f5;
  color: #0d1116;
  padding: 30px 21px 24px;
}

.utility-top {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 16px;
}

.utility-top h2 {
  margin: 0;
  color: #05090d;
  font-size: 20px;
  font-weight: 500;
}

.utility-back {
  position: absolute;
  left: -3px;
  top: 0;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #05090d;
  font-size: 42px;
  font-weight: 200;
  line-height: 38px;
}

.utility-top .mini-btn {
  position: absolute;
  right: -8px;
  top: 4px;
  width: 132px;
  height: 38px;
  background: rgba(255,255,255,0.86);
  border: 1px solid #e6e6e6;
}

.help-search {
  height: 43px;
  border-radius: 22px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  color: #737980;
  margin-bottom: 16px;
}

.help-search span {
  font-size: 24px;
  transform: rotate(-15deg);
}

.help-search input {
  border: 0;
  outline: 0;
  background: transparent;
  flex: 1;
  font-size: 17px;
}

.help-panel {
  min-height: 764px;
  background: #fff;
  border-radius: 14px 14px 0 0;
  padding: 18px 17px;
}

.help-tabs {
  display: flex;
  gap: 39px;
  overflow-x: auto;
  white-space: nowrap;
  margin-bottom: 23px;
}

.help-tabs button {
  border: 0;
  background: transparent;
  color: #8e9298;
  font-size: 19px;
  padding: 0 0 7px;
  position: relative;
}

.help-tabs button.active {
  color: #101418;
}

.help-tabs button.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #20dfd8;
}

.help-question-list button {
  width: 100%;
  height: 59px;
  border: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #101418;
  font-size: 17px;
  text-align: left;
}

.help-question-list i {
  color: #a0a4a9;
  font-style: normal;
  font-size: 30px;
  font-weight: 200;
}

.help-bottom-actions {
  position: absolute;
  left: 21px;
  right: 21px;
  bottom: 13px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 21px;
}

.help-bottom-actions button,
.settings-logout-btn {
  height: 49px;
  border: 1px solid #e1e3e5;
  border-radius: 26px;
  background: #fff;
  color: #20252a;
  font-size: 18px;
}

.settings-page {
  padding-top: 30px;
}

.settings-card {
  margin-top: 28px;
  border-radius: 13px;
  background: #fff;
  padding: 10px 22px;
}

.settings-card button {
  width: 100%;
  height: 81px;
  border: 0;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
  display: flex;
  align-items: center;
  color: #11161b;
  font-size: 18px;
}

.settings-card button:last-child {
  border-bottom: 0;
}

.settings-card em {
  margin-left: auto;
  color: #8a9098;
  font-style: normal;
}

.settings-card i {
  margin-left: 8px;
  color: #9ca0a5;
  font-style: normal;
  font-size: 30px;
  font-weight: 200;
}

.settings-logout-btn {
  width: 100%;
  margin-top: 36px;
  border: 0;
  border-radius: 13px;
}

.utility-card {
  margin-top: 22px;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.utility-row {
  min-height: 78px;
  padding: 16px 18px;
  border-bottom: 1px solid #f0f1f2;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.utility-row b {
  color: #11161b;
  font-size: 17px;
  font-weight: 600;
}

.utility-row p {
  margin: 6px 0 0;
  color: #8b9299;
  font-size: 14px;
}

.utility-row span {
  color: #20cbc5;
  font-size: 14px;
  white-space: nowrap;
}

.utility-empty {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #a6adb5;
}

.utility-empty div {
  width: 48px;
  height: 48px;
  border: 2px solid #d7dce2;
  color: #d7dce2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.edit-upload-mask {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0,0,0,0.62);
}

.edit-upload-dialog {
  position: fixed;
  z-index: 91;
  left: 32px;
  right: 32px;
  top: 278px;
  min-height: 355px;
  border-radius: 16px;
  background: #fff;
  color: #11161b;
  text-align: center;
  padding: 30px 40px 38px;
}

.edit-upload-dialog h3 {
  margin: 0 0 28px;
  font-size: 18px;
  font-weight: 500;
}

.edit-upload-icon {
  width: 92px;
  height: 82px;
  margin: 0 auto 25px;
  border: 3px solid #e3e3e3;
  border-radius: 12px;
  color: #d8d8d8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
}

.edit-upload-dialog p {
  margin: 0 auto 28px;
  max-width: 310px;
  color: #9c9c9c;
  font-size: 18px;
  line-height: 1.42;
}

.edit-upload-now {
  width: 325px;
  max-width: 100%;
  height: 50px;
  border: 0;
  border-radius: 26px;
  background: #2ecfcb;
  color: #fff;
  font-size: 20px;
}

.edit-upload-close {
  position: fixed;
  z-index: 92;
  top: 665px;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 32px;
  line-height: 30px;
}

/* Final home/alliance polish overrides */
.home-page { background: linear-gradient(180deg, #f5f3ff 0, #fff 274px, #eefbfb 100%); }
.home-top { padding: 24px 18px 18px; border-radius: 0 0 26px 26px; background: radial-gradient(circle at 12% 18%, rgba(255,255,255,.92) 0 18%, transparent 42%), radial-gradient(circle at 85% 8%, rgba(139, 92, 246, 0.24) 0 18%, transparent 44%), linear-gradient(180deg,#2ec0bb 0%,#1a9c98 100%); box-shadow: 0 14px 34px rgba(99, 102, 241, 0.2); }
.home-title { font-size: 32px; letter-spacing: -1px; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.home-search { height: 46px; margin-bottom: 17px; border: 1px solid rgba(255,255,255,.82); background: rgba(255,255,255,.9); box-shadow: 0 10px 24px rgba(99, 102, 241, 0.15); color: #4b5563; font-size: 15px; }
.hero-grid { gap: 12px; grid-template-columns: 1.08fr .92fr; }

.home-tabs { padding: 19px 18px 10px; gap: 18px; background: transparent; }
.home-tabs button, .home-filters button { font-size: 16px; }
.home-tabs .active { text-decoration: none; position: relative; }
.home-tabs .active::after { content: ""; position: absolute; left: 50%; bottom: -6px; width: 24px; height: 5px; border-radius: 999px; background: #21d4d0; transform: translateX(-50%); }
.home-filters { padding: 5px 18px 15px; gap: 10px; background: transparent; }
.home-filters button { height: 34px; border: 1px solid #edf1f4; background: #fff; color: #27323b; box-shadow: 0 8px 18px rgba(23,37,48,.045); }
.home-event-list.restored { padding: 0 18px 22px; }
.home-feature-event { border-radius: 22px; padding: 16px; border: 1px solid rgba(230,236,240,.88); box-shadow: 0 16px 34px rgba(16,31,43,.075); }
.home-feature-event h3 { padding-top: 0; font-size: 18px; line-height: 1.42; color: #101a22; }
.home-feature-event p { color: #687682; font-size: 13px; }
.home-feature-event p span { color: #17c9c5; }
.feature-meta { margin-bottom: 13px; font-size: 13px; }
.feature-meta b { border-radius: 9px; background: linear-gradient(135deg, #22d7d4, #10bdbb); font-weight: 800; }
.feature-images { gap: 4px; border-radius: 16px; margin-bottom: 14px; }
.feature-images img { height: 108px; }
.feature-bottom { font-size: 13px; }
.feature-bottom .join-btn { min-width: 88px; height: 40px; border: 0; box-shadow: 0 9px 18px rgba(13,21,27,.16); font-size: 16px; }
.alliance-hall-page { background: linear-gradient(180deg, #e6fbf8 0, #f6f8fb 335px, #f6f8fb 100%); }
.alliance-top { min-height: 312px; padding: 26px 16px 0; background: radial-gradient(circle at 88% 34%, rgba(255,255,255,.64) 0 16%, transparent 36%), linear-gradient(180deg, #a9efec 0%, #d6f8f3 68%, rgba(246,248,251,0) 100%); }
.alliance-head h2 { font-weight: 800; letter-spacing: -1px; }
.alliance-notice { height: 42px; margin-top: 13px; background: rgba(255,255,255,.78); border: 1px solid rgba(255,255,255,.78); box-shadow: 0 10px 24px rgba(25,145,148,.1); font-size: 14px; }
.alliance-hero { height: 148px; margin-top: 16px; padding: 0 2px 0 4px; }
.alliance-hero-copy h1 { margin-top: 0; font-size: 29px; line-height: 35px; letter-spacing: -1.5px; }
.alliance-stats { gap: 12px; }
.alliance-stats div { min-width: 54px; }
.alliance-stats b { font-size: 19px; }
.alliance-stats span { color: #526069; font-size: 12px; }
.alliance-coin-illus { width: 140px; height: 118px; margin-right: 0; background: radial-gradient(circle at 34% 34%, #e6fff9 0 11%, #baf0e5 35%, transparent 67%), linear-gradient(135deg, #d4fff5, #b7e7ff); box-shadow: inset 0 0 0 1px rgba(255,255,255,.54), 0 18px 30px rgba(29,121,132,.13); }
.alliance-coin-illus b { left: 26px; top: 31px; font-size: 58px; }
.alliance-panel { margin: -8px 0 0; padding: 13px 12px 120px; border-radius: 24px 24px 0 0; background: rgba(246,248,251,.96); }
.alliance-tabs { height: 44px; display: flex; gap: 10px; overflow-x: auto; }
.alliance-tabs button { flex: none; height: 36px; border-radius: 18px; padding: 0 13px; background: #fff; color: #606b73; font-size: 15px; box-shadow: 0 6px 14px rgba(15,28,39,.04); }
.alliance-tabs button.active { background: #121b22; color: #2ee1dd; }
.alliance-tabs button.active::after { display: none; }
.alliance-tabs button span { font-size: 17px; }
.alliance-filter-row { height: auto; padding: 7px 0 12px; gap: 8px; }
.alliance-filters { gap: 7px; min-width: 0; overflow-x: auto; }
.alliance-filters button, .alliance-search { height: 34px; border: 1px solid #edf1f3; background: #fff; font-size: 13px; box-shadow: 0 6px 14px rgba(18,31,42,.04); }
.alliance-filters button { padding: 0 11px; flex: none; }
.alliance-search { width: 118px; flex: none; padding: 0 10px; }
.alliance-search input { font-size: 13px; }
.alliance-list { gap: 14px; }
.alliance-card-item { min-height: 0; padding: 15px; border-radius: 22px; border: 1px solid rgba(229,235,240,.9); box-shadow: 0 15px 32px rgba(17,31,43,.07); }
.alliance-card-body h3 { margin-bottom: 7px; font-size: 18px; line-height: 25px; }
.alliance-owner { margin-bottom: 10px; gap: 5px; font-size: 12px; white-space: nowrap; overflow: hidden; }
.alliance-owner img { width: 22px; height: 22px; flex: none; }
.alliance-card-meta { margin-bottom: 12px; gap: 8px; }
.alliance-card-meta b { border-radius: 8px; padding: 2px 8px; background: linear-gradient(135deg, #22d7d4, #10bebb); font-weight: 800; }
.alliance-card-meta span { font-size: 13px; color: #3e4952; }
.alliance-card-covers { height: 112px; gap: 4px; border-radius: 15px; }
.alliance-card-covers img { height: 112px; }
.alliance-card-bottom { height: 58px; }
.alliance-promote-btn { width: 132px; height: 40px; border-radius: 20px; box-shadow: 0 9px 18px rgba(13,21,27,.16); font-size: 13px; }
.alliance-bottom-tabs { width: calc(390px - 40px); height: 50px; bottom: 18px; border-radius: 25px; box-shadow: 0 14px 28px rgba(7,14,19,.24); }

/* Home premium brand strip */
.home-brand-strip {
  position: relative;
  z-index: 2;
  height: 58px;
  padding: 14px 22px 0;
  background: linear-gradient(180deg, #b7eeee 0%, #aeeeed 100%);
  color: #0e202a;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}
.home-brand-strip::before {
  content: "";
  position: absolute;
  inset: -42px 40px auto -28px;
  height: 92px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  filter: blur(14px);
}
.home-brand-strip::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: -28px;
  width: 118px;
  height: 66px;
  border-radius: 50%;
  background: rgba(31,216,211,.2);
  filter: blur(10px);
}
.home-brand-strip span {
  position: relative;
  z-index: 1;
  font-size: 27px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -1.5px;
  text-shadow: 0 8px 20px rgba(14,74,82,.12);
}
.home-brand-strip em {
  position: relative;
  z-index: 1;
  height: 25px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  color: #0aa7a5;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .5px;
  box-shadow: 0 8px 18px rgba(27,148,148,.1), inset 0 0 0 1px rgba(255,255,255,.75);
}
.home-brand-strip + .home-top {
  padding-top: 18px;
  border-radius: 0 0 28px 28px;
}
.home-brand-strip + .home-top .home-header {
  min-height: 0;
  height: 0;
  margin: 0;
  overflow: visible;
}
.home-brand-strip + .home-top .mini-btn {
  transform: translateY(-50px);
  background: rgba(255,255,255,.72);
  box-shadow: 0 8px 20px rgba(29,128,133,.12);
}

/* Global mobile adaptation and event detail responsive fix */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

*, *::before, *::after {
  box-sizing: border-box;
}

img, video, canvas, svg {
  max-width: 100%;
}

.page {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.phone {
  width: min(390px, 100vw);
  min-width: 0;
  max-width: 100vw;
  overflow-x: hidden;
}

.pro-event-detail-page,
.event-detail-page {
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  padding-bottom: calc(92px + env(safe-area-inset-bottom));
  background: #f6f8fb;
}

.event-detail-head {
  width: 100%;
  min-width: 0;
  padding: 8px 10px;
  gap: 8px;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 1px 0 rgba(21, 31, 41, .05);
}

.event-detail-back-btn {
  flex: 0 0 30px;
  width: 30px;
  font-size: 32px;
}

.event-detail-brand {
  min-width: 0;
  overflow: hidden;
}

.event-detail-brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

.event-detail-brand-text {
  min-width: 0;
  overflow: hidden;
}

.event-detail-brand-text strong {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}

.event-detail-feedback-btn {
  flex: 0 0 auto;
}

.event-detail-head-actions {
  flex: 0 0 auto;
  gap: 5px;
}

.event-detail-circle-btn {
  width: 34px;
  min-width: 34px;
  height: 34px;
}

.event-detail-cover-wrap {
  aspect-ratio: 375 / 460;
  max-height: 64vh;
  min-height: 360px;
  background: linear-gradient(180deg, #9bbdd2 0%, #93b5cc 42%, #71817f 100%);
}

.event-detail-gallery-track,
.event-detail-gallery-slide {
  height: 100%;
}

.event-detail-gallery-slide {
  display: grid;
  grid-template-rows: minmax(96px, 28%) minmax(190px, 52%) minmax(64px, 20%);
  min-width: 100%;
  overflow: hidden;
}

.event-detail-cover-top-space,
.event-detail-cover-bottom-space {
  height: auto;
}

.event-detail-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-detail-price {
  right: 18px;
  bottom: 20px;
  min-width: clamp(64px, 18vw, 84px);
  min-height: clamp(64px, 18vw, 84px);
  font-size: clamp(15px, 4.5vw, 18px);
}

.event-detail-body,
.event-detail-host-card,
.event-detail-people-card,
.event-detail-intro-section,
.event-detail-recommend-section {
  width: 100%;
  max-width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}

.event-detail-title {
  font-size: clamp(18px, 5vw, 22px);
  line-height: 1.38;
  word-break: break-word;
}

.event-detail-time-row,
.event-detail-info-entry-left,
.event-detail-people-head,
.event-detail-intro-section p {
  min-width: 0;
  word-break: break-word;
}

.event-detail-host-card {
  gap: 12px;
}

.event-detail-host-main,
.event-detail-host-copy,
.event-detail-host-name-row {
  min-width: 0;
}

.event-detail-host-main {
  flex: 1;
}

.event-detail-host-name-row {
  flex-wrap: wrap;
}

.event-detail-host-copy strong {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.event-detail-host-actions {
  flex: 0 0 auto;
  gap: 6px;
}

.event-detail-host-action {
  padding: 0 8px;
}

.event-detail-avatar-row {
  overflow: hidden;
}

.event-detail-rich-images img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.event-detail-recommend-card {
  width: 100%;
  min-width: 0;
}

.event-detail-bottom-bar {
  left: 50%;
  right: auto;
  width: min(390px, 100vw);
  max-width: 100vw;
  padding: 8px 10px calc(10px + env(safe-area-inset-bottom));
  gap: 8px;
  z-index: 50;
}

.event-detail-actions {
  flex: 1 1 auto;
  min-width: 0;
  gap: 4px;
  justify-content: space-around;
}

.event-detail-actions button {
  flex: 1 1 0;
  min-width: 0;
  font-size: 11px;
}

.event-detail-share-btn,
.event-detail-join-btn {
  flex: 0 0 auto;
  min-width: 0;
  height: 44px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 24px;
  white-space: nowrap;
}

.event-detail-join-btn {
  min-width: 116px;
}

@media (max-width: 360px) {
  .event-detail-feedback-btn {
    display: none;
  }

  .event-detail-brand-logo {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .event-detail-circle-btn {
    width: 32px;
    min-width: 32px;
    height: 32px;
  }

  .event-detail-cover-wrap {
    min-height: 330px;
  }

  .event-detail-bottom-bar {
    gap: 6px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .event-detail-actions button span {
    width: 20px;
    height: 20px;
    font-size: 13px;
  }

  .event-detail-actions button em {
    font-size: 10px;
  }

  .event-detail-share-btn,
  .event-detail-join-btn {
    padding: 0 13px;
    font-size: 14px;
  }

  .event-detail-join-btn {
    min-width: 102px;
  }
}


/* Home first-reference premium refinement */
.home-page {
  background: linear-gradient(180deg, #bcefee 0 440px, #ffffff 440px 568px, #f7f9fb 568px 100%);
  color: #0b1720;
}

.home-brand-strip {
  height: 86px;
  padding: 31px 20px 0;
  background: linear-gradient(180deg, #baeeee 0%, #b5eeee 100%);
}

.home-brand-strip span {
  font-size: 30px;
  font-weight: 950;
  color: #10202a;
  letter-spacing: -1.4px;
  text-shadow: 0 2px 0 rgba(255,255,255,.24);
}

.home-brand-strip em {
  height: 24px;
  padding: 0 12px;
  background: #f4ffff;
  color: #05a9a6;
  font-size: 13px;
  box-shadow: none;
}

.home-brand-strip + .home-top {
  margin-top: -1px;
  padding: 0 20px 16px;
  border-radius: 0;
  background: linear-gradient(180deg, #b5eeee 0%, #c9f4f1 100%);
  box-shadow: none;
}

.home-brand-strip + .home-top .home-header {
  position: absolute;
  top: 34px;
  right: 12px;
  width: 148px;
  height: 40px;
  min-height: 40px;
  margin: 0;
  overflow: visible;
}

.home-brand-strip + .home-top .mini-btn {
  width: 148px;
  height: 40px;
  transform: none;
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 6px 16px rgba(43, 138, 143, .12);
}

.home-search {
  height: 46px;
  margin: 0 0 16px;
  padding: 0 16px;
  border-radius: 25px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.92);
  box-shadow: 0 10px 20px rgba(44, 159, 162, .08);
  color: #a0aab3;
  font-size: 17px;
  font-weight: 400;
}

.home-search .search-icon {
  margin-right: 7px;
  color: #2f3942;
  font-size: 29px;
}

.hero-grid {
  grid-template-columns: 1.05fr .95fr;
  gap: 17px;
  align-items: stretch;
}

.hot-card,
.chat-card,
.alliance-card {
  border-radius: 9px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: 0 10px 24px rgba(29, 123, 130, .06);
  backdrop-filter: blur(14px);
}

.hot-card {
  min-height: 273px;
  padding: 19px 15px 17px;
}

.hot-card h4 {
  margin: 0 0 18px;
  color: #06131c;
  font-size: 29px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -1.7px;
  text-shadow: 2px 3px 0 #18d4d0;
}

.hot-card ul {
  gap: 16px;
}

.hot-card li {
  color: #101820;
  font-size: 17px;
  line-height: 21px;
}

.hot-card li b {
  width: auto;
  height: auto;
  margin-right: 9px;
  border-radius: 0;
  background: transparent;
  color: #06131c;
  font-size: 15px;
  font-weight: 900;
}

.hot-card em {
  color: #8b949f;
  font-size: 16px;
}

.chat-card,
.alliance-card {
  min-height: 133px;
  padding: 21px 15px 14px;
}

.chat-card b,
.alliance-card b {
  color: #111b24;
  font-size: 22px;
  line-height: 1;
  font-weight: 950;
}

.chat-card p,
.alliance-card p {
  margin-top: 11px;
  color: #8a96a0;
  font-size: 13px;
  line-height: 17px;
}

.chat-card button,
.alliance-card span {
  height: 34px;
  margin-top: 14px;
  border-radius: 18px;
  background: #121a1f;
  color: #24ddd8;
  padding: 0 15px;
  font-size: 14px;
}

.chat-card::after,
.alliance-card::after {
  right: -12px;
  bottom: -24px;
  width: 76px;
  height: 76px;
  background: rgba(30,211,206,.2);
}

.home-tabs {
  height: 70px;
  margin-top: 0;
  padding: 19px 18px 8px;
  gap: 29px;
  background: #fff;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -10px 22px rgba(18, 108, 114, .055);
}

.home-tabs button {
  color: #8c95a0;
  font-size: 18px;
  font-weight: 700;
}

.home-tabs .active {
  color: #111820;
  font-weight: 950;
}

.home-tabs .active::after {
  bottom: -8px;
  width: 25px;
  height: 5px;
  background: #18d0cc;
}

.home-filters {
  padding: 1px 18px 14px;
  gap: 11px;
  background: #fff;
}

.home-filters button {
  height: 38px;
  padding: 0 16px;
  border-radius: 19px;
  background: #fafafa;
  border: 1px solid #f0f2f4;
  color: #26313a;
  font-size: 17px;
  box-shadow: 0 7px 16px rgba(20, 34, 45, .04);
}

.home-event-list.restored {
  padding: 0 18px 86px;
  background: #f8fafb;
}

.home-feature-event {
  margin: 0 0 12px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(232,238,242,.95);
  box-shadow: 0 12px 28px rgba(18, 31, 42, .055);
}

.home-feature-event h3 {
  font-size: 20px;
  line-height: 1.36;
  font-weight: 950;
  letter-spacing: -.4px;
}

.feature-images {
  border-radius: 10px;
}

.feature-images img {
  height: 116px;
}

.bottom-nav {
  height: 76px;
  padding: 6px 20px 10px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 -10px 25px rgba(20, 31, 42, .07);
}

.bottom-nav .plus {
  width: 56px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #25d7d2, #15c8c5);
  box-shadow: 0 10px 20px rgba(25, 200, 197, .28);
}

/* Home hero card spacing correction against first reference */
.hero-grid {
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.hot-card,
.chat-card,
.alliance-card {
  border-radius: 8px;
  background: rgba(255,255,255,.58);
}

.hot-card {
  min-height: 256px;
  padding: 18px 14px 16px;
  overflow: hidden;
}

.hot-card h4 {
  margin-bottom: 18px;
  font-size: 27px;
  white-space: nowrap;
}

.hot-card ul {
  gap: 14px;
}

.hot-card li {
  display: grid;
  grid-template-columns: minmax(80px, 1fr) auto;
  align-items: center;
  column-gap: 10px;
  width: 100%;
  min-width: 0;
  font-size: 18px;
}

.hot-card li span {
  display: flex;
  align-items: center;
  min-width: 0;
  white-space: nowrap;
}

.hot-card li b {
  flex: 0 0 18px;
  margin-right: 9px;
  text-align: center;
  font-size: 15px;
}

.hot-card em {
  justify-self: end;
  font-size: 15px;
  white-space: nowrap;
}

.hero-right {
  gap: 16px;
}

.chat-card,
.alliance-card {
  min-height: 119px;
  padding: 18px 15px 13px;
}

.chat-card b,
.alliance-card b {
  display: block;
  white-space: nowrap;
  font-size: 21px;
}

.chat-card p,
.alliance-card p {
  max-width: 126px;
  margin-top: 10px;
  font-size: 13px;
}

.chat-card button,
.alliance-card span {
  height: 33px;
  margin-top: 13px;
  padding: 0 14px;
  white-space: nowrap;
}

/* Home layout repair: match first reference and prevent cramped text */
.home-page {
  background: linear-gradient(180deg, #b9efee 0 433px, #ffffff 433px 570px, #f7f9fb 570px 100%);
}

.home-brand-strip {
  height: 82px;
  padding: 30px 20px 0;
}

.home-brand-strip + .home-top {
  padding: 0 19px 14px;
}

.home-search {
  height: 43px;
  margin-bottom: 14px;
  font-size: 15px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr);
  gap: 14px;
  width: 100%;
}

.hero-right {
  min-width: 0;
  gap: 14px;
}

.hot-card,
.chat-card,
.alliance-card {
  min-width: 0;
  border-radius: 8px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(255,255,255,.66);
  box-shadow: 0 8px 20px rgba(26, 121, 126, .055);
}

.hot-card {
  min-height: 245px;
  padding: 17px 12px 15px;
}

.hot-card h4 {
  margin-bottom: 16px;
  font-size: 26px;
  line-height: 29px;
  letter-spacing: -1.6px;
  white-space: nowrap;
}

.hot-card ul {
  gap: 13px;
}

.hot-card li {
  display: grid;
  grid-template-columns: minmax(68px, 1fr) max-content;
  align-items: center;
  gap: 7px;
  width: 100%;
  min-width: 0;
  color: #111820;
  font-size: 16px;
  line-height: 20px;
}

.hot-card li span {
  display: flex;
  align-items: center;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}

.hot-card li b {
  flex: 0 0 16px;
  margin-right: 7px;
  color: #07131c;
  font-size: 13px;
  font-weight: 900;
  text-align: left;
}

.hot-card em {
  justify-self: end;
  color: #8c95a0;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.hot-card em i {
  margin-left: 2px;
  color: #f04f63;
  font-size: 12px;
}

.chat-card,
.alliance-card {
  min-height: 115px;
  padding: 16px 12px 12px;
  overflow: hidden;
}

.chat-card b,
.alliance-card b {
  display: block;
  color: #111b24;
  font-size: 18px;
  line-height: 22px;
  font-weight: 950;
  white-space: nowrap;
}

.chat-card p,
.alliance-card p {
  max-width: 112px;
  margin-top: 7px;
  color: #89949e;
  font-size: 11px;
  line-height: 15px;
}

.chat-card button,
.alliance-card span {
  height: 30px;
  margin-top: 11px;
  padding: 0 12px;
  border-radius: 15px;
  font-size: 12px;
  white-space: nowrap;
}

.chat-card::after,
.alliance-card::after {
  right: -22px;
  bottom: -24px;
  width: 70px;
  height: 70px;
}

.home-tabs {
  height: 62px;
  padding: 17px 15px 7px;
  gap: 22px;
  overflow-x: auto;
  justify-content: flex-start;
}

.home-tabs button {
  flex: 0 0 auto;
  font-size: 16px;
}

.home-filters {
  padding: 2px 15px 14px;
}

.home-filters button {
  height: 35px;
  padding: 0 14px;
  font-size: 15px;
}

.home-event-list.restored {
  padding: 0 15px 86px;
}

.home-feature-event {
  padding: 15px;
  border-radius: 18px;
}

.home-feature-event h3 {
  font-size: 18px;
  line-height: 1.38;
}

.feature-images img {
  height: 104px;
}

/* Home 1:1 reference rebuild */
.home-page {
  background: #f5f7fa;
  min-height: 100%;
  color: #07131c;
}

.home-brand-strip {
  height: 88px;
  padding: 34px 20px 0;
  background: #b9efee;
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow: visible;
}

.home-brand-strip::before,
.home-brand-strip::after {
  display: none;
}

.home-brand-strip span {
  color: #10202a;
  font-size: 26px;
  line-height: 30px;
  font-weight: 950;
  letter-spacing: -1px;
  text-shadow: 0 1px 0 rgba(255,255,255,.18);
}

.home-brand-strip em {
  display: none;
}

.home-brand-strip + .home-top {
  position: relative;
  margin: 0;
  padding: 0 20px 16px;
  border-radius: 0;
  background: #b9efee;
  box-shadow: none;
}

.home-brand-strip + .home-top .home-header {
  position: absolute;
  top: -53px;
  right: 10px;
  width: 148px;
  height: 40px;
  min-height: 40px;
  margin: 0;
  overflow: visible;
  display: block;
}

.home-brand-strip + .home-top .home-header > div:first-child {
  display: none;
}

.home-brand-strip + .home-top .mini-btn {
  width: 148px;
  height: 40px;
  border-radius: 22px;
  transform: none;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: none;
}

.home-search {
  height: 45px;
  margin: 0 0 15px;
  padding: 0 16px;
  border-radius: 24px;
  background: rgba(255,255,255,.88);
  border: 0;
  box-shadow: none;
  color: #a4adb6;
  font-size: 15px;
  font-weight: 400;
}

.home-search .search-icon {
  margin-right: 7px;
  color: #253039;
  font-size: 27px;
  line-height: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
  width: 100%;
  align-items: stretch;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 17px;
  min-width: 0;
}

.hot-card,
.chat-card,
.alliance-card {
  background: rgba(255,255,255,.55);
  border: 0;
  border-radius: 8px;
  box-shadow: none;
  backdrop-filter: none;
  min-width: 0;
  overflow: hidden;
}

.hot-card {
  height: 247px;
  min-height: 247px;
  padding: 18px 13px 14px;
}

.hot-card h4 {
  margin: 0 0 18px;
  color: #07131c;
  font-size: 27px;
  line-height: 30px;
  font-weight: 950;
  letter-spacing: -1.5px;
  white-space: nowrap;
  text-shadow: 2px 3px 0 #14d4d0;
}

.hot-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.hot-card li {
  display: grid;
  grid-template-columns: 93px 1fr;
  align-items: center;
  gap: 6px;
  width: 100%;
  min-width: 0;
  color: #111820;
  font-size: 17px;
  line-height: 20px;
}

.hot-card li span {
  display: flex;
  align-items: center;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}

.hot-card li b {
  flex: 0 0 16px;
  width: 16px;
  height: auto;
  margin: 0 8px 0 0;
  background: transparent;
  color: #07131c;
  font-size: 13px;
  font-weight: 900;
  text-align: left;
}

.hot-card em {
  justify-self: end;
  color: #8b949f;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
  font-style: normal;
}

.hot-card em i {
  margin-left: 1px;
  color: #f15263;
  font-size: 12px;
  font-style: normal;
}

.chat-card,
.alliance-card {
  height: 115px;
  min-height: 115px;
  padding: 17px 14px 12px;
  position: relative;
}

.chat-card b,
.alliance-card b {
  display: block;
  color: #111b24;
  font-size: 19px;
  line-height: 23px;
  font-weight: 950;
  white-space: nowrap;
}

.chat-card p,
.alliance-card p {
  max-width: 122px;
  margin: 7px 0 0;
  color: #89949e;
  font-size: 11px;
  line-height: 15px;
}

.chat-card button,
.alliance-card span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 31px;
  margin-top: 11px;
  padding: 0 13px;
  border: 0;
  border-radius: 16px;
  background: #11191f;
  color: #20d8d4;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.chat-card::after,
.alliance-card::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -23px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(28,211,206,.2);
}

.home-tabs {
  height: 64px;
  margin: 0;
  padding: 18px 15px 6px;
  gap: 25px;
  background: #fff;
  border-radius: 12px 12px 0 0;
  box-shadow: none;
  overflow-x: auto;
  overflow-y: hidden;
  justify-content: flex-start;
}

.home-tabs button {
  flex: 0 0 auto;
  color: #8b949f;
  font-size: 17px;
  line-height: 24px;
  font-weight: 600;
  border: 0;
  background: transparent;
  padding: 0;
  white-space: nowrap;
}

.home-tabs .active {
  color: #07131c;
  font-weight: 950;
  text-decoration: none;
}

.home-tabs .active::after {
  bottom: -7px;
  width: 25px;
  height: 5px;
  border-radius: 5px;
  background: #17d0cc;
}

.home-filters {
  height: 52px;
  padding: 3px 15px 13px;
  gap: 10px;
  background: #fff;
}

.home-filters button {
  height: 36px;
  padding: 0 14px;
  border-radius: 18px;
  border: 0;
  background: #f8f8f8;
  color: #26313a;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, .035);
}

.home-event-list.restored {
  padding: 0 14px 88px;
  background: #f7f9fb;
}

.home-feature-event {
  margin: 0 0 12px;
  padding: 15px;
  border: 0;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .055);
}

.home-feature-event h3 {
  margin: 0 0 7px;
  color: #07131c;
  font-size: 18px;
  line-height: 25px;
  font-weight: 950;
  letter-spacing: -.35px;
}

.home-feature-event p {
  margin-bottom: 8px;
  color: #77838d;
  font-size: 12px;
}

.feature-meta {
  margin-bottom: 11px;
  font-size: 13px;
}

.feature-images {
  gap: 3px;
  border-radius: 9px;
  margin-bottom: 12px;
}

.feature-images img {
  height: 104px;
}

.feature-bottom .join-btn {
  min-width: 84px;
  height: 39px;
  border-radius: 20px;
}

.bottom-nav {
  height: 76px;
  padding: 7px 20px 10px;
  background: #fff;
  box-shadow: 0 -8px 18px rgba(15, 23, 42, .055);
}

.bottom-nav button {
  font-size: 17px;
}

.bottom-nav .plus {
  width: 56px;
  height: 44px;
  border-radius: 11px;
  background: #20d2cf;
  box-shadow: 0 8px 18px rgba(32, 210, 207, .28);
}

/* Home top cards exact layout polish */
.hero-grid {
  grid-template-columns: 1.13fr .87fr;
  gap: 17px;
}

.hot-card {
  height: 247px;
  padding: 18px 12px 15px;
}

.hot-card h4 {
  margin-bottom: 17px;
  font-size: 27px;
}

.hot-card ul {
  gap: 14px;
}

.hot-card li {
  grid-template-columns: minmax(62px, 1fr) 58px;
  gap: 5px;
  font-size: 17px;
}

.hot-card li span {
  overflow: hidden;
  text-overflow: clip;
}

.hot-card li b {
  flex: 0 0 15px;
  margin-right: 7px;
}

.hot-card em {
  width: 58px;
  overflow: hidden;
  color: #8a949f;
  font-size: 12px;
  text-align: right;
}

.hero-right {
  gap: 17px;
}

.chat-card,
.alliance-card {
  height: 115px;
  padding: 17px 13px 11px;
}

.chat-card b,
.alliance-card b {
  font-size: 19px;
  line-height: 22px;
}

.chat-card p,
.alliance-card p {
  max-width: 110px;
  margin-top: 7px;
  font-size: 11px;
  line-height: 15px;
}

.chat-card button,
.alliance-card span {
  height: 30px;
  min-width: 78px;
  margin-top: 10px;
  padding: 0 12px;
  border-radius: 16px;
  font-size: 12px;
  box-shadow: none;
}

.chat-card::after,
.alliance-card::after {
  right: -31px;
  bottom: -26px;
  width: 73px;
  height: 73px;
  background: rgba(27, 211, 207, .22);
  z-index: 0;
}

.chat-card b,
.chat-card p,
.chat-card button,
.alliance-card b,
.alliance-card p,
.alliance-card span {
  position: relative;
  z-index: 2;
}

/* Home hero target lock: match provided card screenshot */
.home-brand-strip + .home-top {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 16px;
}

.hero-grid {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hot-card,
.chat-card,
.alliance-card {
  border-radius: 8px;
  background: rgba(255, 255, 255, .55);
  border: 0;
  box-shadow: none;
}

.hot-card {
  height: 245px;
  min-height: 245px;
  padding: 18px 15px 15px;
}

.hot-card h4 {
  margin: 0 0 19px;
  font-size: 26px;
  line-height: 29px;
  font-weight: 950;
  letter-spacing: -1.4px;
  text-shadow: 2px 3px 0 #16d2ce;
}

.hot-card ul {
  gap: 15px;
}

.hot-card li {
  grid-template-columns: minmax(74px, 1fr) 70px;
  gap: 8px;
  font-size: 17px;
  line-height: 20px;
}

.hot-card li b {
  flex: 0 0 15px;
  margin-right: 8px;
  font-size: 13px;
}

.hot-card em {
  width: 70px;
  color: #8b949f;
  font-size: 13px;
  text-align: right;
}

.hero-right {
  gap: 17px;
}

.chat-card,
.alliance-card {
  height: 114px;
  min-height: 114px;
  padding: 17px 14px 12px;
}

.chat-card b,
.alliance-card b {
  font-size: 19px;
  line-height: 22px;
  font-weight: 950;
  letter-spacing: -.4px;
}

.chat-card p,
.alliance-card p {
  max-width: 132px;
  margin-top: 7px;
  color: #87929d;
  font-size: 12px;
  line-height: 16px;
}

.chat-card button,
.alliance-card span {
  height: 31px;
  min-width: 78px;
  margin-top: 10px;
  padding: 0 13px;
  border-radius: 16px;
  background: #11191f;
  color: #20d8d4;
  font-size: 13px;
}

.chat-card::after,
.alliance-card::after {
  display: none;
}

.chat-card::before {
  content: "💌😍";
  position: absolute;
  right: 10px;
  bottom: 14px;
  z-index: 1;
  font-size: 33px;
  letter-spacing: -7px;
  transform: rotate(-10deg);
  filter: drop-shadow(0 5px 7px rgba(22, 91, 99, .12));
}

.chat-card::after {
  content: "〰︎〰︎";
  display: block;
  position: absolute;
  right: 54px;
  bottom: 54px;
  z-index: 1;
  color: #ffc928;
  font-size: 22px;
  letter-spacing: -8px;
  transform: rotate(34deg);
}

.alliance-card::before {
  content: "💸";
  position: absolute;
  right: 17px;
  bottom: 18px;
  z-index: 1;
  font-size: 39px;
  transform: rotate(-8deg);
  filter: drop-shadow(0 6px 8px rgba(22, 91, 99, .13));
}

.chat-card b,
.chat-card p,
.chat-card button,
.alliance-card b,
.alliance-card p,
.alliance-card span {
  position: relative;
  z-index: 2;
}

/* Home hero containment final pass */
.hot-card,
.chat-card,
.alliance-card {
  overflow: hidden;
}

.hot-card li {
  grid-template-columns: minmax(62px, 1fr) 76px;
  gap: 4px;
}

.hot-card em {
  width: 76px;
  padding-right: 2px;
  font-size: 12px;
  overflow: visible;
}

.hot-card em i {
  display: inline-block;
  margin-left: 2px;
  transform: scale(.9);
  transform-origin: center;
}

.chat-card,
.alliance-card {
  padding-right: 12px;
}

.chat-card p,
.alliance-card p {
  max-width: 96px;
}

.chat-card button,
.alliance-card span {
  min-width: 72px;
  height: 29px;
  margin-top: 8px;
  padding: 0 11px;
  font-size: 12px;
}

.chat-card::before {
  right: 8px;
  bottom: 18px;
  font-size: 27px;
  letter-spacing: -6px;
  transform: rotate(-9deg) scale(.92);
}

.chat-card::after {
  right: 49px;
  bottom: 54px;
  font-size: 17px;
  letter-spacing: -7px;
}

.alliance-card::before {
  right: 13px;
  bottom: 21px;
  font-size: 31px;
  transform: rotate(-8deg) scale(.92);
}

.chat-card b,
.chat-card p,
.chat-card button,
.alliance-card b,
.alliance-card p,
.alliance-card span {
  max-width: calc(100% - 4px);
}

/* Home brand final name update */
.home-brand-strip em {
  display: inline-flex;
  align-items: center;
  height: 24px;
  margin-left: 10px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  color: #0aa7a5;
  font-size: 13px;
  font-weight: 900;
  font-style: normal;
  letter-spacing: .2px;
  box-shadow: 0 5px 12px rgba(16, 160, 157, .08);
}

/* Chat square 1:1 reference rebuild */
.chat-square-page {
  min-height: 100%;
  padding: 0 20px 26px;
  background: #f4f6fb;
  color: #111827;
  overflow-y: auto;
}

.chat-square-head {
  height: 82px;
  display: grid;
  grid-template-columns: 34px 180px 78px 148px;
  align-items: center;
  gap: 10px;
  margin: 0 -1px;
}

.chat-square-back {
  width: 34px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #202832;
  font-size: 43px;
  line-height: 34px;
  font-weight: 300;
  transform: translateY(-1px);
}

.chat-square-search {
  width: 180px;
  height: 38px;
  border-radius: 20px;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0 14px;
  box-shadow: none;
}

.chat-square-search span {
  color: #aeb6c1;
  font-size: 24px;
  margin-right: 4px;
}

.chat-square-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111827;
  font-size: 16px;
}

.chat-square-search input::placeholder {
  color: #9da6b2;
}

.chat-square-create {
  height: 38px;
  border: 0;
  background: transparent;
  color: #252d37;
  font-size: 16px;
  font-weight: 500;
  padding: 0;
  text-align: left;
  white-space: nowrap;
}

.chat-square-head .mini-btn,
.chat-square-mini {
  width: 148px;
  height: 40px;
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 1px 3px rgba(15,23,42,.035);
}

.chat-square-title {
  margin: 9px 0 0;
  color: #111827;
  font-size: 27px;
  line-height: 34px;
  font-weight: 500;
  letter-spacing: -.4px;
}

.chat-square-subtitle {
  margin: 1px 0 0;
  color: #929ba8;
  font-size: 17px;
  line-height: 24px;
}

.chat-square-tabs {
  margin: 21px -20px 0 0;
  padding: 0 0 2px;
  display: flex;
  gap: 13px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.chat-square-tabs::-webkit-scrollbar,
.featured-groups::-webkit-scrollbar,
.category-row::-webkit-scrollbar {
  display: none;
}

.chat-square-tabs button {
  flex: 0 0 auto;
  height: 38px;
  padding: 0 17px;
  border: 1px solid #eaedf2;
  border-radius: 20px;
  background: #fff;
  color: #111827;
  font-size: 17px;
  font-weight: 400;
  box-shadow: 0 3px 8px rgba(15,23,42,.025);
}

.featured-groups {
  margin: 16px -20px 0 0;
  display: flex;
  gap: 17px;
  overflow-x: auto;
  padding-bottom: 17px;
}

.featured-card {
  flex: 0 0 260px;
  height: 239px;
  border-radius: 9px;
  background: #fff;
  padding: 24px 22px 18px;
  box-shadow: none;
}

.featured-card h3 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 24px;
  line-height: 31px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.featured-meta {
  height: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.chat-avatar-stack {
  display: flex;
  align-items: center;
}

.chat-avatar-stack img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #fff;
  margin-left: -9px;
}

.chat-avatar-stack img:first-child {
  margin-left: 0;
}

.featured-meta span,
.featured-card em {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  width: fit-content;
  border: 1px solid #e8edf3;
  border-radius: 13px;
  background: #fff;
  color: #111827;
  padding: 0 9px;
  font-size: 13px;
  font-style: normal;
}

.featured-card em {
  border-radius: 4px;
  min-height: 21px;
  padding: 0 5px;
  margin-bottom: 40px;
}

.featured-card p {
  margin: 0;
  color: #374151;
  font-size: 14px;
  line-height: 21px;
}

.chat-square-section-title {
  margin: 0 0 9px;
  color: #8c95a1;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

.category-row {
  margin: 0 -20px 24px;
  padding: 0 0 0 0;
  display: flex;
  gap: 5px;
  overflow-x: auto;
  overflow-y: visible;
}

.category-card {
  flex: 0 0 104px;
  height: 121px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  padding: 20px 8px 11px;
  color: #111827;
  text-align: center;
  box-shadow: 0 10px 20px rgba(15, 23, 42, .035);
}

.category-icon {
  display: block;
  height: 35px;
  font-size: 31px;
  line-height: 35px;
  margin-bottom: 12px;
}

.category-card b {
  display: block;
  margin-bottom: 3px;
  color: #111827;
  font-size: 17px;
  line-height: 22px;
  font-weight: 400;
  white-space: nowrap;
}

.category-card p {
  margin: 0;
  color: #8c95a1;
  font-size: 12px;
  line-height: 16px;
}

.recommend-title {
  margin-top: 0;
  margin-bottom: 14px;
}

.recommend-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.recommend-item {
  min-height: 102px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 88px;
  align-items: center;
  gap: 14px;
  padding: 13px 0 14px;
  border-bottom: 1px solid #e8ebf0;
  background: transparent;
}

.recommend-cover {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: #edf2f7;
}

.recommend-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recommend-main {
  min-width: 0;
}

.recommend-main h5 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wechat-tag {
  display: inline-flex;
  align-items: center;
  height: 20px;
  margin-left: 5px;
  padding: 0 5px;
  border-radius: 5px;
  background: #12c56a;
  color: #fff;
  font-size: 11px;
  vertical-align: 2px;
}

.recommend-main p {
  margin: 0 0 6px;
  color: #4b5563;
  font-size: 14px;
  line-height: 19px;
}

.recommend-main .preview {
  margin: 0;
  color: #4b5563;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-join-btn {
  justify-self: end;
  width: 88px;
  height: 39px;
  border-radius: 20px;
  border: 1px solid #22cbd0;
  background: transparent;
  color: #22cbd0;
  font-size: 15px;
}

/* Chat square richer data and horizontal lanes */
.chat-square-tabs,
.featured-groups,
.category-row {
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
}

.chat-square-tabs button,
.featured-card,
.category-card {
  scroll-snap-align: start;
}

.chat-square-tabs {
  padding-right: 28px;
}

.featured-groups {
  padding-right: 24px;
}

.category-row {
  padding: 0 20px 24px 0;
  margin-right: -20px;
}

.category-card:nth-child(2n) {
  transform: rotate(2.5deg) translateY(-2px);
}

.category-card:nth-child(3n) {
  transform: rotate(-2deg) translateY(1px);
}

.category-card:nth-child(4n) {
  transform: rotate(1deg) translateY(-1px);
}

.recommend-cover {
  box-shadow: 0 4px 10px rgba(15, 23, 42, .08);
}

.recommend-cover .chat-avatar-stack {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
}

.recommend-cover .chat-avatar-stack img {
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  object-fit: cover;
}

.recommend-main p span {
  display: inline-block;
  margin-right: 12px;
  color: #4b5563;
}

/* Chat square backend-driven add category card */
.add-category-card {
  border: 1px dashed #b7dfe2;
  background: rgba(255,255,255,.72);
  color: #18bfc1;
}

.add-category-card .category-icon {
  color: #18cfd0;
  font-size: 35px;
  font-weight: 700;
}

.add-category-card b,
.add-category-card p {
  color: #18bfc1;
}

/* Category row force horizontal scroll */
.category-row {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  gap: 5px !important;
  padding: 0 20px 24px 0 !important;
  margin: 0 -20px 24px !important;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.category-row::-webkit-scrollbar {
  display: none;
}

.category-card {
  flex: 0 0 104px !important;
  min-width: 104px !important;
  height: 121px;
}

.add-category-card {
  flex: 0 0 104px !important;
  min-width: 104px !important;
}

/* Chat square true horizontal carousel lanes */
.chat-square-tabs,
.featured-groups,
.category-row {
  width: calc(100% + 40px) !important;
  max-width: none !important;
  margin-left: -20px !important;
  margin-right: -20px !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: scroll !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: auto;
  scroll-snap-type: x proximity;
}

.chat-square-tabs::-webkit-scrollbar,
.featured-groups::-webkit-scrollbar,
.category-row::-webkit-scrollbar {
  height: 6px;
  display: block;
}

.chat-square-tabs::-webkit-scrollbar-track,
.featured-groups::-webkit-scrollbar-track,
.category-row::-webkit-scrollbar-track {
  background: transparent;
}

.chat-square-tabs::-webkit-scrollbar-thumb,
.featured-groups::-webkit-scrollbar-thumb,
.category-row::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(0, 0, 0, .18);
}

.chat-square-tabs {
  gap: 13px !important;
  padding-bottom: 8px !important;
}

.chat-square-tabs button {
  flex: 0 0 auto !important;
  white-space: nowrap !important;
}

.featured-groups {
  gap: 17px !important;
  padding-bottom: 22px !important;
}

.featured-card {
  flex: 0 0 260px !important;
  width: 260px !important;
  min-width: 260px !important;
}

.category-row {
  gap: 5px !important;
  padding-bottom: 24px !important;
}

.category-card {
  flex: 0 0 104px !important;
  width: 104px !important;
  min-width: 104px !important;
}

/* Chat search page 1:1 reference */
.chat-search-page {
  min-height: 100%;
  background: #fff;
  padding: 0 20px;
  color: #050505;
}

.chat-search-head {
  height: 78px;
  display: grid;
  grid-template-columns: 118px 1fr 148px;
  align-items: center;
}

.chat-search-back {
  width: 116px;
  height: 42px;
  border: 1px solid #f0f0f0;
  border-radius: 22px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #20242a;
}

.chat-search-back span {
  font-size: 42px;
  line-height: 36px;
  font-weight: 200;
}

.chat-search-back i {
  width: 25px;
  height: 25px;
  border: 2px solid #20242a;
  border-radius: 8px;
  font-size: 0;
  position: relative;
  font-style: normal;
}

.chat-search-back i::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-left: 2px solid #20242a;
  border-bottom: 2px solid #20242a;
  transform: rotate(-45deg);
}

.chat-search-head h1 {
  margin: 0;
  text-align: center;
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
}

.chat-search-mini {
  width: 148px;
  height: 40px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #ececec;
  box-shadow: none;
}

.chat-search-row {
  height: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  align-items: center;
  gap: 18px;
}

.chat-search-box {
  height: 40px;
  border-radius: 22px;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  padding: 0 13px;
  color: #c2c6cb;
}

.chat-search-box span {
  margin-right: 7px;
  color: #b8bcc2;
  font-size: 27px;
}

.chat-search-box input {
  flex: 1;
  min-width: 0;
  height: 40px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #1f2937;
  font-size: 18px;
}

.chat-search-box input::placeholder {
  color: #c6c9ce;
}

.chat-search-submit {
  border: 0;
  background: transparent;
  color: #111;
  font-size: 18px;
  line-height: 40px;
  font-weight: 400;
  text-align: right;
}

.chat-search-history-head {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-search-history-head h2 {
  margin: 0;
  color: #050505;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
}

.chat-search-clear {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #969696;
  font-size: 24px;
}

.chat-search-history-list {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chat-search-history-list button {
  height: 32px;
  border: 0;
  border-radius: 16px;
  background: #f6f6f6;
  padding: 0 14px;
  color: #5b6470;
  font-size: 14px;
}

.chat-search-results {
  margin-top: 10px;
}

/* Create group tag/location sheets */
.group-sheet-mask {
  position: absolute;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, .62);
  display: flex;
  align-items: flex-end;
}

.group-tag-sheet,
.group-location-sheet {
  width: 100%;
  background: #fff;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.group-tag-sheet {
  min-height: 360px;
  padding: 0 20px 28px;
}

.group-tag-head {
  height: 64px;
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  align-items: center;
}

.group-tag-head h3,
.group-location-head h3 {
  margin: 0;
  text-align: center;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: #111;
}

.group-sheet-cancel,
.group-sheet-done,
.group-tag-add,
.group-location-close,
.group-location-tabs button,
.group-location-list button,
.group-tag-selected button {
  border: 0;
  background: transparent;
}

.group-sheet-cancel {
  text-align: left;
  color: #999;
  font-size: 16px;
}

.group-sheet-done,
.group-tag-add {
  text-align: right;
  color: #15c8c3;
  font-size: 16px;
}

.group-tag-input-row {
  height: 49px;
  border-radius: 5px;
  background: #f6f6f6;
  display: grid;
  grid-template-columns: 1fr 54px;
  align-items: center;
  padding: 0 14px;
}

.group-tag-input-row input {
  min-width: 0;
  height: 49px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111;
  font-size: 18px;
}

.group-tag-input-row input::placeholder {
  color: #c9c9c9;
}

.group-tag-title {
  margin: 26px 0 12px;
  color: #333;
  font-size: 16px;
}

.group-tag-selected {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.group-tag-selected button {
  height: 34px;
  border-radius: 17px;
  padding: 0 14px;
  background: #f3f4f5;
  color: #333;
  font-size: 15px;
}

.group-location-sheet {
  height: 520px;
  padding: 0 38px 24px;
}

.group-location-head {
  height: 58px;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
}

.group-location-close {
  color: #c7c7c7;
  font-size: 44px;
  line-height: 44px;
  font-weight: 200;
}

.group-location-tabs {
  height: 60px;
  border-bottom: 1px solid #eeeeee;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.group-location-tabs button {
  height: 60px;
  color: #999;
  font-size: 18px;
}

.group-location-tabs button.active {
  color: #333;
  font-weight: 500;
}

.group-location-list {
  height: 390px;
  overflow-y: auto;
}

.group-location-list button {
  width: 100%;
  height: 76px;
  border-bottom: 1px solid #f1f1f1;
  text-align: left;
  color: #333;
  font-size: 21px;
}

.group-cover-input {
  display: none;
}

.create-group-cover img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  display: block;
}

/* Create group category sheet */
.group-category-sheet {
  width: 100%;
  height: 708px;
  background: #fff;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 132px 1fr;
}

.group-category-side {
  background: #f6f6f6;
  padding-top: 62px;
  overflow-y: auto;
}

.group-category-side button {
  width: 100%;
  height: 77px;
  border: 0;
  background: transparent;
  color: #071423;
  font-size: 22px;
  text-align: center;
  position: relative;
}

.group-category-side button.active {
  background: #fff;
  color: #16caca;
}

.group-category-side button.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 31px;
  width: 5px;
  height: 20px;
  background: #21d2d0;
}

.group-category-main {
  padding: 40px 24px 0 21px;
}

.group-category-head {
  height: 38px;
  display: grid;
  grid-template-columns: 1fr 42px;
  align-items: center;
  margin-bottom: 4px;
}

.group-category-head h3 {
  margin: 0;
  color: #111;
  font-size: 20px;
  font-weight: 500;
}

.group-category-close {
  border: 0;
  background: transparent;
  color: #c9c9c9;
  font-size: 42px;
  line-height: 42px;
  font-weight: 200;
}

.group-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 11px;
  padding-top: 1px;
}

.group-category-grid button {
  height: 49px;
  border: 0;
  border-radius: 8px;
  background: #f5f5f5;
  color: #68717c;
  font-size: 20px;
}

/* Create group submitted */
.create-group-submitted-page {
  min-height: 100%;
  background: #f6f6f6;
}

.group-submit-card {
  margin: 20px;
  padding: 62px 22px 26px;
  background: #fff;
  border-radius: 14px;
  text-align: center;
}

.group-submit-card h3 {
  margin: 0 0 22px;
  color: #111;
  font-size: 25px;
  font-weight: 500;
}

.group-submit-card p {
  margin: 0 auto 44px;
  max-width: 410px;
  color: #9a9aa0;
  font-size: 18px;
  line-height: 1.6;
}

.group-submit-card div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.group-submit-card button {
  height: 56px;
  border-radius: 28px;
  border: 1px solid #24cdd1;
  background: #fff;
  color: #22cbd0;
  font-size: 20px;
}

.group-submit-card .group-submit-mine {
  border: 0;
  background: linear-gradient(135deg, #28d6d3, #21c7cd);
  color: #fff;
}

/* Chat search result */
.chat-search-results {
  padding: 20px 20px 0;
}

.chat-search-result-item {
  min-height: 74px;
  display: grid;
  grid-template-columns: 64px 1fr 88px;
  align-items: center;
  gap: 16px;
  margin-bottom: 15px;
}

.chat-search-avatar,
.chat-search-avatar img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.chat-search-avatar img {
  object-fit: cover;
}

.chat-search-result-main h5 {
  margin: 0 0 8px;
  color: #1b2028;
  font-size: 17px;
  font-weight: 500;
}

.chat-search-result-main h5 span {
  display: inline-block;
  margin-right: 7px;
  padding: 1px 7px;
  border-radius: 10px;
  background: #e9fffd;
  color: #20cdd1;
  font-size: 14px;
}

.chat-search-result-main p {
  margin: 0 0 6px;
  color: #8b8f98;
  font-size: 14px;
}

.chat-search-result-main em {
  display: inline-block;
  margin-right: 7px;
  padding: 4px 7px;
  border-radius: 4px;
  background: #f3f3f3;
  color: #68717a;
  font-style: normal;
}

/* Chat group detail */
.chat-group-detail-page {
  min-height: 100%;
  background: #f6f7f8;
  padding-bottom: 110px;
}

.chat-group-detail-hero {
  margin: 18px 20px 12px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
}

.chat-group-detail-hero img {
  width: 100%;
  height: 190px;
  border-radius: 14px;
  object-fit: cover;
  background: #e8f8f8;
}

.chat-group-detail-hero h2 {
  margin: 18px 0 10px;
  color: #111;
  font-size: 24px;
}

.chat-group-detail-hero p {
  margin: 0;
  color: #666f7a;
  font-size: 16px;
  line-height: 1.6;
}

.chat-group-detail-hero div {
  margin-top: 14px;
}

.chat-group-detail-hero span {
  display: inline-block;
  margin: 0 8px 8px 0;
  padding: 6px 10px;
  border-radius: 14px;
  background: #ecfffe;
  color: #20cbd0;
  font-size: 14px;
}

.chat-group-detail-card {
  margin: 0 20px;
  padding: 8px 18px;
  border-radius: 16px;
  background: #fff;
}

.chat-group-detail-card p {
  min-height: 48px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f1f1f1;
  font-size: 16px;
}

.chat-group-detail-card p:last-child {
  border-bottom: 0;
}

.chat-group-detail-card b {
  color: #161a20;
  font-weight: 500;
}

.chat-group-detail-card span {
  color: #7b838d;
}

.chat-group-detail-join {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  width: auto;
  height: 52px;
  border-radius: 26px;
  background: linear-gradient(135deg, #28d6d3, #21c7cd);
  color: #fff;
}

/* Alliance closed-loop pages */
.alliance-search-page,
.alliance-mine-page {
  min-height: 100%;
  background: #fff;
}

.alliance-search-form {
  height: 40px;
  display: grid;
  grid-template-columns: 1fr 54px;
  gap: 12px;
  padding: 0 20px;
  align-items: center;
}

.alliance-search-form label {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 20px;
  background: #f4f4f4;
  color: #b7bbc0;
}

.alliance-search-form input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 17px;
}

.alliance-search-form button {
  border: 0;
  background: transparent;
  font-size: 18px;
  color: #071015;
}

.alliance-search-history {
  padding: 24px 20px;
}

.alliance-search-history h3 {
  margin: 0 0 20px;
  display: flex;
  justify-content: space-between;
  font-size: 19px;
  font-weight: 400;
}

.alliance-search-history h3 button {
  border: 0;
  background: transparent;
  color: #999;
  font-size: 22px;
}

.alliance-search-history > button {
  min-width: 64px;
  height: 38px;
  margin: 0 10px 10px 0;
  border: 1px solid #efefef;
  border-radius: 19px;
  background: #fff;
  font-size: 18px;
}

.alliance-search-results,
.alliance-mine-page .alliance-list {
  padding: 0 16px 96px;
}

.alliance-detail-page {
  min-height: 100%;
  background: #f5f5f5;
  padding-bottom: 86px;
}

.alliance-detail-head {
  height: 80px;
  display: grid;
  grid-template-columns: 42px 38px auto 54px 20px 148px;
  align-items: center;
  gap: 6px;
  padding: 0 8px 0 20px;
  background: #fff;
}

.alliance-detail-head button {
  border: 0;
  background: transparent;
  font-size: 36px;
}

.alliance-detail-head img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.alliance-detail-head span {
  font-size: 20px;
}

.alliance-detail-head b {
  border-radius: 3px;
  background: #1b2419;
  color: #d8ff45;
  font-size: 14px;
}

.alliance-detail-cover {
  background: #b798ba;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.alliance-detail-cover img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.alliance-detail-commission {
  height: 66px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 118px;
  align-items: center;
  padding: 0 18px;
  background: #283b41;
  color: #fff;
}

.alliance-detail-commission b,
.alliance-detail-commission strong {
  color: #ffd48e;
  font-size: 28px;
}

.alliance-detail-commission button {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 18px;
}

.alliance-detail-body {
  background: #fff;
  padding: 26px 22px 30px;
}

.alliance-detail-body h2 {
  margin: 0 0 28px;
  color: #151b22;
  font-size: 24px;
  line-height: 1.35;
}

.alliance-detail-more {
  display: block;
  margin: 0 auto;
  border: 0;
  background: transparent;
  color: #22cfd0;
  font-size: 18px;
}

.alliance-detail-recommend {
  margin-top: 12px;
  padding: 20px;
}

.alliance-detail-recommend h3 {
  margin: 0 0 14px;
  font-size: 22px;
}

.alliance-rec-card {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 12px;
  position: relative;
  margin-bottom: 18px;
  padding: 14px;
  border-radius: 14px;
  background: #fff;
}

.alliance-rec-card img {
  width: 132px;
  height: 102px;
  border-radius: 8px;
  object-fit: cover;
}

.alliance-rec-card b {
  font-size: 20px;
}

.alliance-rec-card p {
  margin: 10px 0 0;
  color: #8a8f95;
  font-size: 16px;
}

.alliance-rec-card em {
  position: absolute;
  right: 18px;
  bottom: 18px;
  color: #f01818;
  font-style: normal;
  font-size: 20px;
}

.alliance-detail-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 76px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  padding: 10px 20px;
  background: #fff;
}

.alliance-detail-bottom button {
  border: 0;
  border-radius: 28px;
  background: transparent;
  color: #6a7077;
  font-size: 16px;
}

.alliance-detail-bottom .alliance-promote-main {
  background: #27cccc;
  color: #fff;
  font-size: 22px;
}

.alliance-mine-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 14px 20px 18px;
  background: #fff;
}

.alliance-mine-tabs button {
  height: 42px;
  border: 0;
  border-radius: 21px;
  background: #f3f3f3;
  font-size: 17px;
}

.alliance-mine-tabs button.active {
  background: #1bc9c9;
  color: #fff;
}

/* Promotion record and creation flow */
.promotion-record-page,
.promotion-create-page {
  min-height: 100%;
  background: #f5f5f5;
  color: #0b1116;
}
.promotion-record-head,
.promotion-create-head {
  height: 86px;
  display: grid;
  grid-template-columns: 64px 1fr 148px;
  align-items: center;
  padding: 0 8px 0 12px;
  background: #fff;
}
.promotion-record-head button,
.promotion-create-head button {
  border: 0;
  background: transparent;
  font-size: 34px;
  color: #111;
}
.promotion-record-head h1,
.promotion-create-head h1 {
  margin: 0;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
}
.promotion-record-tabs {
  height: 48px;
  display: flex;
  gap: 34px;
  align-items: center;
  padding: 0 34px;
  background: #fff;
}
.promotion-record-tabs button {
  position: relative;
  border: 0;
  background: transparent;
  color: #9ea2a7;
  font-size: 22px;
  font-weight: 700;
}
.promotion-record-tabs button.active {
  color: #101418;
  text-shadow: 1px 1px 0 #00cfd0;
}
.promotion-record-tabs button.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 7px;
  border-radius: 5px;
  background: #23cfd0;
  z-index: -1;
}
.promotion-record-content {
  min-height: calc(100vh - 190px);
  padding: 1px 16px 110px;
  background: #f5f5f5;
}
.promotion-empty {
  position: absolute;
  left: 0;
  right: 0;
  top: 48%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #bfc2c8;
  font-size: 18px;
}
.promotion-empty-icon {
  width: 96px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d5d5d5;
  font-size: 54px;
  border-bottom: 2px solid #d5d5d5;
}
.promotion-record-main {
  position: absolute;
  left: 80px;
  right: 80px;
  bottom: 28px;
  height: 56px;
  border: 0;
  border-radius: 30px;
  background: #2fcfd0;
  color: #fff;
  font-size: 24px;
}
.promotion-create-head {
  background: #f6f6f6;
  grid-template-columns: 64px 1fr 148px;
}
.promotion-create-head > button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  font-size: 26px;
}
.promotion-create-mode {
  margin: 16px 20px 12px;
  padding: 5px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  border-radius: 14px;
  background: #fff;
}
.promotion-create-mode button {
  height: 52px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  font-size: 18px;
}
.promotion-create-mode button.active {
  background: #56ded6;
}
.promotion-create-mode b {
  font-size: 24px;
  margin-right: 6px;
}
.promotion-create-mode span {
  color: #111;
  font-weight: 700;
}
.promotion-create-form {
  padding: 0 20px 96px;
}
.promotion-create-card {
  margin-bottom: 12px;
  padding: 20px 22px;
  border-radius: 14px;
  background: #fff;
}
.promotion-create-main-card {
  min-height: 508px;
}
.promotion-media-box {
  width: 138px;
  height: 138px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #f2f2f2;
  color: #c7c7c7;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
}
.promotion-title-input {
  width: 100%;
  height: 58px;
  margin-top: 16px;
  border: 0;
  outline: 0;
  color: #222;
  font-size: 22px;
}
.promotion-create-main-card textarea {
  width: 100%;
  height: 160px;
  border: 0;
  outline: 0;
  resize: none;
  color: #333;
  font-size: 18px;
  line-height: 1.6;
}
.promotion-chip-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.promotion-chip-row button,
.promotion-public-btn {
  min-width: 74px;
  height: 40px;
  border: 0;
  border-radius: 22px;
  background: #f6f6f6;
  color: #172127;
  font-size: 16px;
}
.promotion-chip-row div {
  display: flex;
  border-radius: 20px;
  background: #f6f6f6;
  overflow: hidden;
}
.promotion-chip-row div button {
  border-radius: 0;
  color: #9ba0a6;
}
.promotion-chip-row div button.active {
  background: #29cdce;
  color: #fff;
}
.promotion-public-btn {
  margin-top: 16px;
}
.promotion-form-row {
  width: 100%;
  height: 70px;
  display: grid;
  grid-template-columns: auto 1fr 18px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid #f1f1f1;
  background: transparent;
  text-align: left;
}
.promotion-form-row:last-child {
  border-bottom: 0;
}
.promotion-form-row span {
  color: #111;
  font-size: 21px;
}
.promotion-form-row em {
  color: #c4c6cb;
  font-size: 19px;
  font-style: normal;
  text-align: right;
}
.promotion-form-row i {
  color: #d2d2d2;
  font-style: normal;
  font-size: 26px;
  text-align: right;
}
.promotion-add-group {
  width: 100%;
  height: 34px;
  border: 0;
  background: transparent;
  color: #20cfd0;
  font-size: 20px;
}
.promotion-contact-title {
  height: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #111;
  font-size: 22px;
}
.promotion-contact-title span {
  color: #bfc2c8;
  font-size: 18px;
}
.promotion-create-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 76px;
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 14px;
  padding: 10px 20px;
  background: #fff;
}
.promotion-create-bottom button {
  border: 1px solid #edf0f0;
  border-radius: 28px;
  background: #fff;
  color: #111;
  font-size: 20px;
  font-weight: 700;
}
.promotion-create-bottom button:last-child {
  border: 0;
  background: #272727;
  color: #2dffff;
  font-weight: 400;
}

.alliance-tabs .alliance-category-trigger {
  width: 37px;
  height: 26px;
  min-width: 37px;
  align-self: center;
  justify-content: center;
  border-radius: 6px;
  background: #061018;
  color: #27e3df;
  padding: 0;
}

.alliance-tabs .alliance-category-trigger span {
  color: #27e3df;
  font-size: 18px;
  line-height: 1;
}

.alliance-tabs .alliance-category-trigger::after {
  display: none;
}

.alliance-category-mask {
  background: rgba(6, 18, 19, 0.68);
  z-index: 80;
}

.alliance-category-sheet {
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
  background: #fff;
  border-radius: 28px 28px 6px 6px;
  padding: 22px 22px 26px;
  box-shadow: 0 -12px 34px rgba(0,0,0,.12);
}

.alliance-category-title {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.alliance-category-title b {
  color: #1b2026;
  font-size: 20px;
  font-weight: 500;
}

.alliance-category-title button {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #999;
  font-size: 38px;
  line-height: 30px;
  font-weight: 200;
}

.alliance-category-grid {
  max-height: calc(85vh - 96px);
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 6px 1px 2px;
}

.alliance-category-grid button {
  height: 44px;
  border: 1px solid #eef0f2;
  border-radius: 5px;
  background: #fff;
  color: #666;
  font-size: 16px;
}

.alliance-category-grid button.active,
.alliance-category-grid button:active {
  border-color: #25d4d1;
  background: #eaffff;
  color: #11b9b7;
}

.home-top {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.status {
  display: none;
  height: 0;
}

#pageContainer {
  min-height: 100%;
}

.hero-right .chat-card {
  min-height: 112px;
  padding: 17px 15px 13px;
  border-radius: 8px;
  border: 0;
  background: linear-gradient(135deg, rgba(244, 255, 255, .96) 0%, rgba(221, 249, 247, .92) 100%);
  box-shadow: none;
  overflow: hidden;
}

.hero-right .chat-card::before {
  content: "";
  position: absolute;
  left: 78px;
  top: -38px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(150, 238, 232, .5);
}

.hero-right .chat-card::after {
  display: none;
}

.hero-right .chat-card b {
  position: relative;
  z-index: 2;
  display: block;
  color: #071015;
  font-size: 20px;
  line-height: 25px;
  font-weight: 900;
  letter-spacing: -.6px;
}

.hero-right .chat-card p {
  position: relative;
  z-index: 2;
  margin-top: 7px;
  color: #75818b;
  font-size: 12px;
  line-height: 16px;
  white-space: nowrap;
}

.chat-card-avatars {
  position: relative;
  z-index: 2;
  display: flex;
  margin-top: 9px;
  padding-left: 2px;
}

.chat-card-avatars i {
  width: 13px;
  height: 13px;
  margin-left: -2px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #65b7ff, #264cb4);
}

.chat-card-avatars i:first-child {
  margin-left: 0;
  background: linear-gradient(135deg, #5dc8ff, #4267e8);
}

.chat-card-avatars i:nth-child(2) {
  background: linear-gradient(135deg, #ffb6cb, #ee4f83);
}

.chat-card-avatars i:nth-child(3) {
  background: linear-gradient(135deg, #f7d7ab, #4f6575);
}

.hero-right .chat-card button {
  position: absolute;
  z-index: 3;
  left: 15px;
  bottom: 9px;
  height: 29px;
  margin: 0;
  padding: 0 13px;
  border: 0;
  border-radius: 15px 15px 15px 4px;
  background: #121b22;
  color: #20f0ea;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -.2px;
  box-shadow: 0 5px 9px rgba(11, 23, 29, .13);
}

.hero-right .chat-card button em {
  margin-left: 4px;
  color: #6bf8f2;
  font-size: 10px;
  font-style: normal;
}

.chat-card-emoji {
  position: absolute;
  right: 13px;
  bottom: 8px;
  width: 92px;
  height: 63px;
  z-index: 1;
}

.chat-card-emoji span {
  position: absolute;
  left: 14px;
  bottom: 0;
  font-size: 27px;
  transform: rotate(10deg);
  filter: drop-shadow(0 3px 3px rgba(55, 185, 189, .15));
}

.chat-card-emoji strong {
  position: absolute;
  left: 42px;
  top: 12px;
  font-size: 30px;
  font-weight: 400;
  transform: rotate(-11deg);
  filter: drop-shadow(0 4px 4px rgba(239, 62, 102, .16));
}

.chat-card-emoji b {
  position: absolute;
  right: 0;
  bottom: 14px;
  font-size: 31px;
  line-height: 1;
  transform: rotate(12deg);
}

.chat-card-emoji i {
  position: absolute;
  display: block;
  border-radius: 4px;
  background: #ffcf20;
}

.chat-card-emoji i:nth-of-type(1) {
  left: 0;
  top: 24px;
  width: 12px;
  height: 4px;
  transform: rotate(31deg);
}

.chat-card-emoji i:nth-of-type(2) {
  left: 23px;
  top: 12px;
  width: 4px;
  height: 13px;
  background: #58cde5;
  transform: rotate(-4deg);
}

.chat-card-emoji i:nth-of-type(3) {
  left: 46px;
  top: 0;
  width: 5px;
  height: 13px;
  background: #fb7d5e;
  transform: rotate(19deg);
}

.hero-right {
  gap: 18px;
}

.hero-right .chat-card,
.hero-right .alliance-card {
  min-height: 134px;
  padding: 18px 16px;
  border: 0;
  border-radius: 8px;
  background: rgba(245, 255, 255, .82);
  box-shadow: none;
  backdrop-filter: none;
}

.hero-right .chat-card {
  overflow: hidden;
}

.hero-right .chat-card::before {
  left: 68px;
  top: -44px;
  width: 108px;
  height: 108px;
  background: rgba(143, 235, 227, .62);
}

.hero-right .alliance-card::before,
.hero-right .alliance-card::after,
.hero-right .chat-card::after {
  display: none;
}

.hero-right .chat-card b,
.hero-right .alliance-card b {
  position: relative;
  z-index: 3;
  display: block;
  color: #061018;
  font-size: 21px;
  line-height: 27px;
  font-weight: 900;
  letter-spacing: -1px;
}

.hero-right .chat-card p,
.hero-right .alliance-card p {
  position: relative;
  z-index: 3;
  margin-top: 8px;
  color: #7b858d;
  font-size: 13px;
  line-height: 17px;
  white-space: nowrap;
}

.chat-card-avatars {
  margin-top: 9px;
  padding-left: 1px;
}

.chat-card-avatars i {
  width: 15px;
  height: 15px;
  border-width: 1.5px;
}

.hero-right .chat-card button,
.hero-right .alliance-card span {
  position: absolute;
  z-index: 4;
  left: 16px;
  bottom: 16px;
  height: 31px;
  margin: 0;
  padding: 0 14px;
  border-radius: 16px 16px 16px 4px;
  background: #131d23;
  color: #22f3eb;
  font-size: 15px;
  font-weight: 900;
  box-shadow: none;
}

.hero-right .chat-card button em {
  margin-left: 5px;
  color: #8ffff9;
  font-size: 10px;
}

.chat-card-emoji {
  right: 15px;
  bottom: 18px;
  width: 96px;
  height: 68px;
}

.chat-card-emoji span {
  left: 10px;
  bottom: -1px;
  font-size: 30px;
}

.chat-card-emoji strong {
  left: 40px;
  top: 12px;
  font-size: 33px;
}

.chat-card-emoji b {
  right: -1px;
  bottom: 17px;
  font-size: 34px;
}

.chat-card-emoji i:nth-of-type(1) {
  left: -3px;
  top: 26px;
  width: 12px;
  height: 4px;
}

.chat-card-emoji i:nth-of-type(2) {
  left: 23px;
  top: 9px;
}

.chat-card-emoji i:nth-of-type(3) {
  left: 47px;
  top: -2px;
}

.hero-right .alliance-card {
  position: relative;
  overflow: hidden;
}

.alliance-card-illus {
  position: absolute;
  right: 17px;
  bottom: 19px;
  width: 76px;
  height: 54px;
}

.alliance-card-illus i {
  position: absolute;
  right: 0;
  bottom: 4px;
  width: 55px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f7c1dd 0%, #d9e2ff 58%, #a7e9ff 100%);
  transform: rotate(-9deg);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.55);
}

.alliance-card-illus b {
  position: absolute;
  left: 4px;
  bottom: 5px;
  z-index: 2;
  font-size: 33px;
  line-height: 1;
  transform: rotate(8deg);
  filter: drop-shadow(0 4px 5px rgba(247, 126, 149, .16));
}

.hero-right {
  gap: 17px;
}

.hero-right .chat-card,
.hero-right .alliance-card {
  min-height: 126px;
  padding: 18px 13px 12px 15px;
  border-radius: 7px;
  background: rgba(244, 255, 255, .78);
}

.hero-right .chat-card::before {
  left: 67px;
  top: -43px;
  width: 101px;
  height: 101px;
  background: rgba(139, 235, 227, .64);
}

.hero-right .chat-card b,
.hero-right .alliance-card b {
  font-size: 20px;
  line-height: 25px;
  letter-spacing: -.8px;
}

.hero-right .chat-card p,
.hero-right .alliance-card p {
  margin-top: 7px;
  font-size: 12px;
  line-height: 16px;
  max-width: 112px;
  overflow: hidden;
  text-overflow: clip;
}

.chat-card-avatars {
  display: none;
}

.hero-right .chat-card button,
.hero-right .alliance-card span {
  left: 15px;
  bottom: 14px;
  height: 30px;
  padding: 0 13px;
  border-radius: 15px 15px 15px 4px;
  font-size: 14px;
}

.chat-card-emoji {
  right: 6px;
  bottom: 12px;
  width: 72px;
  height: 55px;
}

.chat-card-emoji span {
  left: 2px;
  bottom: -2px;
  font-size: 24px;
}

.chat-card-emoji strong {
  left: 28px;
  top: 9px;
  font-size: 28px;
}

.chat-card-emoji b {
  display: none;
}

.chat-card-emoji i:nth-of-type(1) {
  left: -4px;
  top: 20px;
  width: 10px;
}

.chat-card-emoji i:nth-of-type(2) {
  left: 17px;
  top: 4px;
  height: 11px;
}

.chat-card-emoji i:nth-of-type(3) {
  left: 38px;
  top: -4px;
  height: 11px;
}

.alliance-card-illus {
  right: 11px;
  bottom: 18px;
  width: 70px;
  height: 48px;
  z-index: 1;
}

.alliance-card-illus i {
  right: 0;
  bottom: 0;
  width: 54px;
  height: 31px;
  opacity: .9;
}

.alliance-card-illus b {
  left: 1px;
  bottom: 7px;
  font-size: 22px;
}

.hero-grid {
  grid-template-columns: 1.08fr 232px;
  gap: 18px;
}

.hero-right {
  gap: 18px;
}

.hero-right .chat-card,
.hero-right .alliance-card {
  width: 232px;
  min-height: 164px;
  padding: 18px 16px;
  border: 0;
  border-radius: 8px;
  background: rgba(245, 255, 255, .82);
  box-shadow: none;
  backdrop-filter: none;
}

.hero-right .alliance-card {
  min-height: 88px;
}

.hero-right .chat-card::before {
  left: 84px;
  top: -54px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(139, 235, 227, .58);
}

.hero-right .chat-card::after,
.hero-right .alliance-card::before,
.hero-right .alliance-card::after {
  display: none;
}

.hero-right .chat-card b,
.hero-right .alliance-card b {
  position: relative;
  z-index: 3;
  display: block;
  color: #061018;
  font-size: 22px;
  line-height: 28px;
  font-weight: 900;
  letter-spacing: -1px;
}

.hero-right .chat-card p,
.hero-right .alliance-card p {
  position: relative;
  z-index: 3;
  margin-top: 8px;
  color: #7f8a92;
  font-size: 13px;
  line-height: 17px;
  max-width: 170px;
  white-space: nowrap;
  overflow: hidden;
}

.chat-card-avatars {
  display: flex;
  margin-top: 10px;
  padding-left: 2px;
}

.chat-card-avatars i {
  width: 16px;
  height: 16px;
  margin-left: -3px;
  border: 1.5px solid #fff;
}

.chat-card-avatars i:first-child {
  margin-left: 0;
}

.hero-right .chat-card button {
  position: absolute;
  left: 16px;
  bottom: 18px;
  z-index: 5;
  height: 32px;
  margin: 0;
  padding: 0 14px;
  border: 0;
  border-radius: 17px 17px 17px 4px;
  background: #131d23;
  color: #24f4ed;
  font-size: 16px;
  font-weight: 900;
  box-shadow: none;
}

.hero-right .chat-card button em {
  margin-left: 5px;
  color: #9ffffa;
  font-size: 10px;
}

.chat-card-emoji {
  right: 16px;
  bottom: 20px;
  width: 100px;
  height: 72px;
  z-index: 2;
}

.chat-card-emoji span {
  left: 9px;
  bottom: 0;
  font-size: 31px;
  transform: rotate(10deg);
}

.chat-card-emoji strong {
  left: 40px;
  top: 13px;
  font-size: 34px;
  transform: rotate(-10deg);
}

.chat-card-emoji b {
  display: block;
  right: -2px;
  bottom: 18px;
  font-size: 34px;
  transform: rotate(12deg);
}

.chat-card-emoji i:nth-of-type(1) {
  left: -2px;
  top: 28px;
  width: 12px;
  height: 4px;
}

.chat-card-emoji i:nth-of-type(2) {
  left: 24px;
  top: 10px;
  width: 4px;
  height: 13px;
}

.chat-card-emoji i:nth-of-type(3) {
  left: 48px;
  top: -2px;
  width: 5px;
  height: 13px;
}

.hero-right .alliance-card span {
  display: none;
}

.alliance-card-illus {
  right: 18px;
  bottom: 14px;
  width: 82px;
  height: 58px;
  z-index: 2;
}

.alliance-card-illus i {
  right: 0;
  bottom: 3px;
  width: 64px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffc2dc 0%, #dfe2ff 58%, #aeeeff 100%);
  opacity: 1;
  transform: rotate(-9deg);
}

.alliance-card-illus b {
  left: 3px;
  bottom: 7px;
  font-size: 35px;
  transform: rotate(8deg);
}

.profile-home-page {
  min-height: 100%;
  background: #f6f6f6;
  color: #111820;
  padding-bottom: 80px;
}

.profile-home-hero {
  min-height: 536px;
  padding: 32px 20px 0;
  background:
    radial-gradient(circle at 16% 16%, rgba(87, 114, 114, .42) 0 18%, transparent 48%),
    linear-gradient(145deg, #253936 0%, #435657 58%, #576468 100%);
  color: #fff;
  border-radius: 0 0 0 0;
}

.profile-top-row {
  height: 40px;
  display: grid;
  grid-template-columns: 42px 1fr 40px 148px;
  align-items: center;
  gap: 8px;
}

.profile-menu-hamburger {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 31px;
  line-height: 30px;
}

.profile-card-type {
  justify-self: center;
  height: 36px;
  padding: 0 13px;
  border: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, .13);
  color: #fff;
  font-size: 14px;
}

.profile-grid-btn {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 22px;
}

.profile-top-row .mini-btn {
  width: 148px;
  height: 40px;
  border-color: rgba(255, 255, 255, .08);
  background: rgba(14, 27, 29, .42);
  color: #fff;
}

.profile-cert-row {
  height: 50px;
  margin: 8px 2px 24px;
  padding: 0 10px 0 14px;
  display: grid;
  grid-template-columns: auto 1fr 70px;
  align-items: center;
  border-radius: 25px;
  background: rgba(9, 22, 24, .72);
  color: #fff;
}

.profile-cert-row b,
.profile-cert-row span {
  font-size: 16px;
  font-weight: 800;
}

.profile-cert-row button {
  height: 38px;
  border: 0;
  border-radius: 20px;
  background: #23d8dc;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.profile-user-row {
  display: grid;
  grid-template-columns: 104px 1fr;
  align-items: center;
  gap: 17px;
}

.profile-home-avatar {
  width: 98px;
  height: 98px;
  position: relative;
}

.profile-home-avatar img {
  width: 98px;
  height: 98px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.95);
  object-fit: cover;
  background: #f6f0ea;
}

.profile-home-avatar i {
  position: absolute;
  right: 1px;
  bottom: 6px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #49a9ff;
  color: #fff;
  font-size: 15px;
  font-style: normal;
}

.profile-user-row h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 26px;
  line-height: 32px;
  font-weight: 900;
}

.profile-owner-badge,
.profile-star-badge {
  display: inline-flex;
  align-items: center;
  height: 19px;
  margin-right: 5px;
  padding: 0 7px;
  border-radius: 10px;
  background: #dce8ff;
  color: #536784;
  font-size: 11px;
  font-weight: 800;
}

.profile-bio {
  margin-top: 26px;
  color: #fff;
  font-size: 17px;
  line-height: 24px;
  font-weight: 800;
}

.profile-bio b {
  margin-left: 6px;
  color: rgba(255,255,255,.72);
}

.profile-medal {
  height: 24px;
  margin-top: 14px;
  border: 0;
  border-radius: 13px;
  background: rgba(255,255,255,.28);
  color: #fff;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 800;
}

.profile-counts {
  height: 78px;
  display: grid;
  grid-template-columns: 54px 54px 1fr 52px;
  align-items: end;
  gap: 8px;
}

.profile-counts div b {
  display: block;
  color: #fff;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  font-weight: 500;
}

.profile-counts div span {
  display: block;
  margin-top: 3px;
  color: #fff;
  font-size: 15px;
  text-align: center;
}

.profile-counts button {
  justify-self: end;
  width: 116px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.profile-counts .profile-refresh {
  width: 50px;
  border-radius: 18px;
  font-size: 20px;
}

.profile-asset-row {
  height: 76px;
  margin: 30px -20px 0;
  padding: 0 0 0 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 135px;
  gap: 10px;
  overflow-x: auto;
}

.profile-asset-row button {
  height: 64px;
  border: 0;
  border-radius: 7px;
  background: rgba(255,255,255,.13);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
}

.profile-asset-row button b {
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
}

.profile-asset-row button span {
  display: block;
  margin-top: 2px;
  color: rgba(255,255,255,.76);
  font-size: 13px;
}

.profile-content-panel {
  margin-top: 0;
  background: #fff;
  border-radius: 18px 18px 0 0;
  min-height: 360px;
  overflow: hidden;
}

.profile-tabs {
  height: 58px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) 64px;
  align-items: center;
  border-bottom: 1px solid #edf0f2;
}

.profile-tabs button {
  height: 58px;
  border: 0;
  background: transparent;
  color: #8c8f98;
  font-size: 20px;
  position: relative;
}

.profile-tabs button.active {
  color: #111820;
  font-weight: 500;
}

.profile-tabs button.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 7px;
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: #21d5d2;
  transform: translateX(-50%);
}

.profile-list-more {
  border-radius: 8px 0 0 8px;
  background: linear-gradient(90deg, #ffced3, #ffaeb4) !important;
  color: #fff !important;
}

.profile-sub-tabs {
  display: none;
}

.profile-tab-body {
  min-height: 304px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  background: #fafafa;
}

.profile-empty {
  margin-top: 0;
  color: #111820;
  text-align: center;
}

.profile-empty div {
  color: #dedede;
  font-size: 70px;
  line-height: 78px;
}

.profile-empty p {
  margin-top: 18px;
  color: #111820;
  font-size: 18px;
}

.profile-empty::after {
  content: "去发�?;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  height: 42px;
  margin-top: 26px;
  border: 1px solid #e0e0e0;
  border-radius: 22px;
  color: #333;
  font-size: 16px;
}

/* Discover square final 1:1 overrides */
.discover-page-wrap{min-height:100%;background:#f4f6f8;padding-bottom:82px}.discover-top{position:sticky;top:0;z-index:40;background:#fff;border-bottom:0;padding-top:28px}.discover-tabs{height:45px;display:flex;justify-content:center;gap:30px;padding:0 118px 0 92px;position:relative}.discover-tab{height:45px;border:0;background:transparent;color:#9ca1aa;font-size:20px;font-weight:400;padding:0 0 12px}.discover-tabs .active{color:#111820;font-weight:500}.discover-tabs .active::after{bottom:5px;width:31px;height:2px;background:#20d5d2}.discover-mini{position:absolute;right:8px;top:2px;width:150px;height:40px;border-radius:22px;background:#fff}.discover-cates{height:46px;display:grid;grid-template-columns:repeat(6,minmax(0,1fr)) 30px;gap:0;padding:0 12px 0 18px;align-items:center;background:#fff;overflow:hidden}.discover-cates button{min-width:0;border:0;background:transparent;color:#8a9099;font-size:18px;text-align:center}.discover-cates .active{color:#111820;font-weight:500}.discover-cate-toggle{color:#969ba3!important;font-size:22px!important}.discover-waterfall{display:grid;grid-template-columns:1fr 1fr;gap:4px;padding:4px;background:#eef1f5}.discover-card{margin:0;border-radius:2px;background:#fff;overflow:hidden;box-shadow:none}.discover-card img{width:100%;height:284px;display:block;object-fit:cover;border-radius:0}.discover-card.short img{height:236px}.discover-card .feed-card-body{padding:12px 14px 10px}.discover-card h3{color:#202329;font-size:18px;line-height:25px;font-weight:500}.discover-card-meta{height:30px;margin-top:12px;display:flex;align-items:center;justify-content:space-between;color:#7e858f;font-size:14px}.discover-card-meta span{display:flex;align-items:center;min-width:0;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.discover-card-meta span img{width:22px;height:22px;margin-right:7px;border-radius:50%;object-fit:cover}.discover-card-meta button{border:0;background:transparent;color:#8c929a;font-size:24px;display:flex;align-items:center;gap:5px}.discover-card-meta button.active{color:#ff6681}.discover-card-meta button em{color:#727982;font-size:14px;font-style:normal}.discover-category-mask{position:absolute;left:0;right:0;top:0;bottom:0;z-index:70;background:rgba(0,0,0,.62)}.discover-category-panel{position:absolute;left:0;right:0;top:0;z-index:80;padding:90px 16px 16px;border-radius:0 0 12px 12px;background:#fff}.discover-category-close{position:absolute;right:14px;top:82px;border:0;background:transparent;color:#999;font-size:24px}.discover-category-panel>div{display:grid;grid-template-columns:repeat(4,1fr);gap:14px 15px}.discover-category-panel button:not(.discover-category-close){height:44px;border:1px solid #eef0f2;border-radius:5px;background:#fff;color:#3d444d;font-size:16px}.discover-follow-empty{min-height:calc(100vh - 175px);display:flex;flex-direction:column;align-items:center;justify-content:center;background:#fff;padding-bottom:80px}.discover-follow-empty div{color:#d7d7d7;font-size:68px;line-height:72px}.discover-follow-empty p{margin-top:20px;color:#bcc1ca;font-size:17px}.discover-follow-empty button{width:120px;height:48px;margin-top:28px;border:0;border-radius:25px;background:#28d4d2;color:#fff;font-size:18px;font-weight:700}

/* Home hero final correction: match target two-column layout */
.hero-grid{display:grid!important;grid-template-columns:minmax(0,1fr) minmax(0,1fr)!important;gap:14px!important;align-items:stretch!important}.hot-card{min-width:0!important;min-height:190px!important;padding:16px 15px!important;border-radius:8px!important;background:rgba(245,255,255,.78)!important;box-shadow:none!important}.hot-card h4{font-size:25px!important;line-height:31px!important;margin:0 0 18px!important;color:#071015!important;text-shadow:2px 2px 0 #a78bfa,-1px -1px 0 #a78bfa!important;white-space:nowrap!important}.hot-card li{height:34px!important;display:grid!important;grid-template-columns:24px 1fr auto!important;gap:4px!important;align-items:center!important;font-size:19px!important;color:#071015!important}.hot-card li span{display:contents!important}.hot-card li b{width:20px!important;height:20px!important;background:transparent!important;color:#071015!important;font-size:16px!important;font-weight:900!important;margin:0!important}.hot-card em{font-size:14px!important;color:#8a949d!important;white-space:nowrap!important}.hot-card em i{color:#ff334b!important;font-size:12px!important}.hero-right{min-width:0!important;display:grid!important;grid-template-rows:1fr auto!important;gap:18px!important}.hero-right .chat-card,.hero-right .alliance-card{width:auto!important;min-width:0!important;border:0!important;border-radius:8px!important;background:rgba(245,255,255,.82)!important;box-shadow:none!important;backdrop-filter:none!important;overflow:hidden!important}.hero-right .chat-card{min-height:150px!important;padding:18px 15px!important}.hero-right .alliance-card{min-height:94px!important;padding:18px 15px!important}.hero-right .chat-card::before{left:78px!important;top:-54px!important;width:112px!important;height:112px!important;background:rgba(139,235,227,.62)!important}.hero-right .chat-card::after,.hero-right .alliance-card::before,.hero-right .alliance-card::after{display:none!important}.hero-right .chat-card b,.hero-right .alliance-card b{font-size:22px!important;line-height:28px!important;font-weight:900!important;letter-spacing:-1px!important;color:#071015!important;position:relative!important;z-index:4!important}.hero-right .chat-card p,.hero-right .alliance-card p{max-width:150px!important;margin-top:8px!important;color:#7d878f!important;font-size:13px!important;line-height:17px!important;white-space:nowrap!important;overflow:hidden!important;position:relative!important;z-index:4!important}.chat-card-avatars{display:flex!important;margin-top:10px!important;position:relative!important;z-index:4!important}.chat-card-avatars i{width:16px!important;height:16px!important;margin-left:-3px!important;border:1.5px solid #fff!important}.chat-card-avatars i:first-child{margin-left:0!important}.hero-right .chat-card button{left:15px!important;bottom:17px!important;height:32px!important;padding:0 14px!important;border-radius:17px 17px 17px 4px!important;background:#131d23!important;color:#24f4ed!important;font-size:16px!important;font-weight:900!important;z-index:5!important}.chat-card-emoji{right:10px!important;bottom:17px!important;width:92px!important;height:68px!important;z-index:3!important}.chat-card-emoji span{left:7px!important;bottom:0!important;font-size:29px!important}.chat-card-emoji strong{left:37px!important;top:12px!important;font-size:32px!important}.chat-card-emoji b{display:block!important;right:-1px!important;bottom:17px!important;font-size:33px!important}.chat-card-emoji i:nth-of-type(1){left:-3px!important;top:26px!important;width:12px!important;height:4px!important}.chat-card-emoji i:nth-of-type(2){left:22px!important;top:9px!important;width:4px!important;height:13px!important}.chat-card-emoji i:nth-of-type(3){left:45px!important;top:-2px!important;width:5px!important;height:13px!important}.hero-right .alliance-card span{display:none!important}.alliance-card-illus{right:14px!important;bottom:12px!important;width:76px!important;height:54px!important;z-index:3!important}.alliance-card-illus i{right:0!important;bottom:4px!important;width:62px!important;height:36px!important;opacity:1!important;background:linear-gradient(135deg,#ffc2dc 0%,#dfe2ff 58%,#aeeeff 100%)!important}.alliance-card-illus b{left:2px!important;bottom:7px!important;font-size:32px!important} .phone{width:min(100vw,518px)!important;min-width:0!important;max-width:518px!important;height:min(100vh,980px)!important;min-height:0!important;max-height:980px!important;border-radius:clamp(0px,2.7vw,14px)!important}.status{display:none!important}#pageContainer{min-height:100%!important;max-height:100%!important;padding-bottom:82px!important}.home-page{min-height:100%!important;background:#dbf7f5!important}.home-brand-strip{height:90px!important;padding:34px 12px 0!important;background:linear-gradient(180deg,#2ec0bb 0%,#1a9c98 100%)!important}.home-brand-strip span{font-size:clamp(24px,5.05vw,28px)!important;line-height:34px!important;font-weight:950!important;color:#fff!important;text-shadow:0 2px 8px rgba(0,0,0,0.3)!important}.home-brand-strip em,.home-brand-strip::before,.home-brand-strip::after{display:none!important}.home-brand-strip+.home-top{padding:0 12px 16px!important;margin:0!important;background:linear-gradient(180deg,#2ec0bb 0%,#1a9c98 100%)!important;border-radius:0!important;box-shadow:none!important}.home-brand-strip+.home-top .home-header{position:absolute!important;right:8px!important;top:33px!important;height:40px!important;margin:0!important;overflow:visible!important}.home-brand-strip+.home-top .home-header>div:first-child{display:none!important}.home-brand-strip+.home-top .mini-btn{width:148px!important;height:40px!important;transform:none!important;border-radius:22px!important;background:rgba(247,255,255,.68)!important;border:1px solid rgba(255,255,255,.6)!important;box-shadow:none!important}.home-search{height:46px!important;margin:0 1px 16px!important;border-radius:25px!important;background:rgba(255,255,255,.86)!important;border:0!important;padding:0 18px!important;color:#afb7bd!important;font-size:18px!important;box-shadow:none!important}.search-icon{font-size:24px!important;margin-right:8px!important;color:#313a42!important}.hero-grid{display:grid!important;grid-template-columns:minmax(0,230fr) minmax(0,232fr)!important;gap:18px!important;align-items:stretch!important}.hot-card,.hero-right .chat-card,.hero-right .alliance-card{border:0!important;border-radius:8px!important;background:rgba(247,255,255,.68)!important;box-shadow:none!important;backdrop-filter:none!important;min-width:0!important;overflow:hidden!important}.hot-card{height:272px!important;min-height:272px!important;padding:17px 14px!important}.hot-card h4{margin:0 0 18px!important;font-size:29px!important;line-height:34px!important;font-weight:950!important;color:#061016!important;letter-spacing:-1px!important;text-shadow:2px 2px 0 #11d0d0,-1px -1px 0 #11d0d0!important;white-space:nowrap!important}.hot-card ul{gap:16px!important}.hot-card li{height:34px!important;display:grid!important;grid-template-columns:24px minmax(0,1fr) auto!important;align-items:center!important;gap:5px!important;font-size:21px!important;line-height:34px!important;color:#07131b!important}.hot-card li span{display:contents!important}.hot-card li b{width:22px!important;height:22px!important;margin:0!important;background:transparent!important;color:#07131b!important;font-size:15px!important;font-weight:950!important}.hot-card em{font-size:14px!important;color:#8b949c!important;white-space:nowrap!important}.hot-card em i{font-size:12px!important;color:#ff314b!important}.hero-right{display:grid!important;grid-template-rows:167px 88px!important;gap:17px!important;min-width:0!important}.hero-right .chat-card{height:167px!important;min-height:167px!important;padding:20px 15px!important;position:relative!important}.hero-right .alliance-card{height:88px!important;min-height:88px!important;padding:17px 15px!important;position:relative!important}.hero-right .chat-card b,.hero-right .alliance-card b{font-size:22px!important;line-height:28px!important;font-weight:950!important;color:#101b23!important;letter-spacing:-1px!important;position:relative!important;z-index:4!important}.hero-right .chat-card p,.hero-right .alliance-card p{max-width:160px!important;margin-top:5px!important;font-size:13px!important;line-height:18px!important;color:#818b94!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:clip!important;position:relative!important;z-index:4!important}.chat-card-avatars{display:flex!important;margin-top:10px!important;position:relative!important;z-index:4!important}.chat-card-avatars i{width:16px!important;height:16px!important;margin-left:-4px!important;border-radius:50%!important;border:1.5px solid #fff!important}.chat-card-avatars i:first-child{margin-left:0!important}.hero-right .chat-card button{position:absolute!important;left:15px!important;bottom:25px!important;height:33px!important;min-height:33px!important;padding:0 14px!important;border-radius:17px 17px 17px 4px!important;background:#1e272c!important;color:#22f2ee!important;font-size:16px!important;font-weight:950!important;z-index:5!important}.chat-card-emoji{position:absolute!important;right:8px!important;bottom:22px!important;width:98px!important;height:74px!important;z-index:3!important}.chat-card-emoji span{position:absolute!important;left:6px!important;bottom:0!important;font-size:30px!important}.chat-card-emoji strong{position:absolute!important;left:36px!important;top:8px!important;font-size:35px!important}.chat-card-emoji b{display:block!important;position:absolute!important;right:0!important;bottom:18px!important;font-size:35px!important;line-height:1!important}.chat-card-emoji i:nth-of-type(1){left:1px!important;top:30px!important;width:13px!important;height:4px!important}.chat-card-emoji i:nth-of-type(2){left:25px!important;top:10px!important;width:4px!important;height:14px!important}.chat-card-emoji i:nth-of-type(3){left:54px!important;top:0!important;width:5px!important;height:14px!important}.alliance-card-illus{position:absolute!important;right:15px!important;bottom:13px!important;width:82px!important;height:58px!important;z-index:3!important}.alliance-card-illus i{right:0!important;bottom:2px!important;width:64px!important;height:38px!important;border-radius:50%!important;background:linear-gradient(135deg,#ffc4dd 0%,#dfe0ff 58%,#b7eff0 100%)!important;opacity:1!important}.alliance-card-illus b{left:0!important;bottom:11px!important;font-size:31px!important}.home-tabs{height:72px!important;padding:0 18px!important;gap:28px!important;background:#fff!important;border-radius:16px 16px 0 0!important;top:0!important;box-shadow:none!important}.home-tabs button{height:72px!important;min-height:72px!important;border:0!important;background:transparent!important;padding:0 0 7px!important;color:#8e969e!important;font-size:21px!important;font-weight:700!important;white-space:nowrap!important}.home-tabs button.active{color:#101820!important;border-bottom:3px solid #10d0cf!important}.home-filters{height:55px!important;padding:8px 12px 8px!important;gap:10px!important;background:#fff!important;top:72px!important;box-shadow:none!important}.home-filters button{height:38px!important;min-height:38px!important;padding:0 15px!important;border:0!important;border-radius:20px!important;background:#f4f4f4!important;color:#20272e!important;font-size:17px!important}.home-event-list.restored{padding-top:0!important;background:transparent!important}.home-feature-event.event-card{margin:0 0 13px!important;border-radius:18px!important;padding:16px!important;box-shadow:none!important}.home-feature-event h3{font-size:22px!important;line-height:30px!important;margin-bottom:6px!important}.bottom-nav{height:82px!important;padding:7px 22px 15px!important}.bottom-nav button{font-size:17px!important}.bottom-nav .plus{width:58px!important;height:42px!important;border-radius:9px!important;font-size:32px!important}
@media (max-width:430px){.phone{width:100vw!important;height:100vh!important;border-radius:0!important}.home-page{background:#ffffff!important}.home-brand-strip{height:74px!important;padding:25px 10px 0!important;background:linear-gradient(180deg,#2ec0bb 0%,#1a9c98 100%)!important}.home-brand-strip+.home-top{padding:0 10px 13px!important}.home-brand-strip+.home-top .mini-btn{width:124px!important}.home-search{height:40px!important;margin-bottom:13px!important;font-size:15px!important}.hero-grid{gap:12px!important}.hot-card{height:224px!important;min-height:224px!important;padding:13px 11px!important}.hot-card h4{font-size:23px!important;line-height:28px!important;margin-bottom:12px!important}.hot-card ul{gap:11px!important}.hot-card li{height:27px!important;font-size:16px!important;grid-template-columns:20px minmax(0,1fr) auto!important}.hot-card em{font-size:12px!important}.hero-right{grid-template-rows:137px 75px!important;gap:12px!important}.hero-right .chat-card{height:137px!important;min-height:137px!important;padding:15px 12px!important}.hero-right .alliance-card{height:75px!important;min-height:75px!important;padding:14px 12px!important}.hero-right .chat-card b,.hero-right .alliance-card b{font-size:18px!important;line-height:23px!important}.hero-right .chat-card p,.hero-right .alliance-card p{font-size:11px!important;max-width:122px!important}.hero-right .chat-card button{left:12px!important;bottom:17px!important;height:29px!important;min-height:29px!important;font-size:13px!important}.chat-card-emoji{right:4px!important;bottom:15px!important;transform:scale(.82);transform-origin:right bottom}.alliance-card-illus{right:7px!important;bottom:8px!important;transform:scale(.78);transform-origin:right bottom}.home-tabs{height:58px!important;gap:22px!important}.home-tabs button{height:58px!important;min-height:58px!important;font-size:17px!important}.home-filters{height:48px!important;top:58px!important;gap:10px!important}.home-filters button{height:34px!important;min-height:34px!important;font-size:14px!important}.home-feature-event h3{font-size:18px!important;line-height:25px!important}.home-feature-event.event-card{margin:0 0 9px!important}}

/* Home hero pixel lock from latest reference */
.home-brand-strip{height:0!important;padding:0!important;overflow:visible!important;background:linear-gradient(180deg,#2ec0bb 0%,#1a9c98 100%)!important}.home-brand-strip span,.home-brand-strip em{display:none!important}.home-brand-strip+.home-top{padding:10px 0 10px!important;background:linear-gradient(180deg,#2ec0bb 0%,#1a9c98 100%)!important;border-radius:0!important}.home-brand-strip+.home-top .home-header,.home-search{display:none!important}.hero-grid{width:477px!important;max-width:calc(100vw - 24px)!important;margin:0 auto!important;display:grid!important;grid-template-columns:232px 232px!important;gap:13px!important;align-items:stretch!important}.hot-card{width:232px!important;height:272px!important;min-height:272px!important;padding:17px 16px 16px!important;border-radius:8px!important;background:rgba(247,255,255,.66)!important;border:0!important;box-shadow:none!important}.hot-card h4{margin:0 0 22px!important;font-size:28px!important;line-height:31px!important;font-weight:950!important;color:#fff!important;letter-spacing:-1.5px!important;text-shadow:2px 2px 0 rgba(0,0,0,0.2),-1px -1px 0 rgba(0,0,0,0.2)!important}.hot-card ul{display:flex!important;flex-direction:column!important;gap:15px!important;margin:0!important;padding:0!important}.hot-card li{height:35px!important;display:grid!important;grid-template-columns:22px 1fr auto!important;align-items:center!important;gap:6px!important;font-size:20px!important;line-height:35px!important;color:#fff!important}.hot-card li b{width:20px!important;height:20px!important;display:grid!important;place-items:center!important;background:transparent!important;color:#fff!important;font-size:14px!important;font-weight:950!important}.hot-card em{font-size:14px!important;line-height:35px!important;color:rgba(255,255,255,0.8)!important;font-style:normal!important}.hot-card em i{margin-left:2px!important;font-size:12px!important;color:#ff99aa!important;font-style:normal!important}.hero-right{width:232px!important;display:grid!important;grid-template-rows:167px 88px!important;gap:17px!important}.hero-right .chat-card,.hero-right .alliance-card{width:232px!important;border-radius:8px!important;background:rgba(255,255,255,.8)!important;border:0!important;box-shadow:none!important;overflow:hidden!important;position:relative!important}.hero-right .chat-card{height:167px!important;min-height:167px!important;padding:20px 16px!important}.hero-right .alliance-card{height:88px!important;min-height:88px!important;padding:17px 16px!important}.hero-right .chat-card b,.hero-right .alliance-card b{font-size:22px!important;line-height:28px!important;font-weight:950!important;color:#101920!important;letter-spacing:-1px!important}.hero-right .chat-card p,.hero-right .alliance-card p{margin-top:5px!important;max-width:170px!important;font-size:13px!important;line-height:18px!important;color:#7d8790!important;white-space:nowrap!important;overflow:hidden!important}.chat-card-avatars{margin-top:10px!important}.chat-card-avatars i{width:16px!important;height:16px!important;margin-left:-4px!important}.chat-card-avatars i:first-child{margin-left:0!important}.hero-right .chat-card button{position:absolute!important;left:16px!important;bottom:25px!important;width:77px!important;height:33px!important;min-height:33px!important;padding:0!important;border-radius:17px 17px 17px 4px!important;background:#6366f1!important;color:#fff!important;font-size:16px!important;font-weight:950!important}.chat-card-emoji{position:absolute!important;right:10px!important;bottom:23px!important;width:96px!important;height:74px!important}.chat-card-emoji span{left:6px!important;bottom:0!important;font-size:30px!important}.chat-card-emoji strong{left:34px!important;top:9px!important;font-size:35px!important}.chat-card-emoji b{display:block!important;right:0!important;bottom:18px!important;font-size:35px!important;line-height:1!important}.chat-card-emoji i:nth-of-type(1){left:1px!important;top:31px!important;width:13px!important;height:4px!important}.chat-card-emoji i:nth-of-type(2){left:24px!important;top:10px!important;width:4px!important;height:14px!important}.chat-card-emoji i:nth-of-type(3){left:53px!important;top:1px!important;width:5px!important;height:14px!important}.alliance-card-illus{right:16px!important;bottom:10px!important;width:82px!important;height:60px!important}.alliance-card-illus i{right:0!important;bottom:3px!important;width:64px!important;height:39px!important;border-radius:50%!important;background:linear-gradient(135deg,#c4b5fd 0%,#ddd6fe 58%,#d5f7f6 100%)!important;opacity:1!important}.alliance-card-illus b{left:0!important;bottom:13px!important;font-size:31px!important}.home-page{background:#ffffff!important}
@media (max-width:506px){.hero-grid{width:calc(100vw - 24px)!important;grid-template-columns:1fr 1fr!important;gap:13px!important}.hot-card,.hero-right,.hero-right .chat-card,.hero-right .alliance-card{width:auto!important}.hot-card{height:calc((100vw - 42px)/2 * 1.172)!important;min-height:calc((100vw - 42px)/2 * 1.172)!important}.hero-right{grid-template-rows:calc((100vw - 42px)/2 * .72) calc((100vw - 42px)/2 * .379)!important;gap:17px!important}.hero-right .chat-card{height:calc((100vw - 42px)/2 * .72)!important;min-height:calc((100vw - 42px)/2 * .72)!important}.hero-right .alliance-card{height:calc((100vw - 42px)/2 * .379)!important;min-height:calc((100vw - 42px)/2 * .379)!important}}
@media (max-width:430px){.home-brand-strip+.home-top{padding-top:8px!important}.hero-grid{max-width:none!important;width:100%!important;gap:12px!important}.hot-card{padding:13px 11px!important}.hot-card h4{font-size:23px!important;line-height:27px!important;margin-bottom:12px!important}.hot-card ul{gap:10px!important}.hot-card li{height:27px!important;grid-template-columns:20px 1fr auto!important;font-size:16px!important;gap:4px!important}.hot-card em{font-size:12px!important}.hero-right{gap:12px!important}.hero-right .chat-card{padding:14px 12px!important}.hero-right .alliance-card{padding:13px 12px!important}.hero-right .chat-card b,.hero-right .alliance-card b{font-size:18px!important;line-height:23px!important}.hero-right .chat-card p,.hero-right .alliance-card p{font-size:11px!important;line-height:15px!important;max-width:128px!important}.hero-right .chat-card button{left:12px!important;bottom:17px!important;width:64px!important;height:29px!important;min-height:29px!important;font-size:13px!important}.chat-card-avatars{margin-top:6px!important}.chat-card-emoji{right:3px!important;bottom:13px!important;transform:scale(.82);transform-origin:right bottom}.alliance-card-illus{right:5px!important;bottom:6px!important;transform:scale(.78);transform-origin:right bottom}.home-page{background:#ffffff!important}}

/* Home full reference restore: complete original mobile composition */
.phone{width:min(100vw,518px)!important;max-width:518px!important;min-width:0!important;height:min(100vh,980px)!important;max-height:980px!important;min-height:0!important;border-radius:6px!important;background:#fff!important}.status{display:none!important}#pageContainer{height:100%!important;min-height:100%!important;max-height:100%!important;padding-bottom:82px!important;overflow-y:auto!important}.home-page{min-height:100%!important;background:#dbf7f5!important}.home-brand-strip{display:flex!important;height:90px!important;padding:34px 12px 0!important;background:linear-gradient(180deg,#2ec0bb 0%,#1a9c98 100%)!important;overflow:visible!important}.home-brand-strip span{display:block!important;font-size:26px!important;line-height:34px!important;font-weight:950!important;color:#fff!important;letter-spacing:-1px!important;text-shadow:0 2px 8px rgba(0,0,0,0.3)!important}.home-brand-strip em,.home-brand-strip::before,.home-brand-strip::after{display:none!important}.home-brand-strip+.home-top{position:relative!important;margin:0!important;padding:0 12px 16px!important;background:linear-gradient(180deg,#2ec0bb 0%,#1a9c98 100%)!important;border-radius:0!important;box-shadow:none!important}.home-brand-strip+.home-top .home-header{display:flex!important;position:absolute!important;right:8px!important;top:-57px!important;width:148px!important;height:40px!important;margin:0!important;overflow:visible!important;z-index:8!important}.home-brand-strip+.home-top .home-header>div:first-child{display:none!important}.home-brand-strip+.home-top .mini-btn{display:flex!important;width:148px!important;height:40px!important;min-height:40px!important;transform:none!important;border-radius:22px!important;background:rgba(247,255,255,.68)!important;border:1px solid rgba(255,255,255,.68)!important;box-shadow:none!important;padding:0 13px!important}.home-search{display:flex!important;height:46px!important;margin:0 1px 16px!important;border-radius:25px!important;background:rgba(255,255,255,.86)!important;border:0!important;padding:0 18px!important;color:#b0b7bd!important;font-size:18px!important;box-shadow:none!important}.search-icon{font-size:24px!important;margin-right:8px!important;color:#323b42!important}.hero-grid{width:auto!important;max-width:none!important;margin:0!important;display:grid!important;grid-template-columns:minmax(0,1fr) minmax(0,1fr)!important;gap:13px!important;align-items:stretch!important}.hot-card,.hero-right .chat-card,.hero-right .alliance-card{border:0!important;border-radius:8px!important;background:rgba(247,255,255,.66)!important;box-shadow:none!important;backdrop-filter:none!important;overflow:hidden!important;position:relative!important}.hot-card{width:auto!important;height:272px!important;min-height:272px!important;padding:17px 14px!important}.hot-card h4{margin:0 0 22px!important;font-size:28px!important;line-height:31px!important;font-weight:950!important;color:#050b0f!important;letter-spacing:-1.5px!important;text-shadow:2px 2px 0 #14d7d6,-1px -1px 0 #14d7d6!important}.hot-card ul{display:flex!important;flex-direction:column!important;gap:15px!important;margin:0!important;padding:0!important}.hot-card li{height:35px!important;display:grid!important;grid-template-columns:22px minmax(0,1fr) auto!important;align-items:center!important;gap:6px!important;font-size:20px!important;line-height:35px!important;color:#061019!important}.hot-card li span{display:contents!important}.hot-card li b{width:20px!important;height:20px!important;display:grid!important;place-items:center!important;background:transparent!important;color:#02080c!important;font-size:14px!important;font-weight:950!important}.hot-card em{font-size:14px!important;line-height:35px!important;color:#87919a!important;font-style:normal!important;white-space:nowrap!important}.hot-card em i{margin-left:2px!important;font-size:12px!important;color:#ff3049!important;font-style:normal!important}.hero-right{width:auto!important;display:grid!important;grid-template-rows:167px 88px!important;gap:17px!important;min-width:0!important}.hero-right .chat-card{width:auto!important;height:167px!important;min-height:167px!important;padding:20px 15px!important}.hero-right .alliance-card{width:auto!important;height:88px!important;min-height:88px!important;padding:17px 15px!important}.hero-right .chat-card b,.hero-right .alliance-card b{font-size:22px!important;line-height:28px!important;font-weight:950!important;color:#101920!important;letter-spacing:-1px!important}.hero-right .chat-card p,.hero-right .alliance-card p{margin-top:5px!important;max-width:168px!important;font-size:13px!important;line-height:18px!important;color:#7d8790!important;white-space:nowrap!important;overflow:hidden!important}.chat-card-avatars{display:flex!important;margin-top:10px!important}.chat-card-avatars i{width:16px!important;height:16px!important;margin-left:-4px!important;border-radius:50%!important;border:1.5px solid #fff!important}.chat-card-avatars i:first-child{margin-left:0!important}.hero-right .chat-card button{position:absolute!important;left:15px!important;bottom:25px!important;width:77px!important;height:33px!important;min-height:33px!important;padding:0!important;border-radius:17px 17px 17px 4px!important;background:#1d262b!important;color:#22f2ee!important;font-size:16px!important;font-weight:950!important}.chat-card-emoji{position:absolute!important;right:8px!important;bottom:23px!important;width:98px!important;height:74px!important}.chat-card-emoji span{position:absolute!important;left:6px!important;bottom:0!important;font-size:30px!important}.chat-card-emoji strong{position:absolute!important;left:34px!important;top:9px!important;font-size:35px!important}.chat-card-emoji b{display:block!important;position:absolute!important;right:0!important;bottom:18px!important;font-size:35px!important;line-height:1!important}.chat-card-emoji i:nth-of-type(1){left:1px!important;top:31px!important;width:13px!important;height:4px!important}.chat-card-emoji i:nth-of-type(2){left:24px!important;top:10px!important;width:4px!important;height:14px!important}.chat-card-emoji i:nth-of-type(3){left:53px!important;top:1px!important;width:5px!important;height:14px!important}.alliance-card-illus{position:absolute!important;right:15px!important;bottom:10px!important;width:82px!important;height:60px!important}.alliance-card-illus i{right:0!important;bottom:3px!important;width:64px!important;height:39px!important;border-radius:50%!important;background:linear-gradient(135deg,#ffc4dc 0%,#e0e0ff 58%,#b6eff1 100%)!important;opacity:1!important}.alliance-card-illus b{left:0!important;bottom:13px!important;font-size:31px!important}.home-tabs{display:flex!important;height:72px!important;padding:0 18px!important;gap:28px!important;background:#fff!important;border-radius:16px 16px 0 0!important;top:0!important;box-shadow:none!important}.home-tabs button{height:72px!important;min-height:72px!important;border:0!important;background:transparent!important;padding:0 0 7px!important;color:#8e969e!important;font-size:21px!important;font-weight:700!important;white-space:nowrap!important}.home-tabs button.active{color:#101820!important;border-bottom:3px solid #10d0cf!important}.home-filters{display:flex!important;height:55px!important;padding:8px 16px 8px!important;gap:10px!important;background:#fff!important;top:72px!important;box-shadow:none!important}.home-filters button{height:38px!important;min-height:38px!important;padding:0 15px!important;border:0!important;border-radius:20px!important;background:#f4f4f4!important;color:#20272e!important;font-size:17px!important}.home-event-list.restored{padding-top:0!important;background:transparent!important}.home-feature-event.event-card{margin:0 0 9px!important;border-radius:18px!important;padding:8px 16px 12px!important;background:#fff!important;box-shadow:none!important}.home-feature-event h3{font-size:22px!important;line-height:30px!important;margin-bottom:2px!important}.home-feature-event p{font-size:14px!important}.feature-meta{font-size:16px!important}.feature-images{height:156px!important}.feature-bottom{height:54px!important}.bottom-nav{height:82px!important;padding:7px 22px 15px!important;background:#fff!important}.bottom-nav button{font-size:17px!important}.bottom-nav .plus{width:58px!important;height:42px!important;border-radius:9px!important;font-size:32px!important}
@media (max-width:430px){.phone{width:100vw!important;height:100vh!important;border-radius:0!important}.home-page{background:#ffffff!important}.home-brand-strip{height:74px!important;padding:25px 10px 0!important;background:linear-gradient(180deg,#2ec0bb 0%,#1a9c98 100%)!important}.home-brand-strip span{font-size:24px!important;color:#fff!important}.home-brand-strip+.home-top{padding:0 10px 13px!important}.home-brand-strip+.home-top .home-header{top:-49px!important;right:8px!important}.home-brand-strip+.home-top .mini-btn{width:124px!important}.home-search{height:40px!important;margin-bottom:13px!important;font-size:15px!important}.hero-grid{gap:12px!important}.hot-card{height:224px!important;min-height:224px!important;padding:13px 11px!important}.hot-card h4{font-size:23px!important;line-height:27px!important;margin-bottom:12px!important}.hot-card ul{gap:10px!important}.hot-card li{height:27px!important;grid-template-columns:20px minmax(0,1fr) auto!important;font-size:16px!important;gap:4px!important}.hot-card em{font-size:12px!important}.hero-right{grid-template-rows:137px 75px!important;gap:12px!important}.hero-right .chat-card{height:137px!important;min-height:137px!important;padding:14px 12px!important}.hero-right .alliance-card{height:75px!important;min-height:75px!important;padding:13px 12px!important}.hero-right .chat-card b,.hero-right .alliance-card b{font-size:18px!important;line-height:23px!important}.hero-right .chat-card p,.hero-right .alliance-card p{font-size:11px!important;line-height:15px!important;max-width:128px!important}.hero-right .chat-card button{left:12px!important;bottom:17px!important;width:64px!important;height:29px!important;min-height:29px!important;font-size:13px!important}.chat-card-avatars{margin-top:6px!important}.chat-card-emoji{right:3px!important;bottom:13px!important;transform:scale(.82);transform-origin:right bottom}.alliance-card-illus{right:5px!important;bottom:6px!important;transform:scale(.78);transform-origin:right bottom}.home-tabs{height:58px!important;gap:22px!important}.home-tabs button{height:58px!important;min-height:58px!important;font-size:17px!important}.home-filters{height:48px!important;top:58px!important;gap:10px!important}.home-filters button{height:34px!important;min-height:34px!important;font-size:14px!important}.home-feature-event h3{font-size:18px!important;line-height:25px!important}.feature-images{height:124px!important}}

/* Home header cleanup: remove capsule and show subtitle after brand */
.home-brand-strip{display:flex!important;align-items:flex-start!important;gap:10px!important;background:linear-gradient(180deg,#2ec0bb 0%,#1a9c98 100%)!important}.home-brand-strip span{display:block!important;color:#fff!important;text-shadow:0 2px 8px rgba(0,0,0,0.3)!important}.home-brand-strip em{display:inline-flex!important;height:24px!important;margin-top:5px!important;padding:0 10px!important;align-items:center!important;border-radius:13px!important;background:rgba(255,255,255,.72)!important;color:#6366f1!important;font-size:13px!important;font-weight:800!important;font-style:normal!important;letter-spacing:.5px!important}.home-brand-strip+.home-top .home-header{display:none!important}.home-brand-strip+.home-top .mini-btn{display:none!important}.home-brand-strip+.home-top{background:linear-gradient(180deg,#2ec0bb 0%,#1a9c98 100%)!important}.home-page{background:#ffffff!important}
@media (max-width:430px){.home-brand-strip{gap:8px!important}.home-brand-strip em{height:22px!important;margin-top:4px!important;font-size:12px!important}}

/* Home category tabs horizontal swipe */
.home-tabs{justify-content:flex-start!important;overflow-x:auto!important;overflow-y:hidden!important;-webkit-overflow-scrolling:touch!important;scrollbar-width:none!important;touch-action:pan-x!important}.home-tabs::-webkit-scrollbar{display:none!important}.home-tabs button{flex:0 0 auto!important;min-width:max-content!important}

/* Discover feed hygiene: no visual bleed or broken placeholders */
.discover-waterfall{align-items:start!important;overflow:hidden!important}.discover-card{position:relative!important;overflow:hidden!important;background:#fff!important;isolation:isolate!important}.discover-card>img{position:relative!important;z-index:1!important;width:100%!important;display:block!important;object-fit:cover!important;object-position:center!important;background:#eef2f5!important}.discover-card .feed-card-body{position:relative!important;z-index:2!important;background:#fff!important}.discover-card>img[src=''],.discover-card>img:not([src]){display:none!important}

/* Host certification landing 1:1 restore */
.host-landing-page{min-height:100%!important;background:#edf3ff!important;color:#1c2430!important;overflow-y:auto!important;padding-bottom:0!important}.host-topbar{height:74px!important;position:sticky!important;top:0!important;z-index:20!important;display:flex!important;align-items:center!important;justify-content:space-between!important;padding:0 22px!important;background:rgba(248,251,255,.76)!important;backdrop-filter:blur(10px)!important}.host-back-btn{width:42px!important;height:42px!important;min-height:42px!important;border:0!important;background:transparent!important;color:#050b12!important;font-size:48px!important;line-height:36px!important;font-weight:300!important}.host-topbar .mini-btn{display:flex!important;width:148px!important;height:40px!important;border-radius:22px!important;background:rgba(255,255,255,.78)!important;border:1px solid rgba(210,220,235,.7)!important;box-shadow:none!important}.host-hero{min-height:280px!important;padding:33px 22px 24px!important;text-align:center!important;background:radial-gradient(ellipse at 82% -8%,rgba(255,255,255,.95) 0 118px,transparent 119px),radial-gradient(circle at 52% 64%,rgba(0,160,255,.11),transparent 42%),linear-gradient(145deg,#f8fbff 0%,#edf5ff 100%)!important}.host-hero h1{margin:0 0 24px!important;font-size:38px!important;line-height:1.35!important;font-weight:950!important;letter-spacing:-1.8px!important;color:#272b31!important}.host-hero h1 span{color:#10b7e3!important;background:linear-gradient(90deg,#09bdda,#1688f4)!important;-webkit-background-clip:text!important;background-clip:text!important;color:transparent!important}.host-join-btn{border:0!important;min-width:176px!important;height:56px!important;min-height:56px!important;border-radius:30px!important;background:linear-gradient(90deg,#08c8d0,#1087f4)!important;color:#fff!important;font-size:20px!important;font-weight:900!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:13px!important;box-shadow:none!important}.host-join-btn b{width:32px!important;height:32px!important;border-radius:50%!important;background:#fff!important;color:#128eef!important;display:inline-grid!important;place-items:center!important;font-size:23px!important;line-height:1!important}.host-card{margin:16px 22px!important;background:#fff!important;border-radius:14px!important;padding:22px!important;box-shadow:none!important;position:relative!important}.host-card h2,.host-excellent-section h2,.host-bottom-cta h2{margin:0 0 14px!important;font-size:28px!important;line-height:36px!important;font-weight:950!important;color:#111820!important;letter-spacing:-1px!important}.host-card-tag{position:absolute!important;right:0!important;top:0!important;height:28px!important;padding:0 11px!important;border-radius:0 14px 0 10px!important;background:#ff5262!important;color:#fff!important;font-size:16px!important;line-height:28px!important}.host-benefit-grid{display:grid!important;grid-template-columns:repeat(3,1fr)!important;gap:12px!important;margin:0 0 15px!important}.host-benefit-grid div{min-height:72px!important;border-radius:8px!important;padding:10px!important}.host-benefit-grid i{font-style:normal!important;font-size:20px!important;margin-right:4px!important}.host-benefit-grid span{font-size:13px!important;color:#ff4e5d!important}.host-benefit-grid b{display:block!important;margin-top:7px!important;font-size:16px!important;line-height:20px!important}.host-card p{font-size:17px!important;line-height:28px!important;color:#3d4652!important}.host-compare-table{display:grid!important;grid-template-columns:24% 50% 26%!important;overflow:hidden!important;border-radius:12px!important;background:linear-gradient(120deg,#fff9f7,#fff)!important;border:1px solid #f1e9e5!important}.host-compare-table div{min-height:74px!important;padding:14px 10px!important;border-right:1px solid rgba(235,225,218,.8)!important;border-bottom:1px solid rgba(235,225,218,.62)!important;font-size:14px!important;line-height:22px!important;color:#3d434b!important}.host-compare-table .head{min-height:48px!important;font-size:16px!important;font-weight:900!important;text-align:center!important;color:#333!important}.host-compare-table .label{display:flex!important;align-items:center!important;justify-content:center!important;color:#5c6470!important;font-weight:700!important}.host-compare-table .old{display:flex!important;align-items:center!important;justify-content:center!important;color:#f43f46!important;font-size:24px!important;font-weight:950!important}.host-income-list{margin-top:14px!important;border-radius:12px!important;background:linear-gradient(135deg,#fff8f4,#fff)!important;padding:8px 16px!important}.host-income-list div{display:grid!important;grid-template-columns:48px 1fr!important;grid-template-rows:auto auto!important;gap:4px 4px!important;padding:14px 0!important}.host-income-list span{grid-row:1/span 2!important;width:38px!important;height:38px!important;border-radius:10px!important;background:linear-gradient(135deg,#6a78ff,#16d8cf)!important;color:#fff!important;display:grid!important;place-items:center!important;font-size:18px!important;font-weight:950!important}.host-income-list b{font-size:18px!important;color:#333!important}.host-income-list em{font-style:normal!important;color:#8a929d!important;font-size:14px!important;line-height:22px!important}.host-excellent-section{padding:42px 0 56px!important;text-align:center!important;overflow:hidden!important}.host-excellent-section p{margin:0 0 48px!important;color:#596271!important;font-size:16px!important}.host-card-carousel{display:flex!important;align-items:center!important;gap:14px!important;transform:translateX(-76px)!important;width:max-content!important}.host-person-card{width:210px!important;height:270px!important;border-radius:16px!important;background:#fff!important;text-align:left!important;padding:18px!important;box-shadow:none!important;overflow:hidden!important}.host-person-card.main{width:240px!important;height:320px!important}.host-person-card img{float:right!important;width:106px!important;height:130px!important;object-fit:cover!important;border-radius:14px!important}.host-person-card b{display:block!important;font-size:20px!important;margin-bottom:52px!important}.host-person-card strong{display:block!important;color:#7d8793!important;font-size:30px!important;line-height:38px!important}.host-person-card em,.host-person-card p{color:#8a929d!important;font-style:normal!important;font-size:14px!important;line-height:22px!important}.host-bottom-cta{background:linear-gradient(180deg,#dceaff,#edf4ff)!important;text-align:center!important;padding:44px 22px 88px!important}.host-bottom-cta h2{font-size:36px!important;line-height:44px!important;color:#000!important}.host-bottom-cta p{font-size:20px!important;margin:12px 0 34px!important;color:#111820!important}.host-bottom-cta>div{display:flex!important;justify-content:center!important;gap:26px!important}.host-policy-btn{min-width:176px!important;height:56px!important;border-radius:28px!important;border:1px solid #0aa8ef!important;background:transparent!important;color:#0798e8!important;font-size:18px!important;font-weight:800!important}
@media (max-width:430px){.host-hero h1{font-size:30px!important}.host-card{margin:14px 16px!important;padding:18px!important}.host-card h2,.host-excellent-section h2{font-size:24px!important}.host-benefit-grid{gap:8px!important}.host-benefit-grid b{font-size:13px!important}.host-card p{font-size:15px!important}.host-compare-table div{font-size:12px!important;padding:10px 7px!important}.host-bottom-cta h2{font-size:30px!important}.host-bottom-cta p{font-size:16px!important}.host-bottom-cta>div{gap:14px!important}.host-policy-btn,.host-join-btn{min-width:138px!important}}

/* Discover production cleanup: remove broken visual cards */
.discover-card{contain:paint!important;overflow:hidden!important;background:#fff!important}.discover-card>img{display:block!important;width:100%!important;max-width:100%!important;object-fit:cover!important;object-position:center!important;clip-path:inset(0)!important}.discover-card .feed-card-body{background:#fff!important;position:relative!important;z-index:2!important}.discover-card:has(> img[src^='data:image/svg']){display:none!important}.discover-card:has(> img[src*='placehold.co']){display:none!important}

/* Discover card media hard isolation */
.discover-card{position:relative!important;display:block!important;overflow:hidden!important;border-radius:0!important;background:#fff!important;contain:layout paint!important}.discover-card-media{position:relative!important;display:block!important;width:100%!important;height:168px!important;overflow:hidden!important;background:#eef2f6!important;z-index:1!important}.discover-card.short .discover-card-media{height:150px!important}.discover-card-media img{position:absolute!important;inset:0!important;display:block!important;width:100%!important;height:100%!important;max-width:none!important;object-fit:cover!important;object-position:center!important;float:none!important;clip-path:none!important;transform:none!important}.discover-card>.feed-card-body{position:relative!important;z-index:3!important;background:#fff!important;display:block!important;overflow:hidden!important;padding:10px 10px 11px!important}.discover-card>.feed-card-body h3{position:relative!important;z-index:4!important;background:#fff!important;margin:0 0 10px!important;min-height:20px!important;line-height:20px!important}.discover-card>.feed-card-body .discover-card-meta{position:relative!important;z-index:4!important;background:#fff!important}.discover-card>img{display:none!important}

/* Discover avatar override: never treat meta avatar as cover */
.discover-card .discover-card-meta img,.discover-card img.discover-card-avatar{position:static!important;inset:auto!important;display:inline-block!important;width:20px!important;min-width:20px!important;max-width:20px!important;height:20px!important;min-height:20px!important;max-height:20px!important;border-radius:50%!important;object-fit:cover!important;float:none!important;clip-path:none!important;transform:none!important;background:#eef2f6!important;vertical-align:middle!important}.discover-card .discover-card-meta span{display:flex!important;align-items:center!important;gap:6px!important;min-width:0!important;overflow:hidden!important;white-space:nowrap!important;text-overflow:ellipsis!important}.discover-card .discover-card-media>img{position:absolute!important;inset:0!important;width:100%!important;max-width:none!important;height:100%!important;max-height:none!important;border-radius:0!important;object-fit:cover!important}

/* Discover post detail 1:1 mobile restore */
.post-detail-page{background:#fff!important;color:#121820!important;overflow-y:auto!important;padding:0 0 74px!important}.post-v2-head{height:80px!important;display:flex!important;align-items:center!important;gap:7px!important;padding:0 8px 0 18px!important;background:#fff!important;position:sticky!important;top:0!important;z-index:30!important;border-radius:8px 8px 0 0!important}.post-v2-head .post-detail-back{border:0!important;background:transparent!important;font-size:46px!important;line-height:1!important;color:#06111d!important;width:34px!important;min-height:44px!important}.post-v2-head>img{width:44px!important;height:44px!important;border-radius:50%!important;object-fit:cover!important}.post-v2-head>b{font-size:16px!important;font-weight:500!important;white-space:nowrap!important}.post-v2-head>span{font-size:10px!important;color:#5172ad!important;background:#dce9ff!important;border-radius:10px!important;padding:2px 6px!important;white-space:nowrap!important}.post-follow-btn{margin-left:auto!important;border:1px solid #22d6df!important;color:#13c4cf!important;background:#fff!important;height:34px!important;padding:0 14px!important;border-radius:18px!important;font-size:16px!important;font-weight:700!important}.post-v2-head .post-share-btn{border:0!important;background:#f8f8f8!important;border-radius:18px!important;height:38px!important;min-width:50px!important;font-size:22px!important;color:#111!important}.post-v2-head>i,.post-v2-head>em{font-style:normal!important;width:38px!important;height:38px!important;border-left:1px solid #d5d5d5!important;background:#f8f8f8!important;display:grid!important;place-items:center!important;font-size:24px!important;border-radius:0 18px 18px 0!important}.post-v2-head>i{border-radius:18px 0 0 18px!important;font-weight:800!important}.post-v2-cover{position:relative!important;height:694px!important;background:#000!important;overflow:hidden!important}.post-v2-cover>img{width:100%!important;height:100%!important;object-fit:cover!important;display:block!important}.post-v2-cover>span{position:absolute!important;right:15px!important;top:15px!important;background:rgba(0,0,0,.42)!important;color:#fff!important;border-radius:18px!important;padding:5px 8px!important;font-size:19px!important}.post-v2-cover>div{position:absolute!important;left:0!important;right:0!important;bottom:0!important;height:68px!important;background:linear-gradient(180deg,transparent,rgba(0,0,0,.72))!important;display:flex!important;align-items:center!important;justify-content:space-between!important;padding:14px 19px 9px!important;color:#fff!important}.post-v2-cover b{font-size:16px!important}.post-join-mini{border:0!important;background:transparent!important;color:#fff!important;font-size:16px!important;font-weight:700!important}.post-v2-dots{height:35px!important;display:flex!important;align-items:center!important;justify-content:center!important;gap:6px!important}.post-v2-dots i{width:5px!important;height:5px!important;border-radius:50%!important;background:#d5d5d5!important}.post-v2-dots i:first-child{background:#22d6df!important}.post-gift-line{margin:0 20px 10px!important;height:48px!important;border-radius:9px!important;background:#f6f6f6!important;display:flex!important;align-items:center!important;padding:0 13px!important;gap:10px!important}.post-gift-line span{font-size:22px!important}.post-gift-line b{flex:1!important;font-size:16px!important;font-weight:400!important}.post-gift-line em{font-style:normal!important;color:#18cfd6!important;font-weight:800!important}.post-gift-line button{border:0!important;background:transparent!important;color:#9a8f89!important;font-size:16px!important}.post-v2-content{padding:0 20px 20px!important;background:#fff!important}.post-v2-content h1{font-size:25px!important;line-height:1.35!important;margin:8px 0 20px!important;font-weight:500!important;color:#06111d!important}.post-v2-content p{font-size:20px!important;line-height:1.63!important;margin:0 0 34px!important;color:#29313b!important;text-align:left!important}.post-tags{font-size:20px!important;line-height:1.6!important;margin:0 0 22px!important;color:#28313a!important}.post-link-row{width:100%!important;height:48px!important;border:0!important;background:#f5f5f5!important;border-radius:8px!important;display:flex!important;align-items:center!important;gap:10px!important;margin-bottom:10px!important;padding:0 10px!important;font-size:17px!important;color:#111!important;text-align:left!important}.post-link-row img{width:30px!important;height:30px!important;border-radius:5px!important;object-fit:cover!important}.post-link-row span{margin-left:auto!important;color:#9aa1aa!important;font-size:15px!important;white-space:nowrap!important}.post-v2-content time{display:block!important;color:#8d98a5!important;font-size:15px!important;margin:35px 0!important}.post-gifts{display:grid!important;grid-template-columns:repeat(3,1fr)!important;text-align:center!important;padding:0 22px 28px!important;border-bottom:1px solid #eee!important}.post-gifts button{border:0!important;background:#fff!important;font-size:34px!important;display:flex!important;flex-direction:column!important;align-items:center!important;gap:10px!important}.post-gifts span{font-size:16px!important;color:#9aa1aa!important}.post-gifts button:nth-child(1) span::first-letter,.post-gifts button:nth-child(2) span::first-letter,.post-gifts button:nth-child(3) span::first-letter{color:#20c4cb!important}.post-v2-content h2{font-size:20px!important;font-weight:500!important;margin:22px 0 28px!important}.post-comment-input{display:flex!important;align-items:center!important;gap:16px!important;margin-bottom:32px!important}.post-comment-input img{width:48px!important;height:48px!important;border-radius:50%!important;object-fit:cover!important}.post-comment-input span{flex:1!important;height:44px!important;line-height:44px!important;background:#f5f5f5!important;border-radius:22px!important;color:#a0a6ad!important;padding:0 18px!important;font-size:17px!important}.post-comment-input b{margin-left:-56px!important;font-size:24px!important;color:#8e949b!important}.post-comments-list article{display:flex!important;gap:14px!important;margin-bottom:24px!important}.post-comments-list article>img{width:50px!important;height:50px!important;border-radius:50%!important;object-fit:cover!important}.post-comments-list h3{font-size:18px!important;color:#a7adb5!important;margin:0 0 8px!important;font-weight:500!important}.post-comments-list p{font-size:18px!important;line-height:1.45!important;margin:0 0 7px!important}.post-comments-list small{font-size:14px!important;color:#9ca3ad!important}.post-comment-like{border:0!important;background:transparent!important;color:#8f949b!important;font-size:26px!important;line-height:22px!important;min-width:28px!important}.post-v2-bottom{position:fixed!important;left:50%!important;bottom:0!important;transform:translateX(-50%)!important;width:100%!important;max-width:518px!important;height:74px!important;background:#fff!important;border-top:1px solid #eee!important;display:grid!important;grid-template-columns:1.8fr repeat(4,.65fr)!important;align-items:center!important;gap:4px!important;padding:8px 16px!important;z-index:40!important}.post-v2-bottom button{border:0!important;background:#fff!important;color:#111!important;font-size:29px!important;display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:center!important;gap:0!important}.post-v2-bottom button span{font-size:13px!important;color:#111!important}.post-v2-bottom .post-comment-entry{height:48px!important;border-radius:24px!important;background:#f5f5f5!important;color:#8b949e!important;font-size:18px!important;display:flex!important;flex-direction:row!important;justify-content:flex-start!important;padding:0 16px!important}.post-overlay{position:fixed!important;inset:0!important;z-index:90!important}.post-overlay-mask{position:absolute!important;inset:0!important;background:rgba(0,0,0,.62)!important}.post-comment-panel{position:absolute!important;left:0!important;right:0!important;bottom:0!important;background:#fff!important;border-radius:0!important;padding:12px 16px 0!important}.post-comment-panel textarea{width:100%!important;height:82px!important;border:0!important;background:#f7f7f7!important;border-radius:12px!important;resize:none!important;font-size:20px!important;padding:12px!important;outline:none!important}.post-comment-send-row{height:64px!important;display:flex!important;align-items:center!important;justify-content:space-between!important}.post-emoji-btn{border:0!important;background:transparent!important;font-size:30px!important}.post-comment-submit{border:0!important;background:#24cfd2!important;color:#fff!important;border-radius:22px!important;height:44px!important;padding:0 20px!important;font-size:20px!important}.post-emoji-grid{display:grid!important;grid-template-columns:repeat(7,1fr)!important;gap:18px 22px!important;padding:16px 0 18px!important;max-height:410px!important;overflow:hidden!important}.post-emoji-grid button{border:0!important;background:transparent!important;font-size:28px!important}.post-share-panel,.post-gift-panel{position:absolute!important;left:0!important;right:0!important;bottom:0!important;background:#fff!important;border-radius:12px 12px 0 0!important;padding:22px 20px 18px!important}.post-share-close{position:absolute!important;right:20px!important;top:18px!important;border:0!important;background:transparent!important;font-size:32px!important;color:#333!important}.post-share-panel h3,.post-gift-panel h3{text-align:center!important;font-size:20px!important;font-weight:500!important;margin:0 0 32px!important}.post-share-wechat{display:flex!important;flex-direction:column!important;align-items:flex-start!important;margin-bottom:18px!important}.post-share-wechat button{width:62px!important;height:62px!important;border-radius:50%!important;border:0!important;background:#19c95f!important;color:#fff!important;font-size:32px!important}.post-share-wechat span{font-size:14px!important;color:#555!important;margin-top:8px!important}.post-share-tools{display:grid!important;grid-template-columns:repeat(4,1fr)!important;border-top:1px solid #eee!important;padding-top:18px!important}.post-share-tools button,.post-gift-panel button{border:0!important;background:#fff!important;display:flex!important;flex-direction:column!important;align-items:center!important;gap:8px!important;font-size:30px!important}.post-share-tools span,.post-gift-panel span{font-size:15px!important;color:#555!important}.post-gift-panel>div{display:grid!important;grid-template-columns:repeat(3,1fr)!important;gap:12px!important}
@media(max-width:430px){.post-v2-cover{height:520px!important}.post-v2-content p{font-size:18px!important}.post-v2-content h1{font-size:23px!important}.post-v2-head{gap:5px!important;padding-left:12px!important}.post-v2-head>span{display:none!important}}

/* Activity signup detail from discover post */
.signup-page{background:#f5f5f5!important;color:#071424!important;padding:0 0 78px!important;overflow-y:auto!important}.signup-head{height:80px!important;background:#fff!important;display:flex!important;align-items:center!important;gap:6px!important;padding:0 20px!important;position:sticky!important;top:0!important;z-index:35!important}.signup-back{border:0!important;background:transparent!important;font-size:48px!important;line-height:1!important;width:30px!important;color:#06111d!important}.signup-logo{width:42px!important;height:16px!important;background:linear-gradient(90deg,#e8c36b,#111)!important;border-radius:3px!important;transform:scale(.55)!important;margin-left:-8px!important}.signup-head>b{font-size:18px!important;font-weight:500!important;white-space:nowrap!important}.signup-head>em{font-style:normal!important;background:#24331d!important;color:#d4ff4c!important;border-radius:4px!important;font-size:13px!important;padding:2px 6px!important;white-space:nowrap!important}.signup-feedback{border:1px solid #c8f0ef!important;background:#f3ffff!important;color:#1cc8cb!important;border-radius:4px!important;height:26px!important;padding:0 8px!important}.signup-head .mini-btn{margin-left:auto!important}.signup-hero{height:648px!important;background:#8e8e8e!important;position:relative!important;overflow:hidden!important}.signup-hero img{width:100%!important;height:100%!important;object-fit:cover!important;filter:brightness(.72)!important}.signup-hero-title{position:absolute!important;left:0!important;right:0!important;bottom:100px!important;text-align:center!important;color:#fff!important;font-size:43px!important;line-height:1.55!important;font-weight:900!important;text-shadow:0 3px 5px rgba(0,0,0,.3)!important;letter-spacing:2px!important}.signup-price{display:none!important}.signup-price small{font-size:15px!important}.signup-dots{height:42px!important;background:#fff!important;display:flex!important;align-items:center!important;justify-content:center!important;gap:5px!important}.signup-dots i{width:6px!important;height:6px!important;border-radius:50%!important;background:#cbd0d4!important}.signup-dots i:first-child{background:#28cfd0!important}.signup-card{background:#fff!important;padding:0 20px 18px!important}.signup-card h1{font-size:24px!important;line-height:1.38!important;margin:0 0 18px!important;font-weight:900!important}.signup-time-price-row{display:flex!important;align-items:center!important;justify-content:space-between!important;margin:0!important}.signup-time-price{font-size:20px!important;font-weight:900!important;color:#24cfd0!important}.signup-time,.signup-location{font-size:20px!important;line-height:1.9!important;margin:0!important;color:#071424!important}.signup-location{border-top:1px solid #eef0f2!important;margin-top:18px!important;padding-top:18px!important}.signup-location span{float:right!important;width:48px!important;height:48px!important;border-radius:50%!important;background:#eef8f7!important;display:grid!important;place-items:center!important;color:#111!important}.signup-host{background:#fff!important;margin-top:8px!important;padding:12px 20px!important;display:flex!important;align-items:center!important;gap:10px!important}.signup-host img{width:56px!important;height:56px!important;border-radius:50%!important;object-fit:cover!important}.signup-host div{flex:1!important}.signup-host b{font-size:22px!important}.signup-host em{font-style:normal!important;background:#dce9ff!important;color:#5075ad!important;border-radius:10px!important;font-size:11px!important;padding:2px 6px!important;margin-left:4px!important}.signup-host p{font-size:15px!important;color:#9aa3ad!important;margin:6px 0 0!important}.signup-host button{border:1px solid #eee!important;background:#fff!important;border-radius:18px!important;height:38px!important;padding:0 10px!important;color:#676f78!important}.signup-promo{margin-top:8px!important;background:#fff!important;padding:18px 20px!important}.signup-promo{font-size:18px!important;color:#f4dd9b!important}.signup-promo button{float:right!important;border:0!important;background:#344852!important;color:#f5e4a4!important;border-radius:8px!important;height:56px!important;margin-top:-14px!important;padding:0 18px!important;font-size:18px!important}.signup-people{background:#fff!important;margin-top:8px!important;padding:18px 20px!important}.signup-people>div{display:flex!important;justify-content:space-between!important;font-size:20px!important;color:#8a939c!important}.signup-people b{color:#24cfd0!important;font-weight:500!important}.signup-people>img{width:46px!important;height:46px!important;border-radius:50%!important;margin:18px 0!important}.signup-people>button{border:0!important;background:#edffff!important;border-radius:8px!important;width:100%!important;height:44px!important;text-align:left!important;padding:0 14px!important;font-size:17px!important;color:#071424!important}.signup-people em{float:right!important;color:#20cfd0!important;font-style:normal!important}.signup-intro,.signup-images{background:#fff!important;margin-top:8px!important;padding:20px!important}.signup-intro h2,.signup-images h2{font-size:20px!important;color:#8d969f!important;font-weight:500!important;margin:0 0 22px!important}.signup-intro p{font-size:18px!important;line-height:1.9!important;margin:0 0 6px!important;color:#38414b!important}.signup-intro .muted{margin-top:28px!important;color:#7d858f!important}.signup-intro button{display:block!important;margin:8px auto 0!important;border:0!important;background:transparent!important;color:#20cfd0!important;font-size:18px!important}.signup-images img{width:100%!important;display:block!important;margin-bottom:0!important;object-fit:cover!important}.signup-bottom{position:fixed!important;left:50%!important;bottom:0!important;transform:translateX(-50%)!important;max-width:518px!important;width:100%!important;height:74px!important;background:#fff!important;border-top:1px solid #eee!important;display:grid!important;grid-template-columns:repeat(3,.68fr) 1.12fr 1.9fr!important;gap:10px!important;align-items:center!important;padding:7px 20px!important;z-index:45!important}.signup-bottom button{border:0!important;background:#fff!important;color:#535d67!important;font-size:13px!important}.signup-bottom .signup-share{height:54px!important;border:1px solid #24cfd0!important;border-radius:28px!important;color:#20cfd0!important;font-size:22px!important}.signup-bottom .signup-join{height:54px!important;border-radius:28px!important;background:#2dd0d2!important;color:#fff!important;font-size:22px!important}.signup-ticket-overlay{position:fixed!important;inset:0!important;z-index:100!important}.signup-ticket-mask{position:absolute!important;inset:0!important;background:rgba(0,0,0,.72)!important}.signup-ticket-panel{position:absolute!important;left:0!important;right:0!important;bottom:0!important;min-height:612px!important;background:#fafafa!important;border-radius:10px 10px 0 0!important;padding:24px 20px 8px!important}.signup-ticket-panel h2{text-align:center!important;font-size:25px!important;margin:0 0 28px!important}.signup-ticket-close{position:absolute!important;right:20px!important;top:18px!important;border:0!important;background:transparent!important;color:#c5c5c5!important;font-size:42px!important}.signup-ticket-card{height:132px!important;background:#fff!important;border-radius:14px!important;display:grid!important;grid-template-columns:1fr 34px 100px!important;align-items:center!important;padding:0 16px!important}.signup-ticket-card b{font-size:21px!important}.signup-ticket-card p{font-size:16px!important;color:#8a939d!important;margin:9px 0 0!important}.signup-ticket-card span{width:28px!important;height:28px!important;border-radius:50%!important;background:#20242a!important;color:#39d5d5!important;display:grid!important;place-items:center!important;font-weight:900!important}.signup-ticket-card strong{text-align:right!important;font-size:24px!important}.signup-ticket-confirm{position:absolute!important;left:20px!important;right:20px!important;bottom:8px!important;height:56px!important;border:0!important;border-radius:28px!important;background:#2fd0d2!important;color:#fff!important;font-size:22px!important}.signup-page .toast{z-index:200!important}
@media(max-width:430px){.signup-hero{height:520px!important}.signup-hero-title{font-size:34px!important}.signup-head{padding:0 14px!important}.signup-head>b{font-size:16px!important}.signup-head .mini-btn{transform:scale(.9);transform-origin:right center}.signup-ticket-panel{min-height:610px!important}}

/* Signup success sheet */
.signup-success-overlay{position:fixed!important;inset:0!important;z-index:120!important}.signup-success-mask{position:absolute!important;inset:0!important;background:rgba(0,0,0,.55)!important}.signup-success-panel{position:absolute!important;left:50%!important;top:50%!important;transform:translate(-50%,-50%)!important;width:84%!important;max-width:380px!important;background:#fff!important;border-radius:16px!important;padding:32px 22px 18px!important;text-align:center!important;box-shadow:0 12px 40px rgba(0,0,0,.18)!important}.signup-success-icon{width:64px!important;height:64px!important;margin:0 auto 14px!important;border-radius:50%!important;background:#2dd0d2!important;color:#fff!important;font-size:34px!important;display:grid!important;place-items:center!important;font-weight:900!important}.signup-success-panel h2{font-size:22px!important;margin:0 0 14px!important;color:#101820!important;font-weight:700!important}.signup-success-panel p{font-size:16px!important;line-height:1.45!important;color:#283038!important;margin:0 0 6px!important}.signup-success-panel p.muted{color:#8a939d!important;font-size:14px!important}.signup-success-actions{display:grid!important;grid-template-columns:1fr 1fr!important;gap:10px!important;margin:18px 0 8px!important}.signup-success-actions button{height:46px!important;border-radius:23px!important;border:0!important;font-size:16px!important;font-weight:600!important;cursor:pointer!important}.signup-success-actions button:first-child{background:#eafffe!important;color:#1cb6b8!important}.signup-success-actions button:last-child{background:#2dd0d2!important;color:#fff!important}.signup-success-close{margin-top:6px!important;border:0!important;background:transparent!important;color:#8a939d!important;font-size:15px!important;padding:6px 12px!important;cursor:pointer!important}

/* City picker - upgraded for global cities, sticky letter index, scroll list */
.alliance-city-page{position:relative!important;background:#fff!important}.alliance-city-page .alliance-city-list-wrap{position:relative!important;height:calc(100vh - 290px)!important;max-height:560px!important;overflow-y:auto!important;-webkit-overflow-scrolling:touch!important;padding:0 16px 80px!important;scroll-behavior:smooth!important}.alliance-city-page .alliance-city-letter-title{position:sticky!important;top:0!important;background:#f6f7f9!important;color:#76808a!important;font-size:13px!important;font-weight:600!important;letter-spacing:.4px!important;padding:6px 4px!important;margin:14px -16px 6px!important;padding-left:16px!important;z-index:1!important}.alliance-city-page .alliance-city-list{display:grid!important;grid-template-columns:1fr 1fr 1fr!important;gap:10px!important}.alliance-city-page .alliance-city-list button{height:44px!important;padding:0 6px!important;border:1px solid #ebeef2!important;border-radius:8px!important;background:#fff!important;font-size:13px!important;color:#202833!important;text-align:center!important;display:flex!important;align-items:center!important;justify-content:center!important;line-height:1.15!important;cursor:pointer!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}.alliance-city-page .alliance-city-list button:hover{border-color:#2dd0d2!important;color:#179fa1!important}.alliance-city-page .alliance-hot-cities{display:grid!important;grid-template-columns:1fr 1fr 1fr!important;gap:10px!important;margin-bottom:14px!important}.alliance-city-page .alliance-hot-cities button{height:44px!important;border-radius:8px!important;background:#f5f6f8!important;border:0!important;color:#202833!important;font-size:14px!important;cursor:pointer!important;text-overflow:ellipsis!important;overflow:hidden!important;white-space:nowrap!important;padding:0 6px!important}.alliance-city-page .alliance-letter-index{position:absolute!important;right:6px!important;top:200px!important;bottom:24px!important;width:22px!important;display:flex!important;flex-direction:column!important;justify-content:center!important;align-items:center!important;gap:8px!important;background:transparent!important;z-index:5!important}.alliance-city-page .alliance-letter-index span{font-size:11px!important;color:#7d8896!important;width:18px!important;text-align:center!important;line-height:1.45!important;cursor:pointer!important;user-select:none!important;border-radius:9px!important;padding:3px 0!important}.alliance-city-page .alliance-letter-index span:hover,.alliance-city-page .alliance-letter-index span:active{background:#2dd0d2!important;color:#fff!important}.alliance-city-page .alliance-city-search{margin:10px 18px 6px!important;display:flex!important;align-items:center!important;gap:8px!important;background:#f4f5f7!important;border-radius:22px!important;padding:0 14px!important;height:40px!important}.alliance-city-page .alliance-city-search input{flex:1!important;border:0!important;background:transparent!important;font-size:14px!important;outline:none!important;color:#202833!important}.alliance-city-page .alliance-city-search span{color:#9aa3ad!important;font-size:14px!important}.alliance-city-page .alliance-city-tabs{display:flex!important;justify-content:center!important;gap:46px!important;padding:8px 0 4px!important}.alliance-city-page .alliance-city-tabs button{border:0!important;background:transparent!important;font-size:16px!important;font-weight:600!important;color:#3a424c!important;padding:6px 0!important;cursor:pointer!important;position:relative!important}.alliance-city-page .alliance-city-tabs button.active{color:#202833!important}.alliance-city-page .alliance-city-tabs button.active::after{content:""!important;position:absolute!important;left:50%!important;bottom:-2px!important;transform:translateX(-50%)!important;width:48px!important;height:3px!important;background:#2dd0d2!important;border-radius:2px!important}.alliance-city-page .alliance-current-city{padding:8px 18px 14px!important;border-bottom:1px solid #f1f2f4!important;margin-bottom:8px!important}.alliance-city-page .alliance-current-city p{font-size:12px!important;color:#9aa3ad!important;margin:0 0 4px!important}.alliance-city-page .alliance-current-city div{display:flex!important;justify-content:space-between!important;align-items:center!important}.alliance-city-page .alliance-current-city b{font-size:16px!important;color:#202833!important;font-weight:600!important}.alliance-city-page .alliance-current-city button{border:0!important;background:transparent!important;color:#2dd0d2!important;font-size:13px!important;cursor:pointer!important}.alliance-city-page .alliance-city-label{color:#9aa3ad!important;font-size:13px!important;margin:6px 0 8px!important}.alliance-city-page .alliance-city-empty{padding:80px 20px!important;text-align:center!important;color:#9aa3ad!important;font-size:14px!important}.alliance-city-page .alliance-city-head{display:flex!important;align-items:center!important;justify-content:space-between!important;height:48px!important;padding:0 14px!important;background:#fff!important;position:sticky!important;top:0!important;z-index:6!important}.alliance-city-page .alliance-city-head h2{flex:1!important;text-align:center!important;font-size:17px!important;font-weight:700!important;margin:0!important}.alliance-city-page .alliance-city-back{border:0!important;background:transparent!important;width:30px!important;height:30px!important;font-size:24px!important;color:#202833!important;cursor:pointer!important}.alliance-city-page .alliance-city-back::before{content:"\2039"!important;font-size:30px!important;line-height:1!important}
@media(max-width:430px){.alliance-city-page .alliance-city-list-wrap{height:calc(100vh - 270px)!important}}

/* Single-column country list (oversea) */
.city-page-single .alliance-city-list-wrap{height:calc(100vh - 220px)!important;max-height:640px!important}
.alliance-city-list.single{display:block!important;padding:0!important}
.alliance-city-list.single button{display:block!important;width:100%!important;height:auto!important;border:0!important;background:transparent!important;text-align:left!important;font-size:15px!important;color:#202833!important;padding:14px 4px!important;border-bottom:1px solid #f0f1f3!important;border-radius:0!important}
.alliance-city-list.single button:hover{color:#1cb6b8!important;background:transparent!important;border-color:#f0f1f3!important}
.city-page-single .alliance-city-letter-title{background:#fff!important;color:#9aa3ad!important;font-size:13px!important;padding:14px 4px 6px!important;margin:0!important;border-bottom:0!important}
.city-page-single .alliance-city-letter-title:first-child{padding-top:6px!important}
.alliance-letter-index span.active{background:#2dd0d2!important;color:#fff!important;font-weight:700!important;width:20px!important;height:20px!important;line-height:20px!important;border-radius:50%!important;display:inline-flex!important;align-items:center!important;justify-content:center!important}
.alliance-letter-index span:first-child{color:#9aa3ad!important;font-size:11px!important;width:auto!important}

/* My signups card on profile activityGroup tab */
.profile-mysignups{padding:8px 16px 0!important}
.profile-mysignup-item{display:flex!important;flex-direction:column!important;align-items:flex-start!important;width:100%!important;background:linear-gradient(135deg,#f6fdff,#e9f9fa)!important;border:1px solid #d2f1f2!important;border-radius:14px!important;padding:14px 16px!important;margin-bottom:10px!important;cursor:pointer!important;text-align:left!important}
.profile-mysignup-item b{font-size:15px!important;color:#202833!important;font-weight:700!important;margin-bottom:4px!important}
.profile-mysignup-item span{font-size:12px!important;color:#76808a!important;display:block!important;margin-bottom:6px!important}
.profile-mysignup-item em{font-size:13px!important;color:#1cb6b8!important;font-weight:600!important;font-style:normal!important;align-self:flex-end!important}
/* Login agreement clickable links */
.login-agree a,.login-sms-tips a{color:#2dd0d2!important;cursor:pointer!important;text-decoration:none!important}
.login-agree a:hover,.login-sms-tips a:hover{text-decoration:underline!important}
/* Network offline banner */
.offline-banner{position:fixed!important;top:0!important;left:0!important;right:0!important;background:#ff5b5b!important;color:#fff!important;text-align:center!important;font-size:13px!important;padding:6px 12px!important;z-index:99999!important}

/* Message list button styling preserve */
button.list-item{display:flex!important;width:100%!important;align-items:center!important;border:0!important;background:transparent!important;text-align:left!important;cursor:pointer!important;padding:14px 16px!important;border-bottom:1px solid #f3f4f6!important}
button.list-item:hover{background:#fafbfc!important}
button.list-item .list-item-arrow{margin-left:auto!important;color:#c1c8d0!important;font-size:18px!important}
.msg-unread{display:inline-block!important;background:#ff5b5b!important;color:#fff!important;font-size:11px!important;font-style:normal!important;padding:0 6px!important;border-radius:9px!important;line-height:18px!important;margin-left:6px!important;vertical-align:middle!important}

/* Chat group members card */
.chat-group-members-card{margin:12px 16px!important;background:#fff!important;border-radius:14px!important;padding:14px 16px!important;box-shadow:0 2px 12px rgba(0,0,0,.04)!important}
.chat-group-members-head{display:flex!important;align-items:center!important;justify-content:space-between!important;margin-bottom:12px!important}
.chat-group-members-head h3{margin:0!important;font-size:15px!important;font-weight:700!important;color:#202833!important}
.chat-group-members-head span{font-size:13px!important;color:#76808a!important}
.chat-group-members-grid{display:grid!important;grid-template-columns:repeat(5,1fr)!important;gap:12px!important}
.chat-group-member{display:flex!important;flex-direction:column!important;align-items:center!important;gap:4px!important;position:relative!important}
.chat-group-member img{width:48px!important;height:48px!important;border-radius:50%!important;object-fit:cover!important;background:#eee!important}
.chat-group-member b{font-size:11px!important;font-weight:500!important;color:#454d5a!important;max-width:62px!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}
.chat-group-member em.role{position:absolute!important;top:-2px!important;right:6px!important;font-size:10px!important;font-style:normal!important;padding:1px 5px!important;border-radius:8px!important;color:#fff!important}
.chat-group-member em.role.owner{background:#ff8a3c!important}
.chat-group-member em.role.admin{background:#1cb6b8!important}
.chat-group-members-empty{font-size:13px!important;color:#a0a8b1!important;text-align:center!important;padding:20px 0!important}

/* === Compliance / Privacy gate === */
.privacy-gate-mask{position:fixed;inset:0;background:rgba(0,0,0,.55);z-index:9999;display:flex;align-items:flex-end;justify-content:center;}
.privacy-gate-card{background:#fff;width:100%;max-width:520px;border-radius:16px 16px 0 0;padding:22px 20px 24px;box-shadow:0 -8px 28px rgba(0,0,0,.18);font-size:14px;line-height:1.7;color:#333;}
.privacy-gate-card h2{font-size:18px;margin:0 0 10px;color:#111;}
.privacy-gate-card ul{padding-left:20px;margin:6px 0;}
.privacy-gate-card a{color:#1d6cff;text-decoration:none;}
.privacy-gate-points{color:#666;font-size:13px;margin:10px 0 16px;}
.privacy-gate-btns{display:flex;gap:10px;margin-top:6px;}
.privacy-gate-btns button{flex:1;height:44px;border-radius:22px;border:0;font-size:15px;cursor:pointer;}
.privacy-gate-btns .ghost{background:#f1f3f6;color:#555;}
.privacy-gate-btns .primary{background:#1d6cff;color:#fff;}
.privacy-gate-card.refusing h2{color:#d93025;}

/* === Setting-page generic (实名/青少�?合规中心) === */
.setting-page{background:#f5f6f8;min-height:100vh;}
.setting-head{display:flex;align-items:center;gap:8px;padding:14px 14px 8px;background:#fff;border-bottom:1px solid #f0f0f0;}
.setting-head h1{font-size:17px;margin:0;flex:1;text-align:center;color:#111;}
.setting-head .setting-back{width:32px;height:32px;border:0;background:transparent;font-size:22px;color:#333;cursor:pointer;}
.setting-body{padding:14px;}
.setting-body .form-row{display:flex;align-items:center;background:#fff;border-radius:10px;padding:12px 14px;margin-bottom:10px;}
.setting-body .form-row span{width:120px;color:#666;font-size:14px;}
.setting-body .form-row input{flex:1;border:0;outline:none;font-size:14px;color:#222;}
.setting-body .form-err{color:#d93025;font-size:13px;margin:4px 4px 10px;}
.setting-tip{color:#888;font-size:12px;line-height:1.6;margin:10px 4px;}
.setting-section{font-size:13px;color:#888;margin:14px 4px 6px;font-weight:normal;}
.kv-row{display:flex;align-items:center;justify-content:space-between;background:#fff;border:0;width:100%;padding:14px;border-bottom:1px solid #f4f4f4;font-size:14px;color:#222;text-decoration:none;cursor:pointer;}
.kv-row:first-child{border-top-left-radius:10px;border-top-right-radius:10px;}
.kv-row:last-child{border-bottom-left-radius:10px;border-bottom-right-radius:10px;border-bottom:0;}
.kv-row b{color:#888;font-weight:normal;font-size:13px;}
.kv-row.danger{color:#d93025;}
.primary-btn{display:block;width:100%;height:46px;border-radius:23px;border:0;background:#1d6cff;color:#fff;font-size:15px;margin-top:14px;cursor:pointer;}
.primary-btn:disabled{opacity:.6;}
.ghost-btn{display:block;width:100%;height:44px;border-radius:22px;border:1px solid #d93025;background:#fff;color:#d93025;font-size:15px;margin-top:14px;cursor:pointer;}
.export-list{background:#fff;border-radius:10px;padding:6px 12px;margin-top:8px;}
.export-item{display:flex;align-items:center;gap:8px;padding:8px 0;border-bottom:1px solid #f4f4f4;font-size:13px;}
.export-item small{color:#888;flex:1;}
.export-item a{color:#1d6cff;text-decoration:none;}
.login-captcha-row{display:flex!important;align-items:center!important;gap:8px!important}
.login-captcha-q{font-size:16px!important;font-weight:600!important;color:#1f2937!important;white-space:nowrap!important;min-width:80px!important}
.login-captcha-row input{flex:1!important;width:60px!important;text-align:center!important}
.login-captcha-refresh{width:32px!important;height:32px!important;border-radius:50%!important;border:1px solid #d1d5db!important;background:#f9fafb!important;font-size:16px!important;cursor:pointer!important;color:#6b7280!important;flex-shrink:0!important}

/* Home sticky 顶栏：品牌条 + 搜索框始终悬�?*/
.home-page{overflow:visible!important;overflow-x:clip!important}
.home-page .home-sticky-bar{position:sticky!important;top:0!important;z-index:60!important;background:#b9efee!important;padding:0 0 10px 0!important;box-shadow:0 6px 16px rgba(31,148,148,.08)!important}
.home-page .home-sticky-bar .home-brand-strip{position:static!important;height:auto!important;padding:30px 20px 8px!important;background:transparent!important}
.home-page .home-sticky-bar .home-search-sticky{position:static!important;margin:0 20px!important;height:44px!important;border-radius:22px!important;background:rgba(255,255,255,.92)!important;display:flex!important;align-items:center!important;padding:0 14px!important;color:#7b8793!important;font-size:14px!important;box-shadow:0 6px 14px rgba(30,132,135,.1)!important}
.home-page .home-sticky-bar .home-search-sticky .search-icon{margin-right:7px!important;color:#2f3942!important;font-size:22px!important}
.home-page .home-sticky-bar + .home-top{padding-top:14px!important}
.home-page .home-sticky-bar + .home-top .home-search{display:none!important}

/* Home tabs+filters 二级 sticky 栏：向下滚隐藏，向上滚显�?*/
.home-page .home-tabs-bar{position:sticky!important;top:118px!important;z-index:55!important;background:#fff!important;padding:8px 0 4px!important;transition:transform .24s ease,opacity .24s ease!important;will-change:transform!important;box-shadow:0 4px 10px rgba(15,23,42,.04)!important}
.home-page .home-tabs-bar.scroll-hidden{transform:translateY(-110%)!important;opacity:0!important;pointer-events:none!important}
.home-page .home-tabs-bar .home-tabs{margin:0!important;padding:0 12px!important}
.home-page .home-tabs-bar .home-filters{margin:0!important;padding:6px 12px 4px!important}

/* 活动列表更紧�?*/
.home-page .home-event-list.restored{padding:8px 10px 86px!important}
.home-page .home-feature-event{margin:0 0 9px!important;padding:6px 12px 6px!important;border-radius:16px!important}
.home-page .home-feature-event h3{margin-bottom: 2px!important}
.home-page .home-feature-event p{margin-bottom: 2px!important}
.home-page .home-feature-event .feature-meta{margin-bottom: 2px!important}
.home-page .home-feature-event .feature-images{margin-bottom: 2px!important}
.home-page .home-feature-event .feature-bottom{margin-top: 3px!important}

/* 统一各页面 Header 安全区 padding-top Fallback 适配 */
header.h-14,
.unified-header,
main > div.flex.items-center.justify-between.h-14,
div.flex.items-center.justify-between.h-14.flex-shrink-0 {
  padding-top: env(safe-area-inset-top, 0px) !important;
  box-sizing: content-box !important;
}

/* 统一 h-14 类型的窄顶栏高度 */
header.h-14,
.unified-header.h-14,
main > div.flex.items-center.justify-between.h-14,
div.flex.items-center.justify-between.h-14.flex-shrink-0 {
  height: 56px !important;
}

/* ===== ��ҳɸѡ���� ===== */
.home-filter-mask {
  position: fixed;
  left: 50%;
  top: 0;
  bottom: 0;
  width: min(476px, 100vw);
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  display: flex;
  align-items: flex-end;
}

.home-filter-sheet {
  width: 100%;
  background: #fff;
  border-radius: 18px 18px 0 0;
  padding: 20px 18px 30px;
  box-shadow: 0 -8px 24px rgba(0,0,0,.1);
  animation: slide-up 0.3s ease;
}

@keyframes slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.home-filter-sheet .filter-sheet-close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 32px;
  height: 32px;
  border: none;
  background: #f2f3f5;
  border-radius: 50%;
  font-size: 20px;
  color: #6b7280;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-filter-sheet h3 {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
}

.home-filter-sheet > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.home-filter-sheet button {
  height: 42px;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 10px;
  font-size: 14px;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease;
}

.home-filter-sheet button:active {
  background: #f3f4f6;
  transform: scale(0.98);
}

/* ==========================================
   强制私信聊天气泡自适应，随文字大小收紧，防止任何 WebView 的强行拉伸 
   ========================================== */
#chat-messages-container .rounded-md,
#chat-messages-container .rounded-xl,
#chat-messages-container .rounded-2xl {
  width: fit-content !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 0px !important;
  display: inline-block !important;
  text-align: left !important;
}
#chat-messages-container .rounded-md p,
#chat-messages-container .rounded-md span,
#chat-messages-container .rounded-xl p,
#chat-messages-container .rounded-xl span,
#chat-messages-container .rounded-2xl p,
#chat-messages-container .rounded-2xl span {
  text-align: left !important;
}


/* ==========================================
   仅在“联盟大厅”和“地点选择”页面生效的专属微调
   ========================================== */
.alliance-hall-page .alliance-head,
.alliance-city-head {
  height: 56px !important;
  position: relative !important;
  padding-top: env(safe-area-inset-top, 0px) !important;
  box-sizing: content-box !important;
}

.alliance-hall-page .alliance-back,
.alliance-city-back {
  position: absolute !important;
  left: 8px !important;
  top: calc(env(safe-area-inset-top, 0px) + 8px) !important;
  width: 40px !important;
  height: 40px !important;
  border: 0 !important;
  background: transparent !important;
  z-index: 50 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  padding: 0 !important;
}

/* ==========================================
   像素级复刻线上大底栏（图二）的渐变胶囊样式
   ========================================== */
.alliance-hall-bottom-tabs {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  background: linear-gradient(135deg, #2dd4bf 0%, #0ea5e9 100%) !important;
  border-radius: 9999px !important;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3) !important;
  height: 48px !important;
  width: calc(100% - 40px) !important;
  max-width: 380px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  bottom: 20px !important;
  grid-template-columns: none !important; /* 清除陈旧 grid 列定义 */
}

.alliance-hall-bottom-tabs button {
  flex: 1 !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 0 !important;
  background: transparent !important;
  letter-spacing: 1px !important;
  position: relative !important;
}

/* 加上中间的白分割线 */
.alliance-hall-bottom-tabs button:first-child::after {
  content: "" !important;
  position: absolute !important;
  right: 0 !important;
  top: 14px !important;
  width: 1px !important;
  height: 20px !important;
  background: rgba(255, 255, 255, 0.3) !important;
}

/* 强制锁定个人中心左上角圆圈菜单精致尺寸 */
.profile-menu-hamburger {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  max-width: 24px !important;
  min-height: 24px !important;
  max-height: 24px !important;
  border-radius: 50% !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  
  /* 恢复内部汉堡三条线图标的居中与字号 */
  font-size: 13px !important;
  line-height: 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* 强制微调底栏中央发布按钮高度为 32px，并覆盖全局 min-height */
#app-nav button.bg-gradient-to-r {
  height: 32px !important;
  min-height: 32px !important;       /* 覆盖全局 min-height: 38px */
  width: 48px !important;            /* 恢复标准宽度 48px */
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;             /* 消除内边距保证垂直居中 */
}

/* 强制白色加号图标按比例缩减至 16px */
#app-nav button.bg-gradient-to-r svg {
  width: 16px !important;
  height: 16px !important;
  display: block !important;
}

/* 强控底栏所有子包裹容器：绝对撑满且垂直居中 */
#app-nav > div {
  height: 56px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 1 !important;
  box-sizing: border-box !important;
}

/* 精致化底部导航文字大小为15px，line-height为1，实现完美垂直居中比例 */
.nav-label {
  font-size: 16px !important;
  line-height: 1 !important;
}

/* 活动地图与搜索行并排布局 */
.home-search-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 20px 0 20px !important;
}

/* 覆盖原有 margin 限制以支持 Flex 平铺 */
.home-page .home-sticky-bar .home-search-sticky {
  margin: 0 !important;
  flex: 1;
}

/* 地图按钮 */
.home-map-btn {
  height: 44px;
  padding: 0 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 6px 14px rgba(30, 132, 135, 0.1) !important;
  display: flex;
  align-items: center;
  gap: 6px;
  border: none;
  font-size: 13px;
  font-weight: 800;
  color: #1f252b;
  cursor: pointer;
  transition: all 0.2s ease;
}

.home-map-btn:active {
  transform: scale(0.95);
  background: rgba(255, 255, 255, 0.8) !important;
}

.home-map-btn .map-icon {
  font-size: 16px;
}

/* 地图页面布局 */
.activity-map-page {
  position: absolute;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  background: #f8fafc;
}

.activity-map-nav {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: #b8ebec;
  border-bottom: 1px solid #a3dedf;
  flex-shrink: 0;
}

.activity-map-back-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 20px;
  color: #1c2833;
  cursor: pointer;
  transition: transform 0.1s ease;
}

.activity-map-back-btn:active {
  transform: scale(0.9);
}

.activity-map-title {
  font-size: 16px;
  font-weight: 900;
  color: #1c2833;
}

/* 底部活动卡片 */
.activity-map-card-wrapper {
  position: absolute;
  bottom: 24px;
  left: 16px;
  right: 16px;
  z-index: 110;
}

.activity-map-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.15);
  display: flex;
  padding: 12px;
  gap: 12px;
  align-items: center;
  transition: all 0.2s ease;
}

.activity-map-card:active {
  transform: scale(0.99);
}

/* 矢量地图 Marker 呼吸动画 */
@keyframes markerPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

.vector-pulse {
  animation: markerPulse 1.8s infinite ease-out;
}

/* 联盟底部胶囊物理降高贴底双保险 */
.agy-alliance-bottom-bar {
  padding: 12px 20px 8px 20px !important;
}

/* 个人中心我参与的活动卡片外白色框边线加深 */
.yp-prof-act-card {
  border: 1.5px solid #dcdfe6 !important;
  box-shadow: 0 2px 8px rgba(16, 24, 32, 0.03) !important;
  margin: 12px 16px 0 !important;
  background: #ffffff !important;
  border-radius: 16px !important;
  padding: 12px !important;
}
