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

@view-transition {
  navigation: auto;
}

:root {
  --bg-color: #0a0a0a;
  --text-color: #ffffff;
  --accent-color: #00ff88;
  --hover-color: #ff0066;
}

html {
  font-family: 'Mona Sans';
	font-feature-settings: "ss01" on, "ss03" on, "ss05" on;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  overflow-x: hidden;
  min-height: 100vh;
  cursor: none;
  position: relative;
	z-index: 2;
}

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

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.menu-item {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.menu-item[data-index="0"] {
  animation-delay: 0.3s;
}

.menu-item[data-index="1"] {
  animation-delay: 0.5s;
}

.menu-item[data-index="2"] {
  animation-delay: 0.7s;
}

.menu-link {
  text-decoration: none;
  color: var(--text-color);
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.menu-text {
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  display: block;
  position: relative;
  transition: transform 0.3s ease;
  z-index: 1;
}

.menu-text span {
  display: inline-block;
}

.menu-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--hover-color));
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-link:hover::after {
  width: 100%;
}

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

@media (max-width: 768px) {
  .menu {
    gap: 2rem;
  }

  .menu-text {
    font-size: clamp(2rem, 12vw, 4rem);
  }

  .container {
    padding: 1rem;
  }
}
.work-projects-title{
	view-transition-name: work-projects-title;
}

/* Fluid Cursor Styles */
.fluid-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
}

.cursor-inner,
.cursor-outer {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cursor-inner {
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  box-shadow: 0 0 20px var(--accent-color), 0 0 40px var(--accent-color);
  transform: translate(-50%, -50%);
}

.cursor-outer {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(0, 255, 136, 0.4);
  background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(2px);
}

@media (max-width: 768px) {
  .fluid-cursor {
    display: none;
  }
  
  body {
    cursor: auto;
  }
  
  #particles-canvas {
    opacity: 0.2;
  }
}

.menu-item {
  transition: transform 0.2s ease;
}

.icons {
  position: fixed;
	display: flex;
	gap: 4px;
  bottom: 2rem;
  right: 2rem;
  color: var(--text-color);
  text-decoration: none;
  z-index: 100;
  transition: transform 0.3s ease;
}

.github-link:hover {
  transform: scale(1.1);
}

.github-icon {
  display: block;
  filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.3));
}

.github-icon-path {
  fill: none;
  stroke: var(--text-color);
  stroke-width: 0.5;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .github-link {
    bottom: 1rem;
    right: 1rem;
  }
  
  .github-icon {
    width: 24px;
    height: 24px;
  }
}
