/* ==================== 配色系统 — 苹果灰底 + 白卡体系 ==================== */
:root {
  --bg-deep: #F5F7FA;
  --bg-page: #F5F7FA;
  --bg-card: rgba(255,255,255,0.96);
  --bg-card-hover: #FBFBFD;
  --border-card: #E2E8F0;
  --border-card-hover: #5AC8FA;
  --accent-blue: #2563EB;
  --accent-blue-light: #3B82F6;
  --accent-blue-dark: #1D4ED8;
  --text-title: #2D3748;
  --text-hint: #94A3B8;
  --text-body: #64748B;
  --glass-blur: blur(10px);
  --shadow-card: 0 8px 24px rgba(15,23,42,0.06), 0 2px 8px rgba(15,23,42,0.04);
  --shadow-card-hover: 0 16px 40px rgba(15,23,42,0.08), 0 6px 18px rgba(15,23,42,0.06);
}

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

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', 'Noto Sans SC', sans-serif;
  background: var(--bg-page);
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: auto;
}

#canvas-container {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  pointer-events: auto;
  background-color: var(--bg-page);
}

/* 地球交互层 - 透明但可接收鼠标事件，不挡导航栏 */
#earth-interaction {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100vh - 60px);
  z-index: 1;
}

/* ==================== Loading ==================== */
#loading {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  font-size: 14px;
  color: #5ac8fa;
  padding: 12px 20px;
  border-radius: 999px;
  background: #FFFFFF;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  letter-spacing: 1px;
}

/* ==================== UI Overlay ==================== */
.ui-overlay {
  position: relative;
  z-index: 100000;
  pointer-events: auto;
  min-height: 100vh;
  width: 100%;
}

.ui-overlay > * {
  pointer-events: auto;
}

/* ==================== 顶部导航 ==================== */
  font-weight: 700;
  font-size: 1.1rem;
  color: #1e293b;
  text-decoration: none;
  flex-shrink: 0;
}

.desktop-nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-item {
  text-decoration: none;
  color: #64748b;
  font-weight: 500;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.nav-item:hover, .nav-item.active {
  color: #3b82f6;
}

.navbar-menu-btn { display: none; }
.navbar-menu-overlay, .navbar-menu-panel { display: none; }


  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-title);
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
}

  color: var(--text-title);
}

.desktop-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
}

  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2563EB, #3B82F6);
  box-shadow: 0 4px 10px rgba(59,130,246,0.25);
}

.navbar-menu-btn { display: none; }
.navbar-menu-overlay, .navbar-menu-panel { display: none; }

.nav-item {
  font-size: 0.88rem;

.nav-item.active::after,
.nav-item:hover::after {
  width: 100%;
}

/* ==================== 主标题区 ==================== */
.hero-section {
  position: relative;
  text-align: center;
  z-index: 50;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
  animation: heroBreathe 3s ease-in-out infinite;
  border-radius: 12px;
}

.hero-content {
  position: relative;
  z-index: 1;
}

@keyframes heroBreathe {
  0%, 83.3% {
    opacity: 0.6;
  }
  16.7% {
    opacity: 0.1;
  }
}

.hero-badge {
  display: inline-block;
  font-size: 0.85rem;
  color: #5ac8fa;
  background: #e0f2fe;
  border: 1px solid #bae6fd;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.hero-title {
  font-size: 2.15rem;
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #2563EB, #3B82F6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #64748B;
  margin-bottom: 6px;
  letter-spacing: 3px;
}

.hero-subtitle-line2 {
  font-size: 0.95rem;
  color: #5ac8fa;
  margin-bottom: 18px;
  letter-spacing: 4px;
  font-weight: 500;
}

.hero-desc {
  font-size: 1rem;
  color: #64748B;
  line-height: 1.8;
  letter-spacing: 0.5px;
}

.hero-witty {
  font-size: 0.88rem;
  color: #94A3B8;
  letter-spacing: 1px;
  margin-top: 10px;
}

.toast-banner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 18px 32px;
  z-index: 50;
  animation: toastFadeIn 0.8s ease-out forwards;
  pointer-events: none;
}

.toast-inner {
  text-align: center;
}

