@font-face {
  font-family: 'AlteHaasGrotesk';
  src: local('ALTEHAASGROTESKREGULAR');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'AlteHaasGrotesk';
  src: local('ALTEHAASGROTESKBOLD');
  font-weight: bold;
  font-style: normal;
}

:root {
  --bg-dark: #1e1e2e;
  --bg-medium: #313244;
  --bg-light: #45475a;
  --fg-primary: #cdd6f4;
  --fg-secondary: #bac2de;
  --green: #a6e3a1;
  --yellow: #f9e2af;
  --blue: #89b4fa;
  --purple: #cba6f7;
  --red: #f38ba8;
  --orange: #fab387;
  --aqua: #94e2d5;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--fg-primary);
  font-family: 'AlteHaasGrotesk', sans-serif;
  line-height: 1.7;
  padding: 2.25rem 1.75rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
}

h1 {
  color: var(--green);
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: bold;
  letter-spacing: -0.02em;
}

h2 {
  color: var(--purple);
  font-size: 1.5rem;
  margin-top: 1.4rem;
  margin-bottom: 0.75rem;
  font-weight: bold;
}

p {
  font-size: 1.1rem;
  color: var(--fg-secondary);
  margin-bottom: 1rem;
}

ul {
  list-style: none;
  margin-top: 0.5rem;
}

li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: bold;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: bold;
  border-bottom: 2px solid transparent;
}

a:hover {
  color: var(--aqua);
  border-bottom-color: var(--aqua);
}

button {
  background-color: var(--green);
  color: var(--bg-dark);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 1rem;
  font-family: 'AlteHaasGrotesk', sans-serif;
  transition: all 0.2s ease;
  font-weight: bold;
}

button:hover {
  background-color: var(--aqua);
  transform: translateY(-2px);
}

input, textarea {
  background-color: var(--bg-medium);
  color: var(--fg-primary);
  border: 2px solid var(--bg-light);
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-family: 'AlteHaasGrotesk', sans-serif;
  transition: border-color 0.2s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--green);
}

code, pre {
  background-color: var(--bg-medium);
  color: var(--yellow);
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-family: 'Courier New', monospace;
}

pre {
  padding: 1rem;
  overflow-x: auto;
  border: 1px solid var(--bg-light);
}

::selection {
  background-color: var(--green);
  color: var(--bg-dark);
}
