/* Remembrance - Professional macOS Design System with Purple Theme */

:root {
  /* Colors - macOS inspired professional palette with purple accent */
  --color-bg: #0a0a0a;
  --color-surface: #1c1c1e;
  --color-surface-elevated: #2c2c2e;
  --color-text: #ffffff;
  --color-text-muted: #98989d;
  --color-accent: #8b5cf6;
  --color-accent-hover: #7c3aed;
  --color-violet: #8b5cf6;
  --color-purple: #7c3aed;
  --color-pink: #d946ef;
  --color-blue: #8b5cf6;
  --color-success: #34c759;
  --color-error: #ff3b30;
  
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  
  /* Border radius - iOS style */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  
  /* Shadows - iOS depth */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.6);
  
  /* Transitions - iOS timing */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.47059;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  letter-spacing: -0.003em;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent;
}

/* Subtle gradient background - macOS style with purple */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at top, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Container with fade-in */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-lg);
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.6s var(--spring);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Typography - macOS style */
h1 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
  letter-spacing: -0.022em;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
}

h2 {
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
  color: var(--color-text);
  font-weight: 600;
  letter-spacing: -0.019em;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
  font-weight: 600;
  letter-spacing: -0.012em;
}

/* Card - macOS style with subtle depth */
.card {
  background: rgba(28, 28, 30, 0.8);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
  box-shadow: 
    0 1px 3px rgba(0, 0, 0, 0.3),
    0 8px 24px rgba(0, 0, 0, 0.4);
  transition: all var(--transition);
  animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card:hover {
  transform: translateY(-1px);
  box-shadow: 
    0 1px 3px rgba(0, 0, 0, 0.3),
    0 12px 32px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.12);
}

/* Form elements with iOS style */
.form-group {
  margin-bottom: var(--space-lg);
  animation: slideInLeft 0.5s var(--spring);
  animation-fill-mode: both;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
  letter-spacing: 0.01em;
}

input[type="text"],
input[type="password"],
input[type="date"],
input[type="file"],
textarea,
select {
  width: 100%;
  padding: 11px 13px;
  background: rgba(44, 44, 46, 0.6);
  backdrop-filter: blur(10px);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--color-text);
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

select:hover {
  background-color: rgba(44, 44, 46, 0.75);
  border-color: rgba(255, 255, 255, 0.15);
}

input[type="date"] {
  color: #ffffff !important;
  color-scheme: dark;
  -webkit-text-fill-color: #ffffff !important;
}

/* Force white color for date input in all states */
input[type="date"]:focus,
input[type="date"]:active,
input[type="date"]:valid {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

input[type="date"]::-webkit-datetime-edit-text,
input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field,
input[type="date"]::-webkit-datetime-edit-year-field {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(2);
  cursor: pointer;
  opacity: 1;
  transition: all var(--transition);
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
  filter: invert(1) brightness(2.5);
  transform: scale(1.1);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(44, 44, 46, 0.8);
  box-shadow: 
    0 0 0 4px rgba(139, 92, 246, 0.15),
    0 1px 2px rgba(0, 0, 0, 0.2);
}

textarea {
  min-height: 150px;
  resize: vertical;
  font-family: inherit;
  line-height: 1.6;
}

/* macOS-style buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  position: relative;
  letter-spacing: -0.003em;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-0.5px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.btn:active {
  transform: scale(0.98);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #ffffff;
  font-weight: 500;
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-danger {
  background: var(--color-error);
  border-color: var(--color-error);
  color: #ffffff;
}

.btn-danger:hover {
  background: #d70015;
  border-color: #d70015;
}

/* Microphone button - macOS style */
.btn-microphone {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-full);
  font-size: 2.5rem;
  margin: var(--space-xl) auto;
  display: flex;
  background: var(--color-accent);
  border: none;
  box-shadow: 
    0 4px 16px rgba(0, 122, 255, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
  position: relative;
  color: #ffffff;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn-microphone:hover {
  transform: scale(1.05);
  box-shadow: 
    0 6px 20px rgba(139, 92, 246, 0.5),
    0 2px 4px rgba(0, 0, 0, 0.3);
  background: var(--color-accent-hover);
}

.btn-microphone:active {
  transform: scale(0.98);
  box-shadow: 
    0 2px 8px rgba(139, 92, 246, 0.4),
    0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-microphone.recording {
  background: var(--color-error);
  animation: recording-pulse 1.5s ease-in-out infinite;
  box-shadow: 
    0 4px 16px rgba(255, 59, 48, 0.4),
    0 1px 3px rgba(0, 0, 0, 0.3);
}

@keyframes recording-pulse {
  0%, 100% { 
    opacity: 1;
  }
  50% { 
    opacity: 0.8;
  }
}

/* macOS-style Notification Container */
#notification-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
  max-width: 420px;
}

/* macOS-style Notifications */
.notification,
.alert,
.alert-success,
.alert-error,
.alert-info {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 0.5px solid;
  min-width: 320px;
  max-width: 420px;
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  animation: macNotificationSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-weight: 500;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  pointer-events: auto;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: -0.01em;
}

.notification::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0.5;
}

