/* 📱 iPhone 15 Pro - Minimale Optimierungen */

:root {
  --safe-bottom: env(safe-area-inset-bottom, 34px);
}

/* Schwarzer Hintergrund überall */
html, body {
  background: #0D0D0D !important;
  margin: 0;
  padding: 0;
}

/* Bottom Tab Bar - Safe Area */
nav:last-of-type,
[class*="fixed"][class*="bottom"],
.bottom-nav {
  padding-bottom: var(--safe-bottom) !important;
}

/* iOS Safari Fix */
@supports (-webkit-touch-callout: none) {
  body {
    min-height: -webkit-fill-available;
  }
}
