:root {
  --background: 0 0% 4%;
  --background-secondary: 220 13% 5%;
  --background-card: 220 26% 11%;
  --foreground: 0 0% 100%;
  --foreground-secondary: 220 9% 64%;
  --foreground-muted: 220 9% 45%;
  --emerald: 160 84% 39%;
  --emerald-dark: 160 91% 35%;
  --emerald-glow: 160 84% 39%;
  --border: 220 13% 18%;
  --border-light: 220 13% 18%;
  --card: 220 26% 11%;
  --card-foreground: 0 0% 100%;
  --popover: 220 26% 11%;
  --popover-foreground: 0 0% 100%;
  --primary: 160 84% 39%;
  --primary-foreground: 0 0% 100%;
  --secondary: 220 13% 18%;
  --secondary-foreground: 0 0% 100%;
  --muted: 220 13% 18%;
  --muted-foreground: 220 9% 64%;
  --accent: 160 84% 39%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 98%;
  --input: 220 13% 18%;
  --ring: 160 84% 39%;
  --radius: 0.625rem;
}

::selection {
  background: rgba(16, 185, 129, 0.3);
  color: white;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
}

.glass-card {
  background: rgba(0, 99, 21, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(32, 55, 31, 0.5);
  border-radius: 1rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  transition: border-color 0.3s ease;
}

.glass-card:hover {
  border-color: rgba(16, 185, 129, 0.3);
}

.btn-primary {
  display: inline-flex;
  items-center: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background-color: #10B981;
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #059669;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background-color: transparent;
  border: 1px solid #1F2937;
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: #10B981;
  color: #10B981;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #10B981;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #10B981;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 9999px;
}

.text-gradient {
  background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-emerald {
  box-shadow: 0 0 60px rgba(16, 185, 129, 0.2), 0 0 120px rgba(16, 185, 129, 0.1);
}

.green-glow-bg {
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
}
