/* ============================================
   全局样式 - 玫瑰金婚恋风格 #d43f50
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;600;700&display=swap');

:root {
  /* 主色调 - 玫瑰金 #d43f50 */
  --primary: #d43f50;
  --primary-light: #fdf0f2;
  --primary-lighter: #fce0e4;
  --primary-soft: #fce0e4;
  --primary-dark: #c0392b;

  /* 玫瑰金辅助色 */
  --purple-50: #fdf0f2;
  --purple-100: #fce0e4;
  --purple-200: #fdf0f2;
  --violet: #d43f50;

  /* 背景色 */
  --bg: #fdf0f2;
  --card: #ffffff;
  --card-hover: #fdf0f2;

  /* 文字颜色 */
  --text: #4a4a4a;
  --text-light: #777777;
  --text-muted: #aaaaaa;

  /* 边框 */
  --border: #fce0e4;
  --border-light: #fce0e4;

  /* 阴影 - 玫瑰金系 */
  --shadow-sm: 0 2px 8px rgba(212, 63, 80, 0.06);
  --shadow: 0 4px 16px rgba(212, 63, 80, 0.08);
  --shadow-lg: 0 8px 32px rgba(212, 63, 80, 0.12);
  --shadow-hover: 0 12px 40px rgba(212, 63, 80, 0.18);

  /* 圆角 */
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

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

body {
  font-family: -apple-system, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   顶部通栏 - 醒目风格
   ============================================ */

.top-bar {
  background: #d43f50;
  border-bottom: none;
  font-size: 13px;
  color: #fff;
  box-shadow: 0 2px 20px rgba(212, 63, 80, 0.3);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.9);
  margin-left: 18px;
  transition: all 0.3s ease;
  font-size: 13px;
}

.top-bar a:hover {
  color: #fff;
  text-decoration: underline;
}

.top-bar .slogan {
  color: #fff;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
}

/* ============================================
   主导航 - 温柔风格
   ============================================ */

.main-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(212, 63, 80, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-light);
}