.toast-line {
  font-size: 0.95rem;
  color: #64748B;
  letter-spacing: 2px;
  line-height: 1.9;
  font-weight: 500;
}

.toast-banner.fade-out {
  animation: toastFadeOut 1.2s ease-in forwards;
}

@keyframes toastFadeIn {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes toastFadeOut {
  from { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  to   { opacity: 0; transform: translate(-50%, -50%) scale(0.85); }
}

.banner-trust {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.trust-tag {
  font-size: 0.85rem;
  color: #64748B;
  letter-spacing: 1px;
}

.trust-dot {
  font-size: 0.85rem;
  color: #94A3B8;
}

/* ==================== 搜索区 ==================== */
.search-section {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 620px;
  z-index: 200;
  pointer-events: none;
  background: rgba(255,255,255,0.98);
  border-radius: 32px;
  border: 1px solid rgba(90,200,250,0.42);
  padding: 8px 18px;
  display: flex;
  align-items: center;
  box-shadow: 0 8px 28px rgba(90,200,250,0.16), 0 4px 20px rgba(0,0,0,0.08);
  animation: searchGlowBreath 2.8s ease-in-out infinite;
  overflow: hidden;
}

.search-section::after {
  content: '';
  position: absolute;
  top: -35%;
  left: -18%;
  width: 18%;
  height: 170%;
  background: linear-gradient(90deg, rgba(90,200,250,0), rgba(90,200,250,0.18), rgba(255,255,255,0.95), rgba(90,200,250,0.2), rgba(90,200,250,0));
  transform: rotate(18deg);
  opacity: 0;
  pointer-events: none;
  filter: blur(1px);
  animation: searchMeteorSweep 3.2s ease-in-out infinite;
}

.search-section input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 10px;
  color: #0F172A;
  -webkit-text-fill-color: #0F172A;
  caret-color: #2563EB;
  outline: none;
  font-size: 0.96rem;
  pointer-events: auto;
  touch-action: manipulation;
  user-select: text;
  cursor: text;
}

.search-section input::placeholder {
  color: #64748b;
  font-weight: 500;
}

.search-section button {
  background: #2563EB;
  border: none;
  padding: 10px 22px;
  border-radius: 22px;
  color: white;
  cursor: pointer;
  font-weight: 700;
  pointer-events: auto;
}

@keyframes searchGlowBreath {
  0%, 100% {
    border-color: rgba(90,200,250,0.35);
    box-shadow: 0 0 0 0 rgba(90,200,250,0.00), 0 0 12px rgba(90,200,250,0.10), 0 8px 28px rgba(90,200,250,0.14), 0 4px 20px rgba(0,0,0,0.08);
  }
  50% {
    border-color: rgba(90,200,250,1);
    box-shadow: 0 0 0 6px rgba(90,200,250,0.18), 0 0 32px rgba(90,200,250,0.55), 0 0 54px rgba(90,200,250,0.30), 0 10px 30px rgba(90,200,250,0.22), 0 4px 20px rgba(0,0,0,0.08);
  }
}

@keyframes searchMeteorSweep {
  0%, 12% {
    transform: translateX(-180%) rotate(18deg);
    opacity: 0;
  }
  20% {
    opacity: 0.35;
  }
  34% {
    transform: translateX(720%) rotate(18deg);
    opacity: 0.95;
  }
  42%, 100% {
    transform: translateX(820%) rotate(18deg);
    opacity: 0;
  }
}

.search-hint {
  position: fixed;
  top: calc(50% + 56px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: #5d748e;
  font-weight: 500;
  letter-spacing: 0.4px;
  z-index: 200;
}

/* ==================== 城市 Tooltip ==================== */
.city-tooltip {
  position: fixed;
  min-width: 200px;
  padding: 14px 18px;
  border-radius: 12px;
  background: #FFFFFF;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  pointer-events: none;
  color: #64748B;
  z-index: 200;
}
.city-tooltip.hidden { display: none; }
.city-tooltip .name {
  color: #5ac8fa;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1rem;
}
.city-tooltip .meta {
  font-size: 0.88rem;
  color: #64748B;
  line-height: 1.7;
}

/* ==================== 左右侧面板通用样式 ==================== */
.side-panel {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.left-panel {
  left: 20px;
}

.right-panel {
  right: 20px;
}

.side-panel-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.side-card {
  background: #FFFFFF;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  overflow: hidden;
  width: 220px;
  transition: box-shadow 0.2s ease;
}

.side-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.06);
}

.side-card-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: #FFFFFF;
  padding: 10px 14px 6px;
  border-bottom: 1px solid #f0f0f0;
  letter-spacing: 0.5px;
}

.side-card-body {
  padding: 10px 14px;
}

.side-card-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 0.82rem;
  color: #64748B;
}

