/* ==========================================================================
   STYLE: REFERENSI 2 (iOS GLASS & PILL CONTROLS)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --bg-page: #F1F5F9;
  --text-main: #0F172A;
  --text-muted: #64748B;
  --accent-green: #10B981;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-main);
  min-height: 100dvh;
}

/* Glass Card */
.glass-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04), 0 2px 6px -1px rgba(15, 23, 42, 0.02);
}

/* Form Controls */
.app-field {
  width: 100%;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 13px 16px;
  font-size: 13px;
  font-family: var(--font-sans);
  color: #0F172A;
  transition: all 0.2s ease;
  outline: none;
}

.app-field:focus {
  background: #FFFFFF;
  border-color: #10B981;
  box-shadow: 0 0 0 3.5px rgba(16, 185, 129, 0.15);
}

/* Camera Frame */
.camera-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #0B132B;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Touch Button Effect */
.btn-touch {
  transition: transform 0.12s ease, opacity 0.12s ease;
}
.btn-touch:active {
  transform: scale(0.97);
}

/* Custom Scrollbar */
.custom-scroll::-webkit-scrollbar {
  width: 4px;
}
.custom-scroll::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 8px;
}