.main-nav .container {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 0;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
  background: #d43f50;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 48px;
  white-space: nowrap;
  letter-spacing: 3px;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo i {
  font-style: normal;
  font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
}

.logo sup {
  font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
  background: #d43f50;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-list {
  display: flex;
  gap: 0;
  flex: 1;
}

.nav-list a {
  display: inline-block;
  padding: 0 20px;
  height: 64px;
  line-height: 64px;
  font-size: 15px;
  color: var(--text);
  transition: all 0.3s ease;
  position: relative;
  border-radius: var(--radius-sm);
  margin: 0 4px;
}

.nav-list a:hover {
  color: var(--primary);
  background: var(--purple-50);
}

.nav-list a.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-list a.active::after {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: #d43f50;
  border-radius: 2px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-login {
  padding: 8px 24px;
  border: 2px solid var(--primary-light);
  color: var(--primary);
  border-radius: 24px;
  font-size: 13px;
  background: #fff;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-login:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 63, 80, 0.3);
}

.btn-register {
  padding: 8px 24px;
  background: #d43f50;
  color: #fff;
  border: none;
  border-radius: 24px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(212, 63, 80, 0.3);
  animation: pulse-glow 2s ease-in-out infinite;
}

.btn-register:hover {
  background: #d43f50;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 63, 80, 0.4);
  animation: none;
}

/* ============================================
   通知横幅
   ============================================ */

.notification-banner {
  position: relative;
  padding: 12px 0;
  border-bottom: 1px solid transparent;
}

.notification-banner .notif-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.notification-banner .notif-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.notification-banner .notif-title {
  font-weight: 600;
  font-size: 14px;
}

.notification-banner .notif-content {
  font-size: 14px;
  color: inherit;
  opacity: 0.9;
}

/* 类型颜色 */
.banner-info {
  background: linear-gradient(135deg, #e3f2fd 0%, #f1f8ff 100%);
  border-bottom-color: #90caf9;
  color: #1565c0;
}

.banner-warning {
  background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
  border-bottom-color: #ffb300;
  color: #e65100;
}

.banner-success {
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f1 100%);
  border-bottom-color: #66bb6a;
  color: #2e7d32;
}

.banner-danger {
  background: #fdf0f2;
  border-bottom-color: #d43f50;
  color: #c0392b;
}

/* ============================================
   Hero Section - 醒目风格
   ============================================ */

.hero-section {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: #d43f50;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.15'%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3Ccircle cx='60' cy='20' r='1.5'/%3E%3Ccircle cx='30' cy='50' r='1'/%3E%3Ccircle cx='80' cy='70' r='2.5'/%3E%3Ccircle cx='50' cy='85' r='1.5'/%3E%3Ccircle cx='90' cy='40' r='1'/%3E%3Ccircle cx='20' cy='90' r='2'/%3E%3Ccircle cx='70' cy='10' r='1.5'/%3E%3Ccircle cx='40' cy='35' r='1'/%3E%3Ccircle cx='95' cy='85' r='1.5'/%3E%3C/g%3E%3C/svg%3E") repeat,
    url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 100 Q50 0 100 100 T200 100' fill='none' stroke='%23ffffff' stroke-width='0.8' stroke-opacity='0.12'/%3E%3Cpath d='M0 60 Q50 -40 100 60 T200 60' fill='none' stroke='%23ffffff' stroke-width='0.5' stroke-opacity='0.1'/%3E%3Cpath d='M0 140 Q50 40 100 140 T200 140' fill='none' stroke='%23ffffff' stroke-width='0.5' stroke-opacity='0.1'/%3E%3C/svg%3E") repeat;
  z-index: 1;
}

.hero-inner {
  display: flex;
  align-items: stretch;
  min-height: 480px;
  position: relative;
  z-index: 2;
}

.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 20px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.hero-left h1 {
  font-size: 77px;
  font-weight: 700;
  font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
  letter-spacing: 6px;
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-left h1 em {
  font-style: normal;
  font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
  background: linear-gradient(135deg, #ffe066 0%, #ffb347 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-left h1 .reg-mark {
  font-size: 48px;
  font-weight: 700;
  position: relative;
  top: -8px;
  margin-left: 4px;
  background: linear-gradient(135deg, #ffe066 0%, #ffb347 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-left .sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 10px;
  letter-spacing: 3px;
  font-weight: 300;
}

.hero-left .hero-subtitle {
  font-size: 20px;
  color: #fff;
  margin: 16px 0 28px;
  letter-spacing: 1px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #fff8e1, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  position: relative;
}
.hero-left .hero-subtitle::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #ffb347;
  border-radius: 50%;
  animation: dot-blink 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
.hero-left .hero-subtitle::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #ffb347;
  border-radius: 50%;
  animation: dot-blink 1.4s ease-in-out 0.7s infinite;
  flex-shrink: 0;
}
@keyframes dot-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.6); }
}

.hero-stats-row {
  display: flex;
  gap: 40px;
}

.hero-stat-item {
  text-align: center;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.hero-stat-item .num {
  font-size: 36px;
  font-weight: 700;
  display: block;
  color: var(--primary);
}

.hero-stat-item .lbl {
  font-size: 13px;
  color: rgba(100, 100, 100, 0.75);
  margin-top: 4px;
}

.hero-right {
  width: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  margin: 0px auto;
}

.reg-card {
  width: 100%;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(212, 63, 80, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(212, 63, 80, 0.1);
}

.reg-header {
  text-align: center;
  margin-bottom: 20px;
}

.reg-badge {
  display: inline-block;
  background: #d43f50;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 16px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.reg-header h3 {
  font-size: 20px;
  color: var(--text);
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.reg-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.reg-form .form-group {
  margin-bottom: 16px;
}

.reg-form label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-weight: 600;
  display: block;
}

.reg-form input,
.reg-form select {
  width: 100%;
  height: 48px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0 16px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #fff;
  color: var(--text);
}

.reg-form input:focus,
.reg-form select:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 4px rgba(212, 63, 80, 0.15);
}

.reg-form select {
  appearance: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M2 5l5 5 5-5' stroke='%23d43f50' fill='none' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat right 14px center #fff;
  padding-right: 36px;
}

.radio-group {
  display: flex;
  gap: 12px;
}

.radio-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff;
}

.radio-option:hover {
  border-color: var(--primary-light);
  background: rgba(212, 63, 80, 0.05);
}

.radio-option.active,
.radio-option input:checked + .radio-icon + .radio-text {
  border-color: var(--primary);
  background: rgba(212, 63, 80, 0.1);
}

.radio-option input {
  display: none;
}

.radio-icon {
  font-size: 20px;
}

.radio-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 0;
}

