/* Mobile notice — matches dashboard dark blue / cyan theme */

.dashboard-root {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

.mobile-notice {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(34, 211, 238, 0.08) 0%, transparent 70%),
    linear-gradient(180deg, #0f172a 0%, #0a0e17 45%, #060a12 100%);
  color: #f1f5f9;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.is-mobile .mobile-notice {
  display: flex;
}

.is-mobile .dashboard-root {
  display: none !important;
}

.is-mobile body {
  overflow: hidden;
}

.mobile-notice-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 360px;
  width: 100%;
}

.mobile-notice-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.mobile-notice-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.6);
  animation: mobile-pulse 2s ease-in-out infinite;
}

@keyframes mobile-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.mobile-notice-title {
  margin: 0;
  font-size: clamp(18px, 5vw, 22px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #f8fafc;
  line-height: 1.4;
}

.mobile-notice-text {
  margin: 0;
  font-size: clamp(15px, 4.2vw, 17px);
  line-height: 1.75;
  color: #94a3b8;
  letter-spacing: 0.02em;
}

.mobile-notice-icon {
  margin-top: 8px;
  width: clamp(120px, 34vw, 160px);
  height: clamp(120px, 34vw, 160px);
}

.mobile-notice-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(34, 211, 238, 0.25);
  box-shadow:
    0 0 32px rgba(34, 211, 238, 0.3),
    0 0 64px rgba(34, 211, 238, 0.12);
  background: #000;
}

.mobile-notice-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #334155, transparent);
  border-radius: 1px;
}

.mobile-notice-hint {
  margin: 0;
  font-size: 12px;
  color: #475569;
  letter-spacing: 0.03em;
}

.mobile-notice-url {
  margin: -16px 0 0;
  font-size: 13px;
  color: #94a3b8;
  letter-spacing: 0.03em;
}

.mobile-notice-link {
  color: #22d3ee;
  text-decoration: none;
  font-weight: 600;
}

.mobile-notice-link:hover {
  text-decoration: underline;
}
