﻿/* service-short-link.css - Extracted from inline styles */
* { font-family: 'Noto Sans SC', sans-serif; }
    html { scroll-behavior: smooth; }
    @keyframes arrow-fly {
      0% { transform: translateX(0); opacity: 1; }
      60% { transform: translateX(40px); opacity: 1; }
      100% { transform: translateX(40px); opacity: 0; }
    }
    .arrow-animate { animation: arrow-fly 2s ease-in-out infinite; }
    @keyframes copy-flash {
      0% { background: #E60012; }
      50% { background: #10b981; }
      100% { background: #E60012; }
    }
