@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=JetBrains+Mono&display=swap');

:root {
  --color-brand-bg: #0a0a0a;
  --color-brand-accent: #00ff88;
}

/* Global Styles */
body {
  background-color: #0a0a0a;
  color: white;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

::selection {
  background-color: #00ff88;
  color: black;
}

#preview-modal.flex {
  animation: modal-fade-in 0.3s ease-out forwards;
}

@keyframes modal-fade-in {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-gradient {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(to right, #00ff88, #34d399);
}

