@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-deep: #070b14;
  --bg-primary: #0d1117;
  --bg-secondary: #151d2e;
  --bg-card: #1a2235;
  --bg-card-hover: #202b40;
  --border: rgba(255,255,255,0.08);
  --primary: #7c6af7;
  --primary-hover: #6358d4;
  --primary-glow: rgba(124,106,247,0.3);
  --accent: #00c9ff;
  --danger: #f85149;
  --success: #3fb950;
  --warning: #d29922;
  --text-1: #e6edf3;
  --text-2: #8b949e;
  --text-3: #484f58;
  --shadow: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --r: 12px;
  --r-sm: 8px;
  --r-lg: 16px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-1);
  line-height: 1.6;
  min-height: 100vh;
}

/* ---- Layout ---- */
.app-layout { display: flex; min-height: 100vh; }
.sidebar {
  width: 240px; flex-shrink: 0;
  background: var(--bg-deep);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; height: 100vh;
  z-index: 100;
}
.main-content { margin-left: 240px; flex: 1; min-height: 100vh; }

.sidebar-logo {
  padding: 24px 20px;
  border-bottom: 1px solid var(--border);
}
.sidebar-logo .logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 10px;
}
.sidebar-logo h1 { font-size: 16px; font-weight: 700; color: var(--text-1); }
.sidebar-logo span { font-size: 11px; color: var(--text-2); }

.sidebar-nav { flex: 1; padding: 16px 12px; }
.nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: var(--r-sm);
  color: var(--text-2); text-decoration: none;
  font-size: 14px; font-weight: 500;
  transition: all 0.2s; cursor: pointer; border: none; background: none; width: 100%;
}
.nav-item:hover { background: var(--bg-card); color: var(--text-1); }
.nav-item.active { background: rgba(124,106,247,0.15); color: var(--primary); }
.nav-item .icon { font-size: 18px; width: 24px; text-align: center; }

.sidebar-footer {
  padding: 16px 12px;
  border-top: 1px solid var(--border);
}
.user-info {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: var(--r-sm);
}
.user-avatar {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.user-name { font-size: 13px; font-weight: 600; }
.user-role { font-size: 11px; color: var(--text-2); }

.page-header {
  padding: 32px 32px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.page-title { font-size: 24px; font-weight: 700; }
.page-subtitle { font-size: 14px; color: var(--text-2); margin-top: 4px; }
.page-body { padding: 24px 32px; }

/* ---- Cards ---- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: rgba(255,255,255,0.14); }
.card-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.card-title { font-size: 15px; font-weight: 600; }
.card-body { padding: 24px; }

.rally-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.rally-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.rally-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.rally-card:hover { border-color: rgba(124,106,247,0.4); transform: translateY(-2px); box-shadow: var(--shadow); }
.rally-card-name { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.rally-card-desc { font-size: 13px; color: var(--text-2); margin-bottom: 16px; min-height: 20px; }
.rally-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.rally-card-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ---- Badges ---- */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 600; padding: 3px 10px;
  border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px;
}
.badge-active { background: rgba(63,185,80,0.15); color: var(--success); }
.badge-inactive { background: rgba(248,81,73,0.15); color: var(--danger); }
.badge-count { background: rgba(124,106,247,0.15); color: var(--primary); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 9px 18px; border-radius: var(--r-sm);
  font-size: 13px; font-weight: 600; font-family: inherit;
  border: none; cursor: pointer; transition: all 0.2s;
  text-decoration: none; white-space: nowrap;
}
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #5b4fd4);
  color: #fff;
  box-shadow: 0 4px 16px var(--primary-glow);
}
.btn-primary:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 6px 20px var(--primary-glow); }
.btn-secondary {
  background: var(--bg-secondary);
  color: var(--text-1);
  border: 1px solid var(--border);
}
.btn-secondary:hover:not(:disabled) { background: var(--bg-card-hover); }
.btn-danger { background: rgba(248,81,73,0.15); color: var(--danger); border: 1px solid rgba(248,81,73,0.3); }
.btn-danger:hover:not(:disabled) { background: rgba(248,81,73,0.25); }
.btn-sm { padding: 6px 12px; font-size: 12px; }
.btn-icon { padding: 8px; width: 36px; height: 36px; }
.btn-full { width: 100%; }