.radio-group input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.btn-reg-submit {
  width: 100%;
  height: 48px;
  background: #d43f50;
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 12px;
  transition: all 0.3s ease;
  letter-spacing: 3px;
  box-shadow: 0 4px 16px rgba(212, 63, 80, 0.3);
}

.btn-reg-submit:hover {
  background: #d43f50;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 63, 80, 0.4);
}

.reg-agreement {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: center;
  line-height: 1.8;
}

.reg-agreement a {
  color: var(--primary);
  font-weight: 500;
}

.reg-agreement a:hover {
  color: var(--primary-dark);
}

/* ============================================
   筛选区域 - 温柔风格
   ============================================ */

.filter-section {
  background: #fff;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.filter-group span {
  color: var(--text-light);
  white-space: nowrap;
  font-weight: 500;
}

.filter-group select {
  height: 38px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 32px 0 12px;
  font-size: 13px;
  appearance: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 4.5l3 3 3-3' stroke='%23d43f50' fill='none' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat right 10px center #fff;
  outline: none;
  transition: all 0.3s ease;
  color: var(--text);
}

.filter-group select:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(212, 63, 80, 0.1);
}

.btn-search {
  height: 38px;
  padding: 0 32px;
  background: #d43f50;
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(212, 63, 80, 0.2);
}

.btn-search:hover {
  background: #d43f50;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(212, 63, 80, 0.3);
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-light);
  cursor: pointer;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.filter-check:hover {
  background: var(--purple-50);
}

.filter-check input {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
}

/* ============================================
   区块标题 - 温柔风格
   ============================================ */

.section {
  padding: 60px 0;
}

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

.section-header h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  padding-left: 16px;
  border-left: 4px solid var(--primary);
  letter-spacing: 2px;
}

.section-header a {
  font-size: 14px;
  color: var(--primary);
  transition: all 0.3s ease;
  font-weight: 500;
}

.section-header a:hover {
  opacity: 0.7;
  transform: translateX(4px);
}

/* ============================================
   会员卡片 - 温柔风格
   ============================================ */

.member-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.member-card {
  background: #fff;
  border: 2px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.member-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light);
}

