/* Core styles for body and layout */
@import 'ui-components.css';
@import 'particles.css';

:root {
  --bg-gradient: linear-gradient(135deg, #151528 0%, #0d0d1a 100%);
  --tint-color: #6366f1;
  --tint-light: #818cf8;
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --panel-bg: rgba(255, 255, 255, 0.06);
  --panel-border: rgba(255, 255, 255, 0.1);
  --success: #10b981;
  --error: #ef4444;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

body {
  margin: 0;
  padding: 0;
  width: 430px;
  height: 745px;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", sans-serif;
  background: var(--bg-gradient);
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Outer layout wrapper mimicking iPhone app frame perfectly */
#app-container {
  width: 100%;
  height: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