.item-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.item-text {
  flex: 1;
}

.side-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-chip {
  display: inline-block;
  padding: 3px 10px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  font-size: 0.75rem;
  color: #64748B;
  cursor: pointer;
  transition: all 0.2s;
}

.tag-chip:hover {
  background: #e0e7ff;
  border-color: #a5b4fc;
  color: #3730a3;
}

/* ==================== 右侧数据卡片容器 ==================== */
.right-panel {
  position: fixed;
  right: 20px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  z-index: 150;
}

.right-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  max-height: calc(100vh - 200px);
}

.stats-panel {
  width: 260px;
  background: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  scroll-snap-align: start;
  flex-shrink: 0;
}

.stats-panel:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.city-card {
  width: 260px;
  background: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  scroll-snap-align: start;
  flex-shrink: 0;
}

.stats-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #f9fafb;
  border-bottom: 1px solid #f0f0f0;
}

.stats-globe {
  font-size: 0.9rem;
}

.stats-title {
  font-size: 0.82rem;
  color: #64748B;
  font-weight: 600;
}

.stats-card {
  padding: 10px 14px;
  border-bottom: 1px solid #f0f0f0;
}

.stats-card:last-child {
  border-bottom: none;
}

.stats-card span {
  display: block;
  font-size: 0.82rem;
  color: #94A3B8;
  margin-bottom: 4px;
}

.stats-card strong {
  font-size: 1.1rem;
  color: #FFFFFF;
}

/* 城市详情卡片 */
.city-card {
  width: 260px;
  background: #FFFFFF;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  overflow: hidden;
  animation: cardSlideIn 0.35s ease;
}

.city-card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.city-card-landmark {
  font-size: 0.78rem;
  color: #94A3B8;
  font-weight: 400;
  margin-top: 2px;
}

.city-card-snack {
  padding: 6px 14px;
  background: #fef3c7;
  border-bottom: 1px solid #fde68a;
  font-size: 0.78rem;
  color: #92400e;
}

@keyframes cardSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.city-card.hidden {
  display: none;
}

.city-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: #f9fafb;
  border-bottom: 1px solid #f0f0f0;
}

.city-card-name {
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
}

.city-card-close {
  display: none;
}

.city-card-body {
  padding: 14px;
}

.city-card-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.city-card-stat:last-child {
  border-bottom: none;
}

.city-card-stat .stat-label {
  font-size: 0.82rem;
  color: #94A3B8;
}

.city-card-stat .stat-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
}

.city-card-btn {
  display: block;
  width: calc(100% - 28px);
  margin: 0 14px 14px;
  padding: 10px;
  background: linear-gradient(135deg, #2563EB, #3B82F6);
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.city-card-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* ==================== 底部功能卡片 ==================== */
.cards-container {
  position: fixed;
  left: 50%;
  top: calc(50% + 74px);
  transform: translateX(-50%);
  width: calc(100% - 88px);
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  z-index: 10020;
  transition: top 0.3s ease;
}

.func-card {
  background: rgba(255,255,255,0.99);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 16px 14px 14px;
  border: 1px solid rgba(37,99,235,0.16);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(15,23,42,0.09), 0 8px 20px rgba(37,99,235,0.10);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 124px;
}

.func-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37,99,235,0.34);
  box-shadow: 0 24px 52px rgba(15,23,42,0.12), 0 12px 28px rgba(37,99,235,0.16);
}

.func-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 1.12rem;
  background: linear-gradient(180deg, rgba(239,246,255,0.98), rgba(219,234,254,0.92));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.92), 0 8px 18px rgba(37,99,235,0.12);
}

