* {
  font-family: -apple-system, 'SF Pro Display', 'Inter', sans-serif;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  background: linear-gradient(160deg, #1c1c1e 0%, #2c2c2e 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* iPhone 17 Pro Max */
.phone-frame {
  width: 430px;
  max-width: 100%;
  height: 95vh;
  max-height: 890px;
  background: #000000;
  border-radius: 58px;
  padding: 14px;
  box-shadow:
    0 0 0 2px #d1d1d6,
    0 0 0 3px #a1a1a6,
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 60px 120px rgba(0, 0, 0, 0.75);
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Side buttons */
.phone-frame::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 120px;
  width: 3px;
  height: 36px;
  background: #a1a1a6;
  border-radius: 3px 0 0 3px;
  box-shadow: 0 50px 0 #a1a1a6, 0 90px 0 #a1a1a6;
}

.phone-frame::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 160px;
  width: 3px;
  height: 70px;
  background: #a1a1a6;
  border-radius: 0 3px 3px 0;
}

.phone-screen {
  background: #f2f2f7;
  border-radius: 44px;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

/* Dynamic Island notch */
.phone-notch {
  width: 125px;
  height: 35px;
  background: #000;
  border-radius: 20px;
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
}

.notch-cam {
  width: 12px;
  height: 12px;
  background: #111;
  border-radius: 50%;
  border: 1px solid #222;
}

/* iOS Status Bar */
.status-bar {
  background: transparent;
  padding: 16px 28px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  /* Black to remain visible on the light background, matches shape perfectly */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.status-left {
  display: flex;
  align-items: center;
  gap: 4px;
}

.clock-display {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.location-icon {
  margin-top: 1px;
}

.status-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.signal-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 11px;
  margin-bottom: 2px;
}

.signal-bars span {
  background: currentColor;
  border-radius: 1px;
  width: 3px;
}

.network-type {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 1px;
  letter-spacing: -0.2px;
}

.battery-icon {
  display: flex;
  align-items: center;
  position: relative;
  margin-left: 1px;
}

.battery-body {
  width: 23px;
  height: 12px;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 1px;
  position: relative;
  opacity: 0.8;
}

.battery-body::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 4px;
  background: currentColor;
  border-radius: 0 2px 2px 0;
  opacity: 0.8;
}

.battery-fill {
  height: 100%;
  width: 75%;
  background: currentColor;
  border-radius: 2px;
}

/* iOS Assistive Access Home Screen */
.home-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 8px 14px 20px;
  overflow-y: auto;
  background: transparent;
}

/* Assistive Access grid — 2 col, large icons */
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 0 8px;
}

.app-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 28px;
  cursor: pointer;
  padding: 18px 10px 14px;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.12s;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  aspect-ratio: 0.85;
  border: none;
}

.app-btn:active {
  transform: scale(0.96);
  background: #f9f9f9;
}

/* Inner icon */
.app-btn .icon-wrap {
  width: 68%;
  aspect-ratio: 1;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  position: relative;
  margin-bottom: 0;
}

.app-btn .label {
  font-size: 19px;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.3px;
  text-align: center;
  line-height: 1.2;
  margin: 0;
}

.app-btn .icon {
  display: none;
}

/* iOS Phone tabs */
.phone-tabs {
  display: flex;
  gap: 0;
  background: #e9e9eb;
  border-radius: 10px;
  padding: 2px;
  margin-bottom: 16px;
}

.phone-tab {
  flex: 1;
  padding: 8px 4px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  background: none;
  cursor: pointer;
  color: #636366;
  border-radius: 8px;
  transition: all 0.2s;
}

.phone-tab.active {
  background: #fff;
  color: #000;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  font-weight: 700;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* iOS Call history */
.call-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #e5e5ea;
}

.call-icon {
  font-size: 18px;
  width: 36px;
  height: 36px;
  background: #e9e9eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.call-info .call-name {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.call-info .call-meta {
  font-size: 14px;
  color: #8e8e93;
  margin-top: 2px;
}

/* iOS iMessage style */
.chat-messages {
  flex: 1;
  padding: 12px 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #fff;
}

.bubble {
  max-width: 75%;
  padding: 8px 14px;
  border-radius: 18px;
  font-size: 17px;
  line-height: 1.35;
  position: relative;
}

.bubble.in {
  background: #e9e9eb;
  color: #000;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 18px;
  border-bottom-right-radius: 18px;
  border-top-right-radius: 18px;
}

.bubble.out {
  background: #007aff;
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
  border-top-right-radius: 18px;
}

.bubble.in.tail {
  border-bottom-left-radius: 18px;
  margin-bottom: 6px;
}

.bubble.out.tail {
  border-bottom-right-radius: 18px;
  margin-bottom: 6px;
}

.bubble-time {
  font-size: 11px;
  color: #8e8e93;
  margin-top: 2px;
}

/* iOS App Overlays */
.app-overlay {
  position: absolute;
  inset: 0;
  background: #f2f2f7;
  border-radius: 46px;
  display: none;
  flex-direction: column;
  z-index: 50;
  overflow: hidden;
}

