* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #f5f6fa;
  --bg-dark: #0d0d1a;
  --card: #ffffff;
  --card-dark: #16162a;
  --text: #1a1a2e;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --primary: #2563eb;
  --primary-light: #dbeafe;
  --accent: #f59e0b;
  --accent-light: #fef3c7;
  --green: #10b981;
  --green-light: #d1fae5;
  --red: #ef4444;
  --red-light: #fee2e2;
  --purple: #8b5cf6;
  --purple-light: #ede9fe;
  --pink: #ec4899;
  --pink-light: #fce7f3;
  --border: #e5e7eb;
  --shadow: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-sm: 8px;
}
body {
  font-family: -apple-system, 'PingFang SC', 'SF Pro Display', 'Helvetica Neue', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* Phone container */
.phone-container {
  max-width: 390px;
  margin: 0 auto;
  min-height: 100vh;
  background: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.04);
}
@media (min-width: 480px) {
  body { background: #e8e8ed; padding: 20px 0; }
  .phone-container { border-radius: 40px; min-height: 780px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
}

/* Status bar */
.status-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 20px 6px;
  font-size: 12px; font-weight: 600;
  color: var(--text);
}

/* Header */
.header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 16px;
}
.header-left { display: flex; align-items: center; gap: 10px; }
.avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px; font-weight: 600;
}
.header-right { display: flex; align-items: center; gap: 16px; }
.header-icon { font-size: 20px; cursor: pointer; }
.energy-pill {
  display: flex; align-items: center; gap: 4px;
  background: #fef3c7; padding: 4px 12px; border-radius: 20px;
  font-size: 13px; font-weight: 600; color: #92400e;
}
.energy-pill .num { color: #b45309; }

/* Section */
.section { padding: 12px 16px; }
.section-title {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.section-title h3 { font-size: 16px; font-weight: 600; }
.section-title .more { font-size: 13px; color: var(--text-muted); cursor: pointer; }

/* Pet card */
.pet-card {
  background: linear-gradient(135deg, #1e1b4b, #312e81, #3730a3);
  border-radius: 16px;
  padding: 20px;
  margin: 0 16px 12px;
  position: relative;
  overflow: hidden;
}
.pet-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(59,130,246,0.15), transparent);
  border-radius: 50%;
}
.pet-top { display: flex; justify-content: space-between; align-items: flex-start; position: relative; z-index: 1; }
.pet-info h2 { color: #fff; font-size: 20px; font-weight: 700; margin-bottom: 2px; }
.pet-info .pet-tag {
  display: inline-block; background: rgba(59,130,246,0.2); color: #93c5fd;
  font-size: 12px; padding: 2px 10px; border-radius: 10px;
}
.pet-badge {
  background: rgba(251,191,36,0.15); color: #fbbf24;
  font-size: 12px; padding: 4px 12px; border-radius: 12px;
  border: 1px solid rgba(251,191,36,0.2);
}
.pet-visual {
  display: flex; justify-content: center; align-items: center;
  padding: 16px 0 12px;
  position: relative; z-index: 1;
}
.pet-crystal {
  width: 80px; height: 90px;
  background: linear-gradient(135deg, #60a5fa, #3b82f6, #1d4ed8);
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(59,130,246,0.3), inset 0 0 20px rgba(255,255,255,0.1);
  position: relative;
}
.pet-crystal::after {
  content: ''; position: absolute; inset: 4px;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
}
@keyframes float { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-6px); } }

.pet-stats {
  display: flex; gap: 16px; position: relative; z-index: 1;
}
.stat-item { flex: 1; }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.stat-bar { height: 4px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; }
.stat-fill { height: 100%; border-radius: 4px; transition: width 0.5s; }
.stat-fill.blue { background: linear-gradient(90deg, #60a5fa, #3b82f6); }
.stat-fill.gold { background: linear-gradient(90deg, #fbbf24, #f59e0b); }
.stat-value { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 2px; text-align: right; }

/* Mission list */
.mission-list { display: flex; flex-direction: column; gap: 6px; }
.mission-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer; transition: all 0.15s;
}
.mission-item:active { transform: scale(0.98); }
.mission-item.done {
  opacity: 0.55;
}
.mission-item.done .mission-text { text-decoration: line-through; color: var(--text-muted); }
.mission-check {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid #d1d5db;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: transparent; flex-shrink: 0;
  transition: all 0.2s;
}
.mission-item.done .mission-check {
  background: var(--green); border-color: var(--green); color: #fff;
}
.mission-info { flex: 1; display: flex; justify-content: space-between; align-items: center; }
.mission-text { font-size: 14px; }
.mission-reward { font-size: 12px; color: #b45309; font-weight: 500; }

/* Quick actions grid */
.quick-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  margin: 0 16px;
}
.q-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 14px 4px 10px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer; transition: all 0.2s;
  font-size: 13px; font-weight: 500; color: var(--text);
}
.q-item:hover { border-color: #a5b4fc; background: #eef2ff; }
.q-item:active { transform: scale(0.93); }
.q-icon { font-size: 24px; margin-bottom: 2px; }

/* Check-in calendar */
.calendar {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px;
  margin: 0 16px 12px;
}
.cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.cal-header h4 { font-size: 15px; font-weight: 600; }
.cal-streak { font-size: 12px; color: #b45309; background: #fef3c7; padding: 2px 10px; border-radius: 10px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-day {
  aspect-ratio: 1; border-radius: 8px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 500;
  background: #f9fafb; border: 1px solid transparent; cursor: pointer;
  transition: all 0.15s;
}
.cal-day:active { transform: scale(0.9); }
.cal-day.done { background: #d1fae5; color: #065f46; }
.cal-day.today { border: 2px solid var(--primary); background: var(--primary-light); }
.cal-day .reward-icon { font-size: 10px; margin-top: 1px; }

/* Reward ladder */
.reward-ladder { display: flex; gap: 6px; overflow-x: auto; padding: 8px 16px 4px; scrollbar-width: none; }
.reward-ladder::-webkit-scrollbar { display: none; }
.r-item {
  min-width: 56px; padding: 8px 4px; text-align: center;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); flex-shrink: 0;
  font-size: 11px; color: var(--text-secondary);
}
.r-item .r-icon { font-size: 20px; display: block; margin-bottom: 2px; }
.r-item .r-day { font-size: 10px; }
.r-item.claimed { border-color: var(--green); background: var(--green-light); }
.r-item.next { border-color: var(--accent); background: var(--accent-light); }

/* Store map */
.store-map { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 0 16px 12px; }
.s-map-item {
  padding: 16px 12px; text-align: center;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer; transition: all 0.15s;
}
.s-map-item:active { transform: scale(0.96); }
.s-map-item .s-icon { font-size: 28px; margin-bottom: 4px; }
.s-map-item .s-name { font-size: 13px; font-weight: 500; }
.s-map-item .s-dist { font-size: 11px; color: var(--text-muted); }
.s-map-item.active { border-color: var(--primary); background: var(--primary-light); }

/* Product row */
.product-row { display: flex; flex-direction: column; gap: 8px; margin: 0 16px 12px; }
.prod-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.prod-icon { width: 44px; height: 44px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.prod-info { flex: 1; }
.prod-name { font-size: 14px; font-weight: 500; }
.prod-meta { font-size: 12px; color: var(--text-muted); }
.prod-price { font-size: 14px; font-weight: 600; color: #b45309; }
.prod-price .bonus { font-size: 11px; color: var(--green); font-weight: 400; }
.prod-btn {
  padding: 6px 14px; border-radius: 16px;
  border: 1px solid var(--primary); background: transparent;
  color: var(--primary); font-size: 12px; cursor: pointer;
  transition: all 0.15s;
}
.prod-btn:active { background: var(--primary-light); }

/* Feed */
.feed { margin: 0 16px; display: flex; flex-direction: column; gap: 10px; }
.feed-item {
  padding: 14px; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius);
}
.feed-user { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.feed-avatar { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; color: #fff; }
.feed-name { font-size: 13px; font-weight: 500; }
.feed-time { font-size: 11px; color: var(--text-muted); }
.feed-text { font-size: 14px; line-height: 1.5; margin-bottom: 8px; }
.feed-media {
  height: 100px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--text-secondary);
  margin-bottom: 8px;
}
.feed-actions { display: flex; gap: 16px; font-size: 12px; color: var(--text-muted); }
.feed-actions span { cursor: pointer; }
.feed-actions span.liked { color: #ef4444; }

/* Story chapters */
.chapter-list { margin: 0 16px; display: flex; flex-direction: column; gap: 8px; }
.chapter {
  padding: 14px; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.chapter.current { border-left: 3px solid var(--primary); }
.chapter.locked { opacity: 0.5; }
.ch-num { font-size: 11px; color: var(--primary); margin-bottom: 2px; }
.ch-title { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.ch-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.4; }
.ch-progress { font-size: 12px; color: var(--green); margin-top: 6px; }
.ch-progress.locked { color: var(--text-muted); }

/* Invite card */
.invite-card {
  margin: 0 16px 12px; padding: 16px; text-align: center;
  background: linear-gradient(135deg, #fdf2f8, #fce7f3);
  border: 1px solid #fbcfe8;
  border-radius: var(--radius);
}
.invite-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.invite-card p { font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; }
.invite-btn {
  padding: 8px 24px; border: none; border-radius: 20px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff; font-size: 14px; font-weight: 600; cursor: pointer;
}
.invite-btn:active { transform: scale(0.96); }

/* Tab bar */
.tab-bar {
  position: sticky; bottom: 0;
  display: flex; justify-content: space-around; align-items: center;
  padding: 8px 0 12px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  margin-top: 12px;
}
.tab-item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 10px; color: var(--text-muted); cursor: pointer;
  padding: 4px 8px; transition: all 0.15s;
}
.tab-item .tab-icon { font-size: 22px; }
.tab-item.active { color: var(--primary); }
.tab-item.active .tab-icon { transform: scale(1.1); }

/* Collection summary */
.collection-summary {
  display: flex; justify-content: space-around;
  padding: 12px; margin: 0 16px 12px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.cs-item { text-align: center; }
.cs-num { font-size: 20px; font-weight: 700; color: var(--primary); }
.cs-label { font-size: 11px; color: var(--text-muted); }

/* Screen management */
.screen { display: none; }
.screen.active { display: block; }

/* AR overlay */
.ar-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: #000;
  display: none; flex-direction: column;
}
.ar-overlay.show { display: flex; }
.ar-top { display: flex; align-items: center; gap: 8px; padding: 16px; color: #fff; font-size: 14px; }
.ar-back { background: none; border: none; color: #fff; font-size: 16px; cursor: pointer; padding: 4px; }
.ar-scene { flex: 1; display: flex; align-items: center; justify-content: center; position: relative; }
.ar-crystal-3d {
  width: 100px; height: 120px;
  background: linear-gradient(135deg, rgba(96,165,250,0.6), rgba(59,130,246,0.3));
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  animation: arSpin 6s linear infinite;
  box-shadow: 0 0 40px rgba(59,130,246,0.2);
}
@keyframes arSpin { from { transform: rotateY(0deg); } to { transform: rotateY(360deg); } }
.ar-bottom {
  display: flex; justify-content: center; gap: 12px;
  padding: 16px 16px 24px;
  background: rgba(0,0,0,0.8);
}
.ar-btn {
  padding: 8px 20px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: #fff; font-size: 13px; cursor: pointer;
}
.ar-btn:active { background: rgba(255,255,255,0.1); }

/* Sub-header for inner screens */
.sub-header { display: flex; align-items: center; gap: 8px; padding: 8px 16px; }
.sub-header .back { font-size: 16px; cursor: pointer; padding: 4px; background: none; border: none; color: var(--text); }
.sub-header h2 { font-size: 17px; font-weight: 600; }
.sub-header .right { margin-left: auto; }

/* Pet collection cards */
.pet-list { display: flex; flex-direction: column; gap: 6px; margin: 0 16px 12px; }
.pet-list-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); cursor: pointer;
}
.pet-list-item:active { transform: scale(0.98); }
.pet-list-item.active { border-color: var(--primary); background: var(--primary-light); }
.pl-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.pl-info { flex: 1; }
.pl-name { font-size: 14px; font-weight: 500; }
.pl-meta { font-size: 12px; color: var(--text-muted); }
.pl-status { font-size: 12px; color: var(--primary); }

/* Expo / Boss */
.action-card {
  margin: 0 16px 12px; padding: 14px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.action-card .ac-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.action-card .ac-name { font-size: 14px; font-weight: 600; }
.action-card .ac-tag {
  font-size: 11px; padding: 2px 8px; border-radius: 8px;
  background: #d1fae5; color: #065f46;
}
.action-card .ac-tag.red { background: #fee2e2; color: #991b1b; }
.action-card .ac-desc { font-size: 13px; color: var(--text-secondary); }
.action-card .ac-team { display: flex; gap: 4px; margin: 8px 0; }
.action-card .ac-team span {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px dashed #d1d5db;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--text-muted);
}
.action-card .ac-team span.filled {
  border-style: solid; border-color: var(--primary);
  background: var(--primary-light); color: var(--primary);
}
.action-card .ac-btn {
  width: 100%; padding: 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--primary); background: transparent;
  color: var(--primary); font-size: 13px; cursor: pointer;
}
.action-card .ac-btn.primary {
  background: var(--primary); color: #fff; border: none;
}
.action-card .ac-btn:active { opacity: 0.8; }

/* Boss HP */
.boss-hp { height: 6px; background: #f3f4f6; border-radius: 6px; overflow: hidden; margin: 8px 0 4px; }
.boss-hp .hp-fill { height: 100%; background: linear-gradient(90deg, #ef4444, #dc2626); border-radius: 6px; transition: width 0.5s; }

/* Invite tiers */
.invite-tiers { display: flex; flex-direction: column; gap: 6px; margin: 0 16px 12px; }
.invite-tier {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.invite-tier .it-label {
  font-size: 11px; font-weight: 600; color: var(--primary);
  background: var(--primary-light); padding: 2px 8px; border-radius: 6px;
  min-width: 32px; text-align: center;
}
.invite-tier .it-info { flex: 1; font-size: 13px; color: var(--text-secondary); }
.invite-tier .it-bar { width: 50px; height: 4px; background: #e5e7eb; border-radius: 4px; overflow: hidden; }
.invite-tier .it-bar .it-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--green)); border-radius: 4px; }

/* AI Content cards */
.content-cards { margin: 0 16px 12px; display: flex; flex-direction: column; gap: 6px; }
.content-card {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.content-card .cc-icon { font-size: 20px; }
.content-card .cc-info { flex: 1; }
.content-card .cc-title { font-size: 13px; font-weight: 500; }
.content-card .cc-desc { font-size: 11px; color: var(--text-muted); }
.content-card .cc-btn { padding: 4px 12px; border-radius: 12px; border: 1px solid var(--border); background: transparent; font-size: 12px; color: var(--text-secondary); cursor: pointer; }
.content-card .cc-btn:active { background: #f9fafb; }
.content-card .cc-btn.done { border-color: var(--green); color: var(--green); }

/* Dialogue */
.dialogue { margin: 0 16px; padding: 14px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); }
.dialogue-msg { margin-bottom: 10px; }
.dialogue-name { font-size: 11px; color: var(--primary); margin-bottom: 2px; }
.dialogue-text { font-size: 14px; line-height: 1.5; }
.dialogue-input { display: flex; gap: 8px; }
.dialogue-input input {
  flex: 1; padding: 8px 12px; border: 1px solid var(--border);
  border-radius: 20px; font-size: 13px; outline: none;
}
.dialogue-input input:disabled { background: #f9fafb; color: var(--text-muted); }
.dialogue-input button {
  padding: 8px 16px; border: none; border-radius: 20px;
  background: var(--primary); color: #fff; font-size: 13px; cursor: pointer;
}
.dialogue-input button:disabled { opacity: 0.4; }

/* Evo chain */
.evo-chain { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 0 16px 12px; }
.evo-item { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.evo-item .evo-icon {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid #d1d5db; display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--text-muted);
}
.evo-item.current .evo-icon { border-color: var(--primary); color: var(--primary); box-shadow: 0 0 8px rgba(59,130,246,0.2); }
.evo-item span { font-size: 11px; color: var(--text-secondary); }
.evo-arrow { color: var(--text-muted); font-size: 16px; }

/* Season bar */
.season-bar {
  margin: 0 16px 12px; padding: 14px;
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
  border: 1px solid #a5b4fc;
  border-radius: var(--radius-sm);
}
.season-bar .sb-header { display: flex; justify-content: space-between; margin-bottom: 6px; }
.season-bar .sb-name { font-size: 14px; font-weight: 600; }
.season-bar .sb-tag { font-size: 11px; color: #4338ca; background: rgba(99,102,241,0.15); padding: 2px 8px; border-radius: 6px; }
.season-bar .sb-bar { height: 4px; background: #fde68a; border-radius: 4px; overflow: hidden; }
.season-bar .sb-fill { height: 100%; background: linear-gradient(90deg, #6366f1, #4f46e5); border-radius: 4px; }

/* Decay notice */
.decay-notice {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: #fef2f2; border: 1px solid #fecaca;
  border-radius: var(--radius-sm);
  margin: 0 16px 8px;
  font-size: 13px;
}
.decay-notice .dn-text { flex: 1; color: #92400e; }
.decay-notice .dn-btn { padding: 4px 12px; border: none; border-radius: 12px; background: #ef4444; color: #fff; font-size: 12px; cursor: pointer; }
.decay-notice .dn-btn:active { opacity: 0.8; }

/* Fade in animation */
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.screen.active { animation: fadeIn 0.25s ease-out; }

/* Float reward */
.float-reward {
  position: fixed; z-index: 200; pointer-events: none;
  font-size: 16px; font-weight: 700; color: #b45309;
  animation: floatUp 1s ease-out forwards;
}
@keyframes floatUp { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(-50px); } }

/* Wakeup modal */
.wakeup-overlay {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(0,0,0,0.6);
  display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.wakeup-overlay.show { display: flex; }
.wakeup-modal {
  background: #fff; border-radius: 20px; padding: 28px 24px;
  max-width: 300px; width: 90%; text-align: center;
  animation: modalIn 0.3s ease-out;
}
@keyframes modalIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
.wakeup-modal .wm-icon { font-size: 40px; margin-bottom: 10px; }
.wakeup-modal h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.wakeup-modal p { font-size: 13px; color: var(--text-secondary); margin-bottom: 16px; }
.wakeup-modal .wm-btn {
  padding: 10px 28px; border: none; border-radius: 20px;
  background: var(--primary); color: #fff; font-size: 15px; font-weight: 600; cursor: pointer;
}

/* AR hint */
.ar-hint { position: absolute; bottom: 20px; font-size: 13px; color: rgba(255,255,255,0.5); letter-spacing: 0.5px; }