.func-card h3 {
  font-size: 0.94rem;
  margin: 0 0 4px;
  color: #1f2937;
  font-weight: 700;
  line-height: 1.24;
}

.func-card p {
  font-size: 0.74rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.32;
  max-width: 15ch;
}

.func-card-action {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #2563EB;
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 20px rgba(37,99,235,0.18);
}

@keyframes breathe {
  0%, 100% { box-shadow: 0 1px 3px rgba(0,0,0,0.07); }
  50% { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
}


/* ==================== 金融金额版块 ==================== */
.finance-banner {
  position: absolute;
  bottom: 260px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 60px);
  max-width: 700px;
  background: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 50;
}

@keyframes financePulse {
  0%, 100% { box-shadow: 0 1px 3px rgba(0,0,0,0.07); }
  50% { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
}

.finance-banner-title {
  font-size: 1rem;
  font-weight: 600;
  color: #F59E0B;
  white-space: nowrap;
}

.finance-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: center;
}

.finance-stat {
  text-align: center;
}

.finance-stat-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.finance-stat-label {
  font-size: 0.88rem;
  color: #94A3B8;
}

.finance-divider {
  width: 1px;
  height: 30px;
  background: #e0e0e0;
}

.finance-banner-btn {
  background: #F59E0B;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s;
}

.finance-banner-btn:hover {
  background: #D97706;
}

/* ==================== 发布弹窗 ==================== */
.publish-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.publish-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.publish-menu {
  position: fixed;
  bottom: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 400px;
  background: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 24px 20px 20px;
  z-index: 501;
  transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.publish-menu.open {
  bottom: 0;
}

.publish-menu-title {
  text-align: center;
  font-size: 0.85rem;
  color: #94A3B8;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.publish-menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #f9fafb;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.publish-menu-item:hover {
  background: #e0e7ff;
  border-color: #a5b4fc;
}

.publish-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0f2fe;
  border-radius: 10px;
}

.publish-item-title {
  font-size: 0.9rem;
  color: #FFFFFF;
  font-weight: 500;
  margin-bottom: 2px;
}

.publish-item-desc {
  font-size: 0.88rem;
  color: #64748B;
}

.publish-item-notice {
  font-size: 0.72rem;
  color: #5ac8fa;
  margin-top: 5px;
  line-height: 1.5;
  padding: 5px 8px;
  background: #e0f2fe;
  border-radius: 6px;
  border-left: 2px solid #5ac8fa;
}

.publish-menu-close {
  width: 100%;
  padding: 12px;
  background: #f3f4f6;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  color: #64748B;
  font-size: 0.85rem;
  cursor: pointer;
  margin-top: 6px;
  transition: all 0.2s;
}

.publish-menu-close:hover {
  background: #e5e7eb;
  color: #FFFFFF;
}

/* ==================== 备案位预留 ==================== */
.record-placeholder {
  font-size: 12px;
  color: #475569;
  letter-spacing: 0.35px;
  text-align: center;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(226,232,240,0.96);
  border-radius: 999px;
  padding: 6px 14px;
  box-shadow: 0 8px 18px rgba(15,23,42,0.08);
}

/* ==================== 站点说明 ==================== */
.footer-meta {
  position: fixed;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  z-index: 10040;
  width: calc(100vw - 120px);
  max-width: 1120px;
  min-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.site-disclaimer-card {
  width: 100%;
  padding: 6px 12px;
  border-radius: 8px;
  background: #f3f4f6;
  border: 1px solid #e0e0e0;
}

.site-disclaimer {
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  color: #64748B;
  letter-spacing: 0.1px;
  white-space: nowrap;
  overflow: hidden;
}

/* ==================== 城市标签 ==================== */
.city-label {
  position: fixed;
  z-index: 10;
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
  font-family: 'PingFang SC', sans-serif;
  pointer-events: auto;
  cursor: pointer;
  background: rgba(15,23,42,0.50);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 1px 6px;
  border-radius: 4px;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 8px rgba(15,23,42,0.16);
  text-shadow: 0 1px 2px rgba(0,0,0,0.45);
  -webkit-text-fill-color: #ffffff;
  transform: translate(-50%, -112%);
}

.city-label:hover {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
  border-color: rgba(125,211,252,0.9);
  background: rgba(3,105,161,0.58);
  box-shadow: 0 4px 12px rgba(56,189,248,0.18);
}

/* ==================== 钓鱼岛红旗飘动 ==================== */
.island-flag {
  pointer-events: auto;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  background: rgba(127, 29, 29, 0.72);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid rgba(252, 211, 77, 0.45);
  font-size: 13px;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
  white-space: nowrap;
  gap: 4px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  transform: translate(-50%, -110%);
}

.flag-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  animation: flagWave 1.5s ease-in-out infinite;
  transform-origin: center;
  flex-shrink: 0;
}

