.fancy-download-btn { background: #1665d8; /* Более тёмный синий */ color: #fff; border: none; border-radius: 16px; padding: 15px 60px; font-size: 20px; font-weight: bold; box-shadow: 0 4px 14px #1665d860; transition: all 0.22s; margin: 38px auto 24px auto; display: block; cursor: pointer; } .fancy-download-btn:hover { background: #409aff; /* Светлый синий при наведении */ box-shadow: 0 8px 24px #409aff99; transform: translateY(-2px) scale(1.04); } .fancy-download-btn:active { animation: btn-press 0.18s; } @keyframes btn-press { 0% { transform: scale(1.045); } 60% { transform: scale(0.96); } 100% { transform: scale(1); } }