/* ===== 锡林房产网 清新淡雅浅色设计（薄荷青绿 + 天蓝清凉色系） ===== */
:root {
  --primary: #12b5a5;
  --primary-deep: #0c9689;
  --primary-hover: #0da396;
  --primary-light: rgba(18, 181, 165, 0.10);
  --price: #ff5c4d;
  --green: #10b981;
  --orange: #f59e0b;
  --sky: #0ea5e9;
  --bg: #f2f8f9;
  --card: #ffffff;
  --card-hover: #fbfefe;
  --input-bg: #f5f9fa;
  --text: #24343b;
  --text-2: #64748b;
  --text-3: #94a3b8;
  --border: #e2edf0;
  --border-strong: #cfe0e5;
  --radius: 14px;
  --shadow-sm: 0 2px 10px rgba(21, 90, 110, 0.06);
  --shadow-md: 0 10px 30px rgba(21, 90, 110, 0.10);
  --nav-h: 56px;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html { font-size: 16px; background: var(--bg); }

body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", "Microsoft YaHei", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  overscroll-behavior-y: contain;
  padding-bottom: calc(var(--nav-h) + env(safe-area-inset-bottom) + 12px);
}

/* 背景光晕：薄荷与天蓝的柔和色晕，营造清凉通透感 */
body::before, body::after {
  content: ""; position: fixed; width: 560px; height: 560px; border-radius: 50%;
  filter: blur(130px); z-index: -1; opacity: 0.3; pointer-events: none;
}
body::before { background: #a7f3e4; top: -180px; left: -180px; animation: pulseGlow 14s infinite alternate; }
body::after { background: #bfe7fb; bottom: -180px; right: -180px; animation: pulseGlow 11s infinite alternate-reverse; }
@keyframes pulseGlow {
  0% { transform: scale(1) translate(0); }
  100% { transform: scale(1.18) translate(40px, 40px); }
}

a { color: inherit; text-decoration: none; }
img { display: block; }
button { font-family: inherit; border: none; background: none; cursor: pointer; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 0.95rem; color: var(--text); }

.container { max-width: 640px; margin: 0 auto; padding: 0 12px; }

/* ===== 顶部 ===== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: linear-gradient(160deg, rgba(167, 243, 228, 0.35), rgba(191, 231, 251, 0.3)), rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.header-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px 10px;
}
.logo { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 1.12rem; letter-spacing: 0.5px; color: var(--text); }
.logo img { width: 32px; height: 32px; border-radius: 9px; box-shadow: 0 2px 8px rgba(21, 90, 110, 0.15); }
.logo small { display: block; font-size: 0.66rem; font-weight: 400; opacity: 0.6; letter-spacing: 0; }
.header-link {
  color: var(--primary-deep); font-size: 0.83rem; padding: 6px 13px;
  border-radius: 16px; background: var(--primary-light); border: 1px solid rgba(18, 181, 165, 0.25);
  font-weight: 600;
}

.search-bar { display: flex; align-items: center; gap: 8px; padding: 0 14px 12px; }
.search-bar input {
  flex: 1; height: 38px; border-radius: 19px; border: 1px solid var(--border-strong); outline: none;
  padding: 0 18px; font-size: 0.9rem; background: #ffffff; color: var(--text);
}
.search-bar input::placeholder { color: var(--text-3); }
.search-bar input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(18, 181, 165, 0.14); }
.search-bar button {
  height: 38px; padding: 0 18px; border-radius: 19px;
  background: linear-gradient(135deg, #1fc3b2, #0d9488); color: #fff; font-size: 0.9rem; font-weight: 600;
  box-shadow: 0 3px 10px rgba(13, 148, 136, 0.28);
}

/* ===== 分类 Tab ===== */
.tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 49;
}
.tabs .tab {
  flex: 1; padding: 12px 0; text-align: center; font-size: 0.93rem;
  color: var(--text-2); position: relative; font-weight: 500; transition: color 0.2s;
}
.tabs .tab.active { color: var(--primary-deep); font-weight: 700; }
.tabs .tab.active::after {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 26px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, #2dd4bf, #38bdf8);
}

/* ===== 筛选 ===== */
.filters {
  display: flex; gap: 8px; padding: 10px 12px; overflow-x: auto;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  scrollbar-width: none;
}
.filters::-webkit-scrollbar { display: none; }
.filter-chip {
  flex-shrink: 0; padding: 6px 13px; border-radius: 16px; font-size: 0.8rem;
  background: #f5f9fa; color: var(--text-2);
  border: 1px solid var(--border); white-space: nowrap; transition: all 0.2s;
}
.filter-chip.active {
  background: var(--primary-light); color: var(--primary-deep);
  border-color: rgba(18, 181, 165, 0.45); font-weight: 600;
}

.filter-panel {
  position: fixed; inset: 0; z-index: 100; background: rgba(30, 52, 60, 0.35);
  display: none; align-items: flex-end; justify-content: center;
}
.filter-panel.show { display: flex; }
.filter-panel .sheet {
  background: #ffffff; width: 100%; max-width: 640px; border-radius: 18px 18px 0 0;
  padding: 18px 16px calc(16px + env(safe-area-inset-bottom)); max-height: 72vh; overflow-y: auto;
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 30px rgba(21, 90, 110, 0.12);
}
.filter-panel h4 { font-size: 1rem; margin-bottom: 14px; color: var(--text); }
.filter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 16px; }
.filter-grid button {
  padding: 9px 0; border-radius: 9px; background: #f5f9fa; font-size: 0.84rem;
  color: var(--text-2); border: 1px solid transparent; transition: all 0.15s;
}
.filter-grid button.active {
  background: var(--primary-light); color: var(--primary-deep);
  border-color: rgba(18, 181, 165, 0.45); font-weight: 600;
}
.filter-actions { display: flex; gap: 10px; }
.filter-actions button { flex: 1; padding: 12px 0; border-radius: 11px; font-size: 0.95rem; }
.btn-reset { background: #f5f9fa; color: var(--text-2); border: 1px solid var(--border); }
.btn-apply {
  background: linear-gradient(135deg, #1fc3b2, #0d9488); color: #fff; font-weight: 600;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.28);
}

/* ===== 房源卡片（竖向大图布局） ===== */
.listing-list { padding: 12px 12px 0; }
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  margin-bottom: 12px; display: flex; flex-direction: column; position: relative;
  overflow: hidden; transition: transform 0.2s, box-shadow 0.2s;
  animation: slideUp 0.35s ease;
}
.card:active { transform: scale(0.985); }
@keyframes slideUp { from { opacity: 0; transform: translateY(12px); } }
.card-img {
  width: 100%; height: 168px; flex-shrink: 0; overflow: hidden;
  position: relative; background: #e8f2f4;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-img .placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  color: var(--text-3); font-size: 0.78rem;
}
.badge-type {
  position: absolute; left: 0; top: 0; padding: 3px 9px; font-size: 0.7rem;
  color: #fff; border-radius: 14px 0 10px 0; font-weight: 600; letter-spacing: 0.5px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.18);
}
.badge-type.new { background: linear-gradient(135deg, #34d399, #059669); }
.badge-type.second { background: linear-gradient(135deg, #fbbf24, #d97706); }
.badge-type.rent { background: linear-gradient(135deg, #38bdf8, #0284c7); }
.badge-featured {
  position: absolute; left: 0; bottom: 0; padding: 3px 9px; font-size: 0.7rem;
  color: #fff; background: #ef4444; border-radius: 0 10px 0 0; font-weight: 600;
}
.card-info { flex: 1; min-width: 0; display: flex; flex-direction: column; padding: 12px 14px 13px; }
.card-title {
  font-size: 1rem; font-weight: 700; line-height: 1.45; color: var(--text);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-sub { font-size: 0.8rem; color: var(--text-2); margin-top: 5px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.card-bottom { margin-top: 10px; display: flex; align-items: baseline; justify-content: space-between; }
.card-price { color: var(--price); font-weight: 800; font-size: 1.12rem; }
.card-price small { font-size: 0.74rem; font-weight: 400; }
.card-tag { font-size: 0.72rem; color: var(--text-3); flex-shrink: 0; }
.card-tag.agent { color: #d97706; }

/* ===== 空状态 ===== */
.empty { text-align: center; padding: 60px 0; color: var(--text-3); }
.empty .icon { font-size: 3rem; margin-bottom: 10px; }

/* ===== 底部导航 ===== */
.bottom-nav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  display: flex; padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -2px 12px rgba(21, 90, 110, 0.05);
}
.bottom-nav a {
  flex: 1; height: var(--nav-h); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2px; font-size: 0.7rem; color: var(--text-2);
}
.bottom-nav a.active { color: var(--primary-deep); font-weight: 600; }
.bottom-nav .nav-icon { font-size: 1.3rem; line-height: 1; }

.fab {
  position: fixed; right: 16px; bottom: calc(var(--nav-h) + env(safe-area-inset-bottom) + 20px);
  z-index: 40; width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, #2dd4bf, #0d9488); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(13, 148, 136, 0.35); font-size: 1.5rem;
}

/* ===== 页脚备案号 ===== */
.footer {
  text-align: center;
  padding: 16px 12px calc(var(--nav-h) + env(safe-area-inset-bottom) + 24px);
}
.footer a { color: var(--text-3); font-size: 0.72rem; text-decoration: none; }

/* ===== 表单 ===== */
.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px; margin: 12px; box-shadow: var(--shadow-sm);
}
.form-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 14px; display: flex; align-items: center; gap: 6px; }
.form-title::before {
  content: ""; width: 4px; height: 16px; border-radius: 2px;
  background: linear-gradient(180deg, #2dd4bf, #38bdf8);
}

.form-item { margin-bottom: 14px; }
.form-item:last-child { margin-bottom: 0; }
.form-label { display: block; font-size: 0.83rem; color: var(--text-2); margin-bottom: 7px; }
.form-label .req { color: #ef4444; margin-left: 2px; }
.form-input {
  width: 100%; height: 42px; border: 1px solid var(--border-strong); border-radius: 10px;
  padding: 0 13px; outline: none; background: var(--input-bg); font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input::placeholder { color: var(--text-3); }
.form-input:focus {
  border-color: var(--primary); background: #ffffff;
  box-shadow: 0 0 0 3px rgba(18, 181, 165, 0.14);
}
textarea.form-input { height: auto; min-height: 96px; padding: 11px 13px; resize: vertical; line-height: 1.6; }
select.form-input { appearance: none; -webkit-appearance: none; }
.form-row { display: flex; gap: 10px; }
.form-row .form-item { flex: 1; }

.type-selector { display: flex; gap: 10px; }
.type-selector button {
  flex: 1; padding: 12px 0; border-radius: 10px; border: 1px solid var(--border);
  font-size: 0.93rem; font-weight: 600; color: var(--text-2); background: #f5f9fa;
  transition: all 0.2s;
}
.type-selector button.active.new { border-color: var(--green); color: #0d9f6e; background: rgba(16, 185, 129, 0.10); }
.type-selector button.active.second { border-color: var(--orange); color: #d97706; background: rgba(245, 158, 11, 0.12); }
.type-selector button.active.rent { border-color: var(--sky); color: #0284c7; background: rgba(56, 189, 248, 0.12); }

.phone-input-row { display: flex; gap: 10px; }
.phone-input-row .form-input { flex: 1; }
.btn-sms {
  flex-shrink: 0; width: 110px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, #1fc3b2, #0d9488); color: #fff; font-size: 0.83rem; font-weight: 600;
}
.btn-sms:disabled { background: #e2edf0; color: var(--text-3); }

.upload-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.upload-cell {
  aspect-ratio: 1; border-radius: 10px; overflow: hidden; position: relative;
  border: 1px dashed var(--border-strong); background: #f5f9fa;
}
.upload-cell img { width: 100%; height: 100%; object-fit: cover; }
.upload-cell .del {
  position: absolute; right: 4px; top: 4px; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(0, 0, 0, 0.5); color: #fff; font-size: 0.8rem; line-height: 22px; text-align: center;
}
.upload-add {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--text-3); font-size: 0.72rem; gap: 4px; cursor: pointer;
}
.upload-add .plus { font-size: 1.6rem; line-height: 1; }

.btn-submit {
  width: 100%; height: 48px; border-radius: 12px; margin: 4px 0 20px;
  background: linear-gradient(135deg, #1fc3b2, #0d9488); color: #fff;
  font-size: 1.05rem; font-weight: 700; letter-spacing: 3px;
  box-shadow: 0 6px 18px rgba(13, 148, 136, 0.3);
}
.btn-submit:disabled { opacity: 0.55; }

.checkbox-row { display: flex; align-items: flex-start; gap: 8px; font-size: 0.79rem; color: var(--text-2); margin-top: 10px; }
.checkbox-row input { margin-top: 3px; accent-color: var(--primary); }

/* ===== 详情页 ===== */
.carousel { position: relative; width: 100%; height: 260px; overflow: hidden; background: #e8f2f4; }
.carousel-track { display: flex; height: 100%; transition: transform 0.3s; }
.carousel-track img { width: 100%; height: 100%; object-fit: cover; flex-shrink: 0; }
.carousel-dots { position: absolute; bottom: 12px; left: 0; right: 0; display: flex; justify-content: center; gap: 5px; }
.carousel-dots span { width: 6px; height: 6px; border-radius: 3px; background: rgba(255, 255, 255, 0.55); transition: all 0.25s; }
.carousel-dots span.active { background: #fff; width: 16px; box-shadow: 0 0 8px rgba(0, 0, 0, 0.2); }

.detail-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px; margin: 12px; box-shadow: var(--shadow-sm);
}
.detail-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 6px; }
.detail-price { color: var(--price); font-size: 1.55rem; font-weight: 800; }
.detail-price small { font-size: 0.85rem; font-weight: 400; }
.detail-title { font-size: 1.12rem; font-weight: 700; line-height: 1.55; margin-bottom: 10px; }
.detail-meta { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: 0.8rem; color: var(--text-2); }

.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px 6px; }
.info-cell { text-align: center; padding: 11px 4px; background: #f5f9fa; border: 1px solid var(--border); border-radius: 9px; }
.info-cell .v { font-size: 0.92rem; font-weight: 700; }
.info-cell .k { font-size: 0.7rem; color: var(--text-3); margin-top: 3px; }

.detail-desc { font-size: 0.92rem; color: #4b5a63; line-height: 1.75; white-space: pre-wrap; word-break: break-all; }

.contact-card { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.contact-left { display: flex; align-items: center; gap: 11px; min-width: 0; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.3), rgba(56, 189, 248, 0.28));
  border: 1px solid rgba(18, 181, 165, 0.35);
  color: var(--primary-deep); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem;
}
.contact-name { font-weight: 700; font-size: 0.95rem; }
.contact-type-tag { font-size: 0.68rem; padding: 2px 7px; border-radius: 4px; margin-left: 6px; }
.contact-type-tag.agent { background: rgba(245, 158, 11, 0.14); color: #d97706; }
.contact-type-tag.personal { background: rgba(16, 185, 129, 0.12); color: #0d9f6e; }
.contact-phone { font-size: 0.8rem; color: var(--text-2); margin-top: 3px; }
.btn-call {
  flex-shrink: 0; padding: 11px 20px; border-radius: 24px; font-weight: 700; font-size: 0.93rem;
  background: linear-gradient(135deg, #34d399, #059669); color: #fff;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
}
.btn-call.reveal, .btn-call.revealed { background: linear-gradient(135deg, #fbbf24, #d97706); box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3); }

.btn-share {
  flex: 1; height: 44px; border-radius: 11px;
  background: var(--primary-light); border: 1px solid rgba(18, 181, 165, 0.35);
  color: var(--primary-deep); font-weight: 700; font-size: 0.93rem;
}

/* ===== 分享引导遮罩 ===== */
.share-overlay {
  position: fixed; inset: 0; z-index: 200; background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
  display: none; align-items: center; justify-content: center; flex-direction: column;
}
.share-overlay.show { display: flex; }
.share-overlay .arrow { font-size: 4.5rem; color: #fff; margin-bottom: 18px; animation: float 1.2s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
.share-overlay .tip { color: #fff; font-size: 1.05rem; font-weight: 600; }
.share-overlay .tip2 { color: rgba(255, 255, 255, 0.75); font-size: 0.85rem; margin-top: 6px; }

/* ===== Toast ===== */
.toast {
  position: fixed; left: 50%; top: 45%; transform: translate(-50%, -50%); z-index: 300;
  background: rgba(30, 41, 59, 0.94); border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff; padding: 13px 24px; border-radius: 12px;
  font-size: 0.9rem; max-width: 80%; text-align: center; display: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.toast.show { display: block; animation: fadein 0.2s; }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }

/* ===== 管理后台 ===== */
.admin-header { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; gap: 10px; }
.login-box {
  max-width: 360px; margin: 14vh auto 0; padding: 26px 22px;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.logout-btn {
  padding: 6px 15px; border-radius: 16px; font-size: 0.82rem;
  background: #f5f9fa; color: var(--text-2); border: 1px solid var(--border);
}

.stat-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 12px; }
.stat-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 15px; box-shadow: var(--shadow-sm);
}
.stat-card .num { font-size: 1.45rem; font-weight: 800; color: var(--primary-deep); }
.stat-card .label { font-size: 0.74rem; color: var(--text-2); margin-top: 3px; }

.admin-table-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  margin: 0 12px 12px; padding: 12px; box-shadow: var(--shadow-sm); overflow-x: auto;
}
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.78rem; min-width: 560px; }
.admin-table th, .admin-table td { padding: 9px 6px; text-align: left; border-bottom: 1px solid var(--border); white-space: nowrap; }
.admin-table th { color: var(--text-2); font-weight: 600; }
.admin-table .title-cell { max-width: 180px; overflow: hidden; text-overflow: ellipsis; }
.btn-mini { padding: 4px 10px; border-radius: 6px; font-size: 0.75rem; margin-right: 4px; }
.btn-mini.feature { background: rgba(245, 158, 11, 0.14); color: #d97706; }
.btn-mini.off { background: rgba(239, 68, 68, 0.10); color: #ef4444; }
.btn-mini.on { background: rgba(16, 185, 129, 0.10); color: #0d9f6e; }
.btn-mini.del { background: #f1f5f7; color: var(--text-2); }
.status-tag { padding: 2px 7px; border-radius: 4px; font-size: 0.7rem; }
.status-tag.active { background: rgba(16, 185, 129, 0.10); color: #0d9f6e; }
.status-tag.off { background: #f1f5f7; color: var(--text-3); }
.status-tag.deleted { background: rgba(239, 68, 68, 0.10); color: #ef4444; }
.status-tag.pending { background: rgba(245, 158, 11, 0.14); color: #d97706; }

.chart-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; font-size: 0.8rem; }
.chart-bar-row .bar-wrap { flex: 1; background: #eef4f6; border-radius: 4px; height: 18px; overflow: hidden; }
.chart-bar-row .bar { height: 100%; background: linear-gradient(90deg, #2dd4bf, #38bdf8); border-radius: 4px; }
.chart-bar-row .cnt { width: 36px; text-align: right; color: var(--text-2); }
.chart-bar-row .lb { width: 86px; text-align: right; color: var(--text-2); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }

/* ===== 我的发布 ===== */
.my-item { position: relative; }
.my-status { position: absolute; right: 12px; top: 12px; }
.my-actions { display: flex; gap: 8px; margin-top: 8px; justify-content: flex-end; }

/* ===== 通用 ===== */
.text-primary { color: var(--primary-deep); }
.mt8 { margin-top: 8px; }
.mt12 { margin-top: 12px; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.load-more {
  display: block; margin: 6px auto 16px; padding: 10px 40px; border-radius: 20px;
  background: #ffffff; color: var(--text-2); font-size: 0.85rem;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.load-more:disabled { color: var(--text-3); }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(100, 140, 160, 0.25); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(100, 140, 160, 0.4); }