@keyframes flagWave {
  0%, 100% { transform: scaleX(1) skewY(0deg); }
  20% { transform: scaleX(1.08) skewY(3deg); }
  40% { transform: scaleX(0.96) skewY(-2deg); }
  60% { transform: scaleX(1.04) skewY(1.5deg); }
  80% { transform: scaleX(0.98) skewY(-1deg); }
}

/* 点击波浪扩散 */
.wave-effect {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ff3333;
  animation: waveExpand 1s ease-out forwards;
  pointer-events: none;
}

@keyframes waveExpand {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(3); opacity: 0; }
}

/* ==================== 响应式 - 平板 ==================== */
@media (max-width: 1100px) {
  .footer-meta {
    width: calc(100vw - 100px);
    min-width: 0;
    max-width: 980px;
  }

  .cards-container {
    position: fixed;
    left: 18px;
    right: auto;
    width: 400px;
    max-width: 400px;
    bottom: 58px;
    top: auto;
    transform: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    z-index: 10030;
  }

  .desktop-nav-links {
    gap: 20px;
  }

  .hero-section {
    top: 85px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .search-section {
    top: 300px;
  }

  .stats-panel {
    right: 18px;
    bottom: 90px;
  }

  .city-card {
    right: 20px;
    width: 240px;
  }
}

/***** 响应式 - 手机 *****/
@media (max-width: 768px) {
  body { overflow-x: hidden; overflow-y: auto; }

  .desktop-nav-links {
    display: none;
  }

  .navbar-menu-btn,
  .navbar-menu-overlay,
  .navbar-menu-panel {
    display: flex;
  }

  .navbar-menu-overlay {
    display: block;
  }

  .navbar-menu-panel {
    display: block;
  }

  /* 地球全屏底层 */
  #canvas-container {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: auto;
    background-color: #ffffff;
  }

  /* 地球交互层 */
  #earth-interaction {
    z-index: 2;
  }

  .ui-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 10;
  }
  .ui-overlay > * { pointer-events: auto; }

    color: #FFFFFF;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    text-shadow: none;
  }

    background: #2563EB;
    border-radius: 8px;
    padding: 4px 10px;
    box-shadow: none;
  }

  /* 三点菜单按钮 */
  .navbar-menu-btn {
    width: 34px; height: 34px;
    background: #f3f4f6;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 4px;
    cursor: pointer;
    pointer-events: auto;
  }

  .navbar-menu-btn span {
    display: block; width: 15px; height: 1.5px;
    background: #333333; border-radius: 2px;
    transition: all 0.3s;
  }

  .navbar-menu-btn.active span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
  .navbar-menu-btn.active span:nth-child(2) { opacity: 0; }
  .navbar-menu-btn.active span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

  /* 菜单遮罩 */
  .navbar-menu-overlay {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 199;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
  }
  .navbar-menu-overlay.open { opacity: 1; pointer-events: auto; }

  /* 菜单面板：右侧滑出 */
  .navbar-menu-panel {
    position: fixed; top: 0; right: 0;
    width: 250px; height: 100vh;
    background: #FFFFFF;
    border-left: 1px solid #e0e0e0;
    z-index: 200;
    padding: 72px 22px 40px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    pointer-events: auto;
  }
  .navbar-menu-panel.open { transform: translateX(0); }

  .navbar-menu-panel .nav-item {
    display: block; font-size: 0.95rem; padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #FFFFFF; cursor: pointer;
    transition: color 0.2s;
  }
  .navbar-menu-panel .nav-item:last-child { border-bottom: none; }
  .navbar-menu-panel .nav-item:hover,
  .navbar-menu-panel .nav-item.active { color: #5ac8fa; }

  /* === 标题：居中浮动 === */
  .hero-section {
    position: fixed;
    top: 46px; left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 50;
    max-width: 80%;
    padding: 0;
  }

  .hero-overlay { display: none; }

  .hero-title {
    font-size: 1.08rem;
    letter-spacing: 0.6px;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #2563EB, #3B82F6);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    line-height: 1.35;
  }

  .hero-subtitle {
    font-size: 0.74rem;
    color: #64748B;
    letter-spacing: 0.4px;
    margin-bottom: 2px;
  }

  .hero-subtitle-line2 {
    font-size: 0.76rem;
    color: #5ac8fa;
    letter-spacing: 1.2px;
    margin-bottom: 6px;
    font-weight: 600;
  }

  .hero-desc {
    display: block;
    font-size: 0.75rem;
    line-height: 1.55;
    color: #64748B;
    max-width: 280px;
    margin: 0 auto;
  }

  /* === 搜索框：居中底部浮动 === */
  .search-section {
    position: fixed;
    top: 146px;
    left: 50%;
    bottom: auto;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 320px;
    z-index: 50;
    background: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 22px;
    padding: 3px 5px 3px 14px;
    display: flex; align-items: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  }

  .search-section input {
    flex: 1; background: transparent;
    border: none; padding: 10px 6px;
    color: #0F172A; -webkit-text-fill-color:#0F172A; caret-color:#2563EB; outline: none; font-size: 0.88rem;
  }
  .search-section input::placeholder { color: #94A3B8; }

  .search-section button {
    background: #2563EB;
    border: none; padding: 9px 14px;
    border-radius: 18px; color: #fff;
    cursor: pointer; font-weight: 600; font-size: 0.85rem;
  }

  .search-hint { display: none; }
}

@media (min-width: 769px) {
  .search-section {
    top: 50% !important;
    left: 50% !important;
    bottom: auto !important;
    transform: translate(-50%, -50%) !important;
    width: 90% !important;
    max-width: 620px !important;
    padding: 8px 18px !important;
    border-radius: 32px !important;
    z-index: 200 !important;
  }

  .search-hint {
    display: block !important;
    top: calc(50% + 56px) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  /* === 底部功能条：横向滚动，紧凑 === */
  .cards-container {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 54px;
    top: auto;
    transform: none;
    width: auto;
    max-width: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    z-index: 10030;
  }

  .func-card {
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(226,232,240,0.96);
    border-radius: 16px;
    padding: 12px 9px 12px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 8px 18px rgba(15,23,42,0.06);
    min-width: 0;
    min-height: 104px;
    white-space: normal;
  }

  .func-card:hover { transform: none; border-color: rgba(90,200,250,0.28); background: rgba(255,255,255,0.98); }
  .func-card-icon { width: 36px; height: 36px; margin-bottom: 10px; font-size: 1rem; border-radius: 12px; }
  .func-card h3 { font-size: 0.84rem; margin: 0 0 5px; color: #1f2937; font-weight: 700; line-height: 1.3; }
  .func-card p { font-size: 0.72rem; color: #6b7280; margin: 0; line-height: 1.35; max-width: none; }
  .func-card-action { margin-top: 10px; min-width: 74px; height: 30px; padding: 0 12px; font-size: 0.72rem; }

  .stats-panel { display: none; }

  /* 手机端发布弹窗 */
  .publish-menu {
    width: 100%;
    max-width: 100%;
    border-radius: 20px 20px 0 0;
    padding: 20px 16px 16px;
  }

  .publish-menu-title {
    font-size: 0.8rem;
  }

  .publish-menu-item {
    padding: 12px 14px;
    margin-bottom: 8px;
  }

  .publish-icon {
    font-size: 1.3rem;
    width: 36px;
    height: 36px;
  }

  .publish-item-title {
    font-size: 0.85rem;
  }

  .publish-item-desc {
    font-size: 0.75rem;
  }

  /* === 数据卡片：底部弹层 === */
  .city-card {
    position: fixed;
    right: 10px;
    left: auto;
    top: 196px;
    bottom: auto;
    transform: none;
    width: min(96px, calc(38vw));
    max-width: calc(100vw - 24px);
    border-radius: 14px;
    z-index: 500;
    animation: cardFloatIn 0.32s ease;
  }

  @keyframes cardFloatIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

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

  .city-card-header { padding: 7px 8px; }
  .city-card-name { font-size: 0.88rem; }
  .city-card-close { width: 16px; height: 16px; font-size: 11px; }
  .city-card-body { padding: 5px 8px; }
  .city-card-stat { padding: 4px 0; }
  .city-card-stat .stat-label { font-size: 0.72rem; }
  .city-card-stat .stat-value { font-size: 0.85rem; }
  .city-card-btn { width: calc(100% - 16px); margin: 0 8px 8px; padding: 6px; font-size: 0.72rem; border-radius: 7px; }

  /* === Tooltip：底部弹出 === */
  .city-tooltip {
    left: 50% !important; top: auto !important;
    bottom: 155px !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 32px); max-width: 270px;
  }
}



/***** 响应式 - 超小屏 *****/
@media (max-width: 380px) {
  .hero-title { font-size: 1.06rem; }
  .hero-subtitle { font-size: 0.74rem; }
  .hero-desc { font-size: 0.72rem; max-width: 290px; }
  .cards-container { gap: 8px; }
  .func-card { padding: 10px 10px; }
  .func-card h3 { font-size: 0.7rem; }
  .func-card-action { margin-top: 8px; min-width: 68px; height: 28px; font-size: 0.68rem; }
  .search-section { top: 172px; transform: translateX(-50%); width: calc(100% - 24px); }
  .city-card { top: 210px; right: 10px; width: min(104px, calc(44vw)); max-width: calc(100vw - 20px); }
  .footer-meta {
    bottom: 8px;
    width: calc(100vw - 24px);
    min-width: 0;
    gap: 5px;
  }
  .site-disclaimer-card {
    width: 100%;
    padding: 5px 8px;
    border-radius: 12px;
  }
  .site-disclaimer {
    font-size: 10px;
    line-height: 1.35;
    color: rgba(184, 198, 214, 0.42);
    white-space: nowrap;
    overflow: hidden;
  }
  .record-placeholder {
    font-size: 10px;
    color: #FFFFFF;
  }
}

/* ==================== 搜索结果弹窗 ==================== */
.search-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.26);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 100002;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.22s ease;
}

.search-modal.hidden {
  display: none;
}

.search-modal-content {
  width: min(560px, calc(100vw - 28px));
  max-height: min(82vh, 720px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.18);
  animation: slideUp 0.28s ease;
  pointer-events: auto;
}

.search-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px 16px;
  background: linear-gradient(180deg, rgba(248,250,252,0.98), rgba(255,255,255,0.94));
  border-bottom: 1px solid rgba(226, 232, 240, 0.92);
}

