#app { max-width: 480px; margin: 0 auto; }
.bottom-nav {
  position: fixed; bottom: calc(var(--contact-footer-h) + var(--safe-area-bottom));
  left: 0; right: 0; display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--card-bg); border-top: 1px solid var(--border); z-index: 80;
  min-height: var(--bottom-nav-h); box-shadow: 0 -2px 8px rgba(0,0,0,.04);
}
.bottom-nav button { min-height: 44px; font-size: .75rem; color: var(--text-light); padding: 4px 2px; }
.bottom-nav button.active { color: var(--primary); font-weight: 700; }
.contact-footer {
  position: fixed; left: 0; right: 0; bottom: 0; background: #fff;
  border-top: 1px solid #e2e8f0; padding: 8px 10px calc(8px + var(--safe-area-bottom));
  z-index: 100; min-height: var(--contact-footer-h);
}
.contact-footer__btns { display: flex; gap: 6px; justify-content: center; max-width: 320px; margin: 0 auto; }
.contact-footer__cta, .contact-footer__btn {
  flex: 1; max-width: 96px; text-align: center; padding: 6px; border-radius: 8px; font-size: 12px;
}
.contact-footer__cta { background: #c41e1e !important; color: #fff; font-weight: 600; }
.contact-footer__btn { border: 1px solid #cbd5e1; background: #fff; }
.contact-footer__brand { text-align: center; font-size: 10px; color: #94a3b8; margin-top: 3px; }
.fab-create {
  position: fixed; right: 16px; bottom: calc(var(--bottom-chrome-h) + 20px + var(--safe-area-bottom));
  width: 56px; height: 56px; border-radius: 50%; background: var(--cta); color: #fff;
  font-size: 1.5rem; box-shadow: 0 4px 16px rgba(37,99,235,.4); z-index: 70;
}
@media (min-width: 768px) {
  #app { max-width: 640px; }
  .dragon-cards { grid-template-columns: repeat(2, 1fr) !important; }
}
