:root {
  --bg: #000000;
  --card: rgba(0, 0, 0, 0.94);
  --line: rgba(158, 201, 255, 0.16);
  --text: #eff6ff;
  --muted: #99abc7;
  --muted-2: #7e90ac;
  --blue: #69b7ff;
  --blue-strong: #3a86ff;
  --cyan: #78ffe1;
  --green: #4ade80;
  --red: #f87171;
  --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.42);
  --radius-xl: 32px;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  position: relative;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(60, 120, 255, 0.20), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(129, 92, 255, 0.18), transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(40, 110, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #020202 0%, #000000 100%);
  overflow-x: hidden;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
}
.touch-heart-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 6;
  background: transparent !important;
  mix-blend-mode: screen;
}

.ambient-3d-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  perspective: 1400px;
}
.bg-orb,
.bg-beam {
  position: absolute;
  display: block;
  pointer-events: none;
}
.bg-orb {
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.92;
  transform-style: preserve-3d;
}
.orb-a {
  width: 620px;
  height: 620px;
  left: -140px;
  top: 40px;
  background: radial-gradient(circle, rgba(76, 201, 255, 0.34) 0%, rgba(76, 201, 255, 0.14) 36%, transparent 76%);
  animation: floatOrbA 10s ease-in-out infinite;
}
.orb-b {
  width: 520px;
  height: 520px;
  right: -120px;
  top: 60px;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.30) 0%, rgba(124, 92, 255, 0.12) 38%, transparent 78%);
  animation: floatOrbB 12s ease-in-out infinite;
}
.orb-c {
  width: 820px;
  height: 820px;
  left: 26%;
  bottom: -320px;
  background: radial-gradient(circle, rgba(18, 118, 255, 0.24) 0%, rgba(18, 118, 255, 0.08) 38%, transparent 80%);
  animation: floatOrbC 14s ease-in-out infinite;
}
.bg-beam {
  width: 64vw;
  height: 160px;
  border-radius: 999px;
  filter: blur(36px);
  opacity: 0.38;
}
.beam-a {
  left: -12vw;
  top: 22vh;
  transform: rotate(-14deg);
  background: linear-gradient(90deg, transparent, rgba(76, 201, 255, 0.82), transparent);
  animation: beamShiftA 10s ease-in-out infinite;
}
.beam-b {
  right: -14vw;
  bottom: 12vh;
  transform: rotate(12deg);
  background: linear-gradient(90deg, transparent, rgba(124, 92, 255, 0.72), transparent);
  animation: beamShiftB 12s ease-in-out infinite;
}

.page-shell {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 28px 18px 46px;
}

.card {
  background: rgba(0, 0, 0, 0.94);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: var(--shadow-xl);
}