.app-overlay.active {
  display: flex;
}

/* iOS Home Indicator */
.home-indicator-area {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 8px;
  z-index: 1000;
  cursor: pointer;
}

.home-indicator {
  width: 134px;
  height: 5px;
  background: #fff;
  mix-blend-mode: difference;
  border-radius: 10px;
  transition: opacity 0.2s;
}

.home-indicator-area:active .home-indicator {
  opacity: 0.5;
}

/* Assistive Access Phone */
.aa-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #fff;
}

.aa-pill-btn {
  background: #f2f2f7;
  border: none;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 17px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  height: 36px;
}

.aa-circle-btn {
  background: #f2f2f7;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #000;
}

.aa-title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.aa-large-title {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  padding: 4px 16px 12px;
  margin: 0;
  background: #fff;
}

.aa-call-list {
  padding: 0 16px;
  overflow-y: auto;
  padding-bottom: 120px;
  flex: 1;
  background: #fff;
}

.aa-call-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e5e5ea;
  gap: 14px;
}

.aa-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
  background: #8e8e93;
}

.aa-avatar.default {
  background: linear-gradient(180deg, #a4b2c6, #7a8ba3);
}

.aa-avatar.purple {
  background: #8e82d1;
}

.aa-call-info {
  flex: 1;
  min-width: 0;
}

.aa-call-name {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

.aa-call-name.missed {
  color: #ff3b30;
}

.aa-call-sub {
  font-size: 15px;
  color: #8e8e93;
  display: flex;
  align-items: center;
  gap: 4px;
}

.aa-call-time {
  font-size: 15px;
  color: #8e8e93;
  text-align: right;
  margin-right: 12px;
  white-space: nowrap;
}

.aa-call-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e8f0fe;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  color: #007aff;
}

.aa-bottom-nav {
  position: absolute;
  bottom: 24px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 50;
}

.aa-nav-pill {
  flex: 1;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  padding: 4px;
  justify-content: space-around;
}

.aa-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  border-radius: 36px;
  cursor: pointer;
  color: #000;
}

.aa-nav-item span {
  font-size: 11px;
  font-weight: 600;
  margin-top: 4px;
}

.aa-nav-item.active {
  background: #e8f0fe;
  color: #007aff;
}

.aa-nav-item svg {
  fill: currentColor;
}

.aa-nav-item .clock-hands {
  stroke: #fff;
}

.aa-nav-item.active .clock-hands {
  stroke: #e8f0fe;
}

.aa-search-btn {
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 50%;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #000;
  flex-shrink: 0;
}

/* Assistive Access Keypad */
.aa-dial-display {
  font-size: 40px;
  font-weight: 400;
  text-align: center;
  min-height: 48px;
  margin-bottom: 24px;
  letter-spacing: 2px;
  color: #000;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0 16px;
}

.aa-keypad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 26px;
  padding: 0 36px;
}

.aa-key-btn {
  background: #f9f9f9;
  border: none;
  border-radius: 50%;
  width: 84px;
  height: 84px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  font-size: 40px;
  font-weight: 300;
  color: #000;
  line-height: 1;
}

.aa-key-btn:active {
  background: #ebebeb;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.aa-key-btn .sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  margin-top: 4px;
  color: #000;
  margin-left: 3px;
}

.aa-key-call {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #00df59;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 223, 89, 0.3);
  cursor: pointer;
  margin-top: 24px;
}

.aa-key-call:active {
  background: #00c74f;
}

/* Assistive Access Messages */
.aa-msg-list {
  padding: 0 16px;
  overflow-y: auto;
  padding-bottom: 120px;
  flex: 1;
  background: #fff;
}

.aa-msg-item {
  display: flex;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #e5e5ea;
  gap: 14px;
  cursor: pointer;
}

.aa-msg-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
  background: #8e8e93;
}

.aa-msg-avatar.default {
  background: linear-gradient(180deg, #a4b2c6, #7a8ba3);
}

.aa-msg-info {
  flex: 1;
  min-width: 0;
}

.aa-msg-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
}

