body {
  font-family: 'JetBrains Mono', monospace;
  background-color: #171717;
  color: #FFFFFF;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.container {
  max-width: 1024px;
  width: 100%;
  padding: 1rem;
  margin: 0 auto;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid;
  animation: 
    typing 2s steps(26) forwards,
    cursor-blink 0.4s step-end infinite;
  width: 26ch;
  border-right-color: transparent;
}

@keyframes typing {
  0%, 10% { 
    width: 0;
  }
  90%, 100% { 
    width: 26ch;
  }
}

@keyframes cursor-blink {
  0%, 100% { border-right-color: currentColor }
  50% { border-right-color: transparent }
}

h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

p {
  margin: 0.5rem 0;
  line-height: 1.5;
}

a {
  color: #60A5FA;
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  text-decoration: underline;
}

.section {
  position: relative;
  margin: 1.5rem 0;
}

.divider {
  height: 2px;
  width: 100%;
  background-color: #4B5563;
  position: relative;
  margin: 1.5rem 0;
}

.divider::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 10;
}

.tech-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.project-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.project-card {
  position: relative;
  background-color: #4B5563;
  border-radius: 12px;
  height: 140px;
  width: 100%;
  overflow: hidden;
}

.project-card-inner {
  position: relative;
  margin: 2px;
  background-color: #171717;
  border-radius: 10.5px;
  padding: 1rem;
  height: calc(100% - 4px);
  transition: background-color 0.2s ease;
}

.project-card-inner:hover {
  background-color: #2D3748;
}

.project-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    200px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 0;
}

.project-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.project-languages {
  font-size: 0.75rem;
  color: #9CA3AF;
  margin-bottom: 0.5rem;
}

.project-description {
  font-size: 0.875rem;
  line-height: 1.4;
}

.highlight-blue { color: #60A5FA; }
.highlight-yellow { color: #FBBF24; }
.highlight-orange { color: #F97316; }
.highlight-green { color: #34D399; }
.highlight-red { color: #F87171; }
.highlight-purple { color: #A78BFA; }

@media (min-width: 640px) {
  .container {
    padding: 2rem;
  }
  
  h1 {
    font-size: 3rem;
  }

  .project-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .grid-half {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 2rem;
  }
}
 