/* ---- Forms ---- */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text-2); margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 10px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text-1); font-family: inherit; font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}
.form-textarea { min-height: 80px; resize: vertical; }
.form-select { -webkit-appearance: none; appearance: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---- Image Upload ---- */
.upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--r-sm);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.upload-area:hover, .upload-area.drag-over {
  border-color: var(--primary);
  background: rgba(124,106,247,0.05);
}
.upload-preview {
  width: 100%; max-height: 160px; object-fit: cover;
  border-radius: var(--r-sm); display: none;
}
.upload-text { color: var(--text-2); font-size: 13px; }
.upload-icon { font-size: 32px; margin-bottom: 8px; }

/* ---- Modal ---- */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  width: 100%; max-width: 540px;
  box-shadow: var(--shadow);
  transform: translateY(-10px) scale(0.98);
  transition: transform 0.2s;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.modal-title { font-size: 16px; font-weight: 700; }
.modal-body { padding: 24px; }
.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex; gap: 10px; justify-content: flex-end;
}

/* ---- Stamp List ---- */
.stamp-list { display: flex; flex-direction: column; gap: 10px; }
.stamp-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 12px; align-items: center;
  transition: border-color 0.2s;
}
.stamp-item:hover { border-color: rgba(124,106,247,0.4); }
.stamp-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.stamp-info .stamp-comment { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.stamp-info .stamp-coords { font-size: 11px; color: var(--text-2); font-family: monospace; }
.stamp-thumbs { display: flex; gap: 6px; }
.stamp-thumb { width: 36px; height: 36px; object-fit: cover; border-radius: 6px; border: 1px solid var(--border); }

/* ---- Alert / Toast ---- */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; }
.toast {
  padding: 12px 18px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow); min-width: 260px;
  animation: slideIn 0.3s ease;
}
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.toast-success { background: rgba(63,185,80,0.15); border: 1px solid rgba(63,185,80,0.3); color: var(--success); }
.toast-error { background: rgba(248,81,73,0.15); border: 1px solid rgba(248,81,73,0.3); color: var(--danger); }

.error-msg { color: var(--danger); font-size: 13px; padding: 10px 14px; border-radius: var(--r-sm); background: rgba(248,81,73,0.1); border: 1px solid rgba(248,81,73,0.3); margin-top: 4px; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--text-2); }
.empty-state .empty-icon { font-size: 48px; margin-bottom: 16px; }
.empty-state h3 { font-size: 18px; color: var(--text-1); margin-bottom: 8px; }

