/* ============================================
   天天吃瓜 - 高级感深色主题
   Mobile-first responsive design
   ============================================ */

/* CSS Custom Properties */
:root {
  --bg-primary: #08080b;
  --bg-secondary: #0f0f14;
  --bg-card: #14141a;
  --bg-card-hover: #1a1a22;
  --bg-input: #14141a;
  --bg-modal: #16161e;

  --accent: #ff6b3d;
  --accent-glow: rgba(255, 107, 61, 0.15);
  --accent-hover: #ff8058;
  --accent-dim: rgba(255, 107, 61, 0.08);

  --green: #22d394;
  --green-glow: rgba(34, 211, 148, 0.12);
  --pink: #ff4d7a;
  --gold: #f5c542;
  --blue: #4da6ff;

  --text-primary: #f0f0f5;
  --text-secondary: #90909a;
  --text-muted: #65656e;

  --border: rgba(255, 255, 255, 0.06);
  --border-active: rgba(255, 107, 61, 0.4);

  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.4);
  --shadow-modal: 0 24px 80px rgba(0, 0, 0, 0.7);

  --max-width: 460px;
  --safe-bottom: env(safe-area-inset-bottom, 16px);

  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Microsoft YaHei", sans-serif;
}

/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

/* App Container */
.app-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* ===== Header ===== */
.header {
  padding: 20px 0 8px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg-primary);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -16px;
  right: -16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.brand-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  flex-shrink: 0;
  animation: brandPulse 3s ease-in-out infinite;
}

@keyframes brandPulse {
  0%, 100% { filter: drop-shadow(0 0 6px var(--accent-glow)); }
  50% { filter: drop-shadow(0 0 14px rgba(255, 107, 61, 0.25)); }
}

.brand-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-text h1 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.2;
  background: linear-gradient(135deg, #fff 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-text p {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 1px;
  letter-spacing: 0.5px;
}

/* Points Badge */
.points-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  padding: 6px 12px 6px 8px;
  border-radius: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.points-badge:active {
  transform: scale(0.96);
  border-color: var(--accent);
  background: var(--accent-dim);
}

.points-ring {
  width: 36px;
  height: 36px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.points-ring-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: ringRotate 10s linear infinite;
  color: var(--gold);
}

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

.points-num {
  font-size: 13px;
  font-weight: 800;
  z-index: 1;
  color: var(--gold);
}

.points-tip {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
  white-space: nowrap;
}

/* ===== Search ===== */
.search-section {
  display: flex;
  gap: 10px;
  padding: 16px 0;
}

.search-box {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 14px;
  height: 48px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-box:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.search-icon {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.search-box input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 15px;
  font-family: inherit;
  min-width: 0;
}

.search-box input::placeholder {
  color: var(--text-muted);
}

.search-clear {
  background: none;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: background 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.search-clear:hover {
  background: rgba(255,255,255,0.06);
}

.search-clear svg {
  width: 14px;
  height: 14px;
}

.search-btn {
  background: var(--accent);
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius);
  padding: 0 22px;
  height: 48px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}

.search-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.1));
}

.search-btn:active {
  transform: scale(0.96);
  background: var(--accent-hover);
}

/* ===== Tabs ===== */
.tabs {
  display: flex;
  gap: 8px;
  padding-bottom: 10px;
  flex-wrap: wrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

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

.tab {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  font-family: inherit;
}

.tab:active { transform: scale(0.95); }

.tab.active {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
}

.tab.today-tab {
  border-color: var(--green);
  color: var(--green);
  background: rgba(34, 211, 148, 0.08);
}

.tab.today-tab.active {
  background: rgba(34, 211, 148, 0.15);
  border-color: var(--green);
  color: var(--green);
}

/* ===== Collection Head ===== */
.collection-head {
  padding: 6px 0 4px;
}

.ch-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.ch-count {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===== List ===== */
.list-section {
  flex: 1;
}

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

/* Card */
.card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.02));
  opacity: 0;
  transition: opacity 0.2s;
}

.card:active {
  transform: scale(0.985);
  background: var(--bg-card-hover);
}

.card:active::after { opacity: 1; }

.card-thumb {
  width: 110px;
  height: 74px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  background: var(--bg-secondary);
}

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

.card-thumb-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.card-thumb-placeholder svg {
  width: 28px;
  height: 28px;
  opacity: 0.4;
}

.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
  padding-right: 60px;
}

.card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-all;
  line-height: 1.4;
  width: 100%;
}

.card-meta {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  border-radius: 6px;
  padding: 3px 8px;
  flex-shrink: 0;
  position: absolute;
  top: 10px;
  right: 10px;
  letter-spacing: 0.3px;
}