.notification:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 14px 48px rgba(0, 0, 0, 0.6),
    0 4px 12px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.notification:active {
  transform: scale(0.98);
}

/* macOS notification slide-in animation */
@keyframes macNotificationSlideIn {
  0% {
    transform: translateX(calc(100% + 2rem)) scale(0.9);
    opacity: 0;
  }
  60% {
    transform: translateX(-8px) scale(1.02);
    opacity: 1;
  }
  80% {
    transform: translateX(4px) scale(0.99);
  }
  100% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

/* macOS notification slide-out animation */
@keyframes macNotificationSlideOut {
  0% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(-8px) scale(1.02);
  }
  100% {
    transform: translateX(calc(100% + 2rem)) scale(0.9);
    opacity: 0;
  }
}

/* Success notification - macOS green */
.notification.success,
.alert-success {
  background: rgba(52, 199, 89, 0.12);
  border-color: rgba(52, 199, 89, 0.3);
  color: #6ee7b7;
}

.notification.success::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #34c759, #30d158);
  border-radius: 12px 0 0 12px;
}

/* Error notification - macOS red */
.notification.error,
.alert-error {
  background: rgba(255, 59, 48, 0.12);
  border-color: rgba(255, 59, 48, 0.3);
  color: #fca5a5;
}

.notification.error::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #ff3b30, #ff453a);
  border-radius: 12px 0 0 12px;
}

/* Info notification - macOS blue */
.notification.info,
.alert-info {
  background: rgba(10, 132, 255, 0.12);
  border-color: rgba(10, 132, 255, 0.3);
  color: #60a5fa;
}

.notification.info::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #0a84ff, #0071e3);
  border-radius: 12px 0 0 12px;
}

/* Loading notification - macOS purple */
.notification.loading {
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.3);
  color: #c4b5fd;
}

.notification.loading::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #8b5cf6, #7c3aed);
  border-radius: 12px 0 0 12px;
}

/* Notification icon styling */
.notification > span:first-child {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.notification.show {
  display: flex;
}

/* Recording timer - macOS style */
.recording-time {
  text-align: center;
  margin-top: var(--space-md);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text-muted);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

/* Search results with stagger animation */
.search-results {
  margin-top: var(--space-lg);
}

.result-item {
  background: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: var(--radius);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  transition: all var(--transition);
  animation: fadeInUp 0.5s var(--spring);
  animation-fill-mode: both;
  cursor: pointer;
}

.result-item:nth-child(1) { animation-delay: 0.05s; }
.result-item:nth-child(2) { animation-delay: 0.1s; }
.result-item:nth-child(3) { animation-delay: 0.15s; }
.result-item:nth-child(4) { animation-delay: 0.2s; }
.result-item:nth-child(5) { animation-delay: 0.25s; }

.result-item:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(168, 85, 247, 0.2);
}