.top-brand-shell { margin-bottom: 24px; }
.top-brand-bar {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  padding: 22px 24px;
  border-radius: 28px;
  background: #000 !important;
  overflow: visible;
}
.top-brand-bar::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  background: linear-gradient(120deg, #4de2ff, #63ffb8, #d8ff3d, #ffc24a, #ff7d4a, #ff57c8, #4b9cff, #4de2ff);
  background-size: 300% 300%;
  animation: borderFlow 5.5s linear infinite;
  filter: drop-shadow(0 0 10px rgba(77,226,255,0.2)) drop-shadow(0 0 18px rgba(255,87,200,0.16));
  z-index: 0;
}
.top-brand-bar::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 24px;
  background: #000;
  z-index: 1;
}
.top-brand-bar > * { position: relative; z-index: 2; }
.top-brand-main, .top-brand-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.top-brand-icon {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, rgba(66, 217, 255, 0.18), rgba(0, 0, 0, 0.96) 68%);
  border: 1px solid rgba(90, 170, 255, 0.2);
  box-shadow: 0 0 0 1px rgba(77, 226, 255, 0.08), 0 10px 22px rgba(58,134,255,0.16), inset 0 0 28px rgba(77, 226, 255, 0.08);
  overflow: hidden;
}
.heart-logo-wrap {
  position: relative;
}
.heart-logo-wrap::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 18px;
  background: radial-gradient(circle, rgba(255,255,255,0.05), transparent 72%);
  pointer-events: none;
}
.heart-logo-canvas {
  position: absolute;
  inset: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  display: block;
}
.mini-logo {
  width: 58px;
  height: 58px;
  display: block;
  animation: spinRing 7s linear infinite;
  filter: drop-shadow(0 0 8px rgba(77, 226, 255, 0.35));
}
.top-brand-title {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.brand-main {
  background: linear-gradient(90deg, #f8fbff 0%, #8ef3ff 32%, #67ffbd 62%, #4b9cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand-dotstore {
  background: linear-gradient(90deg, #4de2ff 0%, #67ffbd 25%, #ff57c8 65%, #4b9cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.theme-light .brand-main,
body.theme-light .brand-dotstore {
  background: linear-gradient(90deg, #ff5d99 0%, #ff89b5 40%, #c9507d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.top-brand-subtitle { margin-top: 4px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.top-brand-center { display: grid; place-items: center; }
.welcome-script-wrap {
  width: min(100%, 360px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.welcome-svg { display: block; width: 100%; max-width: 360px; height: auto; }
.welcome-underline {
  width: 76%;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #42d9ff, #a95cff, #ff5db1, #ff9b3d, #ffe14d);
  transform-origin: left center;
  animation: lineGrow 5.6s cubic-bezier(0.65, 0.02, 0.2, 1) infinite;
  box-shadow: 0 0 18px rgba(82, 182, 255, 0.22);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.eyebrow.muted { color: #dbeafe; }
.subtext {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero-actions-stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.soft-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  color: #dbeafe;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.feature-pill {
  min-width: min(100%, 320px);
  justify-content: flex-start;
  gap: 14px;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(28, 28, 30, 0.96), rgba(10, 10, 12, 0.99));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 10px 20px rgba(0,0,0,0.22);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.2;
}
.feature-icon {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  font-size: 28px;
  flex: 0 0 auto;
}
.feature-icon-svg {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  color: #eaf8ff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 6px 16px rgba(0,0,0,0.22);
}
.feature-icon-svg svg {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 0 4px rgba(105,183,255,0.18));
}

.mail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
  gap: 28px;
  padding: 30px;
  margin-bottom: 26px;
  background: #000000;
}
.mail-hero-copy h1 {
  margin: 16px 0 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.mailbox-card {
  padding: 28px;
  background: #000000;
  border: 1px solid rgba(255,255,255,0.07);
}
.mailbox-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.mailbox-card h2 {
  margin: 8px 0 0;
  font-size: clamp(20px, 3vw, 31px);
  line-height: 1.2;
  word-break: break-word;
}
.ttl-badge, .status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #dbeafe;
  font-weight: 700;
}
.mailbox-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
button {
  font: inherit;
  cursor: pointer;
}
.primary-btn, .ghost-btn {
  height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  border: 0;
  font-weight: 700;
}
.primary-btn {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-strong));
  box-shadow: 0 14px 30px rgba(58,134,255,0.34);
}
.ghost-btn {
  color: #dbeafe;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.small-btn { height: 40px; padding: 0 14px; }
.mailbox-note {
  margin-top: 16px;
  color: var(--muted);
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
}
.app-message {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
}
.app-message.success {
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  color: #bbf7d0;
}
.app-message.error {
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.25);
  color: #fecaca;
}
.hidden { display: none; }

.tempmail-layout {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 22px;
}
.panel {
  padding: 24px;
  position: relative;
  overflow: hidden;
  background: #000000;
}
.edge-light-panel::after {
  content: '';
  position: absolute;
  top: 0;
  left: -30%;
  width: 36%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.10) 18%, rgba(255,255,255,0.92) 50%, rgba(255,255,255,0.10) 82%, transparent 100%);
  box-shadow: 0 0 8px rgba(255,255,255,0.36), 0 0 18px rgba(255,255,255,0.14);
  animation: edgeLightSweep 6.2s cubic-bezier(0.4, 0.02, 0.2, 1) infinite;
  z-index: 3;
  pointer-events: none;
}
.glow-panel::before {
  content: '';
  position: absolute;
  inset: -46% auto auto -22%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(105,183,255,0.20), transparent 72%);
  pointer-events: none;
}
.glow-panel::after {
  content: '';
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120,255,225,0.10), transparent 74%);
  pointer-events: none;
}
.panel-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.panel-title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #dff5ff;
}
.panel-subtitle {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.inbox-toolbar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}
.mini-stat {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.07);
}
.mini-stat-label {
  display: block;
  color: var(--muted-2);
  font-size: 12px;
  margin-bottom: 8px;
}
.mail-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}
.mail-item {
  width: 100%;
  text-align: left;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, rgba(18,18,18,0.96), rgba(8,8,8,0.98));
  color: white;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.mail-item:hover {
  transform: translateY(-2px);
  border-color: rgba(105,183,255,0.28);
  background: linear-gradient(180deg, rgba(24,24,24,0.98), rgba(10,10,10,1));
}
.mail-item.active {
  border-color: rgba(105,183,255,0.42);
  box-shadow: inset 0 0 0 1px rgba(105,183,255,0.18), 0 10px 24px rgba(58,134,255,0.08);
}
.mail-item-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.mail-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.reader-meta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}
.reader-meta > div {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
}
.reader-meta span {
  display: block;
  color: var(--muted-2);
  font-size: 12px;
  margin-bottom: 8px;
}
.reader-meta strong {
  display: block;
  line-height: 1.5;
}
.reader-frame {
  position: relative;
  z-index: 1;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(8,8,8,0.98);
}
.reader-frame-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.04);
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.dot.red { background: #fb7185; }
.dot.yellow { background: #fbbf24; }
.dot.green { background: #4ade80; }
.reader-frame-label {
  margin-left: 4px;
  color: var(--muted);
  font-size: 13px;
}
.mail-body {
  min-height: 320px;
  padding: 20px;
  line-height: 1.75;
  white-space: pre-wrap;
}
.empty-body { color: var(--muted); }

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
  padding: 22px;
}
.soft-section {
  background: #000000;
}
.info-card {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(18,18,18,0.96), rgba(8,8,8,0.98));
  border: 1px solid rgba(255,255,255,0.05);
}
.bullet-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

@keyframes lineGrow { 0%,24% { transform: scaleX(0.02); opacity: 0.06; } 36% { transform: scaleX(0.18); opacity: 0.26; } 56% { transform: scaleX(0.72); opacity: 0.9; } 70%,84% { transform: scaleX(1); opacity: 1; } 100% { transform: scaleX(1); opacity: 0.96; } }
@keyframes borderFlow { 0% { background-position: 0% 50%; } 100% { background-position: 300% 50%; } }
@keyframes spinRing { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes edgeLightSweep {
  0% { left: -46%; opacity: 0; }
  8% { opacity: 1; }
  50% { left: 26%; opacity: 1; }
  92% { opacity: 0.9; }
  100% { left: 108%; opacity: 0; }
}
@keyframes floatOrbA { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(34px,-24px,90px) scale(1.10); } }
@keyframes floatOrbB { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(-32px,22px,80px) scale(1.08); } }
@keyframes floatOrbC { 0%,100% { transform: translate3d(0,0,0) scale(1); opacity: 0.76; } 50% { transform: translate3d(20px,-28px,120px) scale(1.12); opacity: 0.98; } }
@keyframes beamShiftA { 0%,100% { transform: rotate(-14deg) translateX(0); opacity: 0.20; } 50% { transform: rotate(-10deg) translateX(50px); opacity: 0.42; } }
@keyframes beamShiftB { 0%,100% { transform: rotate(12deg) translateX(0); opacity: 0.18; } 50% { transform: rotate(16deg) translateX(-44px); opacity: 0.38; } }