.search-modal-title {
  font-size: 1.02rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.01em;
}

.search-modal-close {
  width: 32px;
  height: 32px;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  border-radius: 50%;
  color: #475569;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.search-modal-close:hover {
  background: #E2E8F0;
  color: #0F172A;
}

.search-modal-body {
  padding: 18px 20px 20px;
  max-height: calc(min(82vh, 720px) - 72px);
  overflow-y: auto;
}

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

.search-result-item {
  padding: 16px 16px;
  background: linear-gradient(180deg, #FFFFFF, #F8FAFC);
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  cursor: pointer;
  transition: all 0.22s ease;
}

.search-result-item:hover {
  transform: translateY(-1px);
  background: #F8FBFF;
  border-color: rgba(37, 99, 235, 0.36);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.08);
}

.search-result-title {
  font-size: 0.96rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;
  line-height: 1.5;
}

.search-result-meta {
  font-size: 0.84rem;
  color: #64748B;
  line-height: 1.7;
}

.search-result-type {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.16);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #2563EB;
  margin-right: 8px;
}

.search-no-result {
  text-align: left;
  padding: 4px 2px 2px;
}

.search-no-result p {
  font-size: 0.96rem;
  color: #0F172A;
  margin-bottom: 8px;
  line-height: 1.65;
}