.member-avatar {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.member-card:hover .member-avatar {
  transform: scale(1.05);
}

.member-avatar .avatar-text {
  font-size: 64px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.member-avatar .gender-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.member-avatar .blur-tip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  color: #fff;
  text-align: center;
  font-size: 12px;
  padding: 12px 0 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.member-card:hover .blur-tip {
  opacity: 1;
}

/* 温柔系卡片背景渐变 */
.mc-pink {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.mc-blue {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.mc-purple {
  background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%);
}

.mc-green {
  background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
}

.mc-orange {
  background: linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%);
}

.member-body {
  padding: 16px;
}

.member-body .name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.member-body .name-row h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.member-body .vip {
  font-size: 11px;
  color: #fff;
  background: linear-gradient(135deg, #f5af19 0%, #f12711 100%);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.member-body .info-line {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 2;
}

.member-body .info-line span {
  margin-right: 10px;
}

.member-tags {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.member-tags .tag {
  font-size: 11px;
  padding: 4px 10px;
  background: var(--purple-50);
  color: var(--primary);
  border-radius: 6px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.member-tags .tag:hover {
  background: var(--primary);
  color: #fff;
}

/* ============================================
   区域卡片 - 温柔风格
   ============================================ */

.region-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.region-card {
  background: #fff;
  border: 2px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.region-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #d43f50;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.region-card:hover::before {
  opacity: 1;
}

.region-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.region-card .r-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.region-card:hover .r-icon {
  transform: scale(1.1) rotate(5deg);
}

.region-card .r-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.region-card .r-count {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}

.region-card .r-unit {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.rc1 .r-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.rc2 .r-icon {
  background: #d43f50;
}

.rc3 .r-icon {
  background: #d43f50;
}

.rc4 .r-icon {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.rc5 .r-icon {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.rc6 .r-icon {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.rc7 .r-icon {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.rc8 .r-icon {
  background: linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%);
}

/* ============================================
   西陵区专题区块
   ============================================ */

.xiling-section {
  background: linear-gradient(180deg, #f8f4ff 0%, #fff 100%);
  border-top: 1px solid #ede7f6;
  border-bottom: 1px solid #ede7f6;
}

.xiling-section .section-header h2 {
  border-left-color: #c0392b;
}

.xiling-section .section-header a {
  color: #c0392b;
}

/* ============================================
   CTA Section - 温柔风格
   ============================================ */

.cta-section {
  background: #d43f50;
  padding: 80px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.cta-section h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 4px;
  position: relative;
}

.cta-section p {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 2px;
  position: relative;
}

.btn-cta {
  display: inline-block;
  padding: 16px 56px;
  background: #fff;
  color: var(--primary);
  border-radius: 32px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  letter-spacing: 3px;
  position: relative;
}

.btn-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  background: var(--purple-50);
}

/* ============================================
   Footer - 温柔风格
   ============================================ */

.footer {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  color: #ccc;
  padding: 60px 0 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid #444;
}

.footer-col h4 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 2px;
}

.footer-col p,
.footer-col a {
  font-size: 14px;
  color: #aaa;
  line-height: 2.2;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 13px;
  color: #666;
  letter-spacing: 1px;
}

/* ============================================
   浮动工具按钮 - 温柔风格
   ============================================ */

.float-tools {
  position: fixed;
  right: 20px;
  bottom: 120px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
}

.float-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.float-btn .tip {
  position: absolute;
  right: 64px;
  background: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  white-space: nowrap;
  font-size: 13px;
  color: var(--text);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  border: 1px solid var(--border-light);
}

.float-btn:hover .tip {
  opacity: 1;
}

/* ============================================
   响应式布局 - 温柔风格
   ============================================ */

@media (max-width: 1024px) {
  .hero-inner {
    flex-direction: column;
  }

  .hero-right {
    width: 100%;
    padding: 16px;
  }
  
  .reg-card {
    padding: 28px 24px;
  }

  .member-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .region-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .nav-list {
    display: none;
  }

  .nav-list.show {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: var(--shadow-lg);
    padding: 16px;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .hero-left h1 {
    font-size: 42px;
  }

  .hero-left .hero-subtitle {
    font-size: 17px;
    margin: 12px 0 24px;
  }

  .hero-left {
    padding: 20px 20px;
  }

  .hero-right {
    width: 100%;
    max-width: 420px;
    padding: 16px;
    margin: 0 auto 20px;
  }
  
  .reg-card {
    padding: 24px;
  }

  .hero-stats-row {
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero-stat-item {
    padding: 16px;
    flex: 1;
    min-width: 120px;
  }

  .hero-stat-item .num {
    font-size: 28px;
  }

  .member-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .region-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .filter-bar {
    gap: 12px;
  }

  .main-nav .container {
    height: 56px;
  }

  .logo {
    font-size: 22px;
    margin-right: 16px;
  }

  .mobile-menu-btn {
    display: block !important;
  }

  .section {
    padding: 40px 0;
  }

  .cta-section h2 {
    font-size: 28px;
  }

  .cta-section p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .member-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .member-avatar {
    height: 160px;
    font-size: 56px;
  }

  .region-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .hero-stats-row {
    gap: 12px;
  }

  .hero-stat-item .num {
    font-size: 24px;
  }

  .reg-form .form-row {
    flex-direction: column;
    gap: 12px;
  }

  .section-header h2 {
    font-size: 18px;
    letter-spacing: 1px;
  }

  .cta-section h2 {
    font-size: 22px;
    letter-spacing: 2px;
  }

  .cta-section p {
    font-size: 14px;
    letter-spacing: 1px;
  }

  .btn-cta {
    padding: 10px 28px;
    font-size: 14px;
    letter-spacing: 1px;
  }

  .footer-inner {
    gap: 16px;
  }

  .float-tools {
    right: 12px;
    bottom: 80px;
  }

  .float-btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--text);
  transition: all 0.3s ease;
}

/* ============================================
   免费注册按钮闪动动画
   ============================================ */

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(212, 63, 80, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 4px 32px rgba(212, 63, 80, 0.6), 0 0 20px rgba(212, 63, 80, 0.3);
    transform: scale(1.05);
  }
}

/* 鼠标悬停时停止动画 */

.mobile-menu-btn:hover {
  color: var(--primary);
}