.aa-msg-name {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.aa-msg-time-chevron {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.aa-msg-time {
  font-size: 15px;
  color: #8e8e93;
}

.aa-msg-chevron {
  color: #c7c7cc;
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
  margin-top: -2px;
}

.aa-msg-preview {
  font-size: 15px;
  color: #8e8e93;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.aa-msg-bottom-nav {
  position: absolute;
  bottom: 24px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 50;
}

.aa-msg-search {
  flex: 1;
  height: 56px;
  background: #f2f2f7;
  border-radius: 28px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
}

.aa-msg-search input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 17px;
  outline: none;
  color: #000;
  width: 100%;
}

.aa-msg-search input::placeholder {
  color: #8e8e93;
}

.aa-msg-compose {
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e5e5ea;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #000;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

/* Mail App */
.mail-overlay {
  background: #f2f2f7;
}

.mail-header {
  background: rgba(249, 249, 249, 0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #c6c6c8;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
}

.mail-row {
  display: flex;
  align-items: flex-start;
  padding: 12px 16px;
  background: #fff;
  border-bottom: 1px solid #e5e5ea;
  cursor: pointer;
  gap: 12px;
  position: relative;
}

.mail-row:active {
  background: #e5e5ea;
}

.mail-unread-dot {
  width: 10px;
  height: 10px;
  background: #007aff;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.mail-sender {
  font-size: 17px;
  font-weight: 600;
  color: #000;
}

.mail-subject {
  font-size: 15px;
  font-weight: 400;
  color: #000;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mail-preview {
  font-size: 14px;
  color: #8e8e93;
  margin-top: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mail-time {
  font-size: 13px;
  color: #8e8e93;
  flex-shrink: 0;
  margin-left: auto;
  white-space: nowrap;
}

.mail-detail-overlay {
  background: #fff;
}

.mail-compose-btn {
  position: absolute;
  bottom: 50px;
  right: 20px;
  width: 52px;
  height: 52px;
  background: #007aff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 122, 255, 0.35);
  z-index: 20;
}

/* iOS Navigation Bar */
.overlay-header {
  padding: 14px 16px 12px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #c6c6c8;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(249, 249, 249, 0.94);
  backdrop-filter: blur(20px);
  gap: 10px;
}

.back-btn {
  background: none;
  color: #007aff;
  border: none;
  border-radius: 0;
  padding: 4px 0;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}

.back-btn:active {
  opacity: 0.5;
}

.overlay-title {
  font-size: 17px;
  font-weight: 700;
  color: #000;
  flex: 1;
  text-align: center;
  margin-right: 60px;
}

.overlay-body {
  flex: 1;
  padding: 0 0 16px;
  overflow-y: auto;
}

/* iOS Phone keypad */
.ios-dial-display {
  font-size: 34px;
  font-weight: 300;
  color: #000;
  text-align: center;
  letter-spacing: 4px;
  min-height: 54px;
  padding: 8px 16px 4px;
}

.keypad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 8px 24px;
}

.key-btn {
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 78px;
  height: 78px;
  margin: 0 auto;
  font-size: 28px;
  font-weight: 300;
  color: #000;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
}

.key-btn .sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #8e8e93;
}

.key-btn:active {
  background: #d1d1d6;
}

.key-btn.call {
  background: #34c759;
  color: #fff;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(52, 199, 89, 0.4);
}

.key-btn.del {
  background: #e9e9eb;
  font-size: 22px;
}

/* iOS Messages list */
.msg-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  background: #fff;
  cursor: pointer;
  border-bottom: 1px solid #e5e5ea;
}

.msg-contact:active {
  background: #e5e5ea;
}

.msg-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.msg-info {
  flex: 1;
  min-width: 0;
}

.msg-info .name {
  font-size: 17px;
  font-weight: 600;
  color: #000;
}

.msg-info .preview {
  font-size: 15px;
  color: #8e8e93;
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.msg-chevron {
  color: #c7c7cc;
  font-size: 18px;
}

/* iOS Photos grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.photo-card {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  background: #e5e5ea;
}

/* iOS Reminders-style Meds */
.ios-section-header {
  font-size: 13px;
  font-weight: 600;
  color: #8e8e93;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 16px 6px;
}

.ios-list {
  background: #fff;
  border-radius: 12px;
  margin: 0 16px 16px;
  overflow: hidden;
}

.med-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #fff;
  cursor: pointer;
  border-bottom: 1px solid #e5e5ea;
}

.med-item:last-child {
  border-bottom: none;
}

.med-item:active {
  background: #e5e5ea;
}

.med-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #ff9500;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.2s;
  color: transparent;
}

.med-check.done {
  background: #34c759;
  border-color: #34c759;
  color: #fff;
}

.med-info .med-name {
  font-size: 17px;
  font-weight: 500;
  color: #000;
}

.med-info .med-time {
  font-size: 14px;
  color: #8e8e93;
  margin-top: 2px;
}

/* iOS News style */
.news-featured {
  margin: 0 16px 16px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.news-featured-img {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}

.news-featured-body {
  padding: 14px;
}

.news-item {
  padding: 14px 16px;
  background: #fff;
  border-bottom: 1px solid #e5e5ea;
  display: flex;
  gap: 12px;
  align-items: center;
}

.news-item:active {
  background: #e5e5ea;
}

.news-emoji {
  font-size: 32px;
  flex-shrink: 0;
}

.news-item .news-tag {
  font-size: 12px;
  font-weight: 700;
  color: #ff3b30;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.news-item .news-title {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  line-height: 1.3;
}

.news-item .news-time {
  font-size: 12px;
  color: #8e8e93;
  margin-top: 3px;
}

@media (max-width: 420px) {
  .phone-frame {
    width: 100%;
    border-radius: 0;
    min-height: 100vh;
  }

  .phone-notch {
    display: none;
  }

  .phone-screen {
    border-radius: 0;
  }

  .app-overlay {
    border-radius: 0;
  }
}