.search-no-result-hint {
  font-size: 0.86rem;
  color: #64748B;
  margin-bottom: 0;
}

.search-no-result-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.search-btn-publish,
.search-btn-cancel {
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.22s ease;
}

.search-btn-publish {
  background: linear-gradient(135deg, #2563EB, #1D4ED8);
  border: none;
  color: white;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
}

.search-btn-publish:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
}

.search-btn-cancel {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  color: #334155;
}

.search-btn-cancel:hover {
  background: #EEF2F7;
  color: #0F172A;
}

@media (max-width: 640px) {
  .search-modal {
    padding: 14px;
    align-items: flex-end;
  }

  .search-modal-content {
    width: 100%;
    max-height: 78vh;
    border-radius: 22px 22px 18px 18px;
  }

  .search-modal-header {
    padding: 18px 18px 14px;
  }

  .search-modal-body {
    padding: 16px 16px 18px;
  }

  .search-no-result-actions {
    grid-template-columns: 1fr;
  }
}

/* ==================== 会员二维码弹窗 ==================== */
.qr-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s ease;
}

.qr-modal.hidden {
  display: none;
}

.qr-modal-content {
  width: 85%;
  max-width: 340px;
  background: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  animation: slideUp 0.3s ease;
}

.qr-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #f9fafb;
  border-bottom: 1px solid #f0f0f0;
}

