/* ---- Mock app screen shell ---- */
.mock-app-screen {
  position: absolute;
  inset: 0;
  background: #111214;
  z-index: 50;
  display: flex;
  flex-direction: column;
  border-radius: inherit;
  overflow: hidden;
  opacity: 0;
  transform: translateY(6%) scale(0.97);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.mock-app-screen.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.mock-app-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 32px 12px 10px;
  background: #1c1e21;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.mock-app-back {
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
}
.mock-app-title {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
}

/* ---- Email ---- */
.email-inbox { flex-shrink: 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.email-thread { display: flex; align-items: flex-start; gap: 10px; padding: 10px 12px; border-bottom: 1px solid rgba(255,255,255,0.05); cursor: pointer; }
.email-thread.unread { background: rgba(255,255,255,0.04); }
.email-avatar { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: #fff; flex-shrink: 0; }
.email-avatar.sm { width: 28px; height: 28px; font-size: 12px; }
.email-snippet { flex: 1; min-width: 0; }
.email-from { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.9); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.email-thread.read .email-from { font-weight: 400; color: rgba(255,255,255,0.6); }
.email-subject { font-size: 11.5px; color: rgba(255,255,255,0.85); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 1px; }
.email-thread.read .email-subject { color: rgba(255,255,255,0.5); }
.email-preview { font-size: 11px; color: rgba(255,255,255,0.4); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 1px; }
.email-meta { font-size: 10.5px; color: rgba(255,255,255,0.4); white-space: nowrap; flex-shrink: 0; }
.email-thread.unread .email-meta { color: var(--accent); font-weight: 600; }
.email-open { flex: 1; overflow-y: auto; padding: 14px 14px 24px; overscroll-behavior: contain; scrollbar-width: none; }
.email-open::-webkit-scrollbar { display: none; }
.email-open-subject { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 12px; line-height: 1.3; }
.email-open-from { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.email-open-name { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.9); }
.email-open-addr { font-weight: 400; color: rgba(255,255,255,0.45); }
.email-open-date { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 1px; }
.email-open-body p { font-size: 13px; color: rgba(255,255,255,0.82); line-height: 1.6; margin: 0 0 12px; }

/* ---- Browser ---- */
.browser-bar { flex: 1; background: rgba(255,255,255,0.08); border-radius: 20px; padding: 6px 12px; font-size: 12px; color: rgba(255,255,255,0.5); }
.browser-body { padding: 12px; overflow-y: auto; flex: 1; scrollbar-width: none; }
.browser-body::-webkit-scrollbar { display: none; }
.browser-result { margin-bottom: 18px; }
.browser-result.featured { background: rgba(255,255,255,0.05); border-radius: 10px; padding: 10px; }
.browser-result-url { font-size: 10.5px; color: rgba(255,255,255,0.4); margin-bottom: 2px; }
.browser-result-title { font-size: 13px; font-weight: 600; color: var(--accent); margin-bottom: 4px; }
.browser-result-snippet { font-size: 11.5px; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* ---- Photos ---- */
.photos-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 2px; flex: 1; overflow-y: auto; scrollbar-width: none; }
.photos-grid::-webkit-scrollbar { display: none; }
.photo-cell { aspect-ratio: 1; position: relative; display: flex; align-items: flex-end; overflow: hidden; }
.photo-label { font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.85); padding: 3px 5px; background: rgba(0,0,0,0.4); width: 100%; letter-spacing: 0.3px; }

/* ---- Maps ---- */
.maps-map { flex: 1; position: relative; background: #1e2a1e; overflow: hidden; min-height: 0; }
.maps-grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 28px 28px; }
.maps-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%); display: flex; flex-direction: column; align-items: center; color: #e05a3a; }
.maps-pin .material-symbols-rounded { font-size: 36px; }
.maps-pin-label { font-size: 10px; color: #fff; background: rgba(0,0,0,0.6); padding: 2px 6px; border-radius: 8px; }
.maps-sheet { background: #1c1e21; padding: 10px 12px 14px; flex-shrink: 0; border-top: 1px solid rgba(255,255,255,0.08); position: relative; }
.maps-search { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.07); border-radius: 20px; padding: 7px 12px; margin-bottom: 10px; }
.maps-place { display: flex; align-items: center; gap: 10px; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.maps-place:last-of-type { border-bottom: none; }
.maps-place-icon { font-size: 20px; }
.maps-place-name { font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.9); }
.maps-place-meta { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 1px; }
.maps-close { position: absolute; top: 10px; right: 12px; color: rgba(255,255,255,0.5); }

/* ---- Spotify / Music ---- */
.spotify-body { flex: 1; display: flex; flex-direction: column; align-items: center; padding: 16px 20px 20px; gap: 14px; }
.spotify-art { width: 100%; aspect-ratio: 1; border-radius: 12px; max-height: 220px; max-width: 220px; }
.spotify-info { text-align: center; width: 100%; }
.spotify-track { font-size: 15px; font-weight: 700; color: #fff; }
.spotify-artist { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 3px; }
.spotify-progress { width: 100%; }
.spotify-bar { height: 3px; background: rgba(255,255,255,0.15); border-radius: 2px; }
.spotify-fill { height: 100%; background: #1DB954; border-radius: 2px; }
.spotify-times { display: flex; justify-content: space-between; font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 4px; }
.spotify-controls { display: flex; align-items: center; gap: 24px; }
.spotify-ctrl { font-size: 32px; color: rgba(255,255,255,0.8); cursor: pointer; }
.spotify-ctrl.play { font-size: 44px; color: #fff; }

/* ---- Messenger / chat bubbles ---- */
.chat-header-info { display: flex; align-items: center; gap: 8px; }
.chat-body { flex: 1; overflow-y: auto; padding: 12px 12px 16px; display: flex; flex-direction: column; gap: 8px; scrollbar-width: none; }
.chat-body::-webkit-scrollbar { display: none; }
.chat-bubble { max-width: 78%; padding: 8px 12px; border-radius: 16px; font-size: 12.5px; line-height: 1.45; }
.chat-bubble.them { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-bubble.me { background: #0084FF; color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }

/* ---- Calculator ---- */
.calc-display { flex-shrink: 0; padding: 16px 20px 10px; text-align: right; border-bottom: 1px solid rgba(255,255,255,0.07); }
.calc-expr { font-size: 13px; color: rgba(255,255,255,0.35); min-height: 18px; }
.calc-result { font-size: 40px; font-weight: 300; color: #fff; line-height: 1.1; }
.calc-keys { flex: 1; display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(5, 1fr); gap: 1px; background: rgba(255,255,255,0.06); }
.calc-key { background: #1c1e21; border: none; color: #fff; font-size: 18px; cursor: pointer; padding: 0; display: flex; align-items: center; justify-content: center; transition: background 0.1s; }
.calc-key:active { background: rgba(255,255,255,0.15); }
.calc-key.fn { background: #2a2d31; color: rgba(255,255,255,0.85); font-size: 15px; }
.calc-key.op { background: #1a3a5c; color: var(--accent); font-weight: 600; }
.calc-key.op:active { background: #1e4d7a; }
.calc-key.wide { grid-column: span 2; aspect-ratio: auto; padding: 0 0 0 24px; justify-content: flex-start; }

/* ---- YouTube ---- */
.yt-body { flex: 1; overflow-y: auto; scrollbar-width: none; }
.yt-body::-webkit-scrollbar { display: none; }
.yt-hero { background: #000; height: 130px; display: flex; align-items: center; justify-content: center; }
.yt-play-icon { font-size: 56px; color: rgba(255,255,255,0.85); }
.yt-info { padding: 10px 14px 4px; }
.yt-title { font-size: 14px; font-weight: 600; color: #fff; line-height: 1.35; }
.yt-meta { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 4px; }
.yt-chips { display: flex; gap: 6px; padding: 8px 14px; }
.yt-chip { font-size: 11px; padding: 4px 10px; border-radius: 99px; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); white-space: nowrap; }
.yt-chip.active { background: #fff; color: #111; font-weight: 600; }
.yt-suggested { padding: 4px 0; }
.yt-row { display: flex; gap: 10px; padding: 8px 14px; align-items: flex-start; }
.yt-thumb { width: 110px; flex-shrink: 0; height: 62px; border-radius: 6px; }
.yt-thumb-b { background: linear-gradient(135deg,#1a3a5c,#2d6a9f); }
.yt-thumb-c { background: linear-gradient(135deg,#2d2d2d,#555); }
.yt-thumb-d { background: linear-gradient(135deg,#1a4a2a,#34a853); }
.yt-row-info { flex: 1; }
.yt-row-title { font-size: 12px; color: #fff; line-height: 1.35; }
.yt-row-meta { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 3px; }

/* ---- WhatsApp ---- */
.wa-avatar { width: 30px; height: 30px; border-radius: 50%; background: #25D366; color: #fff; font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wa-contact { line-height: 1.2; }
.wa-name { font-size: 14px; font-weight: 600; color: #fff; }
.wa-status { font-size: 11px; color: rgba(255,255,255,0.6); }
.wa-body { flex: 1; overflow-y: auto; scrollbar-width: none; padding: 12px 10px; display: flex; flex-direction: column; gap: 6px; background: #0d1117; }
.wa-body::-webkit-scrollbar { display: none; }
.wa-body .chat-bubble.them { background: #1e2d3a; }

/* ---- Instagram ---- */
.ig-body { flex: 1; overflow-y: auto; scrollbar-width: none; display: flex; flex-direction: column; }
.ig-body::-webkit-scrollbar { display: none; }
.ig-post-header { display: flex; align-items: center; gap: 10px; padding: 10px 14px; }
.ig-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ig-username { flex: 1; font-size: 13px; font-weight: 600; color: #fff; }
.ig-follow { font-size: 12px; color: #0095f6; font-weight: 600; }
.ig-image { background: #1a1a2e; flex-shrink: 0; height: 200px; display: flex; align-items: center; justify-content: center; }
.ig-phone-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 16px; width: 160px; border-radius: 12px; background: rgba(0,0,0,0.4); }
.ig-preview-tile { border-radius: 8px; font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.9); display: flex; align-items: center; justify-content: center; height: 50px; }
.ig-actions { display: flex; gap: 14px; padding: 10px 14px 4px; }
.ig-icon { font-size: 22px; color: #fff; }
.ig-likes { font-size: 13px; font-weight: 700; color: #fff; padding: 0 14px 4px; }
.ig-caption { font-size: 12px; color: rgba(255,255,255,0.8); padding: 0 14px 10px; line-height: 1.5; }

/* ---- Settings ---- */
.settings-list { flex: 1; overflow-y: auto; scrollbar-width: none; }
.settings-list::-webkit-scrollbar { display: none; }
.settings-row { display: flex; align-items: center; gap: 14px; padding: 13px 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.settings-icon { font-size: 22px; flex-shrink: 0; }
.settings-label { font-size: 14px; color: #fff; }
.settings-sub { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 1px; }

/* ---- Camera ---- */
.camera-view { flex: 1; position: relative; background: #000; display: flex; flex-direction: column; }
.camera-scene { flex: 1; background: linear-gradient(180deg, #1a2a1a 0%, #0d1a0d 40%, #0a120a 100%); position: relative; overflow: hidden; }
.camera-scene::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.5)); }
.camera-grid { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px); background-size: 33.3% 33.3%; }
.camera-controls { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px 20px; background: rgba(0,0,0,0.85); }
.camera-thumb { width: 44px; height: 44px; border-radius: 8px; background: linear-gradient(135deg,#4a90d9,#1a3a5c); }
.camera-shutter { width: 60px; height: 60px; border-radius: 50%; border: 3px solid #fff; background: transparent; cursor: pointer; position: relative; }
.camera-shutter::after { content: ''; position: absolute; inset: 4px; border-radius: 50%; background: #fff; transition: transform 0.1s; }
.camera-shutter.snap::after { transform: scale(0.85); }
.camera-flip { font-size: 28px; color: #fff; cursor: pointer; }
.camera-back { position: absolute; top: 12px; left: 12px; background: rgba(0,0,0,0.4); border: none; border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; }

/* ---- Phone / Dialer ---- */
.phone-recents { border-bottom: 1px solid rgba(255,255,255,0.08); }
.phone-recent { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.pr-icon { font-size: 20px; flex-shrink: 0; }
.pr-name { font-size: 14px; color: #fff; }
.pr-info { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 1px; }
.pr-call { font-size: 20px; color: #34a853; margin-left: auto; }
.dialer { display: flex; flex-direction: column; padding: 6px 0 10px; }
.dialer-display { min-height: 36px; text-align: center; font-size: 24px; font-weight: 300; color: #fff; padding: 6px 16px; letter-spacing: 3px; }
.dialer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }
.dialer-key { background: none; border: none; color: #fff; padding: 10px 0; display: flex; flex-direction: column; align-items: center; cursor: pointer; transition: background 0.1s; border-radius: 4px; }
.dialer-key:active { background: rgba(255,255,255,0.1); }
.dialer-key span { font-size: 24px; font-weight: 300; line-height: 1; }
.dialer-key sub { font-size: 8px; color: rgba(255,255,255,0.45); letter-spacing: 1px; margin-top: 1px; }
.dialer-actions { display: flex; align-items: center; justify-content: center; padding: 6px 24px 0; position: relative; }
.dialer-spacer { width: 44px; }
.dialer-call { width: 56px; height: 56px; border-radius: 50%; background: #34a853; border: none; color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.dialer-call .material-symbols-rounded { font-size: 28px; }
.dialer-del { position: absolute; right: 24px; background: none; border: none; color: rgba(255,255,255,0.6); cursor: pointer; display: flex; align-items: center; }
.dialer-del .material-symbols-rounded { font-size: 22px; }

/* ---- Podcasts ---- */
.pod-body { flex: 1; overflow-y: auto; scrollbar-width: none; display: flex; flex-direction: column; }
.pod-body::-webkit-scrollbar { display: none; }
.pod-featured { display: flex; gap: 12px; padding: 14px; align-items: flex-start; }
.pod-art { width: 72px; height: 72px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.pod-featured-info { flex: 1; }
.pod-show { font-size: 11px; color: #8B44AC; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.pod-ep-title { font-size: 13px; font-weight: 600; color: #fff; line-height: 1.35; }
.pod-meta { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 4px; }
.pod-playing { padding: 0 14px 10px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.pod-playing-label { font-size: 9px; font-weight: 700; letter-spacing: 1px; color: #8B44AC; margin-bottom: 6px; }
.pod-bar { height: 3px; background: rgba(255,255,255,0.15); border-radius: 2px; margin-bottom: 4px; }
.pod-fill { height: 100%; background: #8B44AC; border-radius: 2px; }
.pod-times { display: flex; justify-content: space-between; font-size: 10px; color: rgba(255,255,255,0.35); margin-bottom: 8px; }
.pod-controls { display: flex; justify-content: center; gap: 24px; align-items: center; }
.pod-ctrl { font-size: 24px; color: rgba(255,255,255,0.7); cursor: pointer; }
.pod-play { font-size: 36px; color: #fff; }
.pod-list-header { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.5px; padding: 10px 14px 4px; }
.pod-episode { display: flex; gap: 10px; align-items: center; padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.pod-ep-num { font-size: 10px; color: rgba(255,255,255,0.3); width: 32px; flex-shrink: 0; }
.pod-ep-name { font-size: 12px; color: #fff; }
.pod-ep-meta { font-size: 10px; color: rgba(255,255,255,0.35); margin-top: 2px; }

/* ---- LinkedIn ---- */
.li-body { flex: 1; overflow-y: auto; scrollbar-width: none; padding: 12px; }
.li-body::-webkit-scrollbar { display: none; }
.li-post { background: #1a1f2e; border-radius: 8px; padding: 14px; }
.li-post-header { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; }
.li-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg,#0a66c2,#1a8cff); color: #fff; font-size: 16px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.li-name { font-size: 13px; font-weight: 700; color: #fff; }
.li-title-line { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 1px; }
.li-text { font-size: 12px; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 10px; }
.li-stats { font-size: 11px; color: rgba(255,255,255,0.35); padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 8px; }
.li-actions { display: flex; }
.li-act-icon { font-size: 16px; color: rgba(255,255,255,0.5); margin-right: 4px; }
.li-act-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-right: 16px; }

/* ---- Facebook ---- */
.fb-body { flex: 1; overflow-y: auto; scrollbar-width: none; }
.fb-body::-webkit-scrollbar { display: none; }
.fb-page-banner { height: 90px; background: linear-gradient(135deg,#1a2a4a,#1877F2); }
.fb-page-info { padding: 10px 14px; position: relative; }
.fb-page-avatar { width: 52px; height: 52px; border-radius: 50%; background: #1877F2; border: 3px solid #111214; display: flex; align-items: center; justify-content: center; margin-top: -28px; margin-bottom: 6px; }
.fb-page-name { font-size: 16px; font-weight: 700; color: #fff; }
.fb-page-meta { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 8px; }
.fb-follow-btn { background: #1877F2; color: #fff; border: none; border-radius: 6px; padding: 6px 16px; font-size: 13px; font-weight: 600; cursor: pointer; }
.fb-post { padding: 12px 14px; border-top: 1px solid rgba(255,255,255,0.07); }
.fb-post-meta { font-size: 11px; color: rgba(255,255,255,0.35); margin-bottom: 8px; }
.fb-post-text { font-size: 12px; color: rgba(255,255,255,0.85); line-height: 1.6; margin-bottom: 10px; }
.fb-post-image { height: 80px; border-radius: 8px; background: linear-gradient(135deg,#1a2a4a,#4a90d9); margin-bottom: 8px; }
.fb-post-stats { font-size: 11px; color: rgba(255,255,255,0.35); }

/* ---- Calendar ---- */
.cal-body { flex: 1; overflow-y: auto; scrollbar-width: none; padding: 0 10px; }
.cal-body::-webkit-scrollbar { display: none; }
.cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; padding: 8px 0 4px; }
.cal-weekdays span { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.4); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 14px; }
.cal-day { text-align: center; font-size: 13px; color: rgba(255,255,255,0.75); padding: 6px 0; border-radius: 50%; cursor: pointer; }
.cal-day.today { background: #4a90d9; color: #fff; font-weight: 700; }
.cal-events-header { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.5px; padding: 0 0 8px; }
.cal-event { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.cal-event-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 3px; }
.cal-event-title { font-size: 12px; color: #fff; line-height: 1.35; }
.cal-event-time { font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ---- Notes ---- */
.notes-body { flex: 1; overflow-y: auto; scrollbar-width: none; padding: 12px; display: flex; flex-direction: column; gap: 10px; background: #0d0f10; }
.notes-body::-webkit-scrollbar { display: none; }
.note-card { background: #1c1a10; border-radius: 10px; padding: 12px 14px; border-left: 3px solid #E8A000; }
.note-card-sm { border-left-color: #607D8B; background: #111518; }
.note-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.note-date { font-size: 10px; color: rgba(255,255,255,0.35); margin-bottom: 8px; }
.note-text p { font-size: 12px; color: rgba(255,255,255,0.75); line-height: 1.6; margin: 0 0 4px; }

/* ---- Clock ---- */
.clock-body { flex: 1; overflow-y: auto; scrollbar-width: none; display: flex; flex-direction: column; }
.clock-body::-webkit-scrollbar { display: none; }
.clock-display { font-size: 56px; font-weight: 200; color: #fff; text-align: center; padding: 24px 0 4px; letter-spacing: -2px; }
.clock-label { font-size: 13px; color: rgba(255,255,255,0.4); text-align: center; margin-bottom: 20px; }
.clock-alarms-header { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.8px; padding: 0 16px 6px; }
.clock-alarm { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.clock-alarm-time { font-size: 22px; font-weight: 300; color: rgba(255,255,255,0.4); }
.clock-alarm.on .clock-alarm-time { color: #fff; }
.clock-alarm-label { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 2px; }
.clock-toggle { width: 36px; height: 20px; border-radius: 10px; background: rgba(255,255,255,0.15); position: relative; cursor: pointer; transition: background 0.2s; }
.clock-toggle::after { content: ''; position: absolute; left: 2px; top: 2px; width: 16px; height: 16px; border-radius: 50%; background: #888; transition: left 0.2s, background 0.2s; }
.clock-toggle.on { background: #4a90d9; }
.clock-toggle.on::after { left: 18px; background: #fff; }

/* ---- TikTok ---- */
.tt-video { flex: 1; position: relative; background: linear-gradient(180deg,#1a0822 0%,#0d1a2a 35%,#0a1a0d 65%,#1a1208 100%); overflow: hidden; }
.tt-right { position: absolute; right: 10px; bottom: 90px; display: flex; flex-direction: column; gap: 18px; align-items: center; }
.tt-action { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.tt-action .material-symbols-rounded { font-size: 28px; color: #fff; }
.tt-count { font-size: 10px; color: #fff; font-weight: 700; }
.tt-bottom { position: absolute; bottom: 0; left: 0; right: 56px; padding: 0 12px 12px; }
.tt-username { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.tt-caption { font-size: 11px; color: rgba(255,255,255,0.9); line-height: 1.55; margin-bottom: 8px; }
.tt-music { font-size: 10px; color: rgba(255,255,255,0.7); display: flex; align-items: center; margin-bottom: 8px; }
.tt-music .material-symbols-rounded { font-size: 13px; margin-right: 4px; }
.tt-progress { height: 2px; background: rgba(255,255,255,0.25); border-radius: 1px; }
.tt-fill { height: 100%; background: #fff; border-radius: 1px; }

/* ---- Play Store ---- */
.ps-search-bar { flex: 1; background: rgba(255,255,255,0.08); border-radius: 6px; padding: 5px 10px; display: flex; gap: 6px; align-items: center; }
.ps-body { flex: 1; overflow-y: auto; scrollbar-width: none; padding: 12px 14px; }
.ps-body::-webkit-scrollbar { display: none; }
.ps-hero { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; }
.ps-icon { width: 64px; height: 64px; border-radius: 14px; background: linear-gradient(135deg,#1a2a4a,#4a90d9); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ps-icon .mark { font-size: 30px; font-weight: 900; color: #fff; }
.ps-hero-info { flex: 1; }
.ps-name { font-size: 16px; font-weight: 700; color: #fff; }
.ps-dev { font-size: 12px; color: #4a90d9; margin: 2px 0 6px; }
.ps-tags { display: flex; gap: 6px; }
.ps-tag { font-size: 10px; padding: 2px 8px; border-radius: 99px; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.6); }
.ps-install-btn { width: 100%; background: #01875F; color: #fff; border: none; border-radius: 8px; padding: 10px; font-size: 14px; font-weight: 700; margin-bottom: 14px; cursor: pointer; }
.ps-stats-row { display: flex; align-items: center; justify-content: space-around; padding: 10px 0; border-top: 1px solid rgba(255,255,255,0.07); border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 12px; }
.ps-stat { text-align: center; }
.ps-stat-val { font-size: 14px; font-weight: 700; color: #fff; }
.ps-stat-lbl { font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.ps-stat-div { width: 1px; height: 28px; background: rgba(255,255,255,0.1); }
.ps-about-head { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.ps-about { font-size: 12px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 14px; }
.ps-review-head { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.ps-review { background: rgba(255,255,255,0.05); border-radius: 8px; padding: 10px; margin-bottom: 8px; }
.ps-review-stars { color: #FFA500; font-size: 12px; margin-bottom: 2px; }
.ps-review-author { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.ps-review-text { font-size: 12px; color: rgba(255,255,255,0.75); line-height: 1.5; }

/* ---- Contacts ---- */
.ct-body { flex: 1; overflow-y: auto; scrollbar-width: none; }
.ct-body::-webkit-scrollbar { display: none; }
.ct-search { display: flex; gap: 8px; align-items: center; padding: 8px 14px; margin: 6px 12px; background: rgba(255,255,255,0.07); border-radius: 8px; }
.ct-letter-head { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.35); padding: 10px 16px 4px; }
.ct-row { display: flex; gap: 12px; align-items: center; padding: 10px 16px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.ct-avatar { width: 36px; height: 36px; border-radius: 50%; color: #fff; font-weight: 700; font-size: 15px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ct-name { font-size: 14px; color: #fff; }
.ct-num { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 1px; }

/* ---- Amazon ---- */
.amz-bar { flex: 1; background: rgba(255,255,255,0.08); border-radius: 6px; padding: 5px 10px; display: flex; gap: 6px; align-items: center; }
.amz-body { flex: 1; overflow-y: auto; scrollbar-width: none; }
.amz-body::-webkit-scrollbar { display: none; }
.amz-img { height: 200px; background: linear-gradient(135deg,#1a2a1a,#2a3a2a,#3a4a3a); }
.amz-info { padding: 12px 14px; }
.amz-title { font-size: 13px; color: #fff; line-height: 1.5; margin-bottom: 6px; }
.amz-rating { font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 6px; }
.amz-rating-count { color: #4a90d9; }
.amz-price { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.amz-cents { font-size: 14px; }
.amz-prime { font-size: 12px; color: rgba(255,255,255,0.7); margin-bottom: 4px; }
.amz-stock { font-size: 12px; color: #34a853; margin-bottom: 10px; }
.amz-cart { width: 100%; background: #FFA500; color: #111; border: none; border-radius: 99px; padding: 9px; font-size: 13px; font-weight: 700; margin-bottom: 6px; cursor: pointer; }
.amz-buy { width: 100%; background: #FF8C00; color: #111; border: none; border-radius: 99px; padding: 9px; font-size: 13px; font-weight: 700; cursor: pointer; }

/* ---- Uber Eats ---- */
.ue-body { flex: 1; overflow-y: auto; scrollbar-width: none; display: flex; flex-direction: column; }
.ue-body::-webkit-scrollbar { display: none; }
.ue-status { font-size: 18px; font-weight: 700; color: #fff; padding: 16px 16px 2px; }
.ue-eta { font-size: 13px; color: rgba(255,255,255,0.5); padding: 0 16px 12px; }
.ue-map { height: 150px; background: #111; position: relative; overflow: hidden; margin-bottom: 12px; }
.ue-road { position: absolute; background: #333; }
.ue-road-h { height: 12px; }
.ue-road-v { width: 12px; }
.ue-dot { position: absolute; transform: translate(-50%,-50%); display: flex; align-items: center; justify-content: center; }
.ue-dot-dest { width: 28px; height: 28px; background: rgba(6,193,103,0.2); border-radius: 50%; }
.ue-dot-rider { width: 26px; height: 26px; background: #06C167; border-radius: 50%; }
.ue-restaurant { font-size: 14px; font-weight: 700; color: #fff; padding: 0 16px 8px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 8px; }
.ue-items { padding: 0 16px; flex: 1; }
.ue-item { display: flex; align-items: center; gap: 8px; padding: 6px 0; font-size: 13px; color: rgba(255,255,255,0.8); }
.ue-item-icon { font-size: 18px; color: rgba(255,255,255,0.4); }
.ue-total { font-size: 13px; font-weight: 700; color: #fff; padding: 10px 16px; border-top: 1px solid rgba(255,255,255,0.07); }

/* ---- Chase Bank ---- */
.bank-body { flex: 1; overflow-y: auto; scrollbar-width: none; }
.bank-body::-webkit-scrollbar { display: none; }
.bank-account { background: linear-gradient(135deg,#0d4fa0,#117ACA); padding: 20px 16px; }
.bank-account-type { font-size: 12px; color: rgba(255,255,255,0.7); margin-bottom: 4px; }
.bank-balance { font-size: 32px; font-weight: 300; color: #fff; }
.bank-actions { display: flex; justify-content: space-around; padding: 12px 8px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.bank-action-btn { background: none; border: none; color: rgba(255,255,255,0.8); display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; cursor: pointer; }
.bank-action-btn .material-symbols-rounded { font-size: 22px; color: #117ACA; }
.bank-txn-head { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.5px; padding: 10px 16px 4px; }
.bank-txn { display: flex; justify-content: space-between; align-items: center; padding: 10px 16px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.bank-txn-name { font-size: 13px; color: #fff; }
.bank-txn-date { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 2px; }
.bank-txn-amt { font-size: 14px; font-weight: 600; }
.bank-txn-amt.debit { color: rgba(255,255,255,0.8); }
.bank-txn-amt.credit { color: #34a853; }

/* ---- PayPal ---- */
.pp-body { flex: 1; overflow-y: auto; scrollbar-width: none; }
.pp-body::-webkit-scrollbar { display: none; }
.pp-balance-card { background: linear-gradient(135deg,#003087,#009cde); padding: 20px 16px; text-align: center; }
.pp-balance-label { font-size: 12px; color: rgba(255,255,255,0.7); margin-bottom: 4px; }
.pp-balance-amt { font-size: 36px; font-weight: 300; color: #fff; }
.pp-balance-sub { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.pp-actions { display: flex; justify-content: space-around; padding: 12px 8px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.pp-action-btn { background: none; border: none; color: rgba(255,255,255,0.8); display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; cursor: pointer; }
.pp-action-btn .material-symbols-rounded { font-size: 22px; color: #009cde; }
.pp-activity-head { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.5px; padding: 10px 16px 4px; }
.pp-txn { display: flex; align-items: center; gap: 10px; padding: 10px 16px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.pp-txn-icon { width: 32px; height: 32px; border-radius: 50%; color: #fff; font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pp-txn-name { font-size: 13px; color: #fff; }
.pp-txn-date { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 2px; }
.pp-txn-amt { font-size: 13px; font-weight: 600; margin-left: auto; flex-shrink: 0; }
.pp-txn-amt.debit { color: rgba(255,255,255,0.7); }
.pp-txn-amt.credit { color: #34a853; }
