    html, body, #app { height: 100%; }
    * { box-sizing: border-box; }
    .font-display { font-family: 'Syne', sans-serif; }
    .font-body { font-family: 'Space Grotesk', sans-serif; }
    
    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(5deg); }
    }
    @keyframes gradient-shift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
    @keyframes slide-up {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .animate-float { animation: float 6s ease-in-out infinite; }
    .animate-float-delayed { animation: float 6s ease-in-out 2s infinite; }
    .animate-gradient { 
      background-size: 200% 200%;
      animation: gradient-shift 8s ease infinite; 
    }
    .animate-slide-up { animation: slide-up 0.8s ease-out forwards; }
    
    .blob {
      border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
      animation: float 8s ease-in-out infinite;
    }
    
    .card-hover {
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    .card-hover:hover {
      transform: translateY(-10px) scale(1.02);
    }
    
    .skill-tag {
      transition: all 0.3s ease;
    }
    .skill-tag:hover {
      transform: scale(1.1) rotate(-2deg);
    }
    
    .nav-link {
      position: relative;
      overflow: hidden;
    }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: currentColor;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }
    .nav-link:hover::after {
      transform: translateX(0);
    }

    .project-image-placeholder {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      position: relative;
      overflow: hidden;
    }

    .project-image-placeholder::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="30" cy="30" r="20" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="70" r="25" fill="rgba(255,255,255,0.05)"/><rect x="40" y="20" width="30" height="30" fill="rgba(255,255,255,0.08)" transform="rotate(45 55 35)"/></svg>');
      animation: float 10s ease-in-out infinite;
    }

    .service-card {
      transition: all 0.3s ease;
    }
    .service-card:hover {
      transform: translateY(-8px);
    }

    .page-separator {
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-top: 2px solid #E5E5E5;
      border-bottom: 2px solid #E5E5E5;
      background: linear-gradient(180deg, transparent, rgba(78, 205, 196, 0.1), transparent);
      margin: 40px 0;
    }
    .project-image-wrapper {
    height: 350px;
}

.project-image {
    width: auto;
    height: 100%;
    object-fit: cover;
    display: block;
}