.qr-modal-title {
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
}

.qr-modal-close {
  width: 28px;
  height: 28px;
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  color: #64748B;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.qr-modal-close:hover {
  background: #e5e7eb;
  color: #FFFFFF;
}

.qr-modal-body {
  padding: 30px;
  text-align: center;
}

.qr-code-image {
  width: 200px;
  height: 200px;
  margin: 0 auto 16px;
  background: #f9fafb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.qr-code-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-code-hint {
  font-size: 0.85rem;
  color: #94A3B8;
}

/* ==================== 非会员提示弹窗 ==================== */
.member-tip-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s ease;
}

.member-tip-modal.hidden {
  display: none;
}

.member-tip-content {
  width: 85%;
  max-width: 340px;
  background: #FFFFFF;
  border: 1px solid #F59E0B;
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  padding: 36px 30px;
  text-align: center;
  animation: slideUp 0.3s ease;
}

.member-tip-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.member-tip-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.member-tip-hint {
  font-size: 0.85rem;
  color: #94A3B8;
  margin-bottom: 28px;
}

.member-tip-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.member-btn-open {
  padding: 14px 28px;
  background: #F59E0B;
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.member-btn-open:hover {
  background: #D97706;
}

.member-btn-cancel {
  padding: 12px 24px;
  background: transparent;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  color: #64748B;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s;
}

.member-btn-cancel:hover {
  background: #f3f4f6;
  color: #FFFFFF;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== 全站广告轮播 ===== */
.ad-carousel-wrap {
  width: 100vw;
  height: auto;
  position: fixed;
  top: 60px;
  left: 0;
  overflow: hidden;
  background: #FFFFFF;
  z-index: 250;
}

.ad-carousel-inner {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ad-carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 4px;
}

.ad-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ad-carousel-slide .slide-overlay {
  display: none;
}

.ad-carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.ad-carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0,0,0,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.ad-carousel-dot.active {
  background: #2563EB;
  width: 18px;
  border-radius: 3px;
}

.ad-carousel-arrow {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

.ad-carousel-arrow:hover {
  display: none !important;
}

.ad-carousel-arrow.prev { left: 8px; }
.ad-carousel-arrow.next { right: 8px; }

/* 响应式 */
@media (max-width: 480px) {
  .ad-carousel-arrow { width: 26px; height: 26px; font-size: 14px; }
  .ad-carousel-arrow.prev { left: 6px; }
  .ad-carousel-arrow.next { right: 6px; }
  .ad-carousel-dots { bottom: 6px; }
}

@keyframes pulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.3); }
}