/* ---- Auth Page ---- */
.auth-body { display: flex; align-items: center; justify-content: center; min-height: 100vh; background: var(--bg-deep); }
.auth-body::before {
  content: '';
  position: fixed; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(124,106,247,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(0,201,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.auth-container { width: 100%; max-width: 420px; padding: 20px; position: relative; z-index: 1; }
.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-logo .logo-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; margin: 0 auto 16px;
}
.auth-logo h1 { font-size: 24px; font-weight: 800; margin-bottom: 4px; }
.auth-logo p { color: var(--text-2); font-size: 13px; }
.auth-footer { text-align: center; margin-top: 20px; }
.auth-footer a { color: var(--primary); font-size: 13px; text-decoration: none; }
.auth-footer a:hover { text-decoration: underline; }

/* ---- Spinner ---- */
.spinner {
  width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff; border-radius: 50%;
  animation: spin 0.7s linear infinite; display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Map Page ---- */
.map-layout { display: flex; height: 100vh; }
.map-sidebar {
  width: 360px; flex-shrink: 0;
  background: var(--bg-secondary);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.map-sidebar-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-deep);
}
.map-sidebar-header h2 { font-size: 15px; font-weight: 700; }
.map-sidebar-body { flex: 1; overflow-y: auto; padding: 16px; }
.map-container { flex: 1; position: relative; }
#map { width: 100%; height: 100%; }

/* Leaflet custom markers */
.stamp-marker {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
}
.stamp-marker span { transform: rotate(45deg); font-size: 12px; font-weight: 700; color: #fff; }
.current-loc-marker {
  width: 20px; height: 20px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 6px rgba(0,201,255,0.25), 0 4px 12px rgba(0,0,0,0.4);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 0 0 4px rgba(0,201,255,0.25),0 4px 12px rgba(0,0,0,.4)}50%{box-shadow:0 0 0 10px rgba(0,201,255,0.1),0 4px 12px rgba(0,0,0,.4)} }

.stamp-list-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px; margin-bottom: 10px;
  cursor: pointer; transition: all 0.2s;
}
.stamp-list-item:hover { border-color: var(--primary); }
.stamp-list-item.near { border-color: var(--success); }
.stamp-header { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.stamp-number {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff;
}
.stamp-name { font-size: 13px; font-weight: 600; }
.stamp-distance { font-size: 11px; color: var(--text-2); margin-left: auto; }
.stamp-img { width: 100%; height: 80px; object-fit: cover; border-radius: 6px; margin-top: 8px; }

.rally-select-header {
  padding: 20px;
  border-bottom: 1px solid var(--border);
}
.rally-select-title { font-size: 14px; font-weight: 600; margin-bottom: 12px; }

/* ---- Admin Stamps Split Layout ---- */
.stamps-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  height: calc(100vh - 80px);
}
.stamps-panel {
  background: var(--bg-secondary);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; overflow: hidden;
}
.stamps-panel-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-deep);
  display: flex; align-items: center; justify-content: space-between;
}
.stamps-panel-body { flex: 1; overflow-y: auto; padding: 16px; }
.stamps-map-wrap { position: relative; }
#adminMap { width: 100%; height: 100%; }
.map-hint {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  background: rgba(16, 41, 76, 0.9);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 8px 16px;
  font-size: 12px; color: var(--text-1);
  z-index: 1000; pointer-events: none;
  backdrop-filter: blur(8px);
}

/* ---- Stat bars ---- */
.stat-bar { display: flex; align-items: center; gap: 8px; }
.stat-bar-track {
  flex: 1; height: 6px; background: var(--bg-secondary);
  border-radius: 3px; overflow: hidden;
}
.stat-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px; transition: width 0.5s ease;
}
.stat-bar-label { font-size: 12px; color: var(--text-2); white-space: nowrap; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--bg-card-hover); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-3); }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .sidebar { width: 200px; }
  .main-content { margin-left: 200px; }

  /* Admin Stamps Layout */
  .stamps-layout { grid-template-columns: 1fr; grid-template-rows: 40vh 1fr; }
  .stamps-panel { height: 100%; border-right: none; border-bottom: 1px solid var(--border); }
  .form-row { grid-template-columns: 1fr; }
  .page-header { padding: 20px 16px 0; }
  .page-body { padding: 16px; }

  /* Client Map Layout */
  .map-layout { position: relative; }
  .map-sidebar {
    position: absolute; top: 0; left: 0; bottom: 0; z-index: 1001;
    width: 100% !important; max-width: 100%;
    transform: translateX(0); transition: transform 0.3s ease;
  }
  .map-sidebar.collapsed { transform: translateX(-100%); width: 100% !important; }
  .map-sidebar .sidebar-toggle {
    right: -44px; width: 44px; height: 44px; font-size: 24px;
    border-radius: 0 var(--r-sm) var(--r-sm) 0; box-shadow: 4px 0 12px rgba(0,0,0,0.3);
  }
}