.result-date {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.result-excerpt {
  color: var(--color-text);
  line-height: 1.7;
  white-space: pre-line;
  text-indent: 0 !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.action-btn-small {
  padding: 0.4rem 0.8rem;
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: 6px;
  color: #8b5cf6;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.action-btn-small:hover {
  background: rgba(139, 92, 246, 0.3);
  border-color: rgba(139, 92, 246, 0.6);
  transform: translateY(-1px);
}

.action-btn-small.secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--color-text-muted);
}

.action-btn-small.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--color-text);
}

mark {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.4), rgba(236, 72, 153, 0.3));
  color: var(--color-text);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}

/* Navigation - macOS style */
nav {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 0;
  padding: 0.5rem 1rem;
  background: rgba(28, 28, 30, 0.7);
  backdrop-filter: blur(40px) saturate(180%);
  border-radius: var(--radius-lg);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

nav a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  position: relative;
  flex: 1;
  text-align: center;
  white-space: nowrap;
  letter-spacing: -0.003em;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

nav a:hover,
nav a:active {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.08);
}

/* Loading spinner */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(139, 92, 246, 0.2);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: var(--space-xl) auto;
}

.spinner-small {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(139, 92, 246, 0.2);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  flex-shrink: 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Loading notification style */
.notification.loading {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.4);
  color: #c4b5fd;
}

/* Responsive with smooth transitions */
@media (max-width: 768px) {
  .container {
    padding: var(--space-md);
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.15rem;
  }
  
  .btn-microphone {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
  
  #notification-container {
    right: 0.75rem;
    left: 0.75rem;
    top: 0.75rem;
    max-width: none;
  }
  
  .notification,
  .alert,
  .alert-success,
  .alert-error,
  .alert-info {
    min-width: auto;
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
  }
  
  .notification > span:first-child {
    font-size: 1.125rem;
    width: 20px;
    height: 20px;
  }
  
  nav {
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.5rem;
    width: 100%;
  }
  
  nav a {
    width: 100%;
    padding: 0.75rem;
    font-size: 0.95rem;
  }
  
  .card {
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
  }
  
  .btn {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
  
  input[type="text"],
  input[type="password"],
  input[type="date"],
  textarea,
  select {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 12px 14px;
  }
  
  textarea {
    min-height: 120px;
  }
  
  /* Search results mobile optimization */
  .result-item {
    padding: var(--space-md);
  }
  
  .result-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* Form groups spacing */
  .form-group {
    margin-bottom: var(--space-md);
  }
}

/* Tablet specific styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    max-width: 720px;
    padding: var(--space-lg);
  }
  
  nav {
    gap: 0.5rem;
  }
  
  nav a {
    font-size: 0.85rem;
    padding: 0.6rem 0.65rem;
  }
  
  h1 {
    font-size: 2.25rem;
  }
  
  .card {
    padding: 1.75rem;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  :root {
    --space-lg: 16px;
    --space-xl: 24px;
  }
  
  .container {
    padding: var(--space-sm);
  }
  
  h1 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
  }
  
  .card {
    padding: var(--space-md);
    border-radius: var(--radius);
  }
  
  .btn-microphone {
    width: 70px;
    height: 70px;
  }
  
  .btn-microphone svg {
    width: 32px;
    height: 32px;
  }
  
  .recording-time {
    font-size: 1rem;
  }
  
  nav a {
    font-size: 0.9rem;
    padding: 0.65rem;
  }
}

/* Utility classes */
.text-center { text-align: center; }
.fade-in { animation: fadeIn 0.5s ease; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Selection styling */
::selection {
  background: rgba(168, 85, 247, 0.3);
  color: var(--color-text);
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(26, 26, 26, 0.5);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-violet), var(--color-purple));
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #b366f8, #9d6ef7);
}
