@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400&display=swap");

:root {
  --background: #050706;
  --foreground: #f5f7f5;
  --card: rgba(255, 255, 255, 0.035);
  --card-foreground: #f5f7f5;
  --primary: #62ff63;
  --primary-foreground: #050706;
  --secondary: #0d110e;
  --secondary-foreground: #a5aea7;
  --muted: #080b09;
  --muted-foreground: #6f786f;
  --accent: #62ff63;
  --accent-foreground: #050706;
  --border: rgba(255, 255, 255, 0.08);
  --ring: #62ff63;
  --font-sans: "Manrope", system-ui, sans-serif;
  --font-mono: "DM Mono", monospace;
}

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

html {
  font-family: var(--font-sans);
  background-color: #050706;
  color: #f5f7f5;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

section[id],
div[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: linear-gradient(180deg, #050706 0%, #080b09 40%, #0a0d0b 70%, #0d110e 100%);
  min-height: 100vh;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

button {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4, h5, p {
  margin: 0;
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(98, 255, 99, 0.2) transparent;
}

*::-webkit-scrollbar {
  width: 4px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background: rgba(98, 255, 99, 0.2);
  border-radius: 2px;
}

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

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

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

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

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(98, 255, 99, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(98, 255, 99, 0); }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.pulse-green {
  animation: pulse-green 2s ease-in-out infinite;
}

.font-extrabold { font-weight: 800; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.leading-none { line-height: 1; }
.leading-relaxed { line-height: 1.625; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.uppercase { text-transform: uppercase; }
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.whitespace-nowrap { white-space: nowrap; }
.select-none { user-select: none; }
.pointer-events-none { pointer-events: none; }
.cursor-pointer { cursor: pointer; }
.resize-none { resize: none; }
.outline-none { outline: none; }
.object-cover { object-fit: cover; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