/* ---- Camera Overlay ---- */
.camera-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: #000;
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.camera-overlay.open { opacity: 1; pointer-events: all; }
.camera-header {
  position: absolute; top: 0; left: 0; right: 0;
  padding: 16px; display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
  z-index: 2;
}
.camera-title { color: #fff; font-size: 16px; font-weight: 700; text-shadow: 0 2px 4px rgba(0,0,0,0.8); }
.camera-close {
  background: rgba(255,255,255,0.2); border: none; color: #fff;
  width: 36px; height: 36px; border-radius: 50%; font-size: 18px;
  cursor: pointer; backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
}
.camera-view { flex: 1; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; background: #111; }
#cameraVideo { position: absolute; min-width: 100%; min-height: 100%; object-fit: cover; }
.scanner-frame {
  position: relative; width: 260px; height: 260px; z-index: 2;
  border: 4px solid rgba(255,255,255,0.4); border-radius: 16px;
  box-shadow: 0 0 0 4000px rgba(0,0,0,0.6);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.scanner-frame::before {
  content: ''; position: absolute; inset: -4px;
  border: 4px solid var(--accent); border-radius: 16px;
  clip-path: polygon(0 0, 20% 0, 20% 100%, 0 100%, 0 20%, 100% 20%, 100% 0, 0 0, 80% 0, 100% 0, 100% 20%, 80% 20%, 80% 80%, 100% 80%, 100% 100%, 80% 100%, 80% 80%, 20% 80%, 20% 100%, 0 100%, 0 80%, 20% 80%);
  -webkit-mask: 
    linear-gradient(#fff 0 0) top left / 40px 40px no-repeat,
    linear-gradient(#fff 0 0) top right / 40px 40px no-repeat,
    linear-gradient(#fff 0 0) bottom left / 40px 40px no-repeat,
    linear-gradient(#fff 0 0) bottom right / 40px 40px no-repeat;
  mask: 
    linear-gradient(#fff 0 0) top left / 40px 40px no-repeat,
    linear-gradient(#fff 0 0) top right / 40px 40px no-repeat,
    linear-gradient(#fff 0 0) bottom left / 40px 40px no-repeat,
    linear-gradient(#fff 0 0) bottom right / 40px 40px no-repeat;
}
.scanner-laser {
  position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--accent); box-shadow: 0 0 10px 2px var(--accent);
  animation: scan 2s ease-in-out infinite alternate;
  display: none;
}
.scanner-frame.scanning .scanner-laser { display: block; }
@keyframes scan { 0% { transform: translateY(0); } 100% { transform: translateY(254px); } }
.scanner-msg {
  position: absolute; bottom: 40px; left: 0; right: 0; text-align: center;
  color: #fff; font-size: 14px; font-weight: 600; text-shadow: 0 2px 4px rgba(0,0,0,0.8); z-index: 2;
}

/* ---- Complete Reward ---- */
.reward-modal {
  text-align: center; padding: 30px 20px;
}
.reward-icon {
  font-size: 80px; margin-bottom: 20px;
  filter: drop-shadow(0 0 20px rgba(255,215,0,0.6));
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.reward-title {
  font-size: 28px; font-weight: 800;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
.reward-desc { color: var(--text-2); font-size: 15px; margin-bottom: 24px; line-height: 1.6; }

/* ---- Collected State in List ---- */
.stamp-list-item.collected { border-color: var(--primary); background: rgba(124,106,247,0.05); }
.stamp-list-item.collected .stamp-number { background: var(--success); }
.camera-btn {
  margin-top: 12px; width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px; border-radius: var(--r-sm); border: none;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; font-weight: 700; font-size: 13px; cursor: pointer;
  transition: all 0.2s; box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.camera-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(124,106,247,0.4); }
.camera-btn:disabled { background: var(--bg-card-hover); color: var(--text-2); box-shadow: none; cursor: not-allowed; transform: none; }
