:root {
  --primary-bg: #151515;
  --secondary-bg: #1a1a1a;
  --primary-text: #f0f0f0;
  --secondary-text: #bbbbbb;
  --accent-color: #e0e0e0;
  --accent-glow: #e7e7e7;
  --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

html {
  height: 100%;
}

body {
  min-height: 100vh;
  background: var(--primary-bg);
  color: var(--primary-text);
  font-family: var(--font-primary);
  overflow: hidden;
  position: relative;
  /* cursor: none; */
}

#trail-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

#app {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5rem;
}

.container {
  max-width: 900px;
  padding: 2rem;
  text-align: left;
}

.hero {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

.name {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  line-height: clamp(3rem, 8vw, 6rem);
  color: var(--primary-text);
  position: relative;
}

.slogan {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: 0.1em;
  margin-bottom: 0rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

.description {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--secondary-text);
  line-height: 1.6;
  font-weight: 300;
  max-width: 600px;
  margin: 0;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.9s forwards;
}

a, a:hover, a:focus, a:active, a:visited, a:link {
  color: var(--secondary-text);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  cursor: default;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  body {
    cursor: auto;
  }
  
  #app {
    padding-left: 2rem;
  }
  
  .container {
    padding: 1.5rem;
  }
  
  .name::after {
    width: 40px;
  }
}

@media (max-width: 480px) {
  #app {
    padding-left: 1rem;
  }
  
  .container {
    padding: 1rem;
  }
  
  .description {
    font-size: 0.9rem;
    line-height: 1rem;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-text: #ffffff;
    --secondary-text: #ffffff;
    --accent-color: #ffffff;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .hero {
    animation: none;
    opacity: 1;
    transform: none;
  }
  
  .slogan,
  .description {
    animation: none;
    opacity: 1;
  }
}