@media (max-width: 1120px) {
  .mail-hero, .tempmail-layout, .info-strip { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .page-shell { padding: 14px 10px 24px; }
  .top-brand-bar {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    padding: 16px 16px;
    gap: 12px;
    border-radius: 22px;
  }
  .top-brand-icon { width: 56px; height: 56px; border-radius: 16px; }
  .heart-logo-canvas { inset: 6px; width: calc(100% - 12px); height: calc(100% - 12px); }
  .top-brand-title { font-size: 18px; white-space: nowrap; gap: 3px; }
  .top-brand-subtitle { font-size: 11px; line-height: 1.35; }
  .welcome-script-wrap { width: min(100%, 220px); gap: 6px; }
  .welcome-svg { max-width: 220px; }
  .welcome-underline { width: 68%; height: 3px; }
  .mail-hero, .mailbox-card, .panel, .info-strip { padding: 18px; border-radius: 24px; }
  .mailbox-card-top, .panel-head { flex-direction: column; align-items: flex-start; }
  .reader-meta { grid-template-columns: 1fr; }
}

.connect-section {
  margin-top: 22px;
  padding: 22px;
}
.connect-head {
  margin-bottom: 16px;
}
.connect-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.connect-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(18,18,18,0.96), rgba(8,8,8,0.98));
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.connect-card:hover {
  transform: translateY(-2px);
  border-color: rgba(105,183,255,0.28);
  box-shadow: 0 16px 30px rgba(0,0,0,0.24);
}
.connect-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  font-size: 26px;
}
.connect-icon-brand {
  color: white;
}
.connect-icon-brand svg {
  width: 28px;
  height: 28px;
  display: block;
}
.connect-icon-facebook {
  background: linear-gradient(180deg, #1877f2, #0f5fcc);
  box-shadow: 0 10px 20px rgba(24, 119, 242, 0.28);
}
.connect-icon-telegram {
  background: linear-gradient(180deg, #30a3e6, #178fd4);
  box-shadow: 0 10px 20px rgba(48, 163, 230, 0.28);
}
.connect-card strong {
  display: block;
  margin-bottom: 4px;
}
.connect-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  word-break: break-word;
}
.site-footer {
  margin-top: 18px;
  padding: 10px 6px 2px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.02em;
}

@media (max-width: 520px) {
  .top-brand-bar { grid-template-columns: 1fr; gap: 10px; padding: 14px 12px; }
  .top-brand-title { font-size: 16px; white-space: normal; }
  .top-brand-subtitle { font-size: 10.5px; }
  .welcome-script-wrap { width: min(100%, 190px); }
  .welcome-svg { max-width: 190px; }
  .mailbox-actions { flex-direction: column; }
  .primary-btn, .ghost-btn { width: 100%; }
  .connect-grid { grid-template-columns: 1fr; }
}
px; }
  .top-brand-title { font-size: 16px; white-space: normal; }
  .top-brand-subtitle { font-size: 10.5px; }
  .welcome-script-wrap { width: min(100%, 190px); }
  .welcome-svg { max-width: 190px; }
  .mailbox-actions { flex-direction: column; }
  .primary-btn, .ghost-btn { width: 100%; }
}
e-script-wrap { width: min(100%, 190px); }
  .welcome-svg { max-width: 190px; }
  .mailbox-actions { flex-direction: column; }
  .primary-btn, .ghost-btn { width: 100%; }
}
}
  .primary-btn, .ghost-btn { width: 100%; }
}