.card-cost {
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.empty-state svg {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  opacity: 0.3;
}

.empty-state p {
  font-size: 15px;
  line-height: 1.6;
}

/* Loading Spinner */
.loading-spinner {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

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

/* ===== Pagination ===== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px 0 8px;
  flex-wrap: wrap;
  user-select: none;
}

.pg {
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}

.pg:active { transform: scale(0.92); }

.pg.active {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 700;
}

.pg.disabled {
  opacity: 0.3;
  pointer-events: none;
}

.pg-jump {
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: default;
  font-size: 12px;
}

.pg-jump-box {
  width: 48px;
  background: var(--bg-input);
}

.pg-jump-box input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 13px;
  text-align: center;
  font-family: inherit;
}

.pg-jump-box input::-webkit-inner-spin-button,
.pg-jump-box input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

/* ===== Footer ===== */
.footer {
  text-align: center;
  padding: 24px 0 32px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.8;
  padding-bottom: calc(32px + var(--safe-bottom));
}

/* ===== Modal ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.2s ease;
}

.modal-overlay.show {
  display: flex;
}

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

.modal {
  width: 100%;
  max-width: 380px;
  background: var(--bg-modal);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-modal);
  animation: slideUp 0.25s ease;
}

.modal.modal-sm {
  max-width: 340px;
}

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

.modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.modal-thumb {
  width: 64px;
  height: 48px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-secondary);
}

.modal-info { min-width: 0; }

.modal-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.modal-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
}

.modal-warning {
  background: rgba(255, 107, 61, 0.08);
  border: 1px solid rgba(255, 107, 61, 0.2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 14px;
  font-size: 12px;
  color: var(--accent);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.warning-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.modal-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.link-box {
  display: flex;
  align-items: center;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 18px;
}

.link-box span {
  flex: 1;
  color: var(--text-secondary);
  font-size: 12px;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: 'SF Mono', 'Fira Code', monospace;
}

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

.modal-btn {
  flex: 1;
  height: 46px;
  border-radius: var(--radius-sm);
  border: none;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}

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

.modal-btn.btn-primary {
  background: var(--accent);
  color: #fff;
}

.modal-btn.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.modal-btn.btn-full {
  width: 100%;
  margin-bottom: 8px;
}

.modal-close-btn {
  width: 100%;
  margin-top: 10px;
  height: 42px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.15s;
}

.modal-close-btn:hover { color: var(--text-secondary); }

.copied-tip {
  text-align: center;
  color: var(--green);
  font-size: 12px;
  min-height: 20px;
  margin-top: 8px;
  transition: opacity 0.2s;
}

/* ===== Checkin Modal ===== */
.checkin-header {
  text-align: center;
  margin-bottom: 14px;
}

.checkin-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 8px;
  color: var(--green);
  animation: checkinBounce 1s ease infinite;
}

@keyframes checkinBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.checkin-title {
  font-size: 17px;
  font-weight: 700;
}

.streak-bar {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin: 12px 0;
}

.streak-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 700;
  border: 1.5px solid transparent;
  transition: all 0.3s;
}

.streak-dot.done {
  background: rgba(245, 197, 66, 0.1);
  color: var(--gold);
  border-color: var(--gold);
}

.streak-dot.today {
  background: var(--gold);
  color: #111;
  box-shadow: 0 0 16px rgba(245, 197, 66, 0.3);
}

.checkin-gain {
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  margin: 8px 0;
  min-height: 28px;
}

.checkin-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-primary);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.checkin-val {
  font-weight: 700;
  color: var(--gold);
}

.checkin-done {
  text-align: center;
  color: var(--green);
  font-size: 13px;
  padding: 6px 0;
  min-height: 26px;
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(30, 30, 40, 0.95);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 14px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: translateX(-50%) translateY(10px);
  white-space: nowrap;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

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

/* ===== Responsive ===== */
@media (min-width: 768px) {
  .app-container {
    padding: 0 24px;
  }

  .card {
    border-radius: var(--radius-lg);
  }

  .card:hover {
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }

  .card:active {
    transform: translateY(0);
  }
}

@media (min-width: 1024px) {
  .app-container {
    max-width: 480px;
  }
}

/* ===== Dark scrollbar ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
}

/* ===== Prefers Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== WeChat Browser Mask ===== */
.wx-mask {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.wx-mask.show {
  display: flex;
}

.wx-mask-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0a0a14 0%, #0f0f1e 40%, #0c0c18 100%);
  overflow: hidden;
}

/* Grid pattern */
.wx-mask-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridScroll 20s linear infinite;
}

@keyframes gridScroll {
  to { background-position: 0 40px, 40px 0; }
}

/* Glow orb */
.wx-mask-bg::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,61,0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbPulse 4s ease-in-out infinite;
}

@keyframes orbPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

/* Particles */
.wx-mask-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.wx-particle {
  position: absolute;
  border-radius: 50%;
  animation: floatUp 6s ease-in-out infinite;
  opacity: 0;
}

@keyframes floatUp {
  0% { transform: translateY(0) scale(0); opacity: 0; }
  20% { opacity: 0.6; }
  80% { opacity: 0.3; }
  100% { transform: translateY(-60px) scale(1.2); opacity: 0; }
}

/* Card */
.wx-mask-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  background: rgba(20,20,32,0.85);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 36px 28px 28px;
  text-align: center;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 0 80px rgba(255,107,61,0.06),
    0 20px 60px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.04);
  animation: cardEnter 0.5s ease;
}

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

/* Icon */
.wx-mask-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  color: var(--accent);
}

.wx-mask-icon svg {
  width: 100%;
  height: 100%;
}

.wx-icon-ring {
  animation: ringSpin 8s linear infinite;
  transform-origin: center;
}

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

.wx-icon-ring2 {
  animation: ringSpin 6s linear infinite reverse;
  transform-origin: center;
}

.wx-icon-dot {
  animation: dotPulse 2s ease-in-out infinite;
  transform-origin: center;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; r: 5px; }
  50% { opacity: 0.5; r: 3px; }
}

/* Title */
.wx-mask-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #fff 20%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wx-mask-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  padding: 0 8px;
}

/* Steps */
.wx-mask-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.wx-step {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 14px 16px;
  text-align: left;
}

.wx-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wx-step:nth-child(2) .wx-step-num {
  background: var(--green);
}

.wx-step-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.wx-step-icon {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 2px 10px;
  border-radius: 6px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  font-size: 16px;
  vertical-align: middle;
  margin: 0 2px;
}

.wx-step-highlight {
  color: var(--green);
  font-weight: 700;
}

.wx-mask-tip {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
