/* 3D Eye Animation Styles */
.eye-container {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 120px;
  height: 120px;
  z-index: 100000;
}

.eye {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #f5f5f5;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2), 
              inset 0 0 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 500px;
}

.sclera {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.iris {
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #19a0a0 0%, #115555 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease-out;
  transform-origin: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.pupil {
  width: 45%;
  height: 45%;
  border-radius: 50%;
  background: #000;
  position: relative;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.4);
}

.highlight {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 20%;
  height: 20%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.eyelid {
  position: absolute;
  width: 150%;
  height: 100%;
  background: var(--primary-bg);
  left: -25%;
  transition: transform 0.15s ease-out;
}

.eyelid.top {
  top: 0;
  border-bottom-left-radius: 60%;
  border-bottom-right-radius: 60%;
  transform: translateY(-100%);
}

.eyelid.bottom {
  bottom: 0;
  border-top-left-radius: 60%;
  border-top-right-radius: 60%;
  transform: translateY(100%);
}

.typing-part {
  display: inline;
}

@media (max-width: 768px) {
  .eye-container {
    top: 300px;
    right: 5%;
    width: 70px;
    height: 70px;
    z-index: 1000000;
  }
}

