:root {
  --primary-green: #20c997;
  --primary-green-light: #38d9a9;
  --secondary-blue: #3b82f6;
  --accent-orange: #f59f00;
  --accent-red: #ef4444;
  --bg-light: #f7f9fc;
  --bg-dark: #111827;
  --surface-white: #ffffff;
  --surface-gray: #f3f6fb;
  --surface-card: rgba(255, 255, 255, 0.82);
  --text-primary: #172033;
  --text-secondary: #687083;
  --text-tertiary: #9aa3b2;
  --border-color: rgba(31, 41, 55, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.74);
  --glass-bg-dark: rgba(17, 24, 39, 0.72);
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 14px 36px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 28px 80px rgba(15, 23, 42, 0.22);
}

body {
  background:
    radial-gradient(circle at 18% 18%, rgba(32, 201, 151, 0.18), transparent 32%),
    radial-gradient(circle at 82% 12%, rgba(59, 130, 246, 0.14), transparent 30%),
    linear-gradient(135deg, #eef5f2 0%, #f7f9fc 42%, #eef2f7 100%);
}

.phone-wrapper[data-v-1df0705b] {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 24% 18%, rgba(32, 201, 151, 0.22), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.18), transparent 30%),
    linear-gradient(145deg, #eff6f3 0%, #f8fafc 46%, #edf2f7 100%) !important;
  padding: clamp(12px, 3vh, 28px);
}

.phone-frame[data-v-1df0705b] {
  width: min(390px, calc(100vw - 28px)) !important;
  height: min(844px, calc(100vh - 28px)) !important;
  border-radius: 44px !important;
  background: #f8fafc !important;
  box-shadow:
    0 0 0 8px #10141f,
    0 0 0 10px rgba(255, 255, 255, 0.22),
    0 28px 70px rgba(15, 23, 42, 0.32) !important;
}

.status-bar[data-v-1df0705b] {
  background: rgba(248, 250, 252, 0.86) !important;
  backdrop-filter: blur(18px) saturate(160%);
}

.island[data-v-1df0705b] {
  width: 92px !important;
  background: #111827 !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone-content[data-v-1df0705b] {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(248, 250, 252, 0.92)),
    #f8fafc;
}

.card,
[class*="card"],
[class*="panel"],
[class*="item"],
[class*="cell"] {
  border-color: var(--border-color);
}

button,
.btn,
[role="button"] {
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, opacity 0.16s ease;
}

button:hover,
.btn:hover,
[role="button"]:hover {
  filter: saturate(1.04);
}

input,
textarea,
select {
  caret-color: var(--primary-green);
}

.modern-app-ready .phone-frame[data-v-1df0705b] {
  animation: modernPhoneIn 0.45s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.modern-app-ready .toast[data-v-36078d5e] {
  border-radius: 16px !important;
  background: rgba(17, 24, 39, 0.82) !important;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.24) !important;
}

.modern-empty-state {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 28px;
  text-align: center;
  color: var(--text-secondary);
}

.modern-empty-state strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-size: 17px;
}

.modern-focus-ring :focus-visible {
  outline: 2px solid rgba(32, 201, 151, 0.6);
  outline-offset: 2px;
}

@keyframes modernPhoneIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 520px) {
  .phone-wrapper[data-v-1df0705b] {
    padding: 0;
  }

  .phone-frame[data-v-1df0705b] {
    width: 100vw !important;
    height: 100vh !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .dynamic-island[data-v-1df0705b],
  .home-indicator[data-v-1df0705b] {
    display: none !important;
  }
}
